252 lines
6.3 KiB
Plaintext
252 lines
6.3 KiB
Plaintext
@charset "UTF-8";
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
@-webkit-keyframes example1 {
|
||
0% {
|
||
-webkit-transform: translate(-100px);
|
||
transform: translate(-100px);
|
||
opacity: 0;
|
||
}
|
||
50% {
|
||
-webkit-transform: translate();
|
||
transform: translate();
|
||
opacity: 0.5;
|
||
}
|
||
100% {
|
||
-webkit-transform: translate(0);
|
||
transform: translate(0);
|
||
}
|
||
}
|
||
@keyframes example1 {
|
||
0% {
|
||
-webkit-transform: translate(-100px);
|
||
transform: translate(-100px);
|
||
opacity: 0;
|
||
}
|
||
50% {
|
||
-webkit-transform: translate();
|
||
transform: translate();
|
||
opacity: 0.5;
|
||
}
|
||
100% {
|
||
-webkit-transform: translate(0);
|
||
transform: translate(0);
|
||
}
|
||
}
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* uni.scss */
|
||
/* 颜色变量 */
|
||
/* 主要颜色 */
|
||
/* 文本颜色 */
|
||
/* 其它颜色 */
|
||
.guide_pages_swiper {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100vw;
|
||
height: 100vh;
|
||
background-color: #000;
|
||
z-index: 10000;
|
||
}
|
||
.guide_pages_swiper image {
|
||
width: 100vw;
|
||
height: 100vh;
|
||
}
|
||
.guide_pages_swiper .guide_pages_bg1 {
|
||
width: 100vw;
|
||
height: 100vh;
|
||
background: url(/static/icon/e_0ban_1.png) no-repeat bottom center;
|
||
background-size: cover;
|
||
display: -webkit-box;
|
||
display: -webkit-flex;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-webkit-align-items: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-webkit-justify-content: center;
|
||
justify-content: center;
|
||
color: #000;
|
||
font-size: 46rpx;
|
||
font-weight: bold;
|
||
line-height: 80rpx;
|
||
}
|
||
.guide_pages_swiper .guide_pages_bg2 {
|
||
width: 100vw;
|
||
height: 100vh;
|
||
background: url(/static/icon/e_0ban_2.jpg) no-repeat;
|
||
background-size: cover;
|
||
display: -webkit-box;
|
||
display: -webkit-flex;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-webkit-align-items: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-webkit-justify-content: center;
|
||
justify-content: center;
|
||
color: #fff;
|
||
font-size: 46rpx;
|
||
font-weight: bold;
|
||
line-height: 80rpx;
|
||
}
|
||
.guide_pages_swiper .guide_pages_bg3 {
|
||
width: 100vw;
|
||
height: 100vh;
|
||
background: url(/static/icon/e_0ban_3.png) no-repeat;
|
||
background-size: cover;
|
||
display: -webkit-box;
|
||
display: -webkit-flex;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-webkit-align-items: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-webkit-justify-content: center;
|
||
justify-content: center;
|
||
color: #fff;
|
||
font-size: 46rpx;
|
||
font-weight: bold;
|
||
line-height: 80rpx;
|
||
}
|
||
.guide_pages_swiper .guide_pages_bg4 {
|
||
width: 100vw;
|
||
height: 100vh;
|
||
background: url(/static/icon/e_0ban_4.jpg) no-repeat;
|
||
background-size: cover;
|
||
display: -webkit-box;
|
||
display: -webkit-flex;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-webkit-align-items: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-webkit-justify-content: center;
|
||
justify-content: center;
|
||
color: #fff;
|
||
font-size: 46rpx;
|
||
font-weight: bold;
|
||
line-height: 80rpx;
|
||
}
|
||
.guide_pages_swiper .guide_pages_close {
|
||
border: 2rpx solid #000;
|
||
color: #000;
|
||
line-height: 68rpx;
|
||
height: 68rpx;
|
||
}
|
||
.guide_pages_swiper .close_btj {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
width: 290rpx;
|
||
height: 68rpx;
|
||
-webkit-transform: translateX(-50%) translateY(438rpx);
|
||
transform: translateX(-50%) translateY(438rpx);
|
||
background-color: transparent;
|
||
}
|
||
.guide_pages_swiper .close_1624 {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
width: 290rpx;
|
||
height: 68rpx;
|
||
background-color: transparent;
|
||
-webkit-transform: translateX(-50%) translateY(412rpx);
|
||
transform: translateX(-50%) translateY(412rpx);
|
||
}
|
||
.title {
|
||
font-family: PangMenZhengDaoBiaoTiTiMianFeiBan;
|
||
font-weight: normal;
|
||
font-size: 46rpx;
|
||
color: #3AB3AE;
|
||
background-color: #f5f5f5;
|
||
padding: 20rpx;
|
||
border-top-left-radius: 6px;
|
||
border-top-right-radius: 6px;
|
||
}
|
||
.aui-text-success {
|
||
color: #3AB3AE;
|
||
}
|
||
.popup_box {
|
||
padding-bottom: 20rpx;
|
||
width: 85vw;
|
||
overflow: hidden;
|
||
position: relative;
|
||
height: auto;
|
||
}
|
||
.popup_box .content {
|
||
font-size: 32rpx;
|
||
letter-spacing: 0.15rpx;
|
||
padding: 20rpx;
|
||
color: #3f3f3f;
|
||
}
|
||
.popup_box .content .top {
|
||
margin: 30rpx 0;
|
||
}
|
||
.popup_box .content .center {
|
||
line-height: 40rpx;
|
||
}
|
||
.popup_box .content .bottom {
|
||
width: 100%;
|
||
margin-top: 60rpx;
|
||
font-size: 28rpx;
|
||
line-height: 32rpx;
|
||
color: #b0b0b0;
|
||
}
|
||
.button_box {
|
||
display: -webkit-box;
|
||
display: -webkit-flex;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-webkit-align-items: center;
|
||
align-items: center;
|
||
-webkit-box-pack: justify;
|
||
-webkit-justify-content: space-between;
|
||
justify-content: space-between;
|
||
margin-top: 20rpx;
|
||
}
|
||
.button_box .u-button {
|
||
margin-left: 40rpx;
|
||
}
|
||
.button_box .u-button:nth-child(1) {
|
||
margin-left: 0;
|
||
}
|
||
.uni-swiper-dot-active {
|
||
color: #3AB3AE !important;
|
||
}
|
||
|