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.
 
 
 
 

140 lines
3.0 KiB

@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.huanse {
background-color: #5187EE;
}
.fanhui {
position: fixed;
left: 35rpx;
top: 90rpx;
width: 72rpx;
height: 72rpx;
background-color: #ffffff;
box-shadow: 0rpx 4rpx 16rpx 2rpx rgba(37, 43, 80, 0.12);
border-radius: 16rpx;
display: flex;
align-items: center;
justify-content: center;
}
.fanhui > image {
width: 40rpx;
height: 40rpx;
}
.content_box .box_item {
display: flex;
background-color: #F8FAFF;
padding: 15rpx;
padding-left: 40rpx;
box-sizing: border-box;
justify-content: space-between;
}
.content_box .box_item .itemtitle {
width: 212rpx;
}
.content_box .box_item .itemtitle image {
width: 18rpx;
height: 18rpx;
margin-right: 15rpx;
}
.content_box .box_item .itemtitle text {
color: #9296AF;
font-size: 28rpx;
}
.content_box .box_item .itemcontent {
width: 380rpx;
}
.content_box > view:nth-of-type(2) {
display: flex;
flex-direction: column;
margin-top: 30rpx;
}
.content_box > view:nth-of-type(2) > text {
color: #252B50;
font-size: 32rpx;
font-weight: bold;
margin-bottom: 20rpx;
}
.xiantiao {
width: 56rpx;
margin: 0 auto;
margin-bottom: 20rpx;
}
.xiantiao image {
width: 48rpx;
height: 40rpx;
}
.henxiang {
width: 100%;
white-space: nowrap;
box-sizing: border-box;
margin-bottom: 15rpx;
}
.henxiang .scrollbox {
display: flex;
align-items: center;
}
.henxiang .scrollbox > view {
margin: 0 40rpx;
display: flex;
flex-direction: column;
align-items: center;
font-size: 28rpx;
}
.henxiang .scrollbox > view > view {
color: #252B50;
}
.henxiang .scrollbox > view > view:nth-of-type(2) {
width: 54rpx;
height: 8rpx;
margin-top: 10rpx;
}
.box {
width: 96%;
min-height: 40vh;
position: fixed;
background-color: #ffffff;
bottom: 0rpx;
left: 50%;
-webkit-transform: translate(-50%);
transform: translate(-50%);
transition: all .5s;
padding: 30rpx;
box-sizing: border-box;
border-radius: 10rpx 10rpx 0rpx 0rpx;
}
.boxsave {
overflow: hidden;
overflow-y: scroll;
}
.boxsave::-webkit-scrollbar {
display: none;
}
.maps {
width: 100%;
height: 100vh;
}