@charset "UTF-8";
|
/**
|
* 这里是uni-app内置的常用样式变量
|
*
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
*
|
*/
|
/**
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
*
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
*/
|
/* 颜色变量 */
|
/* 行为相关颜色 */
|
/* 文字基本颜色 */
|
/* 背景颜色 */
|
/* 边框颜色 */
|
/* 尺寸变量 */
|
/* 文字尺寸 */
|
/* 图片尺寸 */
|
/* Border Radius */
|
/* 水平间距 */
|
/* 垂直间距 */
|
/* 透明度 */
|
/* 文章场景相关 */
|
.box {
|
width: 100%;
|
height: 850rpx;
|
background: linear-gradient(180deg, #fd8b4d 50%, #fdb753);
|
}
|
.Fixed {
|
width: 100%;
|
height: 80rpx;
|
background-color: #fd8b4d;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
justify-content: space-between;
|
position: fixed;
|
left: 20;
|
right: 20;
|
bottom: 20;
|
}
|
.Fixed_left_txt {
|
margin-left: 286rpx;
|
color: #fff;
|
font-size: 16px;
|
font-weight: 400;
|
}
|
.Fixed_right {
|
display: flex;
|
}
|
.Fixed_right_sty {
|
display: flex;
|
flex-direction: column;
|
margin-right: 20px;
|
}
|
.Fixed_right_img {
|
width: 45rpx;
|
height: 45rpx;
|
}
|
.Fixed_right_txt {
|
color: #fff;
|
font-size: 12px;
|
}
|
.data {
|
display: flex;
|
justify-content: space-around;
|
padding-top: 102rpx;
|
margin-bottom: 40rpx;
|
}
|
.data_left {
|
width: 316rpx;
|
height: 700rpx;
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
}
|
.data_img {
|
width: 316rpx;
|
height: 600rpx;
|
}
|
.data_left_sty1 {
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
}
|
.data_left_txt1 {
|
font-size: 20px;
|
color: #fff;
|
}
|
.data_left_sty {
|
width: 180rpx;
|
height: 50rpx;
|
background-color: #f99235;
|
border-radius: 20px 20px 20px 20px;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
}
|
.data_left_txt2 {
|
font-size: 14px;
|
color: #fff;
|
}
|
.data_right {
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
justify-content: space-around;
|
width: 316rpx;
|
height: 700rpx;
|
background-color: #fff;
|
border-radius: 20px 20px 20px 20px;
|
}
|
.data_right_txt1 {
|
font-size: 18px;
|
}
|
.data_right_sty {
|
width: 316rpx;
|
display: flex;
|
justify-content: space-around;
|
}
|
.data_right_txt2 {
|
font-size: 14px;
|
}
|
.data_right_txt3 {
|
font-weight: 600;
|
}
|
.data_right_txt4 {
|
color: #f23f45;
|
font-size: 14px;
|
}
|
.data_right_txt5 {
|
color: #f23f45;
|
font-weight: 600;
|
}
|
.bottom {
|
height: 800px;
|
background-color: #ffffff;
|
}
|
.example-body {
|
flex-direction: column;
|
flex: 1;
|
}
|
.content {
|
padding: 15px;
|
}
|
.text1 {
|
font-size: 14px;
|
font-weight: 600;
|
}
|
.text2 {
|
font-size: 12px;
|
color: #8a8a8a;
|
}
|
.text3 {
|
font-size: 12px;
|
color: #1d6ebf;
|
}
|
.img {
|
width: 10px;
|
height: 10px;
|
}
|