174 lines
4.2 KiB
Plaintext
174 lines
4.2 KiB
Plaintext
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
.bind-phone-container.data-v-9177970f {
|
||
min-height: 100vh;
|
||
background: linear-gradient(135deg, #FDF8F2 0%, #F5EDE0 100%);
|
||
}
|
||
.bind-content.data-v-9177970f {
|
||
padding: 40rpx 30rpx;
|
||
}
|
||
|
||
/* 页面标题 */
|
||
.page-header.data-v-9177970f {
|
||
text-align: center;
|
||
margin-bottom: 60rpx;
|
||
}
|
||
.page-header .header-title.data-v-9177970f {
|
||
display: block;
|
||
font-size: 48rpx;
|
||
font-weight: 700;
|
||
color: #333;
|
||
margin-bottom: 20rpx;
|
||
}
|
||
.page-header .header-subtitle.data-v-9177970f {
|
||
display: block;
|
||
font-size: 26rpx;
|
||
color: #999;
|
||
}
|
||
|
||
/* 表单区域 */
|
||
.form-section.data-v-9177970f {
|
||
background: white;
|
||
border-radius: 30rpx;
|
||
padding: 40rpx 30rpx;
|
||
margin-bottom: 40rpx;
|
||
box-shadow: 0 8rpx 40rpx rgba(0, 0, 0, 0.08);
|
||
}
|
||
.form-item.data-v-9177970f {
|
||
margin-bottom: 40rpx;
|
||
}
|
||
.form-item.data-v-9177970f:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
.form-item .item-label.data-v-9177970f {
|
||
display: flex;
|
||
align-items: center;
|
||
margin-bottom: 20rpx;
|
||
}
|
||
.form-item .item-label .label-icon.data-v-9177970f {
|
||
font-size: 32rpx;
|
||
margin-right: 10rpx;
|
||
}
|
||
.form-item .item-label .label-text.data-v-9177970f {
|
||
font-size: 28rpx;
|
||
font-weight: 600;
|
||
color: #333;
|
||
}
|
||
.form-item .item-input.data-v-9177970f {
|
||
width: 100%;
|
||
max-width: 520rpx;
|
||
/* 限制宽度,避免输入框过长 */
|
||
margin: 0 auto;
|
||
padding: 24rpx 30rpx;
|
||
background: #F8F8F8;
|
||
border-radius: 20rpx;
|
||
font-size: 28rpx;
|
||
color: #333;
|
||
border: 2rpx solid transparent;
|
||
transition: all 0.3s;
|
||
}
|
||
.form-item .item-input.data-v-9177970f:focus {
|
||
background: white;
|
||
border-color: #8B7355;
|
||
}
|
||
.form-item .input-placeholder.data-v-9177970f {
|
||
color: #ccc;
|
||
}
|
||
|
||
/* 验证码输入 */
|
||
.code-input-wrapper.data-v-9177970f {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 20rpx;
|
||
justify-content: center;
|
||
}
|
||
.code-input-wrapper .code-input.data-v-9177970f {
|
||
flex: 0 0 auto;
|
||
width: 100%;
|
||
max-width: 320rpx;
|
||
/* 限制验证码输入框长度 */
|
||
padding: 24rpx 30rpx;
|
||
background: #F8F8F8;
|
||
border-radius: 20rpx;
|
||
font-size: 28rpx;
|
||
color: #333;
|
||
border: 2rpx solid transparent;
|
||
}
|
||
.code-input-wrapper .code-input.data-v-9177970f:focus {
|
||
background: white;
|
||
border-color: #8B7355;
|
||
}
|
||
.code-input-wrapper .send-code-btn.data-v-9177970f {
|
||
padding: 24rpx 30rpx;
|
||
background: linear-gradient(135deg, #8B7355 0%, #6D8B8B 100%);
|
||
border-radius: 20rpx;
|
||
color: white;
|
||
font-size: 24rpx;
|
||
white-space: nowrap;
|
||
border: none;
|
||
}
|
||
.code-input-wrapper .send-code-btn[disabled].data-v-9177970f {
|
||
opacity: 0.6;
|
||
background: #ccc;
|
||
}
|
||
|
||
/* 提示信息 */
|
||
.tips-section.data-v-9177970f {
|
||
background: linear-gradient(135deg, #E8F5FF 0%, #D6EDFF 100%);
|
||
border-radius: 20rpx;
|
||
padding: 30rpx;
|
||
margin-bottom: 40rpx;
|
||
border-left: 6rpx solid #4A90E2;
|
||
}
|
||
.tips-section .tips-item.data-v-9177970f {
|
||
font-size: 24rpx;
|
||
color: #666;
|
||
line-height: 2;
|
||
}
|
||
|
||
/* 按钮区域 */
|
||
.button-section.data-v-9177970f {
|
||
padding: 20rpx 0;
|
||
}
|
||
.submit-btn.data-v-9177970f {
|
||
width: 100%;
|
||
padding: 32rpx;
|
||
background: linear-gradient(135deg, #8B7355 0%, #6D8B8B 100%);
|
||
border-radius: 50rpx;
|
||
color: white;
|
||
font-size: 32rpx;
|
||
font-weight: 600;
|
||
box-shadow: 0 10rpx 40rpx rgba(139, 115, 85, 0.3);
|
||
border: none;
|
||
}
|
||
.submit-btn.data-v-9177970f:active {
|
||
opacity: 0.8;
|
||
transform: scale(0.98);
|
||
}
|
||
.submit-btn[disabled].data-v-9177970f {
|
||
opacity: 0.6;
|
||
background: #ccc;
|
||
} |