You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
3.1 KiB
137 lines
3.1 KiB
/** |
|
* 这里是uni-app内置的常用样式变量 |
|
* |
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 |
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App |
|
* |
|
*/ |
|
/** |
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 |
|
* |
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 |
|
*/ |
|
/* 颜色变量 */ |
|
/* 行为相关颜色 */ |
|
/* 文字基本颜色 */ |
|
/* 背景颜色 */ |
|
/* 边框颜色 */ |
|
/* 尺寸变量 */ |
|
/* 文字尺寸 */ |
|
/* 图片尺寸 */ |
|
/* Border Radius */ |
|
/* 水平间距 */ |
|
/* 垂直间距 */ |
|
/* 透明度 */ |
|
/* 文章场景相关 */ |
|
.saixuanqu { |
|
width: 706rpx; |
|
margin: auto; |
|
border-radius: 10rpx; |
|
border: 2rpx solid #ECECEC; |
|
padding: 20rpx 16rpx; |
|
box-sizing: border-box; |
|
background-color: #ffffff; |
|
margin-top: 20rpx; |
|
} |
|
.saixuanqu > .timexz { |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
} |
|
.saixuanqu > .timexz > .yuedu { |
|
width: 150rpx; |
|
} |
|
.saixuanqu > .timexz > .neironxuanqu { |
|
flex: 1; |
|
height: 72rpx; |
|
padding: 10rpx 26rpx; |
|
box-sizing: border-box; |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
background-color: #FAFAFA; |
|
} |
|
.saixuanqu > .timexz > .neironxuanqu image { |
|
width: 40rpx; |
|
height: 40rpx; |
|
} |
|
.saixuanqu > .timexz > .neironxuanqu input { |
|
flex: 1; |
|
} |
|
.saixuanqu > .butsui { |
|
width: 634rpx; |
|
height: 80rpx; |
|
background: #3D7AED; |
|
border-radius: 8rpx; |
|
margin: auto; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
color: #ffffff; |
|
font-size: 32rpx; |
|
margin-top: 70rpx; |
|
} |
|
.scv { |
|
width: 100%; |
|
background-color: #ffffff; |
|
box-sizing: border-box; |
|
border-bottom: 1rpx solid #ececec; |
|
} |
|
.scv .min_box { |
|
display: flex; |
|
align-items: center; |
|
} |
|
.scv .min_box > view { |
|
font-size: 28rpx; |
|
border-bottom: 5rpx solid #3d7aed00; |
|
padding: 25rpx 0; |
|
margin: 0 20rpx; |
|
} |
|
.scv .min_box .xzdq { |
|
border-bottom: 5rpx solid #3d7aed; |
|
} |
|
.scv1 { |
|
width: 100%; |
|
box-sizing: border-box; |
|
padding: 30rpx 0; |
|
padding-bottom: 20rpx; |
|
} |
|
.scv1 .max_box { |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
.scv1 .max_box > view { |
|
width: 700rpx; |
|
padding: 30rpx 20rpx; |
|
margin: auto; |
|
margin-bottom: 30rpx; |
|
box-sizing: border-box; |
|
background-color: #ffffff; |
|
border-radius: 10rpx; |
|
} |
|
.scv1 .max_box > view .title_top { |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
padding-bottom: 30rpx; |
|
border-bottom: 1rpx solid #ececec; |
|
} |
|
.scv1 .max_box > view .title_top > view { |
|
font-size: 32rpx; |
|
color: #3d7aed; |
|
font-weight: 500; |
|
} |
|
.scv1 .max_box > view .title_top > image { |
|
width: 50rpx; |
|
height: 50rpx; |
|
} |
|
.scv1 .max_box > view .nrcon { |
|
display: flex; |
|
flex-wrap: wrap; |
|
align-items: center; |
|
} |
|
.scv1 .max_box > view .nrcon > view { |
|
width: 50%; |
|
font-size: 26rpx; |
|
padding: 20rpx 0; |
|
} |