@charset "UTF-8";
|
/**
|
* 这里是uni-app内置的常用样式变量
|
*
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
*
|
*/
|
/**
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
*
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
*/
|
/* 颜色变量 */
|
/* 行为相关颜色 */
|
/* 文字基本颜色 */
|
/* 背景颜色 */
|
/* 边框颜色 */
|
/* 尺寸变量 */
|
/* 文字尺寸 */
|
/* 图片尺寸 */
|
/* Border Radius */
|
/* 水平间距 */
|
/* 垂直间距 */
|
/* 透明度 */
|
/* 文章场景相关 */
|
/* start--主题色--start */
|
/* end--主题色--end */
|
.recharge-top {
|
height: 75rpx;
|
position: relative;
|
border-radius: 25rpx 25rpx 0 0;
|
}
|
.recharge-top .recharge-icon {
|
width: 12rpx;
|
height: 49rpx;
|
background: #FFFFFF;
|
box-shadow: 0rpx 8rpx 3rpx 0rpx rgba(6, 0, 1, 0.03);
|
border-radius: 6rpx;
|
position: absolute;
|
top: -15rpx;
|
}
|
.recharge-top .recharge-icon.left {
|
left: 156rpx;
|
}
|
.recharge-top .recharge-icon.right {
|
right: 156rpx;
|
}
|
.input-box {
|
width: 428rpx;
|
height: 72rpx;
|
border: 1rpx solid #EEEEEE;
|
border-radius: 15rpx;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
padding: 0 14rpx 0 21rpx;
|
margin: 0 auto;
|
}
|
.input-box input {
|
border: none;
|
font-size: 26rpx;
|
color: #999999;
|
flex: 1;
|
}
|
.input-err {
|
width: 42rpx;
|
height: 42rpx;
|
flex-shrink: 0;
|
margin-left: 18rpx;
|
}
|
.sub-btn {
|
width: 148rpx;
|
height: 48rpx;
|
border-radius: 36rpx;
|
font-size: 28rpx;
|
color: #FFFFFF;
|
display: flex;
|
justify-content: center;
|
align-content: center;
|
margin-right: 93rpx;
|
line-height: 48rpx;
|
}
|
.close-btn {
|
width: 148rpx;
|
height: 48rpx;
|
border-radius: 36rpx;
|
font-size: 28rpx;
|
color: #FFFFFF;
|
display: flex;
|
justify-content: center;
|
align-content: center;
|
line-height: 48rpx;
|
}
|
.dominant {
|
color: #e2231a;
|
}
|
.pop-bg {
|
position: fixed;
|
top: 0;
|
left: 0;
|
width: 100%;
|
height: 100vh;
|
background: rgba(0, 0, 0, 0.5);
|
z-index: 99;
|
}
|
.pop-bg .pop-content {
|
position: fixed;
|
z-index: 100;
|
bottom: 0;
|
left: 0;
|
right: 0;
|
top: 0;
|
margin: auto;
|
width: 516rpx;
|
height: 477rpx;
|
padding: 0 0 32rpx 0;
|
box-sizing: border-box;
|
-webkit-transform: translate3d(0, 0, 0);
|
transform: translate3d(0, 0, 0);
|
transition: -webkit-transform 0.2s cubic-bezier(0, 0, 0.25, 1);
|
transition: transform 0.2s cubic-bezier(0, 0, 0.25, 1);
|
transition: transform 0.2s cubic-bezier(0, 0, 0.25, 1), -webkit-transform 0.2s cubic-bezier(0, 0, 0.25, 1);
|
background-color: #FFFFFF;
|
border-radius: 25rpx;
|
}
|
.pop-bg.close {
|
height: 0;
|
}
|
.pop-bg.close .pop-content {
|
-webkit-transform: translate3d(0, 2000rpx, 0);
|
transform: translate3d(0, 2000rpx, 0);
|
}
|
.code-image {
|
width: 360rpx;
|
height: 360rpx;
|
}
|
.icon-img {
|
width: 40rpx;
|
height: 40rpx;
|
margin-right: 16rpx;
|
}
|
.close-img {
|
width: 32rpx;
|
height: 32rpx;
|
position: absolute;
|
right: 32rpx;
|
top: 32rpx;
|
}
|
.input-item {
|
width: 72rpx;
|
height: 96rpx;
|
background: #ffffff;
|
border-radius: 0px;
|
font-size: 40rpx;
|
color: rgba(0, 0, 0, 0.87);
|
font-weight: 600;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
border-bottom: 2rpx solid #00BDBD;
|
margin-right: 16rpx;
|
text-align: center;
|
line-height: 96rpx;
|
}
|
.input-item:last-child {
|
margin-right: 0;
|
}
|
.input-hid {
|
margin-left: -100%;
|
}
|
.get-code-btn {
|
background-color: #FFFFFF;
|
color: #e2231a;
|
background: none;
|
padding: 0;
|
margin: 0 auto;
|
}
|
button[disabled]:not([type]).get-code-btn {
|
background-color: #FFFFFF;
|
color: #999999;
|
}
|