login.wxss 4.09 KB

 .uni-checkbox-input {
	width: 36rpx;
	height: 36rpx;
	border-radius: 50%;
	margin-right: 0;
	border: 1px solid #888888;
}

/* 复选框取消默认样式 */
 uni-checkbox .uni-checkbox-input.uni-checkbox-input-checked:before {
	font-size: 0;
	/* 重点使用这一步取消的默认样式 */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	-webkit-transform: translate(-50%, -50%) scale(1);
}

/* 重新定义复选框选中后的样式*/
 .uni-checkbox-input-checked::before {
	width: 36rpx;
	height: 36rpx;
	border-radius: 50%;
	background: #477EFF url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAS1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////+DmQsHAAAAGXRSTlMA/4CMWAnAn3KRpGr4PNIVe5Qc3a4iw6hAxD1IowAAAFVJREFUeJyVj8kOgEAIQ9tZHfdd//9LTSQaGePBXuCVQAPwT13GYxsU+0CnjJmF4kh71mSELTdpjAx6rh6XMwAVp+VeNoyOdfM4l8gssMwCgf37nZcOvNUBcRcv6qgAAAAASUVORK5CYII=) no-repeat center !important;
	border: 1px solid #477EFF;
}

@charset "UTF-8";
/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
/**
 * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
 */
/* 颜色变量 */
/* 主要颜色 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.page.data-v-b237504c {
  position: relative;
  width: 100%;
  height: 100%;
}
.login-bg.data-v-b237504c {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.login-bg image.data-v-b237504c {
  width: 100%;
  height: 100%;
}
.main.data-v-b237504c {
  position: relative;
  z-index: 1;
  top: 20%;
}
.logo.data-v-b237504c {
  text-align: center;
  height: 260rpx;
}
.logo image.data-v-b237504c {
  width: 380rpx;
  height: 380rpx;
}
.title.data-v-b237504c {
  font-size: 44rpx;
  color: #fff;
  margin: 0 6%;
}
/* 填写 */
.input-info.data-v-b237504c {
  padding: 6%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.input-info .input-info-btn.data-v-b237504c {
  background-color: #477EFF;
  border-radius: 25rpx;
  padding: 30rpx 0;
  margin-bottom: 10rpx;
  font-size: 32rpx;
  color: #fff;
}
.input-info .input-info-btn--disabled.data-v-b237504c {
  background-color: #C0C4CC;
  color: #FFFFFF;
  pointer-events: none;
  opacity: 0.8;
}
.input-info .info-check.data-v-b237504c {
  font-size: 24rpx;
  color: #9A9EA1;
  position: fixed;
  bottom: 80rpx;
  left: 16%;
  display: flex;
  align-items: center;
}
.input-info .info-check .blue.data-v-b237504c {
  color: #477EFF;
}
.input-info .info.data-v-b237504c {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100rpx;
  background-color: #fff;
  border-radius: 20rpx;
  margin-top: 40rpx;
  padding: 0 40rpx;
}
.input-info .info input.data-v-b237504c {
  width: 70%;
  height: 100%;
  font-size: 28rpx;
  color: #222222;
}
.input-info .info .more.data-v-b237504c {
  display: flex;
  align-items: center;
  width: 10%;
  height: 100%;
}
.input-info .info .more image.data-v-b237504c {
  width: 38rpx;
  height: 38rpx;
}
/* 按钮 */
.btn-info.data-v-b237504c {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100rpx;
}
.btn-info .btn.data-v-b237504c {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 100rpx;
  background: linear-gradient(to left, #39C079, #2FA567);
  border-radius: 20rpx;
  color: #FFFFFF;
  font-size: 32rpx;
}