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.
|
|
|
@charset "UTF-8";
|
|
|
|
/**
|
|
|
|
* 这里是uni-app内置的常用样式变量
|
|
|
|
*
|
|
|
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
|
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
|
|
*
|
|
|
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
|
|
*/
|
|
|
|
/* 颜色变量 */
|
|
|
|
/* 行为相关颜色 */
|
|
|
|
/* 文字基本颜色 */
|
|
|
|
/* 背景颜色 */
|
|
|
|
/* 边框颜色 */
|
|
|
|
/* 尺寸变量 */
|
|
|
|
/* 文字尺寸 */
|
|
|
|
/* 图片尺寸 */
|
|
|
|
/* Border Radius */
|
|
|
|
/* 水平间距 */
|
|
|
|
/* 垂直间距 */
|
|
|
|
/* 透明度 */
|
|
|
|
/* 文章场景相关 */
|
|
|
|
/* 字体大小 */
|
|
|
|
.font12 {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.font13 {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
.font14 {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.font15 {
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
.font16 {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
.font18 {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
.font20 {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
.font24 {
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
.font28 {
|
|
|
|
font-size: 28px;
|
|
|
|
}
|
|
|
|
.fontwig6 {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
/* 字体间距 */
|
|
|
|
.fontspec {
|
|
|
|
letter-spacing: 1px;
|
|
|
|
}
|
|
|
|
/* 字体行间距 */
|
|
|
|
.linehet {
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
/* 字体位置 */
|
|
|
|
.fotlt {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.fotrt {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.fotct {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.margle {
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
.marglerig {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
.verc {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.versub {
|
|
|
|
vertical-align: sub;
|
|
|
|
}
|
|
|
|
.text1 {
|
|
|
|
overflow: hidden;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 1;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
.text2 {
|
|
|
|
overflow: hidden;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
/* 字体颜色 */
|
|
|
|
.fcor333 {
|
|
|
|
color: #333333;
|
|
|
|
}
|
|
|
|
.fcorfff {
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
.fcor666 {
|
|
|
|
color: #666666;
|
|
|
|
}
|
|
|
|
.fcor999 {
|
|
|
|
color: #b2b2b2;
|
|
|
|
}
|
|
|
|
.fcor089 {
|
|
|
|
color: #089bf5;
|
|
|
|
}
|
|
|
|
.fcoreb5 {
|
|
|
|
color: #eb5823;
|
|
|
|
}
|
|
|
|
.fcorred {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
.fcor41c {
|
|
|
|
color: #41cda2;
|
|
|
|
}
|
|
|
|
/* 背景颜色 */
|
|
|
|
.backcor9 {
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
}
|
|
|
|
.backcor9 {
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
}
|
|
|
|
.backcorf06 {
|
|
|
|
background-color: #f06c7a;
|
|
|
|
}
|
|
|
|
.backcor89 {
|
|
|
|
background-color: #089bf5;
|
|
|
|
}
|
|
|
|
.backcorfff {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
.backshare {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
/* 页面布局 */
|
|
|
|
.width90 {
|
|
|
|
width: 90%;
|
|
|
|
margin-left: 5%;
|
|
|
|
}
|
|
|
|
.width80 {
|
|
|
|
width: 80%;
|
|
|
|
margin-left: 10%;
|
|
|
|
}
|
|
|
|
.width70 {
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
.width15 {
|
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
.width50 {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
.width60 {
|
|
|
|
width: 65%;
|
|
|
|
margin-left: 5%;
|
|
|
|
}
|
|
|
|
.width30 {
|
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
.width95 {
|
|
|
|
width: 95%;
|
|
|
|
}
|
|
|
|
.width100 {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.bor-botm1 {
|
|
|
|
border-bottom: 1px solid #f4f4f4;
|
|
|
|
}
|
|
|
|
/* 高40px */
|
|
|
|
.height45 {
|
|
|
|
height: 45px;
|
|
|
|
}
|
|
|
|
.height40 {
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
.height22 {
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
.height100 {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.height10 {
|
|
|
|
height: 10px;
|
|
|
|
}
|
|
|
|
.height60 {
|
|
|
|
height: 60px;
|
|
|
|
}
|
|
|
|
.height30 {
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
.height40 {
|
|
|
|
height: 40px;
|
|
|
|
line-height: 40px;
|
|
|
|
}
|
|
|
|
.height20 {
|
|
|
|
height: 20px;
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
.height50 {
|
|
|
|
height: 50px;
|
|
|
|
line-height: 50px;
|
|
|
|
}
|
|
|
|
/* 向上下外间距 */
|
|
|
|
.mart90 {
|
|
|
|
margin-top: 90px;
|
|
|
|
}
|
|
|
|
.mart60 {
|
|
|
|
margin-top: 60px;
|
|
|
|
}
|
|
|
|
.mart50 {
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
.mart40 {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
.mart30 {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
.mart15 {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
.mart20 {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
.mart10 {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.mart5 {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
.marb65 {
|
|
|
|
margin-bottom: 65px;
|
|
|
|
}
|
|
|
|
.marb50 {
|
|
|
|
margin-bottom: 50px;
|
|
|
|
}
|
|
|
|
.marb40 {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
.marb30 {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
.marb20 {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.marb10 {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.marb5 {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
/* 向上下内间距 */
|
|
|
|
.paddtop10 {
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
.paading10 {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
.paddtop13 {
|
|
|
|
padding-top: 13px;
|
|
|
|
}
|
|
|
|
.paddleft10 {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
.padleft15 {
|
|
|
|
padding-left: 15px;
|
|
|
|
}
|
|
|
|
.paddtright10 {
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
.paddbotm10 {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
/* 左悬浮 */
|
|
|
|
.flleft {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
/* 右悬浮 */
|
|
|
|
.flright {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
/* button样式 */
|
|
|
|
.btnw70 {
|
|
|
|
width: 70%;
|
|
|
|
color: white;
|
|
|
|
margin-top: 40px;
|
|
|
|
background-color: #089bf5;
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
/* 下滑线 */
|
|
|
|
.line1 {
|
|
|
|
height: 1px;
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
}
|
|
|
|
.line10 {
|
|
|
|
height: 10px;
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
}
|
|
|
|
.line1089 {
|
|
|
|
height: 10px;
|
|
|
|
background-color: #089bf5;
|
|
|
|
}
|
|
|
|
/* 展示样式 */
|
|
|
|
.displ {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
/*每个页面公共css */
|
|
|
|
@font-face {
|
|
|
|
font-family: 'HM-font';
|
|
|
|
src: url("data:application/x-font-woff2;charset=utf-8;base64,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
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
font-family: 'HM-font' !important;
|
|
|
|
font-size: 60rpx;
|
|
|
|
font-style: normal;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
.icon.yuyin-home:before {
|
|
|
|
content: '\e64e';
|
|
|
|
}
|
|
|
|
.icon.tongzhi:before {
|
|
|
|
content: '\e729';
|
|
|
|
}
|
|
|
|
.icon.search:before {
|
|
|
|
content: '\e628';
|
|
|
|
}
|
|
|
|
.icon.location:before {
|
|
|
|
content: '\e611';
|
|
|
|
}
|
|
|
|
.icon.xia:before {
|
|
|
|
content: '\e689';
|
|
|
|
}
|
|
|
|
.icon.bofang:before {
|
|
|
|
content: '\e696';
|
|
|
|
}
|
|
|
|
.icon.guanbi:before {
|
|
|
|
content: '\e61a';
|
|
|
|
}
|
|
|
|
.icon.fenxiang:before {
|
|
|
|
content: '\e642';
|
|
|
|
}
|
|
|
|
.icon.xiangqian:before {
|
|
|
|
content: '\e634';
|
|
|
|
}
|
|
|
|
.icon.xiangyou:before {
|
|
|
|
content: '\e637';
|
|
|
|
}
|
|
|
|
.icon.shoucangsel:before {
|
|
|
|
content: '\e62c';
|
|
|
|
}
|
|
|
|
.icon.shoucang:before {
|
|
|
|
content: '\e62e';
|
|
|
|
}
|
|
|
|
.icon.kefu:before {
|
|
|
|
content: '\e61e';
|
|
|
|
}
|
|
|
|
.icon.cart:before {
|
|
|
|
content: '\e619';
|
|
|
|
}
|
|
|
|
.icon.jia:before {
|
|
|
|
content: '\e641';
|
|
|
|
}
|
|
|
|
.icon.jian:before {
|
|
|
|
content: '\e643';
|
|
|
|
}
|
|
|
|
.icon.sheng:before {
|
|
|
|
content: '\e737';
|
|
|
|
}
|
|
|
|
.icon.jiang:before {
|
|
|
|
content: '\e736';
|
|
|
|
}
|
|
|
|
.icon.weixin:before {
|
|
|
|
content: '\e61c';
|
|
|
|
}
|
|
|
|
.icon.qq:before {
|
|
|
|
content: '\e752';
|
|
|
|
}
|
|
|
|
.icon.sinaweibo:before {
|
|
|
|
content: '\e63d';
|
|
|
|
}
|
|
|
|
.icon.xiaomi:before {
|
|
|
|
content: '\e661';
|
|
|
|
}
|
|
|
|
.icon.biaoqing:before {
|
|
|
|
content: '\e797';
|
|
|
|
}
|
|
|
|
.icon.jianpan:before {
|
|
|
|
content: '\e7b2';
|
|
|
|
}
|
|
|
|
.icon.yuyin:before {
|
|
|
|
content: '\e805';
|
|
|
|
}
|
|
|
|
.icon.tupian:before {
|
|
|
|
content: '\e639';
|
|
|
|
}
|
|
|
|
.icon.chehui:before {
|
|
|
|
content: '\e904';
|
|
|
|
}
|
|
|
|
.icon.luyin:before {
|
|
|
|
content: '\e905';
|
|
|
|
}
|
|
|
|
.icon.luyin2:before {
|
|
|
|
content: '\e677';
|
|
|
|
}
|
|
|
|
.icon.other-voice:before {
|
|
|
|
content: '\e667';
|
|
|
|
}
|
|
|
|
.icon.my-voice:before {
|
|
|
|
content: '\e906';
|
|
|
|
}
|
|
|
|
.icon.shanchu:before {
|
|
|
|
content: '\e6a4';
|
|
|
|
}
|
|
|
|
.icon.setting:before {
|
|
|
|
content: '\e64f';
|
|
|
|
}
|
|
|
|
.icon.qr:before {
|
|
|
|
content: '\e600';
|
|
|
|
}
|
|
|
|
.icon.chongzhi:before {
|
|
|
|
content: '\e648';
|
|
|
|
}
|
|
|
|
.icon.fukuan:before {
|
|
|
|
content: '\e67f';
|
|
|
|
}
|
|
|
|
.icon.fahuo:before {
|
|
|
|
content: '\e680';
|
|
|
|
}
|
|
|
|
.icon.shouhuo:before {
|
|
|
|
content: '\e6b1';
|
|
|
|
}
|
|
|
|
.icon.pingjia:before {
|
|
|
|
content: '\e66b';
|
|
|
|
}
|
|
|
|
.icon.tuihuo:before {
|
|
|
|
content: '\e66c';
|
|
|
|
}
|
|
|
|
.icon.bianji:before {
|
|
|
|
content: '\e61b';
|
|
|
|
}
|
|
|
|
.icon.tianjia:before {
|
|
|
|
content: '\e81a';
|
|
|
|
}
|
|
|
|
.icon.shixiao:before {
|
|
|
|
content: '\e669';
|
|
|
|
}
|
|
|
|
|