296 lines
5.8 KiB
Plaintext
296 lines
5.8 KiB
Plaintext
@charset "UTF-8";
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
page {
|
||
background-color: #F7FAFE !important;
|
||
}
|
||
.tabback {
|
||
width: 750rpx;
|
||
height: 130rpx;
|
||
background: #FCFCFC;
|
||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 0 28rpx;
|
||
box-sizing: border-box;
|
||
border-bottom: 1px solid #D8D8D8;
|
||
padding-top: 52rpx;
|
||
z-index: 999;
|
||
}
|
||
.tabback .name {
|
||
font-size: 36rpx;
|
||
color: #3D3D3D;
|
||
}
|
||
.tabback .rtjt {
|
||
font-size: 36rpx;
|
||
}
|
||
.containers {
|
||
width: 100%;
|
||
height: 100vh;
|
||
position: fixed;
|
||
top: 0;
|
||
padding-top: 130rpx;
|
||
box-sizing: border-box;
|
||
left: 0;
|
||
z-index: 999 !important;
|
||
/* background-color: #fff; */
|
||
z-index: 99;
|
||
}
|
||
.pages {
|
||
padding-top: 136rpx !important;
|
||
padding: 0 66rpx;
|
||
box-sizing: border-box;
|
||
padding-bottom: 200rpx;
|
||
box-sizing: border-box;
|
||
}
|
||
.modal-overlay {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: rgba(0, 0, 0, 0.5);
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
z-index: 1000;
|
||
}
|
||
.modal {
|
||
width: 300px;
|
||
background: #fff;
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
}
|
||
.modal-content {
|
||
padding: 20px;
|
||
}
|
||
.modal-title {
|
||
font-size: 18px;
|
||
margin-bottom: 10px;
|
||
text-align: center;
|
||
}
|
||
.modal-body {
|
||
font-size: 16px;
|
||
margin-bottom: 20px;
|
||
text-align: center;
|
||
}
|
||
.modal-footer {
|
||
display: flex;
|
||
justify-content: space-around;
|
||
}
|
||
.modal-footer button {
|
||
width: 80px;
|
||
height: 60rpx;
|
||
padding: 10px;
|
||
background: #8883F0;
|
||
color: #fff;
|
||
border: none;
|
||
border-radius: 4px;
|
||
}
|
||
.btn {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: #8883F0;
|
||
width: 80px;
|
||
height: 60rpx;
|
||
color: #fff;
|
||
border-radius: 4px;
|
||
}
|
||
.modal-footer button:first-of-type {
|
||
background: #ccc;
|
||
}
|
||
.sm {
|
||
color: #77808D;
|
||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||
display: inline-block;
|
||
}
|
||
.title {
|
||
margin-bottom: 84rpx;
|
||
}
|
||
.title image {
|
||
display: inline-block;
|
||
width: 48rpx;
|
||
height: 48rpx;
|
||
vertical-align: bottom;
|
||
margin-right: 10rpx;
|
||
}
|
||
.title_li {
|
||
display: flex;
|
||
flex-wrap: nowrap;
|
||
align-items: center;
|
||
}
|
||
.title_li .text {
|
||
font-weight: 400;
|
||
font-size: 70rpx;
|
||
color: #262B37;
|
||
text-align: left;
|
||
font-style: normal;
|
||
text-transform: none;
|
||
display: block;
|
||
}
|
||
.title_li .btns {
|
||
margin-left: 30rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 138rpx;
|
||
height: 50rpx;
|
||
background: #F14C4C;
|
||
border-radius: 31rpx 31rpx 31rpx 31rpx;
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
color: #FFFFFF;
|
||
}
|
||
.dblist {
|
||
display: flex;
|
||
width: 100%;
|
||
margin-top: 34rpx;
|
||
background: #FFFFFF;
|
||
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
|
||
padding: 20rpx 0 24rpx 18rpx;
|
||
box-sizing: border-box;
|
||
text-align: center;
|
||
border-radius: 10rpx;
|
||
}
|
||
.dblist .lt {
|
||
padding-left: 10rpx;
|
||
box-sizing: border-box;
|
||
margin-right: 38rpx;
|
||
}
|
||
.dblist .lt image {
|
||
width: 42rpx;
|
||
}
|
||
.dblist .cen {
|
||
width: 370rpx;
|
||
padding-left: 10rpx;
|
||
box-sizing: border-box;
|
||
}
|
||
.dblist .cen .name {
|
||
white-space: nowrap;
|
||
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
|
||
font-weight: 400;
|
||
font-size: 28rpx;
|
||
color: #262B37;
|
||
line-height: 40rpx;
|
||
text-align: left;
|
||
font-style: normal;
|
||
text-transform: none;
|
||
margin-top: 10rpx;
|
||
}
|
||
.dblist .cen .mac {
|
||
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
|
||
font-weight: 400;
|
||
font-size: 24rpx;
|
||
color: #262B37;
|
||
line-height: 32rpx;
|
||
text-align: left;
|
||
font-style: normal;
|
||
text-transform: none;
|
||
margin-top: 16rpx;
|
||
}
|
||
.dblist .rt {
|
||
margin-left: auto;
|
||
margin-top: 22rpx;
|
||
}
|
||
.dblist .rt text {
|
||
display: inline-block;
|
||
width: 108rpx;
|
||
height: 60rpx;
|
||
background: rgba(255, 255, 255, 0);
|
||
border: 2rpx solid #8883F0;
|
||
-webkit-filter: blur(0px);
|
||
filter: blur(0px);
|
||
border-radius: 20rpx;
|
||
text-align: center;
|
||
line-height: 60rpx;
|
||
color: #8883F0;
|
||
}
|
||
.anniu {
|
||
padding: 0 40rpx;
|
||
width: 100%;
|
||
box-sizing: border-box;
|
||
position: fixed;
|
||
left: 0;
|
||
bottom: 60rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.anniu view {
|
||
background: #000;
|
||
border-radius: 52rpx 52rpx 52rpx 52rpx;
|
||
color: #fff;
|
||
height: 80rpx;
|
||
line-height: 80rpx;
|
||
text-align: center;
|
||
}
|
||
.mask {
|
||
width: 622rpx;
|
||
height: 710rpx;
|
||
background: #FFFFFF;
|
||
-webkit-filter: blur(0px);
|
||
filter: blur(0px);
|
||
border-radius: 20rpx;
|
||
position: fixed;
|
||
top: 475rpx;
|
||
left: 50%;
|
||
-webkit-transform: translateX(-50%);
|
||
transform: translateX(-50%);
|
||
padding-top: 38rpx;
|
||
padding-left: 60rpx;
|
||
padding-right: 60rpx;
|
||
box-sizing: border-box;
|
||
}
|
||
.mask .titles {
|
||
font-size: 48rpx;
|
||
color: #262B37;
|
||
line-height: 70rpx;
|
||
text-align: center;
|
||
margin-bottom: 24rpx;
|
||
}
|
||
.mask text {
|
||
display: block;
|
||
font-size: 32rpx;
|
||
color: #262B37;
|
||
line-height: 56rpx;
|
||
text-align: left;
|
||
}
|
||
.mask button {
|
||
margin-top: 46rpx;
|
||
width: 266rpx;
|
||
height: 96rpx;
|
||
background: #8883F0;
|
||
border-radius: 52rpx 52rpx 52rpx 52rpx;
|
||
color: #fff;
|
||
text-align: center;
|
||
line-height: 96rpx;
|
||
}
|