/*!
 * @名称：base.css
 * @功能：1、重设浏览器默认样式
 *       2、设置通用原子类
 */
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
#app{
    height: 100%;
}
html {
    /*标准字体大小设置 14 像素「rem 参照对象」*/
    font-size: 14px;
    /*滚动事件发生在 html 元素上；JS 中可以监听 html 的滚动*/
    overflow-y: auto;
    /*让 html 和浏览器窗口高度一致*/
    height: 100%;
    /*少数浏览器默认背景色为浅灰色，所以设置默认背景颜色为纯白*/
    background-color: #fff;
}
html, body {
    /*body 宽度大 html 度时，某些浏览器会出现内部滚动条；所以设置「html、body」宽度相同且「overflow-x: hidden」*/
    overflow-x: hidden;
    width: 100%;
    /*取消部分浏览器点击有阴影*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*优化移动端滚动事件*/
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    margin:0;
    padding:0;
}
body {
    /*设置基本字体配置*/
    font: 1rem 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft Yahei', Arial, sans-serif;
    /*让绝对定位元素，根据 body 定位*/
    position: relative;
    /*设置网页基本字体颜色为浅灰色*/
    color: #666;
    /*使字体渲染更顺滑*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
input,select,textarea {
    font-size:100%;
}
textarea {
    /*textarea 默认不可以放缩*/
    resize: none;
}
/* 去掉 table cell 的边距并让其边重合 */
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* ie bug：th 不继承 text-align */
th {
    text-align:inherit;
}
/* 去除默认边框 */
fieldset,img {
    border:none;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display:block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,acronym {
    border:none;
    font-variant:normal;
}
/* 一致的 del 样式 */
del {
    text-decoration:line-through;
}
address,caption,cite,code,dfn,em,th,var {
    font-style:normal;
    font-weight:500;
}
/* 去掉列表前的标识，li 会继承 */
ol,ul {
    list-style:none;
}
/* 对齐是排版最重要的因素，别让什么都居中 */
caption,th {
    text-align:left;
}
/* 来自yahoo，让标题都自定义，适应多个系统应用 */
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:500;
}
q:before,q:after {
    content:'';
}
/* 统一上标和下标 */
sub,sup {
    font-size:75%;
    line-height:0;
    position:relative;
    vertical-align:baseline;
}
sup {
    top:-0.5em;
}
sub {
    bottom:-0.25em;
}
/* 让链接在 hover 状态下显示下划线 */
a:hover {
    text-decoration:underline;
    color:#0bb8b2;
}
/* 默认不显示下划线，保持页面简洁 */
ins,a {
    text-decoration:none;
}
/* 去除 ie6 & ie7 焦点点状线 */
a:focus,*:focus {
    outline:none;
}
/* 清除浮动 */
.clearfix:before,.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
    overflow:hidden;
}
.clearfix {
    zoom:1; /* for ie6 & ie7 */
}
.clear {
    clear:both;.mBg
    display:block;
    font-size:0;
    height:0;
    line-height:0;
    overflow:hidden;
}
/* 设置显示和隐藏，通常用来与 js 配合 */
.hide {
    display:none;
}
.block {
    display:block;
}
/* 设置浮动，减少浮动带来的 bug */
.fl,.fr {
    display:inline;
}
.fl {
    float:left;
}
.fr {
    float:right;
}
@charset "utf-8";
/* CSS Document */
body, ul, ol, dl, li, dd, h1, h2, h3, h4, h5, h6, p, input { margin: 0
}
a, h1, h2, h3, h4, h5, h6, input, select, button, option, textarea, optgroup {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    color: inherit;
    outline: none;
}
img { border: none
}
input, button, textarea {
    *font-size: 100%; border: none;
}
select {
    *font-size: 100%; border: none;
}
input {text-align: inherit;
}
body { background: #fff; color: #5e5e5e; font: 14px/24px Microsoft YaHei, SimSun, Arial;
}
ul, ol { list-style: none; padding: 0
}
table { border-collapse: collapse; border-spacing: 0 ;
}
/*默认a标签样式*/
a {text-decoration: none;
}
a:link, a:visited {  text-decoration: none;
}
a:hover { color: #0bb8b2; /*text-decoration: underline;*/
}
a:active { color: #666;
}
/*浮动和清除浮动*/
.fl { float: left
}
.fr { float: right
}
.clear { zoom: 1
}
.clear:after { content: ""; display: block; height: 0; visibility: visible; clear: both
}
/*显示隐藏*/
.hide { display: none
}
.show { display: block
}
/*表格table和td有边框*/
.boder_tl { border-top: 1px solid #ccc; border-left: 1px solid #ccc;
}
.boder_tl td { border-bottom: 1px solid #ccc; border-right: 1px solid #ccc;
}
.boder_bl { border-bottom: 1px solid #ccc; border-left: 1px solid #ccc;
}
.boder_bl td { border-top: 1px solid #ccc; border-right: 1px solid #ccc;
}
.boder_tr { border-top: 1px solid #ccc; border-right: 1px solid #ccc;
}
.boder_tr td { border-bottom: 1px solid #ccc; border-left: 1px solid #ccc;
}
.boder_br { border-bottom: 1px solid #ccc; border-right: 1px solid #ccc;
}
.boder_br td { border-top: 1px solid #ccc; border-left: 1px solid #ccc;
}
.txt_center { text-align: center;
}
/*表格table和tr有边框*/
.boder_ltr_trborder { border: 1px solid #ccc; border-bottom: none;
}
.boder_ltr_trborder tr { border-bottom: 1px solid #ccc;
}
/*鼠标经过是「小手」形状表示可点击*/
button, input[type='submit'], input[type='button'] {cursor: pointer;
}
/*取消部分浏览器数字输入控件的操作按钮*/
input[type='number'] {-moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
/*输入控件 placeholder 色设置 #999*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999;
}
template {
    /*由于部分浏览 template 会显示出来，所以要隐*/
    display: none;
}
.container{
    width:1190px;
    margin:auto;
}
.wto{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;
}
.hr{border-bottom:1px solid #eee;
}
.bgwhite{background-color:#fff;
}
.bgGray {
    background-color: #f2f2f2;
}
/*按钮*/
.primaryBtn{background-color: #0bb8b2;color:#fff;border:1px solid #0bb8b2;font-size: 16px;line-height: 46px;padding:0 30px;border-radius: 5px;display: inline-block;
}
.primaryBtn:hover{background-color:#0cc7c2; color:#fff;
}
.defaultBtn{background-color: #fff;border:1px solid #ddd;color:#666;font-size: 16px;line-height: 46px;padding:0 30px;border-radius: 5px;display: inline-block;
}
.defaultBtn:hover{background-color:#e4e4e4;
}
.submitBtn{width:100%;height: 46px;line-height: 46px;font-size: 16px;background-color: #0bb8b2;color:#fff;border:1px solid #0bb8b2;font-size: 16px;margin-top: 15px;border-radius: 5px;text-align: center;
}
.submitBtn:hover{background-color:#0cc7c2; color:#fff;
}
.loading{
    position: absolute;
    top: 100px;
    left: 50%;
    padding-right:60px;
    z-index: 10;
    font-size: 20px;
}
/*弹性盒模型*/
.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.f-wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.f-nowrap{
    -ms-flex-wrap:nowrap;
        flex-wrap:nowrap;
}
.j-bet{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.j-aro{
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.imgFix{
    vertical-align:middle;
    -o-object-fit: cover;
       object-fit: cover;
}
/*字体颜色*/
.colorGreen{
    color:#0bb8b2;
}
.colorPrice{
    color:#d4282d;
    /*#ff6600*/
}
.green{color:green;
}
.colorOrange{
    color:orange;
}
.color3{color:#333;
}
.color6{color:#666;
}
.color9{color:#999;
}
.bbGray{border-bottom:1px solid #ddd;
}
/*图片标准*/
.imgStandard{
    border:1px solid #f0f0f0;
    overflow: hidden;
    text-align: left;
    background: #fff;
    padding: 1px;
}
.imgStandard a{
    display:inline-block;
    width:100%;
    text-align:center;
}
.imgStandard a img{
    vertical-align:middle;
}
/*图片hover放大*/
.imgHover img{
    -webkit-transition: all .2s linear 0s;
    transition: all .2s linear 0s;
}
.imgHover:hover img{
    -webkit-transform: scale(1.1,1.1);
            transform: scale(1.1,1.1);
}
.f0{font-size: 0;
}
.f12{font-size:12px
}
.f13{font-size:13px
}
.f14{font-size:14px
}
.f16{font-size:16px
}
.f20{font-size:20px
}
.fb{font-weight:bold
}
.fn{font-weight:normal
}
.t2{text-indent:2em
}
.1h150{line-height:150%
}
.1h180{line-height:180%
}
.1h200{line-height:200%
}
.unl{text-decoration:underline;
}
.no_unl{text-decoration:none;
}
/*定位*/
.ofh{overflow:hidden;
}
.left0{left:0
}
.right0{right:0
}
.tl{text-align:left
}
.tc{text-align:center
}
.tr{text-align:right
}
.bc{margin-left:auto;margin-right:auto
}
.fl{float:left;display:inline
}
.fr{float:right;display:inline
}
.cb{clear:both
}
.cl{clear:left
}
.cr{clear:right
}
.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden
}
.clearfix{display:inline-block
}
*html

                                                                                                               .clearfix{height:1%
}
.Clearfix{display:block
}
.curPointer{cursor:pointer;
}
.vm{vertical-align:middle
}
.pr{position:relative
}
.pa{position:absolute
}
.abs-left{position: absolute;left:0;top:0;
}
.abs-right{position:absolute;right:0
}
.abs-r10{position:absolute;right:10px;
}
.abs-rt{position:absolute;right:0;top:0;
}
.abs-r15t{position:absolute;right:15px;top:0;
}
.abs-br{position:absolute;bottom:0px;right:0px;
}
.abs-bl{position:absolute;bottom:0px;left:0px;
}
.zoom{zoom:1
}
.hidden{visibility:hidden
}
.none{display:none
}
/*长度高度*/
.w10{width:10px
}
.w20{width:20px
}
.w30{width:30px
}
.w40{width:40px
}
.w50{width:50px
}
.w60{width:60px
}
.w70{width:70px
}
.w80{width:80px
}
.w90{width:90px
}
.w100{width:100px
}
.w200{width:200px
}
.w300{width:300px
}
.w400{width:400px
}
.w500{width:500px
}
.w600{width:600px
}
.w700{width:700px
}
.w800{width:800px
}
.w{width:100%
}
.h30{height:30px;
}
.h50{height:50px
}
.h80{height:80px
}
.h100{height:100px
}
.h200{height:200px
}
.h{height:100%
}
/*边距*/
.m10{margin:10px
}
.m15{margin:15px
}
.m30{margin:30px
}
.mt0{margin-top:0px
}
.mt5{margin-top:5px
}
.mt10{margin-top:10px
}
.mt15{margin-top:15px
}
.mt20{margin-top:20px
}
.mt30{margin-top:30px
}
.mt35{margin-top:35px
}
.mt40{margin-top:40px;
}
.mt50{margin-top:50px
}
.mt60{margin-top:60px
}
.mt100{margin-top:100px
}
.mb0{margin-bottom:0px;
}
.mb5{margin-bottom:5px
}
.mb10{margin-bottom:10px
}
.mb15{margin-bottom:15px
}
.mb20{margin-bottom:20px
}
.mb30{margin-bottom:30px
}
.mb50{margin-bottom:50px
}
.mb100{margin-bottom:100px
}
.ml5{margin-left:5px
}
.ml10{margin-left:10px
}
.ml15{margin-left:15px
}
.ml20{margin-left:20px
}
.ml25{margin-left:25px
}
.ml30{margin-left:30px
}
.ml35{margin-left:35px
}
.ml40{margin-left:40px
}
.ml50{margin-left:50px
}
.ml100{margin-left:100px
}
.mr5{margin-right:5px
}
.mr10{margin-right:10px
}
.mr15{margin-right:15px
}
.mr20{margin-right:20px
}
.mr30{margin-right:30px
}
.mr50{margin-right:50px
}
.mr100{margin-right:100px
}
.mg0{margin:0;
}
.p10{padding:10px
}
.p15{padding:15px
}
.p30{padding:30px
}
.pt0{padding-top:0px;
}
.pt5{padding-top:5px
}
.pt10{padding-top:10px
}
.pt15{padding-top:15px
}
.pt20{padding-top:20px
}
.pt30{padding-top:30px
}
.pt50{padding-top:50px
}
.pb5{padding-bottom:5px
}
.pb10{padding-bottom:10px
}
.pb15{padding-bottom:15px
}
.pb20{padding-bottom:20px
}
.pb30{padding-bottom:30px
}
.pb50{padding-bottom:50px
}
.pb100{padding-bottom:100px
}
.pl5{padding-left:5px
}
.pl10{padding-left:10px
}
.pl15{padding-left:15px
}
.pl20{padding-left:20px
}
.pl30{padding-left:30px
}
.pl50{padding-left:50px
}
.pl100{padding-left:100px
}
.pr5{padding-right:5px
}
.pr10{padding-right:10px
}
.pr15{padding-right:15px
}
.pr20{padding-right:20px
}
.pr30{padding-right:30px
}
.pr50{padding-right:50px
}
.pr100{padding-right:100px
}
.pl0{padding-left: 0px;
}
.pr0{padding-right:0px;
}
.pd0{padding:0;
}
/*面包栏*/
/*.breadCrumb{*/
/*    width:100%;*/
/*    margin-bottom: 10px;*/
/*}*/
/*.breadCrumb li{*/
/*    display: inline-block;*/
/*}*/
/*.breadCrumb li a{*/
/*    color:#666;*/
/*}*/
/*.breadCrumb li a:hover{*/
/*    color:#0bb8b2;*/
/*}*/
/*.breadCrumb li:last-child a:hover{*/
/*    cursor: default;*/
/*    color:#666;*/
/*}*/
/*用户中心*/
#unIndex{padding:10px 0;
}
.ucBg{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;
}
.ucMenu{width:160px;min-height:500px;-ms-flex-negative: 0;flex-shrink: 0;border-radius: 3px;background-color: #fff;padding:15px;
}
.ucPanel{width:1000px;min-height:500px;-ms-flex-negative: 1;flex-shrink: 1;margin-left:30px;
}
.ucP_Box{border-radius: 3px;background-color: #fff;padding:15px;
}
.ucM_tit{font-size:14px;font-weight: bold;color:#333;margin-bottom: 10px;
}
.ucM_item{height: 40px;display: inline-block;
}
.ucM_item a{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;color:#0e79cc;color:#666;
}
.umM_icon{width:20px;height:20px;-ms-flex-negative: 0;flex-shrink: 0;
}
.ucM_item a span{width:100%;-ms-flex-negative: 1;flex-shrink: 1;padding-left: 10px;
}
.ucGreenTit{font-size: 16px;font-weight:bold;color:#333;padding-left:10px;border-left: 5px solid #0bb8b2;margin-bottom:10px;height: 30px;line-height: 30px;
}
/*.ucTitNav{*/
/*    display:flex;*/
/*    flex-wrap: nowrap;*/
/*    justify-content: space-between;*/
/*}*/
/*.ucTitNav span{*/
/*    font-size: 16px;*/
/*    font-weight: bold;*/
/*    color: #333;*/
/*    padding-left: 10px;*/
/*    border-left: 5px solid #0bb8b2;*/
/*    margin:5px;*/
/*    line-height: 30px;*/
/*}*/
/*显示两行*/
/*overflow: hidden;*/
/*text-overflow: ellipsis;*/
/*display: -webkit-box;*/
/*-webkit-line-clamp: 2;*/
/*-webkit-box-orient: vertical;*/
/*拉起弹框*/
/*.g-drawer .el-drawer{*/
/*    min-height: px2rem(800);*/
/*}*/
/*.g-drawer .el-drawer__header{*/
/*    padding:px2rem(20);*/
/*    margin-bottom: 0;*/
/*}*/


#webfoot[data-v-3537496e]{height: auto;
}
.bg1[data-v-3537496e]{
    background-color:#202020;
    padding:20px 0;
    margin:0 auto;
}
.bgNum[data-v-3537496e]{
    background-color:#0bb8b2;
    color:#fff;
    font-size:24px;
    font-weight: bold;
    width:42px;
    height:42px;
    border-radius: 100px;
    text-align: center;
    line-height: 42px;
}
.bgInfo[data-v-3537496e]{
    padding-left: 10px;
}
.bgInfo h2[data-v-3537496e]{
    color:#fff;
    font-size:16px;
    font-weight: bold;
}
.bgInfo p[data-v-3537496e]{
    color:#999;
}
.bg2[data-v-3537496e]{
    background-color:#111111;
    padding:20px 0;
    margin:0 auto;
    text-align: center;
}
.bgLink[data-v-3537496e]{
    margin-bottom:15px;
}
.bgLink a[data-v-3537496e]{
    color:#999;
    padding:0 15px;
}
.bgText[data-v-3537496e]{
    color:#666;
}
.bgText a[data-v-3537496e]{
    color:#0e79cc;
}

/*!
 * @名称：base.css
 * @功能：1、重设浏览器默认样式
 *       2、设置通用原子类
 */
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
#app{
    height: 100%;
}
html {
    /*标准字体大小设置 14 像素「rem 参照对象」*/
    font-size: 14px;
    /*滚动事件发生在 html 元素上；JS 中可以监听 html 的滚动*/
    overflow-y: auto;
    /*让 html 和浏览器窗口高度一致*/
    height: 100%;
    /*少数浏览器默认背景色为浅灰色，所以设置默认背景颜色为纯白*/
    background-color: #fff;
}
html, body {
    /*body 宽度大 html 度时，某些浏览器会出现内部滚动条；所以设置「html、body」宽度相同且「overflow-x: hidden」*/
    overflow-x: hidden;
    width: 100%;
    /*取消部分浏览器点击有阴影*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*优化移动端滚动事件*/
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    margin:0;
    padding:0;
}
body {
    /*设置基本字体配置*/
    font: 1rem 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft Yahei', Arial, sans-serif;
    /*让绝对定位元素，根据 body 定位*/
    position: relative;
    /*设置网页基本字体颜色为浅灰色*/
    color: #666;
    /*使字体渲染更顺滑*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
input,select,textarea {
    font-size:100%;
}
textarea {
    /*textarea 默认不可以放缩*/
    resize: none;
}
/* 去掉 table cell 的边距并让其边重合 */
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* ie bug：th 不继承 text-align */
th {
    text-align:inherit;
}
/* 去除默认边框 */
fieldset,img {
    border:none;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display:block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,acronym {
    border:none;
    font-variant:normal;
}
/* 一致的 del 样式 */
del {
    text-decoration:line-through;
}
address,caption,cite,code,dfn,em,th,var {
    font-style:normal;
    font-weight:500;
}
/* 去掉列表前的标识，li 会继承 */
ol,ul {
    list-style:none;
}
/* 对齐是排版最重要的因素，别让什么都居中 */
caption,th {
    text-align:left;
}
/* 来自yahoo，让标题都自定义，适应多个系统应用 */
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:500;
}
q:before,q:after {
    content:'';
}
/* 统一上标和下标 */
sub,sup {
    font-size:75%;
    line-height:0;
    position:relative;
    vertical-align:baseline;
}
sup {
    top:-0.5em;
}
sub {
    bottom:-0.25em;
}
/* 让链接在 hover 状态下显示下划线 */
a:hover {
    text-decoration:underline;
    color:#0bb8b2;
}
/* 默认不显示下划线，保持页面简洁 */
ins,a {
    text-decoration:none;
}
/* 去除 ie6 & ie7 焦点点状线 */
a:focus,*:focus {
    outline:none;
}
/* 清除浮动 */
.clearfix:before,.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
    overflow:hidden;
}
.clearfix {
    zoom:1; /* for ie6 & ie7 */
}
.clear {
    clear:both;.mBg
    display:block;
    font-size:0;
    height:0;
    line-height:0;
    overflow:hidden;
}
/* 设置显示和隐藏，通常用来与 js 配合 */
.hide {
    display:none;
}
.block {
    display:block;
}
/* 设置浮动，减少浮动带来的 bug */
.fl,.fr {
    display:inline;
}
.fl {
    float:left;
}
.fr {
    float:right;
}
@charset "utf-8";
/* CSS Document */
body, ul, ol, dl, li, dd, h1, h2, h3, h4, h5, h6, p, input { margin: 0
}
a, h1, h2, h3, h4, h5, h6, input, select, button, option, textarea, optgroup {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    color: inherit;
    outline: none;
}
img { border: none
}
input, button, textarea {
    *font-size: 100%; border: none;
}
select {
    *font-size: 100%; border: none;
}
input {text-align: inherit;
}
body { background: #fff; color: #5e5e5e; font: 14px/24px Microsoft YaHei, SimSun, Arial;
}
ul, ol { list-style: none; padding: 0
}
table { border-collapse: collapse; border-spacing: 0 ;
}
/*默认a标签样式*/
a {text-decoration: none;
}
a:link, a:visited {  text-decoration: none;
}
a:hover { color: #0bb8b2; /*text-decoration: underline;*/
}
a:active { color: #666;
}
/*浮动和清除浮动*/
.fl { float: left
}
.fr { float: right
}
.clear { zoom: 1
}
.clear:after { content: ""; display: block; height: 0; visibility: visible; clear: both
}
/*显示隐藏*/
.hide { display: none
}
.show { display: block
}
/*表格table和td有边框*/
.boder_tl { border-top: 1px solid #ccc; border-left: 1px solid #ccc;
}
.boder_tl td { border-bottom: 1px solid #ccc; border-right: 1px solid #ccc;
}
.boder_bl { border-bottom: 1px solid #ccc; border-left: 1px solid #ccc;
}
.boder_bl td { border-top: 1px solid #ccc; border-right: 1px solid #ccc;
}
.boder_tr { border-top: 1px solid #ccc; border-right: 1px solid #ccc;
}
.boder_tr td { border-bottom: 1px solid #ccc; border-left: 1px solid #ccc;
}
.boder_br { border-bottom: 1px solid #ccc; border-right: 1px solid #ccc;
}
.boder_br td { border-top: 1px solid #ccc; border-left: 1px solid #ccc;
}
.txt_center { text-align: center;
}
/*表格table和tr有边框*/
.boder_ltr_trborder { border: 1px solid #ccc; border-bottom: none;
}
.boder_ltr_trborder tr { border-bottom: 1px solid #ccc;
}
/*鼠标经过是「小手」形状表示可点击*/
button, input[type='submit'], input[type='button'] {cursor: pointer;
}
/*取消部分浏览器数字输入控件的操作按钮*/
input[type='number'] {-moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
/*输入控件 placeholder 色设置 #999*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999;
}
template {
    /*由于部分浏览 template 会显示出来，所以要隐*/
    display: none;
}
.container{
    width:1190px;
    margin:auto;
}
.wto{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;
}
.hr{border-bottom:1px solid #eee;
}
.bgwhite{background-color:#fff;
}
.bgGray {
    background-color: #f2f2f2;
}
/*按钮*/
.primaryBtn{background-color: #0bb8b2;color:#fff;border:1px solid #0bb8b2;font-size: 16px;line-height: 46px;padding:0 30px;border-radius: 5px;display: inline-block;
}
.primaryBtn:hover{background-color:#0cc7c2; color:#fff;
}
.defaultBtn{background-color: #fff;border:1px solid #ddd;color:#666;font-size: 16px;line-height: 46px;padding:0 30px;border-radius: 5px;display: inline-block;
}
.defaultBtn:hover{background-color:#e4e4e4;
}
.submitBtn{width:100%;height: 46px;line-height: 46px;font-size: 16px;background-color: #0bb8b2;color:#fff;border:1px solid #0bb8b2;font-size: 16px;margin-top: 15px;border-radius: 5px;text-align: center;
}
.submitBtn:hover{background-color:#0cc7c2; color:#fff;
}
.loading{
    position: absolute;
    top: 100px;
    left: 50%;
    padding-right:60px;
    z-index: 10;
    font-size: 20px;
}
/*弹性盒模型*/
.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.f-wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.f-nowrap{
    -ms-flex-wrap:nowrap;
        flex-wrap:nowrap;
}
.j-bet{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.j-aro{
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.imgFix{
    vertical-align:middle;
    -o-object-fit: cover;
       object-fit: cover;
}
/*字体颜色*/
.colorGreen{
    color:#0bb8b2;
}
.colorPrice{
    color:#d4282d;
    /*#ff6600*/
}
.green{color:green;
}
.colorOrange{
    color:orange;
}
.color3{color:#333;
}
.color6{color:#666;
}
.color9{color:#999;
}
.bbGray{border-bottom:1px solid #ddd;
}
/*图片标准*/
.imgStandard{
    border:1px solid #f0f0f0;
    overflow: hidden;
    text-align: left;
    background: #fff;
    padding: 1px;
}
.imgStandard a{
    display:inline-block;
    width:100%;
    text-align:center;
}
.imgStandard a img{
    vertical-align:middle;
}
/*图片hover放大*/
.imgHover img{
    -webkit-transition: all .2s linear 0s;
    transition: all .2s linear 0s;
}
.imgHover:hover img{
    -webkit-transform: scale(1.1,1.1);
            transform: scale(1.1,1.1);
}
.f0{font-size: 0;
}
.f12{font-size:12px
}
.f13{font-size:13px
}
.f14{font-size:14px
}
.f16{font-size:16px
}
.f20{font-size:20px
}
.fb{font-weight:bold
}
.fn{font-weight:normal
}
.t2{text-indent:2em
}
.1h150{line-height:150%
}
.1h180{line-height:180%
}
.1h200{line-height:200%
}
.unl{text-decoration:underline;
}
.no_unl{text-decoration:none;
}
/*定位*/
.ofh{overflow:hidden;
}
.left0{left:0
}
.right0{right:0
}
.tl{text-align:left
}
.tc{text-align:center
}
.tr{text-align:right
}
.bc{margin-left:auto;margin-right:auto
}
.fl{float:left;display:inline
}
.fr{float:right;display:inline
}
.cb{clear:both
}
.cl{clear:left
}
.cr{clear:right
}
.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden
}
.clearfix{display:inline-block
}
*html

                                                                                                               .clearfix{height:1%
}
.Clearfix{display:block
}
.curPointer{cursor:pointer;
}
.vm{vertical-align:middle
}
.pr{position:relative
}
.pa{position:absolute
}
.abs-left{position: absolute;left:0;top:0;
}
.abs-right{position:absolute;right:0
}
.abs-r10{position:absolute;right:10px;
}
.abs-rt{position:absolute;right:0;top:0;
}
.abs-r15t{position:absolute;right:15px;top:0;
}
.abs-br{position:absolute;bottom:0px;right:0px;
}
.abs-bl{position:absolute;bottom:0px;left:0px;
}
.zoom{zoom:1
}
.hidden{visibility:hidden
}
.none{display:none
}
/*长度高度*/
.w10{width:10px
}
.w20{width:20px
}
.w30{width:30px
}
.w40{width:40px
}
.w50{width:50px
}
.w60{width:60px
}
.w70{width:70px
}
.w80{width:80px
}
.w90{width:90px
}
.w100{width:100px
}
.w200{width:200px
}
.w300{width:300px
}
.w400{width:400px
}
.w500{width:500px
}
.w600{width:600px
}
.w700{width:700px
}
.w800{width:800px
}
.w{width:100%
}
.h30{height:30px;
}
.h50{height:50px
}
.h80{height:80px
}
.h100{height:100px
}
.h200{height:200px
}
.h{height:100%
}
/*边距*/
.m10{margin:10px
}
.m15{margin:15px
}
.m30{margin:30px
}
.mt0{margin-top:0px
}
.mt5{margin-top:5px
}
.mt10{margin-top:10px
}
.mt15{margin-top:15px
}
.mt20{margin-top:20px
}
.mt30{margin-top:30px
}
.mt35{margin-top:35px
}
.mt40{margin-top:40px;
}
.mt50{margin-top:50px
}
.mt60{margin-top:60px
}
.mt100{margin-top:100px
}
.mb0{margin-bottom:0px;
}
.mb5{margin-bottom:5px
}
.mb10{margin-bottom:10px
}
.mb15{margin-bottom:15px
}
.mb20{margin-bottom:20px
}
.mb30{margin-bottom:30px
}
.mb50{margin-bottom:50px
}
.mb100{margin-bottom:100px
}
.ml5{margin-left:5px
}
.ml10{margin-left:10px
}
.ml15{margin-left:15px
}
.ml20{margin-left:20px
}
.ml25{margin-left:25px
}
.ml30{margin-left:30px
}
.ml35{margin-left:35px
}
.ml40{margin-left:40px
}
.ml50{margin-left:50px
}
.ml100{margin-left:100px
}
.mr5{margin-right:5px
}
.mr10{margin-right:10px
}
.mr15{margin-right:15px
}
.mr20{margin-right:20px
}
.mr30{margin-right:30px
}
.mr50{margin-right:50px
}
.mr100{margin-right:100px
}
.mg0{margin:0;
}
.p10{padding:10px
}
.p15{padding:15px
}
.p30{padding:30px
}
.pt0{padding-top:0px;
}
.pt5{padding-top:5px
}
.pt10{padding-top:10px
}
.pt15{padding-top:15px
}
.pt20{padding-top:20px
}
.pt30{padding-top:30px
}
.pt50{padding-top:50px
}
.pb5{padding-bottom:5px
}
.pb10{padding-bottom:10px
}
.pb15{padding-bottom:15px
}
.pb20{padding-bottom:20px
}
.pb30{padding-bottom:30px
}
.pb50{padding-bottom:50px
}
.pb100{padding-bottom:100px
}
.pl5{padding-left:5px
}
.pl10{padding-left:10px
}
.pl15{padding-left:15px
}
.pl20{padding-left:20px
}
.pl30{padding-left:30px
}
.pl50{padding-left:50px
}
.pl100{padding-left:100px
}
.pr5{padding-right:5px
}
.pr10{padding-right:10px
}
.pr15{padding-right:15px
}
.pr20{padding-right:20px
}
.pr30{padding-right:30px
}
.pr50{padding-right:50px
}
.pr100{padding-right:100px
}
.pl0{padding-left: 0px;
}
.pr0{padding-right:0px;
}
.pd0{padding:0;
}
/*面包栏*/
/*.breadCrumb{*/
/*    width:100%;*/
/*    margin-bottom: 10px;*/
/*}*/
/*.breadCrumb li{*/
/*    display: inline-block;*/
/*}*/
/*.breadCrumb li a{*/
/*    color:#666;*/
/*}*/
/*.breadCrumb li a:hover{*/
/*    color:#0bb8b2;*/
/*}*/
/*.breadCrumb li:last-child a:hover{*/
/*    cursor: default;*/
/*    color:#666;*/
/*}*/
/*用户中心*/
#unIndex{padding:10px 0;
}
.ucBg{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;
}
.ucMenu{width:160px;min-height:500px;-ms-flex-negative: 0;flex-shrink: 0;border-radius: 3px;background-color: #fff;padding:15px;
}
.ucPanel{width:1000px;min-height:500px;-ms-flex-negative: 1;flex-shrink: 1;margin-left:30px;
}
.ucP_Box{border-radius: 3px;background-color: #fff;padding:15px;
}
.ucM_tit{font-size:14px;font-weight: bold;color:#333;margin-bottom: 10px;
}
.ucM_item{height: 40px;display: inline-block;
}
.ucM_item a{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;color:#0e79cc;color:#666;
}
.umM_icon{width:20px;height:20px;-ms-flex-negative: 0;flex-shrink: 0;
}
.ucM_item a span{width:100%;-ms-flex-negative: 1;flex-shrink: 1;padding-left: 10px;
}
.ucGreenTit{font-size: 16px;font-weight:bold;color:#333;padding-left:10px;border-left: 5px solid #0bb8b2;margin-bottom:10px;height: 30px;line-height: 30px;
}
/*.ucTitNav{*/
/*    display:flex;*/
/*    flex-wrap: nowrap;*/
/*    justify-content: space-between;*/
/*}*/
/*.ucTitNav span{*/
/*    font-size: 16px;*/
/*    font-weight: bold;*/
/*    color: #333;*/
/*    padding-left: 10px;*/
/*    border-left: 5px solid #0bb8b2;*/
/*    margin:5px;*/
/*    line-height: 30px;*/
/*}*/
/*显示两行*/
/*overflow: hidden;*/
/*text-overflow: ellipsis;*/
/*display: -webkit-box;*/
/*-webkit-line-clamp: 2;*/
/*-webkit-box-orient: vertical;*/
/*拉起弹框*/
/*.g-drawer .el-drawer{*/
/*    min-height: px2rem(800);*/
/*}*/
/*.g-drawer .el-drawer__header{*/
/*    padding:px2rem(20);*/
/*    margin-bottom: 0;*/
/*}*/
@font-face {
    font-family: 'pingFangSC-Medium';
    src: url(./static/fonts/PingFangMedium.1597485.ttf);
    font-weight: normal;
    font-style: normal;
}
/*@font-face{*/
/*    font-family: 'pingFangSC-Light';*/
/*    src: url('PingFang Light.ttf');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*}*/
/*@font-face{*/
/*    font-family: 'pingFangSC-Regular';*/
/*    src: url('pingFangRegular.ttf');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*}*/
@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
#app{background-color:#f2f2f2;font-family:pingFangSC-Medium, sans-serif
}
#mApp{margin:0 auto;width:100%;display:block;background-color:#f2f2f2
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
#mHead{width:100%;height:1.2rem;position:fixed;top:0;left:0;background-color:#fafafa;border-bottom:1px solid #eee;z-index:1000
}
.mH-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.mH-nav .icon{font-size:.69333rem;line-height:1.2rem;padding:0 .26667rem
}
.mH-nav .logo{-o-object-fit:fill;object-fit:fill;height:1.12rem;width:auto
}
.cartBadge{position:relative
}
.cartBadge .el-badge__content{position:absolute !important;top:.34667rem !important;right:1.33333rem !important
}
.midText{height:1.2rem;line-height:1.2rem;font-size:.48rem
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
#foot{width:100%;height:1.38667rem;position:fixed;bottom:0;left:0;background-color:#fff;border-top:1px solid #eee;z-index:1000
}
.fBox{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:distribute;justify-content:space-around;padding-top:.13333rem
}
.fItem{width:2.13333rem;height:1.38667rem;font-size:.32rem;color:#666;text-align:center
}
.fItem .icon{display:block;text-align:center;font-size:.61333rem
}
.fItem span{display:block
}
.active{color:#0bb8b2
}

#home[data-v-6236dc4a]{
    background-color:#f2f2f2;
    padding-bottom:10px;
    min-height: 760px;
}
.homeBox[data-v-6236dc4a]{
    padding:15px 0;
}
.sortBox[data-v-6236dc4a]{
    background-color: #fff;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
    height: 36px;
    line-height: 36px;
    position: relative;
    cursor: default;
    font-size: 14px;
}
.nor[data-v-6236dc4a]{
    height: 35px;
    line-height: 35px;
    padding:0 10px;
}
.act[data-v-6236dc4a]{
    color:#0bb8b2;
    border-bottom: 2px solid #0bb8b2;
}
.childSort[data-v-6236dc4a]{
    visibility: hidden;
    position: absolute;
    top:37px;
    left:0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width:100%;
    z-index: 100000;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}
.sortBox:hover .childSort[data-v-6236dc4a]{
    visibility:visible;
}
.cld_box[data-v-6236dc4a]{
    width:160px;
    height:90px;
    display: inline-block;
    text-align: center;
    padding-top:10px;
}
.cld_box[data-v-6236dc4a]:hover{
    -webkit-box-shadow: 0 0 5px 5px #ddd;
            box-shadow: 0 0 5px 5px #ddd;
    cursor: pointer;
}
.cld_box span[data-v-6236dc4a]{
    width: 100%;
    display: block;
    height: 24px;
    line-height: 24px;
}
.cld_img[data-v-6236dc4a]{
    width:50px;
    height:50px;
    display: block;
    margin:0 auto;
}
.sortInbox[data-v-6236dc4a]{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.topTit[data-v-6236dc4a]{
    text-align: center;
    font-size: 24px;
    margin-top:20px;
}
.refresh[data-v-6236dc4a]{
    color:#0bb8b2;
    font-size: 13px;
    text-align: center;
    margin-top:5px;
    cursor: pointer;
}
.proBox[data-v-6236dc4a]{
    background-color:#fff;
    border:1px solid #f0f0f0;
    padding:15px;
    width:194px;
    position: relative;
    max-width:194px;
    min-height:290px;
    margin-bottom:15px;
    margin-right:15px;
    position: relative;
}
.proFloat[data-v-6236dc4a]{
    width:100%;
    height:auto;
    position:absolute;
    top:0;
    left: 0;
    overflow: hidden;
}
.proFloat[data-v-6236dc4a]:hover{
    z-index: 1000;
}
.proBox[data-v-6236dc4a]:nth-child(5n){
    margin-right:0;
}
.proFloat[data-v-6236dc4a]:hover{
    -webkit-box-shadow:0 3px 10px 0 rgba(0,0,0,.2);
            box-shadow:0 3px 10px 0 rgba(0,0,0,.2);
}
.proBox:hover .gallery[data-v-6236dc4a]{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
/*.pImg{*/
/*    width:100%;*/
/*    height:190px;*/
/*    line-height: 188px;*/
/*    margin-bottom:5px;*/
/*}*/
/*.pImg a img{*/
/*    max-width:170px;*/
/*    max-height:180px;*/
/*    background-color: #f4f4f4;*/
/*}*/
.proInfo[data-v-6236dc4a]{
    z-index: 10;
    background-color:#fff;
    width:194px;
    padding:0 15px 15px 15px;
}
.proMess[data-v-6236dc4a]{
    border-bottom:1px solid #e4e4e4;
    padding-bottom:5px;
    margin-bottom:5px;
}
.proName[data-v-6236dc4a]{
    color:#333;
    margin-bottom:5px;
    font-size:15px;
    min-height: 40px;
    line-height: 20px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.price[data-v-6236dc4a]{
    font-size: 16px;
}
.proSize[data-v-6236dc4a]{
    color:#0bb8b2;
}
.proIcon[data-v-6236dc4a]{
    font-size: 20px;
    color:#999;
    padding:0px 0 0 8px;
}
.proIcon[data-v-6236dc4a]:hover{
    color:#0bb8b2;
}
.proIcon.active[data-v-6236dc4a]{
    color:#0bb8b2;
}
.gallery[data-v-6236dc4a]{
    margin-top:5px;
    display: none;
}
.galleryPic[data-v-6236dc4a]{
    -ms-flex-wrap:no-wrap;
        flex-wrap:no-wrap;
    overflow:hidden;
}
.miniPic[data-v-6236dc4a]{
    width:42px;
    height:42px;
    line-height: 40px;
    margin:0 5px 5px 0;
    border:1px solid #eee;
}
.miniPic a img[data-v-6236dc4a]{
    max-width:42px;
    max-height:42px;
}
.miniPic[data-v-6236dc4a]:hover{
    border:1px solid #0bb8b2;
}
/*.arrow{*/
/*    width:20px;*/
/*    line-height: 20px;*/
/*    background-color:#f0f0f0;*/
/*    border:1px solid #f0f0f0;*/
/*    height:42px;*/
/*    text-align: center;*/
/*    vertical-align: middle;*/
/*    line-height: 42px;*/
/*    cursor: pointer;*/
/*}*/
.bigPrice[data-v-6236dc4a]{
    width:100%;
    border:1px solid #0bb8b2;
    font-size: 12px;
    margin-top:10px;
}
.bigPrice_tit[data-v-6236dc4a]{
    background-color: #0bb8b2;
    color:#fff;
    padding:0 5px;
}
.bigPrice_info[data-v-6236dc4a]{
    padding:0 5px;
    color:#0bb8b2;
}
.pImg[data-v-6236dc4a]{
    width:100%;
    height:180px;
    line-height: 180px;
    margin-bottom:5px;
    text-align: center;
    padding:10px 0;
    overflow: hidden;
}
.homeProImg[data-v-6236dc4a]{
    width:180px;
    height:180px;
    line-height: 400px;
    -o-object-fit: contain;
       object-fit: contain;
}
.pImg:hover .homeProImg[data-v-6236dc4a]{
    width:210px;
    height: 210px;
    -webkit-transition: all .1s ease 0s;
    transition: all .1s ease 0s;
}



.topBar[data-v-64ff6343]{
     height:36px;
     line-height: 36px;
     background-color:#f2f2f2;
     color:#666;
     border-bottom:1px solid #e0e0e0;
     font-size:14px;
}
.navigation-wrap[data-v-64ff6343]{background-color: #fff;
}
.tm_item span[data-v-64ff6343], .tm_item a[data-v-64ff6343]{
    font-size: 14px;
     line-height: 14px;
     padding:0 15px;
     border-right:1px solid #e0e0e0;
}
.tm_item span[data-v-64ff6343]:hover{
     cursor: pointer;
     color:#0BB8B2;
}
.logo img[data-v-64ff6343]{
     height:90px;
}
.badge[data-v-64ff6343]{
     background-color: #f56c6c;
     border-radius: 10px;
     color: #FFF;
     display: inline-block;
     font-size: 12px;
     height: 18px;
     line-height: 18px;
     padding: 0 6px;
     text-align: center;
     white-space: nowrap;
     border: 1px solid #FFF;
}
 /*.logoTit{*/
 /*    font-size:28px;*/
 /*    font-weight:blod;*/
 /*    line-height: 100px;*/
 /*    border-left: 1px solid #f0f0f0;*/
 /*    padding-left: 30px;*/
 /*    margin-left: 30px;*/
 /*    color:#333;*/
 /*}*/
.navItem[data-v-64ff6343]{
     line-height: 100px;
     font-size:16px;
     font-weight: bold;
     padding:0 20px;
}
.navItem a[data-v-64ff6343]{
     color:#333;
     padding:10px;
}
.navItem.active a[data-v-64ff6343]{
     border-bottom:2px solid #0bb8b2;
}
.navLabel[data-v-64ff6343]{
     font-size:12px;
     font-weight: normal;
     color:#fff;
     background-color:#0bb8b2;
     padding:1px 3px;
     width:28px;
     height:16px;
     text-align: center;
     line-height: 16px;
     position: absolute;
     top:20px;
     right:-5px;
}
.navItemLast[data-v-64ff6343]{
     padding-top:30px;
     text-align: right;
     font-size: 14px;
}
.navItemLast span[data-v-64ff6343]{
     color:#0bb8b2;
     font-weight:bold;
}
.navItemLast p[data-v-64ff6343]{
     color:#999;
}
.borderLine[data-v-64ff6343]{
     border-left: 1px solid #eee;
}


#descript[data-v-55924d10]{ 
    padding:10px 0;
}
.desBox[data-v-55924d10]{
    background-color: #fff;
    padding:30px;
    margin-top:10px;
}
/*图片轮播*/
.desPic[data-v-55924d10]{width:450px;height:400px;text-align: center;background-color: #f5f5f5;
}
.cAlbum_wall[data-v-55924d10],.el-carousel__item[data-v-55924d10]{width:450px;height:400px;
}
.alTop-img[data-v-55924d10]{width:400px;height: 400px;
}
/*.album-top {width:100%;background-color: #fff;display: flex;align-content:center;}*/
/*.album-top .swiper-wrapper{height:310px;line-height: 310px;}*/
/*.album-top .swiper-slide{text-align: center;margin-bottom:5px;border:none;padding:0;}*/
/*.alTop-img{width:800px;height: 430px;}*/
/*.album-thumbs {height: 20%;box-sizing: border-box;padding: 10px 0;text-align: center;background-color: #f5f5f5;}*/
/*.album-thumbs .swiper-slide{width:100%;height:80px;line-height: 80px;text-align: center;cursor:pointer;}*/
/*.alButtom-img{height: 80px;width:80px;}*/
/*.album-thumbs .swiper-slide-active {border:2px solid #3c92e7;overflow: hidden;background-color: #fff;}*/
/*基本信息*/
.desInfo[data-v-55924d10]{width:680px;padding-left:30px;font-size:13px;
}
.cname[data-v-55924d10]{font-size: 20px;color:#333;font-weight:bold;
}
.ename[data-v-55924d10]{font-size:14px;color:#999;
}
.dI_mid[data-v-55924d10]{background-color: #f5f5f5;padding:5px 15px 15px 15px;margin:10px 0;
}
.dI_midItem[data-v-55924d10]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;color:#666;margin-top:15px;
}
.gd_box[data-v-55924d10]{display: -webkit-box;display: -ms-flexbox;display: flex;width:100%;margin-top:10px;
}
.gd_panel[data-v-55924d10]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;width:50%;
}
.gd_panel .dI_m_tit[data-v-55924d10]{width:86px;
}
.gd_panel .dI_m_text[data-v-55924d10]{width:auto;
}
.dI_price[data-v-55924d10]{border-bottom:1px solid #ddd;padding-bottom: 15px;
}
.dI_price .dI_m_text[data-v-55924d10]{font-size: 28px;color:#D7282D;font-weight: bold;line-height: 24px;
}
.dI_m_text label[data-v-55924d10]{width:5px;height:5px;border-radius: 50px;background-color: #0BB8B2;margin:0 5px 2px 0;display: inline-block;line-height: 24px;
}
.dI_m_tit[data-v-55924d10]{width:100px;
}
.dI_m_text[data-v-55924d10],.dI_s_text[data-v-55924d10]{width:100%;
}
.m_priceItem[data-v-55924d10]{padding-right:40px;
}
.m_pI_top[data-v-55924d10]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;
}
.m_pI_type[data-v-55924d10]{font-size:18px;display: inline-block;padding-top:5px;
}
.m_pI_price[data-v-55924d10]{display: inline-block;
}
.m_pI_unit[data-v-55924d10]{font-size: 12px;padding-top:5px;
}
.m_pI_foot[data-v-55924d10]{font-size: 13px;font-weight: normal;color:#666;padding-left:5px;
}
.dI_selItem[data-v-55924d10]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;color:#666;margin-top:15px;
}
.dI_s_tit[data-v-55924d10]{width:100px;padding-left: 15px;
}
.dI_choice[data-v-55924d10]{border:1px solid #ccc;color:#999;padding:0px 15px;margin:0 5px 5px 0;display: inline-block;
}
.dI_choice[data-v-55924d10]:hover{border-color:#0bb8b2;
}
.dI_choice.active[data-v-55924d10]{border:2px solid #0bb8b2;color:#333;
}
.dI_choiceAdd[data-v-55924d10]{margin-left: 10px;
}
.dI_foot[data-v-55924d10]{padding-left: 15px;margin-top:15px;
}
.toCollect[data-v-55924d10]{margin-left: 10px;
}
.actCollect[data-v-55924d10]{color:#0bb8b2;background-color: #f5f5f5;
}
/*.desInBox{display: none;}*/
/*详细信息*/
.desNav[data-v-55924d10]{background-color: #f5f5f5;border:1px solid #ddd;height:40px;line-height: 40px;display: -webkit-box;display: -ms-flexbox;display: flex;margin:15px 0 0 0;
}
.desNav_item[data-v-55924d10]{background-color: #fff;cursor:default;border-right:1px solid #ddd;min-width:120px;text-align: center;cursor: pointer;font-size: 14px;
}
.desNav_item.active[data-v-55924d10]{background-color: #0bb8b2;color:#fff;
}
.desPanel[data-v-55924d10]{font-size: 14px;line-height: 24px;
}
/*资料下载*/
.des_dl[data-v-55924d10]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;padding:10px 0;border-bottom:1px solid #ddd;
}
.des_dl_tit[data-v-55924d10]{width:500px;
}
.des_dl_btn[data-v-55924d10]{color:#0bb8b2;
}
/*采购说明*/
.desExp_tit[data-v-55924d10]{border-left:5px solid #0bb8b2;font-size:16px;color:#333;font-weight: bold;margin:20px 0 10px 0;padding-left: 10px
}
.desExp_para[data-v-55924d10]{color:#333;line-height: 24px;margin-bottom:5px;
}
/*评价信息*/
.des_eva[data-v-55924d10]{font-size: 12px;
}
.dEvaItem[data-v-55924d10]{padding:15px 0;border-bottom:1px solid #ddd;color:#666;
}
.dEvaItem h2[data-v-55924d10]{color:#999;
}
.dEvaName[data-v-55924d10]{min-width:40px;display:inline-block;color:#333;
}
.dEvaLevel[data-v-55924d10]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;
}
.dEvaSize[data-v-55924d10]{color:#999;margin-left:10px;
}
.dEvaTit[data-v-55924d10]{width:50px;
}
.dEvaContent[data-v-55924d10],.dEvaPic[data-v-55924d10]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;
}
.dEva[data-v-55924d10]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;
}
.evaImg[data-v-55924d10]{
    width:50px;
    height:50px;
    line-height: 48px;
    margin-right:5px;
    margin-top:5px;
}
.eImg[data-v-55924d10]{
    width:48px;
    height:48px;
}
/*评分选择stars choice*/
.star_evaluate[data-v-55924d10] {
    position: relative;
    width: 100px;
    height: 20px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NzQ4MzhFMTM4Nzc4MTFFOTkyODE4MUFBREI1NEYxMkUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NzQ4MzhFMTQ4Nzc4MTFFOTkyODE4MUFBREI1NEYxMkUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3NDgzOEUxMTg3NzgxMUU5OTI4MTgxQUFEQjU0RjEyRSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3NDgzOEUxMjg3NzgxMUU5OTI4MTgxQUFEQjU0RjEyRSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvB/otwAAAOMSURBVHja7JpZaBNRFIYnadLsIDahapsoCkrdXhSUUuqGIoqg+KIPKioWEdeqBQW3BwVRXxSFouD+IPTNJ+vy5gIVrVpBaSXGBZSqUVNLIk3if8gpTGOSyUznJpPQAx/NTO/cuX/mnrnnnBtTMpmUysHMUplY2QixyA8SiYQUi8Ukk8mk5z3Gg++gb7gd0bhsNpuyEBIRDAaliooKvUTMBtfAQ7CdbqG1I/Jlh8MhBQKBjF+0JV0xidBJiBucA3XMU9A6HCFms7koPrIRzJUdHwH+UnP2MWBf2rmxYFepCWkGgQznN4OppSJkOlif5X+jwIFSEEL97QbVOdqsAguMLqQRrFFo4wI7gd2oQpy8VrjyaLsCLDWqkIVgdZ5taaHaBjxGE+LS4MSLwTKjCSG/qNdw3UGekkUXQq/T+eCQxutngr28gOoX/eaYzzaOnSZx3EQDmAamgNF5Ong2o9BlB3gLXoOX/LcH/ORAc0AeD6oRUgMmgslgBkOfawWsZfRF+ZgG2fle8AZ0gRegG4HjZ9ADMfH/Qnx5qhuNRk2hUGg5ot+jOJxlpMSJxgkBXz0eT6vX6z2DMf7O5SOUBF0wmojBKQUx1eFw+HB/f3+jkrPTcdzIKS37SKWSkPfgmFHF0PRyOp1t4I6SkAS4Ao4bUYTFYunw+XzN8I8/+a4jJ8B1g2kJWa3WJrvd/lHNghjjbK7dICJ+gS2gM1tBMdfKHuaMrqPYswrsB3eHE6J84m8iWEQhtPJf1CPWolV1K4gUQcQlcFLPoLGd46FYAUXcBi3gr97R71V+zIWwx6CJ/VRIGH9aSlUPRRr54ybwRWQ+Qiv+E8FC6AXzrhCJVZ1gIbWc+wgXMkGwEKqJVRVCiF+wEKeW1FetEIeUKkaLthrRQryMaPOLFjIuU1IjwAKihdAbxaryml55FUTFfYQK8asQ8g2cAivBOvBAxX1U+6FFw9RSEv8DXOZMs4vPPQL3wCKwB8xR6MPHa0mfqCeSa9+DtqDP8iBbZCLkT+gWWAI2SKlCXLYpV6VwL11ClHSj1PM8mMdZZQ/n/tmM6lG0Zd3A7Z9l6LeSEyptU4vSyIGBnH55Q0ptH1D96wNo4yn0SsObifIbqqHdBGv5KQ3uAlO/ofSxxePZiztDKo3UMBKJKP3ygYp3VAPuBs91Dk3qeZbcl1J13yFG+/9ut1tZSCnbyK+DRoQIsn8CDAARM9IkcL0GuQAAAABJRU5ErkJggg==) repeat-x;
    background-size: 20px 20px;
    overflow: hidden;
    margin:0 auto;
}
.star[data-v-55924d10],.score[data-v-55924d10]{display: block;height: 20px;width: 20px;position: absolute;
}
.star[data-v-55924d10]{z-index: 2;
}
.score[data-v-55924d10]{opacity: 0;
}
.star_1[data-v-55924d10], .score_1[data-v-55924d10] {left: 0;
}
.star_2[data-v-55924d10], .score_2[data-v-55924d10] {left: 20px;
}
.star_3[data-v-55924d10], .score_3[data-v-55924d10] {left: 40px;
}
.star_4[data-v-55924d10], .score_4[data-v-55924d10] {left: 60px;
}
.star_5[data-v-55924d10], .score_5[data-v-55924d10] {left: 80px;
}
/*鼠标悬浮*/
.star[data-v-55924d10]:hover {
    cursor: pointer;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODBGMDE0MkI4Nzc4MTFFOTlBQ0VCRTU3NDZERjVBRTgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODBGMDE0MkM4Nzc4MTFFOTlBQ0VCRTU3NDZERjVBRTgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4MEYwMTQyOTg3NzgxMUU5OUFDRUJFNTc0NkRGNUFFOCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4MEYwMTQyQTg3NzgxMUU5OUFDRUJFNTc0NkRGNUFFOCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PlT7opIAAAO4SURBVHja7JprSBRRFMfPurqbmpSPxVJXoyixF0TRQ8xeFGEESV/qQ0VFEtHTSjLo9aEgqi9FgRj0/hD4rQh6fgkzMLKHRaGR9gDLMksN1l2d/qe9xa7sOLvj3N1Z8cAPd8c7d+Y/956555y7FkVRaDBYDA0SGzRCYv2+ebqIOl4TWWKNvEYO+A46B9ZND5F1OFHShIDP3/+OWcTDuURxyUaJmAEug2qwFbj06/hNlDyTaM5N6LBrCOGRYBFxI40QgcdHZ0Ce4Amo0O8ENtxtUkR8ZD2Y7fP9EHBGm7OPAnv6HBsNdkSbkFKQHeD4RjAxWoRMBmtV/sfOVx4NQri/nSC9nzbFYIHZhRSCVRptEsF2MMysQhLEWpEYRNvlYKlZhSwEK4NsawVbQJLZhCTqcOLFoMhsQtgv8nWct19MyYgL4dfpfHBA5/lTwW6xgBoY/arPZ7uIncaJuIlvYBLIBSlBOriaceiyDbwFr8AL8bcRtItA0+ONBWNUI3M1IZlgLOCYeYqAP2dJWMv4QTkEBT7HW8EbUA+eQ0EDKe7PoJEs1p6+nVj8Ut32OgvVFC1D9HsY36abK3XqJVKUL5RRXEHj950iW/Kv/nyEk6Bz5hMhBk7xpFNT5UFqqy7UcvYYbypmRsPMiYEnWJCXKD02LSFN4IhpxbiRiqcVVlFK/m0tIZiIdBEcNZ2I3m6sOFm1lFteSnZHV7DryDFwxVwzy9NM8TklNGLax1AWRJfI5u6YRMZPsAlinlGvK+SV/YfI6Goj7+W0F9wdSIjy6e+TIHofQSG88lcaEWthVaXNoCMCIs6D40YGjXdEPOQKo4gboAx0Gx39XhLDHA6rASXCT6WE8SfJWz2UaeyPG0CLzHyEV/zHkoXwC+ZdOBKrPMlCskTuI13IGMlCuCaWGg4hTslCEvSkvqEKiSdvMVq2ZcoWkiaQbU7ZQjKALQxCsmUL4TdKXIjntP6vgoR2HalCnCEI+QZOgBVgDXgQwnVC9sNYHVNLS3wbuCAyzXpx7BG4BxaBXWCWRh8OsZZ0yhqR/vY9eAv6tLjJMh8RviN0HSwB68hbiFObcqka1zIkROlrnHqeBfNEVtkocn8143oUb1kXiPZPA/RrEwmVzqmluBGof+X8WK39VfJuH3D96wOoElPopY43E+c3XEO7BlaLUfq3C8z9Nvu15h8zuNtV9flXGrsx+i23Am7I+xgX77gG3ADqDA5N8sUsuU/euq9v8YHIDtdxwM0sVg0hUWxDvw4aEiLJ/ggwAP/Zx74fYTPfAAAAAElFTkSuQmCC) repeat-x;
    background-size: 20px 20px;
    left: 0;
    z-index: 1;
}
.starShow .star[data-v-55924d10]:hover{
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NzQ4MzhFMTM4Nzc4MTFFOTkyODE4MUFBREI1NEYxMkUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NzQ4MzhFMTQ4Nzc4MTFFOTkyODE4MUFBREI1NEYxMkUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3NDgzOEUxMTg3NzgxMUU5OTI4MTgxQUFEQjU0RjEyRSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3NDgzOEUxMjg3NzgxMUU5OTI4MTgxQUFEQjU0RjEyRSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvB/otwAAAOMSURBVHja7JpZaBNRFIYnadLsIDahapsoCkrdXhSUUuqGIoqg+KIPKioWEdeqBQW3BwVRXxSFouD+IPTNJ+vy5gIVrVpBaSXGBZSqUVNLIk3if8gpTGOSyUznJpPQAx/NTO/cuX/mnrnnnBtTMpmUysHMUplY2QixyA8SiYQUi8Ukk8mk5z3Gg++gb7gd0bhsNpuyEBIRDAaliooKvUTMBtfAQ7CdbqG1I/Jlh8MhBQKBjF+0JV0xidBJiBucA3XMU9A6HCFms7koPrIRzJUdHwH+UnP2MWBf2rmxYFepCWkGgQznN4OppSJkOlif5X+jwIFSEEL97QbVOdqsAguMLqQRrFFo4wI7gd2oQpy8VrjyaLsCLDWqkIVgdZ5taaHaBjxGE+LS4MSLwTKjCSG/qNdw3UGekkUXQq/T+eCQxutngr28gOoX/eaYzzaOnSZx3EQDmAamgNF5Ong2o9BlB3gLXoOX/LcH/ORAc0AeD6oRUgMmgslgBkOfawWsZfRF+ZgG2fle8AZ0gRegG4HjZ9ADMfH/Qnx5qhuNRk2hUGg5ot+jOJxlpMSJxgkBXz0eT6vX6z2DMf7O5SOUBF0wmojBKQUx1eFw+HB/f3+jkrPTcdzIKS37SKWSkPfgmFHF0PRyOp1t4I6SkAS4Ao4bUYTFYunw+XzN8I8/+a4jJ8B1g2kJWa3WJrvd/lHNghjjbK7dICJ+gS2gM1tBMdfKHuaMrqPYswrsB3eHE6J84m8iWEQhtPJf1CPWolV1K4gUQcQlcFLPoLGd46FYAUXcBi3gr97R71V+zIWwx6CJ/VRIGH9aSlUPRRr54ybwRWQ+Qiv+E8FC6AXzrhCJVZ1gIbWc+wgXMkGwEKqJVRVCiF+wEKeW1FetEIeUKkaLthrRQryMaPOLFjIuU1IjwAKihdAbxaryml55FUTFfYQK8asQ8g2cAivBOvBAxX1U+6FFw9RSEv8DXOZMs4vPPQL3wCKwB8xR6MPHa0mfqCeSa9+DtqDP8iBbZCLkT+gWWAI2SKlCXLYpV6VwL11ClHSj1PM8mMdZZQ/n/tmM6lG0Zd3A7Z9l6LeSEyptU4vSyIGBnH55Q0ptH1D96wNo4yn0SsObifIbqqHdBGv5KQ3uAlO/ofSxxePZiztDKo3UMBKJKP3ygYp3VAPuBs91Dk3qeZbcl1J13yFG+/9ut1tZSCnbyK+DRoQIsn8CDAARM9IkcL0GuQAAAABJRU5ErkJggg==) repeat-x;
    background-size: 20px 20px;
    left: 0;
    z-index: 1;
    cursor: default;
}
.star_1[data-v-55924d10]:hover {width: 20px;
}
.star_2[data-v-55924d10]:hover {width: 40px;
}
.star_3[data-v-55924d10]:hover {width: 60px;
}
.star_4[data-v-55924d10]:hover {width: 80px;
}
.star_5[data-v-55924d10]:hover {width: 100px;
}
/*选中之后*/
.score:checked + .star[data-v-55924d10] {background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODBGMDE0MkI4Nzc4MTFFOTlBQ0VCRTU3NDZERjVBRTgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODBGMDE0MkM4Nzc4MTFFOTlBQ0VCRTU3NDZERjVBRTgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4MEYwMTQyOTg3NzgxMUU5OUFDRUJFNTc0NkRGNUFFOCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4MEYwMTQyQTg3NzgxMUU5OUFDRUJFNTc0NkRGNUFFOCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PlT7opIAAAO4SURBVHja7JprSBRRFMfPurqbmpSPxVJXoyixF0TRQ8xeFGEESV/qQ0VFEtHTSjLo9aEgqi9FgRj0/hD4rQh6fgkzMLKHRaGR9gDLMksN1l2d/qe9xa7sOLvj3N1Z8cAPd8c7d+Y/956555y7FkVRaDBYDA0SGzRCYv2+ebqIOl4TWWKNvEYO+A46B9ZND5F1OFHShIDP3/+OWcTDuURxyUaJmAEug2qwFbj06/hNlDyTaM5N6LBrCOGRYBFxI40QgcdHZ0Ce4Amo0O8ENtxtUkR8ZD2Y7fP9EHBGm7OPAnv6HBsNdkSbkFKQHeD4RjAxWoRMBmtV/sfOVx4NQri/nSC9nzbFYIHZhRSCVRptEsF2MMysQhLEWpEYRNvlYKlZhSwEK4NsawVbQJLZhCTqcOLFoMhsQtgv8nWct19MyYgL4dfpfHBA5/lTwW6xgBoY/arPZ7uIncaJuIlvYBLIBSlBOriaceiyDbwFr8AL8bcRtItA0+ONBWNUI3M1IZlgLOCYeYqAP2dJWMv4QTkEBT7HW8EbUA+eQ0EDKe7PoJEs1p6+nVj8Ut32OgvVFC1D9HsY36abK3XqJVKUL5RRXEHj950iW/Kv/nyEk6Bz5hMhBk7xpFNT5UFqqy7UcvYYbypmRsPMiYEnWJCXKD02LSFN4IhpxbiRiqcVVlFK/m0tIZiIdBEcNZ2I3m6sOFm1lFteSnZHV7DryDFwxVwzy9NM8TklNGLax1AWRJfI5u6YRMZPsAlinlGvK+SV/YfI6Goj7+W0F9wdSIjy6e+TIHofQSG88lcaEWthVaXNoCMCIs6D40YGjXdEPOQKo4gboAx0Gx39XhLDHA6rASXCT6WE8SfJWz2UaeyPG0CLzHyEV/zHkoXwC+ZdOBKrPMlCskTuI13IGMlCuCaWGg4hTslCEvSkvqEKiSdvMVq2ZcoWkiaQbU7ZQjKALQxCsmUL4TdKXIjntP6vgoR2HalCnCEI+QZOgBVgDXgQwnVC9sNYHVNLS3wbuCAyzXpx7BG4BxaBXWCWRh8OsZZ0yhqR/vY9eAv6tLjJMh8RviN0HSwB68hbiFObcqka1zIkROlrnHqeBfNEVtkocn8143oUb1kXiPZPA/RrEwmVzqmluBGof+X8WK39VfJuH3D96wOoElPopY43E+c3XEO7BlaLUfq3C8z9Nvu15h8zuNtV9flXGrsx+i23Am7I+xgX77gG3ADqDA5N8sUsuU/euq9v8YHIDtdxwM0sVg0hUWxDvw4aEiLJ/ggwAP/Zx74fYTPfAAAAAElFTkSuQmCC) repeat-x;background-size: 20px 20px;left: 0;
}
.score_1:checked + .star_1[data-v-55924d10] {width: 20px;
}
.score_2:checked + .star_2[data-v-55924d10] {width: 40px;
}
.score_3:checked + .star_3[data-v-55924d10] {width: 60px;
}
.score_4:checked + .star_4[data-v-55924d10] {width: 80px;
}
.score_5:checked + .star_5[data-v-55924d10] {width: 100px;
}










































































































































































































































/*购物车*/
#cart[data-v-7b4e2de2]{padding:10px 0;min-height: 760px;
}
.cartBg[data-v-7b4e2de2]{background-color: #fff;font-size: 14px;
}
.cartHead[data-v-7b4e2de2]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;padding:15px;border-bottom:1px solid #ddd;
}
.cartChoice[data-v-7b4e2de2]{-ms-flex-negative: 0;flex-shrink: 0;-ms-flex-preferred-size: 60px;flex-basis: 60px;display: -webkit-box;display: -ms-flexbox;display: flex;text-align: left;
}
.cartName[data-v-7b4e2de2]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;width:100%;-ms-flex-negative: 1;flex-shrink: 1;
}
.unitPrice[data-v-7b4e2de2]{text-align: center;-ms-flex-preferred-size: 120px;flex-basis: 120px;-ms-flex-negative: 0;flex-shrink: 0;
}
.cartNum[data-v-7b4e2de2]{text-align: center;-ms-flex-preferred-size: 150px;flex-basis: 150px;-ms-flex-negative: 0;flex-shrink: 0;
}
.cartNum .numCount[data-v-7b4e2de2]{margin:0 auto;
}
.cartCount[data-v-7b4e2de2]{-ms-flex-preferred-size: 120px;flex-basis: 120px;text-align: center;-ms-flex-negative: 0;flex-shrink: 0;
}
.cartControl[data-v-7b4e2de2]{text-align: right;-ms-flex-preferred-size: 60px;flex-basis: 60px;-ms-flex-negative: 0;flex-shrink: 0;
}
.cartItem[data-v-7b4e2de2]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;padding:15px;border-bottom: 1px solid #ddd;
}
.cartPic[data-v-7b4e2de2]{width:80px;height: 80px;
}
.cartPic img[data-v-7b4e2de2]{width:80px;height: 80px;
}
.cartInfo[data-v-7b4e2de2]{padding-left: 15px;
}
.cartDel[data-v-7b4e2de2]{color:#999;padding-top:0;
}
.cartDel[data-v-7b4e2de2]:hover{color:#0bb8b2;
}
.cartFoot[data-v-7b4e2de2]{height:56px;background-color: #f5f5f5;display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end;border-bottom:1px solid #ddd;line-height: 56px;
}
.cartTotal[data-v-7b4e2de2]{color:#333;padding-right: 15px;
}
.cartTotal span[data-v-7b4e2de2]{color:#ff6600;
}
.cartTotal span label[data-v-7b4e2de2]{color:#ff6600;font-size:28px;
}
.cartBtn[data-v-7b4e2de2]{background-color:#ff6600;color:#fff;width:160px;font-size: 16px;text-align: center;
}
.cartBtn[data-v-7b4e2de2]:hover{cursor:pointer;
}
.cartEmpty[data-v-7b4e2de2]{text-align: center;font-size:28px;font-weight: bold;padding:30px 0;
}










































































































































































































































































/*登录*/
.bgLogin[data-v-b87f6c60]{ /* Safari 5.1 - 6.0 */ /* Opera 11.1 - 12.0 */ /* Firefox 3.6 - 15 */
    background: linear-gradient(30deg,#007991, #78ffd6); /* 标准的语法 */
}
.loginBg[data-v-b87f6c60]{padding:80px 0;
}
.login-des[data-v-b87f6c60]{width: 100%;text-align: center;margin-right: 30px;-ms-flex-negative: 1;flex-shrink: 1;
}
.login-des img[data-v-b87f6c60]{width:500px;margin:0 auto;
}
.loginBox[data-v-b87f6c60]{min-width: 420px;
}
.login-panel[data-v-b87f6c60]{background-color: #fff;border-radius: 10px 10px 0 0;padding:15px 30px;-ms-flex-negative: 0;flex-shrink: 0;
}
.loginT[data-v-b87f6c60]{font-size: 16px;text-align: center;width:50%;line-height: 40px;cursor: pointer;
}
.loginT.active[data-v-b87f6c60]{border-bottom: 3px solid #0bb8b2;
}
.loginP_bottom[data-v-b87f6c60]{background-color: #ddd;position:relative;color:#333;border-top:1px solid #eee;border-radius: 0 0 10px 10px;line-height: 60px;font-size: 14px;width:100%;height:60px;
}
.loginP_bottom a[data-v-b87f6c60]:hover{text-decoration: underline;
}
.vertifyPic[data-v-b87f6c60]{
    height:40px;
    width:100%;
}










































































































































/*登录*/
.bgLogin[data-v-59842dc6]{ /* Safari 5.1 - 6.0 */ /* Opera 11.1 - 12.0 */ /* Firefox 3.6 - 15 */
    background: linear-gradient(30deg,#007991, #78ffd6); /* 标准的语法 */
}
.loginBg[data-v-59842dc6]{padding:80px 0;
}
.login-des[data-v-59842dc6]{width: 100%;text-align: center;margin-right: 30px;-ms-flex-negative: 1;flex-shrink: 1;
}
.login-des img[data-v-59842dc6]{width:500px;margin:0 auto;
}
.loginBox[data-v-59842dc6]{min-width: 420px;
}
.login-panel[data-v-59842dc6]{background-color: #fff;border-radius: 10px 10px 0 0;padding:15px 30px;-ms-flex-negative: 0;flex-shrink: 0;
}
.loginT[data-v-59842dc6]{font-size: 16px;text-align: center;width:50%;line-height: 40px;cursor: pointer;
}
.loginT.active[data-v-59842dc6]{border-bottom: 3px solid #0bb8b2;
}
.loginP_bottom[data-v-59842dc6]{background-color: #ddd;color:#333;border-top:1px solid #eee;border-radius: 0 0 10px 10px;line-height: 60px;
}
.loginP_bottom a[data-v-59842dc6]:hover{text-decoration: underline;
}
/*注册*/
.regBox[data-v-59842dc6]{width: 500px;margin:0 auto;
}
.regBox h2[data-v-59842dc6],.regBox h3[data-v-59842dc6]{font-size:28px;font-weight: bold;line-height: 36px;color:#0bb8b2;
}




















































































































































































































































/*登录*/
.bgLogin[data-v-25ae63f9]{ /* Safari 5.1 - 6.0 */ /* Opera 11.1 - 12.0 */ /* Firefox 3.6 - 15 */
    background: linear-gradient(30deg,#007991, #78ffd6); /* 标准的语法 */
}
.loginBg[data-v-25ae63f9]{padding:80px 0;
}
.login-des[data-v-25ae63f9]{width: 100%;text-align: center;margin-right: 30px;-ms-flex-negative: 1;flex-shrink: 1;
}
.login-des img[data-v-25ae63f9]{width:500px;margin:0 auto;
}
.loginBox[data-v-25ae63f9]{min-width: 420px;
}
.login-panel[data-v-25ae63f9]{background-color: #fff;border-radius: 10px 10px 0 0;padding:15px 30px;-ms-flex-negative: 0;flex-shrink: 0;
}
.loginT[data-v-25ae63f9]{font-size: 16px;text-align: center;width:50%;line-height: 40px;cursor: pointer;
}
.loginT.active[data-v-25ae63f9]{border-bottom: 3px solid #0bb8b2;
}
.loginPhone[data-v-25ae63f9]{border:1px solid #ddd;height: 40px;line-height: 40px;margin-top:15px;padding:0 15px 0 45px;
}
.loginPhone input[data-v-25ae63f9]{height: 40px;line-height: 40px;
}
.loginPhone img[data-v-25ae63f9]{width: 24px;height: 24px;position: absolute;top:8px;left: 10px;
}
.loginInput img[data-v-25ae63f9]{width: 24px;height: 24px;position: absolute;top:8px;left: 10px;
}
.loginCode[data-v-25ae63f9]{border:1px solid #ddd;height: 40px;line-height: 40px;padding:0 15px 0 45px;-ms-flex-negative: 1;flex-shrink: 1;margin-right: 15px;
}
.loginCode input[data-v-25ae63f9]{height: 40px;line-height: 40px;
}
.loginCodeBtn[data-v-25ae63f9]{background-color: #0bb8b2;color:#fff;height: 40px;line-height: 40px;padding:0 30px;-ms-flex-negative: 0;flex-shrink: 0;
}
.loginBtn[data-v-25ae63f9]{background-color: #0bb8b2;color:#fff;height: 40px;line-height: 40px;width:100%;text-align: center;display: block;margin-top: 15px;font-size: 16px;
}
.loginCodeBtn[data-v-25ae63f9]:hover,.loginBtn[data-v-25ae63f9]:hover{background-color:#0a9e9b;color:#fff;
}
.loginP_bottom[data-v-25ae63f9]{background-color: #ddd;color:#333;border-top:1px solid #eee;border-radius: 0 0 10px 10px;line-height: 60px;
}
.loginP_bottom a[data-v-25ae63f9]:hover{text-decoration: underline;
}
.vertifyPic[data-v-25ae63f9]{
    height:40px;
    width:100%;
}
/*注册*/
.regBox[data-v-25ae63f9]{width: 500px;margin:0 auto;
}
.regBox h2[data-v-25ae63f9],.regBox h3[data-v-25ae63f9]{font-size:28px;font-weight: bold;line-height: 36px;color:#0bb8b2;
}



































































































































/*登录*/
.bgLogin[data-v-0b229e2a]{ /* Safari 5.1 - 6.0 */ /* Opera 11.1 - 12.0 */ /* Firefox 3.6 - 15 */
    background: linear-gradient(30deg,#007991, #78ffd6); /* 标准的语法 */
}
.loginBg[data-v-0b229e2a]{padding:80px 0;
}
.login-des[data-v-0b229e2a]{width: 100%;text-align: center;margin-right: 30px;-ms-flex-negative: 1;flex-shrink: 1;
}
.login-des img[data-v-0b229e2a]{width:500px;margin:0 auto;
}
.loginBox[data-v-0b229e2a]{min-width: 420px;
}
.login-panel[data-v-0b229e2a]{background-color: #fff;border-radius: 10px 10px 0 0;padding:15px 30px;-ms-flex-negative: 0;flex-shrink: 0;
}
.loginT[data-v-0b229e2a]{font-size: 16px;text-align: center;width:50%;line-height: 40px;cursor: pointer;
}
.loginT.active[data-v-0b229e2a]{border-bottom: 3px solid #0bb8b2;
}
.loginCodeBtn[data-v-0b229e2a]:hover,.loginBtn[data-v-0b229e2a]:hover{background-color:#0a9e9b;color:#fff;
}
.loginP_bottom[data-v-0b229e2a]{background-color: #ddd;color:#333;border-top:1px solid #eee;border-radius: 0 0 10px 10px;line-height: 60px;position: relative;font-size:14px;width:100%;
    height: 60px;
}
.loginP_bottom a[data-v-0b229e2a]:hover{text-decoration: underline;
}
/*注册*/
.regBox[data-v-0b229e2a]{width: 500px;margin:0 auto;
}
.regBox h2[data-v-0b229e2a],.regBox h3[data-v-0b229e2a]{font-size:28px;font-weight: bold;line-height: 36px;color:#0bb8b2;
}







































































































































































































































































































































































































































































































































































































/*确认订单*/
#orderConfirm[data-v-426ea7a0]{padding:10px 0;font-size: 14px;
}
.orderBg[data-v-426ea7a0]{background-color: #fff;padding:15px;
}
.order_tit[data-v-426ea7a0]{color:#333;font-weight:bold;padding-left:10px;margin-bottom:15px;border-left:5px solid #0bb8b2;font-size:16px;
}
.uoD_item[data-v-426ea7a0],.uoD_lf[data-v-426ea7a0],.uoD_rg[data-v-426ea7a0]{font-size: 14px;
}
/*地址*/
.o_address[data-v-426ea7a0]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;margin-bottom:15px;background-color:#f2f2f2;
}
.o_a_item[data-v-426ea7a0]{width:100%;padding:15px;
}
.o_a_item h2[data-v-426ea7a0]{color:#333;font-size:14px;font-weight: bold;
}
.o_add_inbox[data-v-426ea7a0]{
    background-color: #fff;
    padding:10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.addBorder[data-v-426ea7a0]{
    display: block;
    width: 100%;
    height: .13333rem;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAKCAMAAADfAc3wAAAAGFBMVEXNgICAoNb////q8Pn36urSjIyNqdqLqNkE9yOTAAAAPUlEQVQoz6XLORIAIAgEQeTQ///YxGMJWSadatGUzQEty9dDoHBpWJWGTbhqEZct4Lr9mLAPM/Ziyh7MWd3ubAQbDaoQkwAAAABJRU5ErkJggg==) repeat-x;
    background-size: .8rem .13333rem;
}
.o_a_info[data-v-426ea7a0]{
    width:100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.o_a_name[data-v-426ea7a0]{
    width:130px;
}
.o_a_name .el-icon-success[data-v-426ea7a0]{
    font-size: 16px;
    color:#0bb8b2;
    margin-top:5px;
    margin-right: 10px;
}
.o_a_name span[data-v-426ea7a0]{
    border:1px solid #0bb8b2;
    border-radius: 3px;
    font-size: 12px;
    color:#0bb8b2;
    padding:0 10px;
    height: 24px;
    line-height: 24px;
}
.o_a_phone[data-v-426ea7a0]{
    font-size: 14px;
    color:#999;
    margin-top: 2px;
    width:150px;
    padding-left: 15px;
}
.o_a_address[data-v-426ea7a0]{
    font-size: 14px;
    color:#999;
    width:400px;
    padding-left: 15px;
}
.o_a_arrow[data-v-426ea7a0]{
    width:100px;
    text-align: right;
}
/*地址列表*/
.o_list_info[data-v-426ea7a0]{
    padding:0 15px 10px 25px;
    width:100%;
}
.o_list_name[data-v-426ea7a0]{
    width:102px;
    padding-left: 15px;
}
.o_list_name span[data-v-426ea7a0]{
    border:1px solid #0bb8b2;
    border-radius: 3px;
    font-size: 12px;
    color:#0bb8b2;
    padding:0 10px;
    height: 24px;
    line-height: 24px;
}
.o_list_phone[data-v-426ea7a0]{
    font-size: 14px;
    color:#999;
    margin-top: 2px;
    width:150px;
    padding-left: 15px;
}
.o_list_addr[data-v-426ea7a0]{
    font-size: 14px;
    color:#999;
    width:400px;
    padding-left: 15px;
}
/*添加地址-弹框*/
.selPlace[data-v-426ea7a0]{
    width:100%;
    height: 300px;
    z-index:1000;
    -webkit-box-shadow: 0 0 5px 5px #ddd;
            box-shadow: 0 0 5px 5px #ddd;
    overflow-y: visible;
    overflow-x:auto;
}
/*发票-弹框*/
.invoiceForm[data-v-426ea7a0]{
    width:500px;
    margin-top:15px;
}
.m_sel[data-v-426ea7a0]{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    font-size:14px;
    margin-bottom: 10px;
}
.m_tit[data-v-426ea7a0]{width:90px;
}
/*送货*/
.o_sendWay[data-v-426ea7a0]{margin-bottom:15px;
}
/*确认订单信息*/
.o_c_head[data-v-426ea7a0]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;padding:10px 15px;background-color: #f5f5f5;
}
.oc_list[data-v-426ea7a0]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;background-color: #fff;border:1px solid #ddd;border-top:none;padding:10px 15px;
}
.oc_table[data-v-426ea7a0]{margin:10px 0 15px 0;border-top:1px solid #ddd;
}
.oc_info[data-v-426ea7a0]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;width:100%;-ms-flex-negative: 1;flex-shrink: 1;
}
.oc_num[data-v-426ea7a0]{-ms-flex-preferred-size: 120px;flex-basis: 120px;text-align: center;-ms-flex-negative: 0;flex-shrink: 0;
}
.oc_message[data-v-426ea7a0]{padding-left: 15px;
}
.oc_unit[data-v-426ea7a0]{-ms-flex-preferred-size: 150px;flex-basis: 150px;text-align: center;-ms-flex-negative: 0;flex-shrink: 0;
}
.oc_count[data-v-426ea7a0]{-ms-flex-preferred-size: 150px;flex-basis: 150px;text-align: center;-ms-flex-negative: 0;flex-shrink: 0;text-align: center;
}
.oc_top[data-v-426ea7a0]{background-color: #f5f5f5;color:#666;padding:10px 15px;border:1px solid #f5f5f5;
}
.oc_pic[data-v-426ea7a0]{width:80px;height: 80px;
}
.oc_pic img[data-v-426ea7a0]{width:80px;height: 80px;
}
/*开票*/
.o_invoice[data-v-426ea7a0]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;margin-bottom:15px;
}
.o_i_item[data-v-426ea7a0]{background-color:#f2f2f2;width:28%;padding:15px;margin-right: 15px;
}
.o_i_item[data-v-426ea7a0]{margin-bottom:5px;
}
/*结尾*/
.orderText[data-v-426ea7a0]{text-align: right;
}
/*.orderBtn{background-color:#ff6600;color:#fff;height:40px;line-height: 40px;width:120px;text-align: center;display: inline-block;font-size: 18px;}*/
.orderBtn[data-v-426ea7a0]{font-size: 22px;padding:15px 30px;margin-top:10px;
}
.realPay[data-v-426ea7a0]{font-size:26px;
}
/*格式*/














































































































































































































/*确认订单*/
#orderConfirm[data-v-3035d308]{padding:10px 0;
}
.orderBg[data-v-3035d308]{background-color: #fff;padding:15px;
}
.orderBg h1[data-v-3035d308]{
    font-size:18px;
    margin-bottom: 15px;
    color:#333;
}
.orderBg h1 span[data-v-3035d308]{
    color: #d4282d;
    font-size: 22px;
    padding-right: 3px;
}
.orderInfo[data-v-3035d308]{
    margin-bottom:30px;
    background-color: #f2f2f2;
    padding:0 15px;
}
.payBox[data-v-3035d308]{
    padding:5px 200px;
}
.payInbox[data-v-3035d308]{
    text-align: center;
}
.payImg[data-v-3035d308]{
    width:200px;
    height: 200px;
    border-radius: 10px;
}
.payPic[data-v-3035d308]{
    width:200px;
    height: 200px;
    border-radius: 10px;
    border:1px solid #c89e59;
}
.payTit[data-v-3035d308]{
    line-height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 15px;
}
.payTit span[data-v-3035d308]{
    line-height: 24px;
    font-size:16px;
    padding-left: 5px;
}
.wx[data-v-3035d308]{
    border:1px solid #41b035;
}
.paypal[data-v-3035d308]{
    border:1px solid #009fe8;
}
.o_p[data-v-3035d308]{
    border-bottom:1px solid #e4e4e4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding:10px 0;
}
.o_p[data-v-3035d308]:last-child{
    border-bottom: none;
}
.o_p_img[data-v-3035d308]{
    width:60px;
    height: 60px;
    padding-right:10px
}
.opImg[data-v-3035d308]{
    width:60px;
    height: 60px;
    background-color: #fff;
}
.o_p_info h2[data-v-3035d308]{
    color:#333;
}
.o_p_info p[data-v-3035d308]{
    font-size: 12px;
    display: block;
    line-height: 18px;
}





















































































































































































































































/*用户中心*/
#unIndex[data-v-48a33f1e]{padding:10px 0;
}
.uc_index_mine[data-v-48a33f1e]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;
}
.usTit[data-v-48a33f1e]{font-weight: bold;font-size: 18px;line-height: 36px;
}
.uc_i_myInfo[data-v-48a33f1e]{width:100%;
}
.uc_i_myInfo h2[data-v-48a33f1e]{font-size: 20px;color:#333;margin-bottom:5px;
}
.ucI_a_block[data-v-48a33f1e]{display: block;
}
.ucI_a[data-v-48a33f1e]{color:#666;display: inline-block;border-right:1px solid #ddd;line-height: 20px;font-size: 14px;
}
.ucI_a[data-v-48a33f1e]:last-child{border:none;
}
.uc_i_order[data-v-48a33f1e]{width:50%;display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end;
}
.ucI_item[data-v-48a33f1e]{width:100px;text-align: center;font-size: 14px;
}
.ucI_item[data-v-48a33f1e]:hover{cursor: pointer;color:#0bb8b2;
}
.ucI_item img[data-v-48a33f1e]{width:30px;height: 30px;display: block;margin:0 auto;
}
.ucI_text label[data-v-48a33f1e]{color:#f85a5b;padding-left: 5px;font-weight: bold;width:100%;font-size: 14px;
}
.uc_index_md[data-v-48a33f1e]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;
}
.ucP_notice[data-v-48a33f1e]{min-height: 200px;
}
.uB_hBox[data-v-48a33f1e]{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;
}
.uB_half[data-v-48a33f1e]{
    width:50%;
}
.ucP_s_item[data-v-48a33f1e]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;background-color: #f5f5f5;padding:10px;width:100%;
}
.ucP_s_image[data-v-48a33f1e]{width:80px;text-align: center;
}
.ucP_s_image img[data-v-48a33f1e]{margin:0 auto;padding:0 5px;width:50px;height:50px;display:block;
}
.ucP_s_image span[data-v-48a33f1e]{width:100%;text-align: center;display:block;color:#999;
}
.ucP_s_info[data-v-48a33f1e]{color:#333;
}
.toLink[data-v-48a33f1e]{color:#666;font-size: 14px;
}
.toLink[data-v-48a33f1e]:hover{color: #0bb8b2;cursor: pointer;
}
/*消息通知*/
.moreText[data-v-48a33f1e]{color:#666;font-size: 14px;font-weight: normal;
}
.moreText[data-v-48a33f1e]:hover{color:#0bb8b2;cursor: pointer;
}
.ucP_n_top[data-v-48a33f1e]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;line-height: 30px;
}
.u_n_a[data-v-48a33f1e]{-ms-flex-negative:0;flex-shrink:0;max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.u_n_a[data-v-48a33f1e]:hover{cursor: default;
}
.ucP_n_top label[data-v-48a33f1e]{width:100px;-ms-flex-negative:1;flex-shrink:1;color:#999;text-align: right;font-size: 13px;
}
/*我的收藏*/
.uc_index_collect[data-v-48a33f1e]{min-height: 300px;
}
.uc_c_item[data-v-48a33f1e]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;
}
.proBox[data-v-48a33f1e]{
    background-color:#fff;
    border:1px solid #f0f0f0;
    padding:15px;
    width:194px;
    position: relative;
    max-width:194px;
    min-height:200px;
    margin-bottom:25px;
    margin-right:15px;
}
.proBox[data-v-48a33f1e]:nth-child(5n){
    margin-right:0;
}
.proBox[data-v-48a33f1e]:hover{
    border:1px solid #e4e4e4;
    -webkit-box-shadow:0 2px 10px 0px #ddd;
            box-shadow:0 2px 10px 0px #ddd;
}
.proBox:hover .proInfo[data-v-48a33f1e]{
    border:1px solid #e4e4e4;
    border-top:none;
    -webkit-box-shadow:0 2px 10px 0px #ddd;
            box-shadow:0 2px 10px 0px #ddd;
}
.proBox:hover .gallery[data-v-48a33f1e]{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
.proImg[data-v-48a33f1e]{
    width:100%;
    height:190px;
    line-height: 188px;
    margin-bottom:5px;
    text-align: center;
}
.proImg[data-v-48a33f1e]:hover{
    cursor: pointer;
}
/*.proImg a .imgFix{*/
/*    width:180px;*/
/*    height:180px;*/
/*}*/
/*.imgFix img{*/
/*    line-height: 188px;*/
/*}*/
.imgFix[data-v-48a33f1e]{
    width:180px;
    height: 180px;
}
.proInfo[data-v-48a33f1e]{
    position:absolute;
    top:210px;
    left:-1px;
    z-index: 10;
    background-color:#fff;
    width:194px;
    padding:0 15px 15px 15px;
}
.proName[data-v-48a33f1e]{
    color:#333;
    font-size: 14px;
}
.price[data-v-48a33f1e]{
    font-size: 18px;
    font-size: 14px;
}
.proTit[data-v-48a33f1e]{
    line-height: 24px;
    font-size: 14px;
}


.ucBlock[data-v-281be2a4]{display: block;font-size:14px;color:#333;
}























































































































































































































































































































































































/*我的订单*/
.o_d_top[data-v-9b20b206]{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    background-color: #f5f5f5;
}
.o_d_top .o_d_pro[data-v-9b20b206],.o_d_top .o_d_receiver[data-v-9b20b206],.o_d_top .o_d_price[data-v-9b20b206],.o_d_top .o_d_state[data-v-9b20b206],.o_d_top .o_d_control[data-v-9b20b206]{
    padding:5px 10px;
}
.o_d_pro[data-v-9b20b206]{
    width:50%;
}
.o_d_date[data-v-9b20b206]{
    width:200px;
}
.o_d_receiver[data-v-9b20b206]{
    width:12%;
    text-align: center;
    font-size: 13px;
}
.o_d_receiver[data-v-9b20b206]:hover{
    cursor: default;
}
.o_bLf[data-v-9b20b206]{
    border-left: 1px solid #e4e4e4;
    padding:10px;
}
.o_d_price[data-v-9b20b206]{
    width:13%;
    text-align: center;
    font-size: 13px;
}
.o_d_price p[data-v-9b20b206]{
    border-top:1px solid #e4e4e4;
}
.o_d_state[data-v-9b20b206]{
    width:13%;
    text-align: center;
    font-size: 13px;
}
.o_d_control[data-v-9b20b206]{
    width:12%;
    text-align: center;
    font-size: 13px;
}
.i_order_top[data-v-9b20b206]{
    background-color: #f5f5f5;
    margin-top:15px;
    font-size: 12px;
    line-height: 30px;
    padding:0 15px;
    border:1px solid #e4e4e4;
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.i_o_content[data-v-9b20b206]{
    border:1px solid #e4e4e4;
    border-top:none;
}
.i_o_item[data-v-9b20b206]{
    padding:10px;
}
.i_o_pic[data-v-9b20b206]{
    width:80px;
    height: 80px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border:1px solid #e4e4e4;
}
.i_o_info[data-v-9b20b206]{
    padding:0 0 0 15px;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    font-size: 13px;
    width: 100%;
}
.i_o_name[data-v-9b20b206]{
    line-height:18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.i_o_name[data-v-9b20b206]:hover{
    color:#0bb8b2;
    cursor: pointer;
}
.cro_btn[data-v-9b20b206]{
    margin:5px 0;
    display: inline-block;
}
.cro_btn[data-v-9b20b206]:hover{
    color:#0bb8b2;
    cursor: pointer;
    border-bottom:1px solid #0bb8b2;
}
.cro_eva[data-v-9b20b206]:hover{
    color:#fff;
}

























































































































































































































































































/*订单详情*/
.uc_od_head[data-v-2538f3b1]{background-color: #f5f5f5;line-height: 30px;padding:5px 15px;font-size: 13px;margin-top:15px;
}
.uod_btn[data-v-2538f3b1]{margin-right: 15px;font-size: 13px;height: 30px;line-height: 30px;
}
.stateText[data-v-2538f3b1]{font-size: 18px;font-weight: bold;margin-left:10px;
}
.ucod_pro[data-v-2538f3b1]{padding:10px 0;border-bottom:1px solid #eee;font-size:14px;
}
.od_img[data-v-2538f3b1]{width: 80px;height: 80px;
}
.od_img img[data-v-2538f3b1]{max-height: 80px;max-width: 80px;
}
.od_des[data-v-2538f3b1]{width:40%;
}
.od_num[data-v-2538f3b1]{width: 15%;
}
.od_uPrice[data-v-2538f3b1]{width:15%;
}
.od_price[data-v-2538f3b1]{width: 30%;
}
.od_info[data-v-2538f3b1]{padding-left: 15px;color:#999;font-size: 12px;line-height: 20px;
}
.od_info h2[data-v-2538f3b1]{color:#333;font-size: 14px;min-height: 40px;
}
.uoD_tit[data-v-2538f3b1]{line-height: 30px;margin-top: 15px;
}
.uoD_tit .defaultBtn[data-v-2538f3b1]{font-size: 13px;height: 30px;line-height: 30px;
}
.uoD_item[data-v-2538f3b1]{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;
}
.uoD_lf[data-v-2538f3b1]{width:80px;font-size: 14px;
}
.uoD_rg[data-v-2538f3b1]{font-size: 14px;
}
.uoD_s_rg[data-v-2538f3b1]{background-color: #f5f5f5;height: 140px;overflow-y:auto;width: 450px;padding:15px;
}
.us_box[data-v-2538f3b1]{border-left: 1px solid #ddd;min-height: 140px;font-size: 12px;
}
.us_item[data-v-2538f3b1]{padding-left: 20px;position: relative;margin-bottom: 10px;line-height: 20px;
}
.us_spot[data-v-2538f3b1]{width:12px;height: 12px;position: absolute;left:-6px;top:6px;z-index: 100;background-color: #ccc;border-radius: 30px;
}
.us_item.active[data-v-2538f3b1]{color:#0e79cc;
}
.us_item.active .us_spot[data-v-2538f3b1]{background-color: #0e79cc;border:3px solid #8bbde3;left:-9px;
}
.us_price[data-v-2538f3b1]{font-size: 28px;font-weight: bold;
}
.order_tit[data-v-2538f3b1]{
    color:#333;
    padding-left: 8px;
    border-left: 5px solid #0bb8b2;
    line-height: 20px;
    margin:10px 0;
    font-size: 16px;
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html[data-v-522f48b2],body[data-v-522f48b2]{margin:0;padding:0
}
html body[data-v-522f48b2]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-v-522f48b2]{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max][data-v-522f48b2]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max][data-v-522f48b2]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body[data-v-522f48b2]{min-width:320px
}
body[data-v-522f48b2]{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.ucTitNav[data-v-522f48b2]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.ucTitNav span[data-v-522f48b2]{font-size:16px;font-weight:bold;color:#333;padding-left:10px;border-left:5px solid #0bb8b2;margin:5px;line-height:30px
}
.selPlace[data-v-522f48b2]{width:100%;height:300px;z-index:1000;-webkit-box-shadow:0 0 5px 5px #ddd;box-shadow:0 0 5px 5px #ddd;overflow-y:visible;overflow-x:auto
}








































































































































/*我的收藏*/
.collectCard[data-v-b1e86536]{
    cursor:pointer;
}
.bottom[data-v-b1e86536] {
    margin-top: 13px;
    line-height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.button[data-v-b1e86536] {
    padding: 0;
    float: right;
}
.cCard.el-card__body[data-v-b1e86536]{
    padding:0 ;
}
.cImg[data-v-b1e86536]{
    width: 100%;
    height:180px;
    display: block;
}
.clearfix[data-v-b1e86536]:before,
.clearfix[data-v-b1e86536]:after {
    display: table;
    content: "";
}
.clearfix[data-v-b1e86536]:after {
    clear: both
}
.price[data-v-b1e86536]{
    font-size:16px;
}
.cList[data-v-b1e86536]{
    min-height: 400px;
    margin-bottom:15px;
    font-size: 14px;
}
.cbottom[data-v-b1e86536]{
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.address-container[data-v-b1e86536]{
    height: 100%;
}

















































































































































































































































































































































/*发票管理*/
.invTable[data-v-2e74a4a9]{display:block;width:100%;
}
.ucTitNav[data-v-2e74a4a9]{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.ucTitNav span[data-v-2e74a4a9]{
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding-left: 10px;
    border-left: 5px solid #0bb8b2;
    margin:5px;
    line-height: 30px;
}
.table-expand[data-v-2e74a4a9] {
    font-size: 0;
}
.table-expand label[data-v-2e74a4a9] {
    width: 90px;
    color: #99a9bf;
}
.table-expand .el-form-item[data-v-2e74a4a9] {
    margin-right: 0;
    margin-bottom: 0;
    width: 50%;
}
.m_sel[data-v-2e74a4a9]{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    font-size:14px;
    margin-bottom: 10px;
}
.m_tit[data-v-2e74a4a9]{width:90px;
}








































































































































































/*我的评价*/
.picContent[data-v-937055dc]{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width:350px;
    margin-top:10px;
}
.picImg[data-v-937055dc]{
    width:50px;
    height:50px;
    display: inline-block;
    margin-right:10px;
}
.price[data-v-937055dc]{
    color:#d4282d;
}
.ue-image[data-v-937055dc]{
    width:70px;
    height: 70px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border:1px solid #e4e4e4;
    margin-right:15px;
}



.topDes{
    background-color: #f0f0f0;
    padding:15px;
    margin-top:15px;
}
.ePanel{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding:15px 0;
    border-bottom:1px solid #ddd;
}
.ePic{
    width:15%;
}
.eImg{
    width:80px;
    height: 80px;
    border:1px solid #e4e4e4;
    padding:5px;
}
.eInfo{
    width:35%;
    color:#333;
}
.eInfo p{
    color:#999;
    font-size:14px;
}
.eBox{
    width:50%;
}
.eLine{
    margin-bottom: 10px;
}
.picUploader .el-upload--picture-card {
    width: 62px;
    height: 62px;
    line-height: 62px;
}
.picUploader .el-upload-list--picture-card .el-upload-list__item {
    width: 62px;
    height: 62px;
}
.picUploader .el-upload-list--picture-card .el-upload-list__item-thumbnail {
    width: 62px;
    height: 62px;
}
.topDes{background-color: #f5f5f5;line-height: 30px;padding:5px 15px;font-size: 13px;
}
.stateText{font-size: 18px;font-weight: bold;
}






























































































































/*我的消息*/
.mlist[data-v-92aa290c]{min-height: 400px;border:none;
}
.ucP_m_tit[data-v-92aa290c]{
    width:800px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    -ms-flex-negative:0;
        flex-shrink:0;
    font-size: 14px;
}


@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBg{background-color:#f2f2f2;display:block;width:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.mPBox{margin:.26667rem;height:100%;background-color:#f2f2f2;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap
}
.mItem{background-color:#fff;border-radius:3px;width:4rem;padding:.26667rem;display:inline-block;margin-bottom:10px
}
.mItem:nth-child(even){margin-left:.26667rem
}
.mImg{width:4rem;height:4rem
}
.mSize{font-size:.29333rem;color:#999
}
.mName{font-size:.37333rem;color:#333;min-height:.8rem;line-height:.48rem;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical
}
.mPrice{font-size:.34667rem;color:#d4282d
}
.mAdv{margin:.26667rem .26667rem 0 .26667rem
}
.mBanner{width:100%;display:block
}
.mAdvPro{margin:.26667rem .26667rem 0 .26667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.mPro{width:4.6rem
}
.hxjEnt{position:fixed;bottom:1.6rem;left:0;z-index:1000
}
.hxjEnt img{width:2.13333rem;height:auto
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBg{background-color:#fff;display:block;width:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.aside{background-color:#f2f2f2;min-height:15.2rem
}
.aside_list{padding:0 .26667rem
}
.aside_list li{padding:.26667rem 0;border-bottom:1px solid #ddd
}
.acontainer{background-color:#fff;height:100%;min-height:15.2rem
}
.as_box{width:33%;text-align:center;font-size:.32rem;height:2.93333rem;-ms-flex-item-align:start;align-self:flex-start
}
.as_img{width:1.33333rem;height:1.33333rem;display:block;margin:0 auto;-o-object-fit:cover;object-fit:cover
}
.as_box span{margin-top:.13333rem;display:block;line-height:.4rem;padding:0 .10667rem
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBgBox{background-color:#f2f2f2;display:block;width:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.mPBox{margin:.26667rem;height:100%;background-color:#f2f2f2;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap
}
.mItem{background-color:#fff;border-radius:3px;width:4rem;padding:.26667rem;display:inline-block;margin-bottom:10px
}
.mItem:nth-child(even){margin-left:.26667rem
}
.mImg{width:4rem;height:4rem
}
.mSize{font-size:.29333rem;color:#999
}
.mName{font-size:.37333rem;color:#333
}
.mPrice{font-size:.34667rem;color:#d4282d
}
.mAdv{margin:.26667rem .26667rem 0 .26667rem
}
.mBanner{width:100%;display:block
}
.mAdvPro{margin:.26667rem .26667rem 0 .26667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.mPro{width:4.6rem
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;padding:1.2rem 0 1.38667rem 0
}
.m-Swiper{width:10rem;height:10rem;background-color:#fff
}
.m-Swiper .el-carousel__container{height:10rem
}
.m-Simg{width:10rem;height:10rem
}
.m-PInfo{background-color:#fff;margin-top:.26667rem;padding:.26667rem
}
.m-PInfo .cname{font-size:.48rem;color:#333;margin-bottom:.13333rem
}
.m-PInfo .ename{font-style:.4rem;color:#999;margin-bottom:.13333rem;line-height:.53333rem
}
.m-PInfo .cas{font-size:.32rem;color:#fff;background-color:#0bb8b2;display:inline-block;margin-bottom:.13333rem;padding:0 .26667rem;border-radius:0 20px 20px 0;line-height:.64rem
}
.mPrice{margin-top:.13333rem
}
.mPrice-it{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap
}
.mPrice-top{color:#d4282d;font-size:.58667rem;font-weight:normal;width:100%
}
.mPrice-top .mP-unit{font-size:.34667rem
}
.mPrice-type{width:auto;font-size:.32rem;padding-top:.10667rem
}
.mPrice-foot{font-size:.32rem;color:#666;width:100%
}
.mPrice-foot span{font-size:.32rem
}
.mg_box{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:.13333rem
}
.mg_panel{width:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap
}
.mg_tit{width:1.33333rem;color:#999;font-size:.37333rem
}
.mg_mg_info{width:1.6rem;color:#5e5e5e;font-size:.37333rem
}
.m-PSend{background-color:#fff;margin-top:.26667rem;padding:0 .26667rem
}
.m-d-line{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:1.38667rem;line-height:1.38667rem
}
.m-d-lf{color:#999;width:2.13333rem
}
.m-d-rg{text-align:left;width:100%
}
.m-d-line .icon{font-size:.64rem;line-height:1.38667rem;color:#999;text-align:right;padding-left:.05333rem
}
.m-evaluate{background-color:#fff;margin-top:.26667rem;padding:0 .26667rem .53333rem .26667rem
}
.m-eva-top{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:1.38667rem;line-height:1.38667rem
}
.m-eva-top .icon{font-size:.64rem;line-height:1.38667rem;color:#999;text-align:right;padding-left:.05333rem
}
.m-eva-lf{width:300px
}
.m-eva-rg{width:100%;text-align:right;color:#666
}
.m-eva-tit{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:.8rem;margin-top:5px
}
.m-eva-score{font-size:.37333rem;color:#666;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap
}
.starTit{line-height:20px
}
.m-eva-content{font-size:.37333rem;color:#333;margin-bottom:5px
}
.m-eva-pic{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap
}
.mEvaImg{width:1.68rem;height:1.68rem;padding-right:.26667rem
}
.meImg{width:1.68rem;height:1.68rem
}
.m-pro-detail{background-color:#fff;margin-top:.26667rem;padding:0 .26667rem .53333rem .26667rem
}
.m-pro-detail h1{height:1.38667rem;line-height:1.38667rem
}
.m-pro-foot{width:100%;height:1.38667rem;position:fixed;bottom:0;left:0;background-color:#fff;border-top:1px solid #eee;z-index:1000
}
.mpf{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:distribute;justify-content:space-around;padding-top:0 .13333rem
}
.onCollect{width:20%;text-align:center;border-right:1px solid #eee;height:1.38667rem;line-height:1.38667rem
}
.onCollect .icon{font-size:.72rem;height:1.38667rem;line-height:1.38667rem;color:#999
}
.onCollect .el-icon-star-on{color:#0bb8b2
}
.buyNow{background-color:#0bb8b2;color:#fff;height:1.38667rem;line-height:1.38667rem;width:40%;text-align:center
}
.addCart{background-color:#333;color:#fff;height:1.38667rem;line-height:1.38667rem;width:40%;text-align:center
}
.g-drawer .el-drawer{min-height:10.66667rem
}
.g-drawer .el-drawer__header{padding:.26667rem;margin-bottom:0
}
.choiceBox{padding:0 .26667rem
}
.c-coi-top{border-bottom:1px solid #ddd;height:2.13333rem
}
.c-coi-pic{width:1.6rem;height:1.6rem;padding-right:.26667rem;-ms-flex-negative:0;flex-shrink:0
}
.c-coi-pic img{width:1.6rem;height:1.6rem;-o-object-fit:fill;object-fit:fill
}
.c-coi-rg{width:100%;-ms-flex-negative:1;flex-shrink:1
}
.c-oi-item{width:2.4rem;text-align:center;font-size:.32rem
}
.c-oi-item.active{color:#d4282d
}
.c-oi-p{font-size:.42667rem
}
.c-oi-p label{font-weight:normal;font-size:.34667rem
}
.c-oi-item span{width:100%;display:block
}
.c-coi-stroage{font-size:.32rem;color:#999
}
.c-coi-size{height:2.66667rem;overflow-y:auto
}
.c-coi-mid h1{line-height:1.06667rem
}
.c-coi-foot{height:1.6rem;border-top:1px solid #ddd;margin-top:.26667rem
}
.c-coi-cout{padding-top:.74667rem;color:#d4282d
}
.c-coi-btn{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;padding-top:.26667rem
}
.mD-btn{width:50%
}
.mD-btn:first-child{background-color:#333;color:#fff
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;padding:1.2rem 0 1.38667rem 0
}
.m-evaluate{background-color:#fff;margin-top:.26667rem;padding:0 .26667rem .53333rem .26667rem
}
.m-eva-top{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:1.38667rem;line-height:1.38667rem
}
.m-eva-top .icon{font-size:.64rem;line-height:1.38667rem;color:#999;text-align:right;padding-left:.05333rem
}
.m-eva-lf{width:300px
}
.m-eva-rg{width:100%;text-align:right
}
.m-eva-rg span{color:#f40
}
.m-eva-tit{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:.8rem;margin-top:5px
}
.m-eva-star{padding-top:.18667rem;padding-left:.18667rem
}
.m-eva-time{font-size:.32rem;color:#999
}
.m-eva-content{font-size:.37333rem;color:#333;margin-bottom:5px
}
.m-eva-pic{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap
}
.mEvaImg{width:1.68rem;height:1.68rem;padding-right:.26667rem
}
.meImg{width:1.68rem;height:1.68rem
}
.m-eva-panel{padding:.08rem 0 .4rem 0;border-bottom:1px solid #ddd
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.mbg{padding-bottom:1.28rem
}
.moHead{width:100%;height:1.2rem;position:fixed;top:0;left:0;background-color:#fafafa;border-bottom:1px solid #eee;z-index:1000
}
.mo-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.mo-nav .icon{font-size:.69333rem;line-height:1.2rem;padding:0 .26667rem
}
.mo-edit{padding-right:.26667rem;font-size:.4rem;color:#666
}
.navText{height:1.2rem;line-height:1.2rem;font-size:.48rem
}
.unLogin{width:100%;text-align:center;padding-top:2.66667rem
}
.lBtn{width:5.33333rem;font-size:.42667rem
}
.m-c-item{background:#fff;padding:.26667rem;margin-top:.26667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:distribute;justify-content:space-around
}
.m-c-check{width:.66667rem;height:2.4rem;line-height:2.4rem
}
.m-c-pic{width:2.4rem;height:2.4rem;padding-right:.26667rem
}
.mc-image{width:2.4rem;height:2.4rem;-o-object-fit:contain;object-fit:contain;background-color:#f2f2f2
}
.m-c-info{width:6.13333rem
}
.m-c-name{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#333;line-height:.48rem;min-width:6.13333rem
}
.m-c-mid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;margin-top:5px
}
.m-c-spec{font-size:.32rem;color:#999;line-height:.48rem;width:100%;word-break:break-all
}
.mc-price{line-height:.48rem;color:#d4282d;width:100%;word-break:break-all;text-align:right
}
.m-c-number{margin-top:5px;font-size:.32rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end
}
.countNav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:1.28rem;line-height:1.28rem;background-color:#fff;position:fixed;left:0;bottom:1.38667rem;width:10rem
}
.countCheck{width:2.66667rem;padding-left:.26667rem
}
.countInfo{width:7.06667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap
}
.c-n-total{width:4.4rem;color:#d4282d;text-align:right;padding-right:.26667rem
}
.c-n-confirm{background-color:#0bb8b2;width:2.66667rem;color:#fff;text-align:center
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.mbg{padding-bottom:1.28rem
}
.unLogin{width:100%;text-align:center;padding-top:2.66667rem
}
.lBtn{width:5.33333rem;font-size:.42667rem
}
.m-c-item{background:#fff;padding:.26667rem;margin-top:.26667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:distribute;justify-content:space-around
}
.m-c-check{width:.66667rem;height:2.4rem;line-height:2.4rem
}
.m-c-pic{width:2.4rem;height:2.4rem;padding-right:.26667rem
}
.mc-image{width:2.4rem;height:2.4rem;-o-object-fit:contain;object-fit:contain;background-color:#f2f2f2
}
.m-c-info{width:6.13333rem
}
.m-c-name{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#333;line-height:.48rem;min-width:6.13333rem
}
.m-c-spec{font-size:.29333rem;color:#999;display:inline-block;border-right:3px;-ms-flex-wrap:nowrap;flex-wrap:nowrap;padding:0 .13333rem;height:.48rem;line-height:.48rem;margin-top:5px
}
.m-c-spec span{display:block;float:left
}
.m-c-spec .icon{font-size:.29333rem;color:#999;height:.48rem;line-height:.48rem;padding-left:.08rem;float:left
}
.m-c-price{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.mc-price{text-align:left
}
.countNav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:1.28rem;line-height:1.28rem;background-color:#fff;position:fixed;left:0;bottom:1.38667rem;width:10rem
}
.countCheck{width:2.66667rem;padding-left:.26667rem
}
.m-editInfo{width:7.06667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:.13333rem .26667rem;text-align:right
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.loginBox{width:10rem;margin-top:.26667rem
}
.login-panel{background-color:#fff;padding:.26667rem;-ms-flex-negative:0;flex-shrink:0
}
.loginT{font-size:16px;text-align:center;width:50%;line-height:40px;cursor:pointer
}
.loginT.active{border-bottom:3px solid #0bb8b2
}
.loginP_bottom{background-color:#ddd;color:#333;line-height:60px;position:fixed;bottom:0;left:0;width:10rem
}
.loginP_bottom a:hover{text-decoration:underline
}
.vertifyPic{height:40px;width:100%
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.regBox{width:10rem;margin-top:.26667rem
}
.regBox h2,.regBox h3{font-size:28px;font-weight:bold;line-height:36px;color:#0bb8b2
}
.register-panel{background-color:#fff;padding:.26667rem;-ms-flex-negative:0;flex-shrink:0
}
.loginT{font-size:16px;text-align:center;width:50%;line-height:40px;cursor:pointer
}
.loginT.active{border-bottom:3px solid #0bb8b2
}
.loginP_bottom{background-color:#ddd;color:#333;line-height:60px;position:fixed;bottom:0;left:0;width:10rem
}
.loginP_bottom a:hover{text-decoration:underline
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.regBox{width:10rem;margin-top:.26667rem
}
.regBox h2,.regBox h3{font-size:22px;font-weight:bold;line-height:30px;color:#0bb8b2
}
.register-panel{background-color:#fff;padding:.26667rem;-ms-flex-negative:0;flex-shrink:0
}
.loginT{font-size:16px;text-align:center;width:50%;line-height:40px;cursor:pointer
}
.loginT.active{border-bottom:3px solid #0bb8b2
}
.loginPhone{border:1px solid #ddd;height:40px;line-height:40px;margin-top:15px;padding:0 15px 0 45px
}
.loginPhone input{height:40px;line-height:40px
}
.loginPhone img{width:24px;height:24px;position:absolute;top:8px;left:10px
}
.loginInput img{width:24px;height:24px;position:absolute;top:8px;left:10px
}
.loginCode{border:1px solid #ddd;height:40px;line-height:40px;padding:0 15px 0 45px;-ms-flex-negative:1;flex-shrink:1
}
.loginCode input{height:40px;line-height:40px
}
.loginCodeBtn{background-color:#0bb8b2;color:#fff;height:40px;line-height:40px;padding:0 30px;-ms-flex-negative:0;flex-shrink:0
}
.loginBtn{background-color:#0bb8b2;color:#fff;height:40px;line-height:40px;width:100%;text-align:center;display:block;margin-top:15px;font-size:16px
}
.loginCodeBtn:hover,.loginBtn:hover{background-color:#0a9e9b;color:#fff
}
.loginP_bottom{background-color:#ddd;color:#333;line-height:60px;position:fixed;bottom:0;left:0;width:10rem
}
.loginP_bottom a:hover{text-decoration:underline
}
.vertifyPic{height:40px;width:100%
}
.fTit{margin-bottom:0
}
.fTit .el-form-item__label{padding:0;line-height:36px
}
.fTit.is-error{margin-bottom:22px
}
.fTit.iis-success{margin:0
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.regBox{width:10rem;margin-top:.26667rem
}
.regBox h2,.regBox h3{font-size:28px;font-weight:bold;line-height:36px;color:#0bb8b2
}
.register-panel{background-color:#fff;padding:.26667rem;-ms-flex-negative:0;flex-shrink:0
}
.loginT{font-size:16px;text-align:center;width:50%;line-height:40px;cursor:pointer
}
.loginT.active{border-bottom:3px solid #0bb8b2
}
.loginPhone{border:1px solid #ddd;height:40px;line-height:40px;margin-top:15px;padding:0 15px 0 45px
}
.loginPhone input{height:40px;line-height:40px
}
.loginPhone img{width:24px;height:24px;position:absolute;top:8px;left:10px
}
.loginInput img{width:24px;height:24px;position:absolute;top:8px;left:10px
}
.loginCode{border:1px solid #ddd;height:40px;line-height:40px;padding:0 15px 0 45px;-ms-flex-negative:1;flex-shrink:1
}
.loginCode input{height:40px;line-height:40px
}
.loginCodeBtn{background-color:#0bb8b2;color:#fff;height:40px;line-height:40px;padding:0 30px;-ms-flex-negative:0;flex-shrink:0
}
.loginBtn{background-color:#0bb8b2;color:#fff;height:40px;line-height:40px;width:100%;text-align:center;display:block;margin-top:15px;font-size:16px
}
.loginCodeBtn:hover,.loginBtn:hover{background-color:#0a9e9b;color:#fff
}
.loginP_bottom{background-color:#ddd;color:#333;line-height:60px;position:fixed;bottom:0;left:0;width:10rem
}
.loginP_bottom a:hover{text-decoration:underline
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.m-o-selAdd{padding:.26667rem;background-color:#fff
}
#mHead{width:100%;height:1.2rem;position:fixed;top:0;left:0;background-color:#fafafa;border-bottom:1px solid #eee;z-index:1000
}
.mH-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.mH-nav .icon{font-size:.69333rem;line-height:1.2rem;padding:0 .26667rem
}
.mH-nav .logo{-o-object-fit:fill;object-fit:fill;height:1.12rem;width:auto
}
.cartBadge{position:relative
}
.cartBadge .el-badge__content{position:absolute;top:.34667rem;right:1.33333rem
}
.addBorder{display:block;width:100%;height:.13333rem;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAKCAMAAADfAc3wAAAAGFBMVEXNgICAoNb////q8Pn36urSjIyNqdqLqNkE9yOTAAAAPUlEQVQoz6XLORIAIAgEQeTQ///YxGMJWSadatGUzQEty9dDoHBpWJWGTbhqEZct4Lr9mLAPM/Ziyh7MWd3ubAQbDaoQkwAAAABJRU5ErkJggg==) repeat-x;background-size:.8rem .13333rem
}
.m-o-address{background-color:#fff;padding:.26667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.mo-a-name{width:1.86667rem
}
.mo-a-name span{border:1px solid #0bb8b2;border-radius:3px;font-size:.29333rem;color:#0bb8b2;padding:0 .13333rem
}
.mo-a-info{width:6.93333rem
}
.ml0{margin-left:0 !important
}
.mo-a-address{font-size:.34667rem;color:#999;margin-top:.05333rem
}
.mo-a-arrow{width:.66667rem;text-align:right;line-height:1.33333rem
}
.mo-a-arrow .icon,.iicon{font-size:.48rem;color:#999
}
.m-o-count{background-color:#fff;margin-top:.26667rem;padding:0 .26667rem
}
.mo-c-line{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:1.38667rem;line-height:1.38667rem
}
.m-o-invoice{background-color:#fff;margin-top:.26667rem;padding:0 .26667rem
}
.m-o-invoice .icon{font-size:.48rem;color:#999;line-height:1.38667rem
}
.m-d-item{background:#fff;padding:.13333rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:distribute;justify-content:space-around;border-bottom:1px solid #ddd
}
.m-o-h1{margin:.13333rem 0;padding:0 .26667rem;font-size:.37333rem
}
.m-d-pic{width:2rem;height:2rem;padding-right:.26667rem
}
.md-image{width:2rem;height:2rem;-o-object-fit:contain;object-fit:contain;background-color:#f2f2f2
}
.m-d-info{width:6.8rem
}
.m-d-name{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#333;line-height:.53333rem;min-width:6.13333rem;margin-top:5px
}
.m-d-spec{font-size:.29333rem;color:#999;display:block;border-right:3px;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:.53333rem;line-height:.53333rem;margin-top:5px
}
.m-d-spec span{display:block;float:left
}
.m-d-spec .icon{font-size:.29333rem;color:#999;height:.48rem;line-height:.48rem;padding-left:.08rem;float:left
}
.m-d-price{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.m-o-inBox{background-color:#fff;padding:0 .26667rem
}
.m_tit{width:90px
}
.m-o-foot{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:1.38667rem;line-height:1.38667rem;background-color:#fff;position:fixed;left:0;bottom:0;width:10rem;border-top:1px solid #eee
}
.m-o-pay{padding:0 .26667rem;color:#d4282d;width:6rem
}
.m-o-btn{background-color:#0bb8b2;color:#fff;width:4rem;text-align:center
}
.m-o-btn span{color:#fff
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.m-p-tips{margin:.26667rem
}
.m-p-choice{background-color:#fff;margin-top:.26667rem;padding:0 .26667rem
}
.m-p-item{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:1.38667rem;line-height:1.38667rem
}
.m-p-item .iconActive{font-size:.48rem;color:#0bb8b2;line-height:1.38667rem;padding-right:.26667rem
}
.m-p-item .icon{font-size:.48rem;color:#ddd;line-height:1.38667rem;padding-right:.26667rem
}
.mp-pic{padding:.13333rem .26667rem 0 0
}
.mp-pic img{width:.53333rem;height:.53333rem
}
.wxTit{text-align:center;font-size:.37333rem;color:#333;margin-bottom:10px
}
.wxTit span{font-size:.48rem;color:#d4282d
}
.m-p-foot{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:1.38667rem;line-height:1.38667rem;background-color:#fff;position:fixed;left:0;bottom:0;width:10rem
}
.confirmBtn{background-color:#0bb8b2;color:#fff;font-size:.42667rem
}
.confirmBtn:hover{color:#fff
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;padding:1.2rem 0 1.38667rem 0
}
.addBorder{display:block;width:100%;height:.13333rem;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAKCAMAAADfAc3wAAAAGFBMVEXNgICAoNb////q8Pn36urSjIyNqdqLqNkE9yOTAAAAPUlEQVQoz6XLORIAIAgEQeTQ///YxGMJWSadatGUzQEty9dDoHBpWJWGTbhqEZct4Lr9mLAPM/Ziyh7MWd3ubAQbDaoQkwAAAABJRU5ErkJggg==) repeat-x;background-size:.8rem .13333rem
}
.m-o-address{background-color:#fff;padding:.26667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.m-o-check{width:.93333rem;text-align:left;line-height:1.33333rem
}
.mo-a-name{width:1.73333rem
}
.mo-a-name span{border:1px solid #0bb8b2;border-radius:3px;font-size:.29333rem;color:#0bb8b2;padding:0 .13333rem
}
.mo-a-name .gray{border:1px solid #ddd;color:#999
}
.mo-a-info{width:6.13333rem
}
.mo-a-address{font-size:.34667rem;color:#999;margin-top:.05333rem
}
.mo-a-arrow{width:.66667rem;text-align:right;line-height:1.33333rem
}
.mo-a-arrow .icon{font-size:.48rem;color:#999
}
.m-p-foot{position:fixed;bottom:0;left:0;width:100%;z-index:1000
}
.m-p-Btn{border-radius:0;width:100%;height:1.38667rem
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.m-edit-add{background-color:#fff;padding:.26667rem
}
.formBtn{width:100%;height:1.38667rem;position:fixed;bottom:0;left:0;background-color:#fff;border-top:1px solid #eee;z-index:1000;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap
}
.m-edit-btn{width:50%;height:1.38667rem;line-height:1.38667rem;text-align:center
}
.m-edit-btn.safe{background-color:#0bb8b2;color:#fff
}
.m-f-h{margin-bottom:0;font-size:.42667rem
}
.m-f-h .el-form-item__label{padding-bottom:0
}
.g-drawer .el-drawer{min-height:10.66667rem
}
.g-drawer .el-drawer__header{padding:.26667rem;margin-bottom:0
}
.address-container{height:8.32rem
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;padding:1.2rem 0 1.38667rem 0
}
.addBorder{display:block;width:100%;height:.13333rem;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAKCAMAAADfAc3wAAAAGFBMVEXNgICAoNb////q8Pn36urSjIyNqdqLqNkE9yOTAAAAPUlEQVQoz6XLORIAIAgEQeTQ///YxGMJWSadatGUzQEty9dDoHBpWJWGTbhqEZct4Lr9mLAPM/Ziyh7MWd3ubAQbDaoQkwAAAABJRU5ErkJggg==) repeat-x;background-size:.8rem .13333rem
}
.m-o-address{background-color:#fff;padding:.26667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.m-o-check{width:.93333rem;text-align:left;line-height:1.33333rem
}
.mo-a-name{width:1.73333rem
}
.mo-a-name .green{border:1px solid #0bb8b2;border-radius:3px;font-size:.29333rem;color:#0bb8b2;padding:0 .13333rem
}
.mo-a-name .gray{border:1px solid #ddd;border-radius:3px;font-size:.29333rem;color:#999;padding:0 .13333rem
}
.mo-a-info{width:6.13333rem
}
.mo-a-address{font-size:.34667rem;color:#999;margin-top:.05333rem
}
.mo-a-arrow{width:.66667rem;text-align:right;line-height:1.33333rem
}
.mo-a-arrow .icon{font-size:.48rem;color:#999
}
.m-p-foot{position:fixed;bottom:0;left:0;width:100%;z-index:1000
}
.m-p-Btn{border-radius:0;width:100%;height:1.38667rem
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%;background-color:#f2f2f2
}
.mBg{background-color:#f2f2f2;display:block;width:100%;min-height:15.2rem;height:100%;padding:1.2rem 0 1.38667rem 0
}
.uv-i-Head{width:100%;height:2.4rem;position:fixed;top:0;left:0;background-color:#0bb8b2;z-index:1000;line-height:1.2rem;color:#fff;text-align:center;z-index:0
}
.ui-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.ui-nav .icon{font-size:.69333rem;line-height:1.2rem;padding:0 .26667rem
}
.ui-navText{height:1.2rem;line-height:1.2rem;font-size:.48rem
}
.m-ui-self{position:absolute;top:0rem;left:.26667rem;width:9.46667rem;height:1.41333rem;background-color:#fff;margin-bottom:.26667rem;border-radius:.13333rem;z-index:2000
}
.m-us-box{padding:.26667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center
}
.muc-self{line-height:.8rem;font-size:.48rem
}
.m-ui-order{padding:0 .26667rem;background-color:#fff;border-radius:.13333rem;margin:1.73333rem .26667rem .26667rem .26667rem;z-index:10
}
.mu-tit{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:1.12rem;line-height:1.12rem
}
.mu-order{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;z-index:2
}
.mu-o-item{text-align:center;padding:.26667rem 0;width:2.13333rem;display:inline-block
}
.mu-o-item img{width:.69333rem;height:.69333rem;display:block;margin:0 auto
}
.mu-o-item span{display:block;text-align:center;font-size:.34667rem
}
.mu-other{padding:.26667rem;background-color:#fff;border-radius:.13333rem;margin:.26667rem;z-index:2
}
.mu-other img{width:.88rem;height:.88rem
}
.mu-o-panel{padding:.26667rem;background-color:#fff;border-radius:.13333rem;margin:.26667rem;z-index:2
}
.mu-o-btn{margin:.26667rem;z-index:2
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBg{background-color:#f2f2f2;display:block;width:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.m-u-order{height:1.12rem;background-color:#fff;border-bottom:#ddd;border-bottom:2px solid #fff
}
.mot-box{background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;padding:0 .26667rem;line-height:1.12rem;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%;position:fixed;top:1.2rem;left:0;z-index:1000
}
.mon-item{width:20%;text-align:center;border-bottom:2px solid #fff
}
.mon-item.active{color:#0bb8b2;border-bottom:2px solid #0bb8b2
}
.mot-list{margin:1.33333rem 0 1.38667rem 0;padding-bottom:.4rem
}
.mot-inBox{background-color:#fff;margin-top:.26667rem;padding:0 .26667rem
}
.mot-top{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:.13333rem 0 .08rem 0;border-bottom:1px solid #ddd;font-size:.37333rem
}
.mot-state.finish{color:#0bb8b2
}
.mot-state.unfinish{color:#d4282d
}
.mop-item{background:#f5f5f5;padding:.13333rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:distribute;justify-content:space-around;margin-top:.13333rem
}
.mop-pic{width:1.46667rem;height:1.46667rem;padding-right:.26667rem
}
.mop-image{width:1.46667rem;height:1.46667rem;-o-object-fit:contain;object-fit:contain;background-color:#f2f2f2
}
.mop-info{width:6.8rem
}
.mop-name{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;color:#333;line-height:.48rem;min-width:6.13333rem;font-size:.37333rem;margin-top:5px
}
.mop-spec{font-size:.32rem;color:#999;display:block;height:.48rem;line-height:.48rem;background-color:#f5f5f5
}
.mop-spec span{display:inline-block;float:left
}
.mop-spec .icon{font-size:.29333rem;color:#999;height:.48rem;line-height:.48rem;padding-left:.08rem;float:left
}
.mop-price{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.mot-count{padding:.08rem 0;font-size:.37333rem;border-bottom:1px solid #ddd;text-align:right
}
.mot-control{text-align:right;padding:.13333rem 0
}
.mot-btn{display:inline-block
}
.page{width:100%;height:1.38667rem;position:fixed;bottom:0;left:0;background-color:#fff;border-top:1px solid #eee;z-index:10000
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.mo-state{padding:.26667rem
}
.mo-state-card{background-color:#0bb8b2;color:#fff;padding:.26667rem;font-size:.42667rem;border-radius:.13333rem;height:1.33333rem
}
.mo-distrib{background-color:#fff;padding:.26667rem;margin-bottom:.26667rem
}
.mo-di-line{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap
}
.mo-di-line .icon{font-size:.53333rem;color:#999;padding-top:.10667rem;width:.8rem
}
.mo-di-info .text{color:#0bb8b2
}
.mo-di-info .date{color:#999;font-size:.34667rem
}
.arrowRight{position:absolute;right:.26667rem;top:.4rem;font-size:.53333rem;color:#999
}
.mo-rece{background-color:#fff;padding:.26667rem;margin-bottom:.26667rem
}
.mo-shopList{background-color:#fff;padding:.26667rem;margin-bottom:.26667rem
}
.mop-item{background:#f5f5f5;padding:.13333rem;margin-top:.26667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:distribute;justify-content:space-around
}
.mop-pic{width:1.46667rem;height:1.46667rem;padding-right:.26667rem
}
.mop-image{width:1.46667rem;height:1.46667rem;-o-object-fit:contain;object-fit:contain;background-color:#f2f2f2
}
.mop-info{width:6.8rem
}
.mod-name{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#333;line-height:.48rem;min-width:6.13333rem
}
.mod-spec{font-size:.32rem;color:#999;display:block;height:.48rem;line-height:.48rem
}
.mod-spec span{display:inline-block;float:left
}
.mod-spec .icon{font-size:.29333rem;color:#999;height:.48rem;line-height:.48rem;padding-left:.08rem;float:left
}
.mod-price{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.mo-shopItem{background-color:#fff;padding:.26667rem;margin-bottom:.26667rem
}
.mo-item-line{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}
.mo-tit{width:2rem
}
.mo-text{width:7.46667rem;text-align:right
}
.mo-item-line.count{border-top:1px solid #ddd;margin-top:.26667rem;padding-top:.26667rem
}
.mo-item-line.count .mo-tit{font-weight:bold
}
.mo-item-line.count .mo-text{color:#d4282d
}
.mo-foot{width:100%;height:1.38667rem;position:fixed;bottom:0;left:0;background-color:#fff;border-top:1px solid #eee;z-index:1000;text-align:right
}
.mo-foot-box{line-height:1.38667rem;padding:0 .26667rem
}
.mo-foot .btn{margin-top:.13333rem;font-size:.37333rem
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.moHead{width:100%;height:1.2rem;position:fixed;top:0;left:0;background-color:#fafafa;border-bottom:1px solid #eee;z-index:1000
}
.mo-distrib{background-color:#fff;padding:.26667rem;margin-bottom:.26667rem
}
.mo-di-line{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap
}
.mo-di-line .icon{font-size:.53333rem;color:#999;padding-top:.10667rem;width:.8rem
}
.mo-di-info .text{color:#0bb8b2
}
.mo-di-info .date{color:#999;font-size:.34667rem
}
.arrowRight{position:absolute;right:.26667rem;top:.4rem;font-size:.53333rem;color:#999
}
.mo-rece{background-color:#fff;padding:.26667rem;margin-bottom:.26667rem
}
.md-logistic{background-color:#fff;padding:.26667rem;margin-bottom:.26667rem
}
.mo-shopList{background-color:#fff;padding:.26667rem;margin-bottom:.26667rem
}
.mop-item{background:#f5f5f5;padding:.13333rem;margin-top:.26667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:distribute;justify-content:space-around
}
.mop-pic{width:2rem;height:2rem;padding-right:.26667rem
}
.mop-image{width:2rem;height:2rem;-o-object-fit:contain;object-fit:contain;background-color:#f2f2f2
}
.mop-info{width:6.8rem
}
.mop-name{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;color:#333;line-height:.48rem;min-width:6.13333rem
}
.mop-spec{background-color:#fafafa;font-size:.29333rem;color:#999;display:inline-block;border-right:3px;-ms-flex-wrap:nowrap;flex-wrap:nowrap;padding:0 .13333rem;height:.48rem;line-height:.48rem;margin-top:5px
}
.mop-spec span{display:inline-block;float:left
}
.mop-spec .icon{font-size:.29333rem;color:#999;height:.48rem;line-height:.48rem;padding-left:.08rem;float:left
}
.mop-price{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBg{background-color:#f2f2f2;display:block;width:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.mu-add{background-color:#fff;padding:0 .26667rem;margin-top:.26667rem
}
.mua-top{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:.26667rem 0 .13333rem 0
}
.mua-text{padding-bottom:.26667rem
}
.mua-control{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:.26667rem 0;border-top:1px solid #ddd
}
.mu-addBtn{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:1.38667rem;line-height:1.38667rem;background-color:#fff;position:fixed;left:0;bottom:0;width:100%;border-top:1px solid #eee
}
.mu-addBtn span{background-color:#0bb8b2;color:#fff;width:100%;text-align:center;font-size:.42667rem
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.m-edit-add{background-color:#fff;padding:.26667rem
}
.formBtn{width:100%;height:1.38667rem;position:fixed;bottom:0;left:0;background-color:#fff;border-top:1px solid #eee;z-index:1000;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap
}
.m-edit-btn{width:50%;height:1.38667rem;line-height:1.38667rem;text-align:center
}
.m-edit-btn.safe{background-color:#0bb8b2;color:#fff
}
.m-f-h{margin-bottom:0;font-size:.42667rem
}
.m-f-h .el-form-item__label{padding-bottom:0
}
.g-drawer .el-drawer{min-height:10.66667rem
}
.g-drawer .el-drawer__header{padding:.26667rem;margin-bottom:0
}
.address-container{height:8.32rem
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBg{background-color:#f2f2f2;display:block;width:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.wrapper{overflow:hidden
}
.mCBox{background-color:#f2f2f2;padding:0;margin:0
}
.mItem{background-color:#fff;border-radius:3px;width:4rem;padding:.26667rem;display:inline-block;margin-bottom:10px
}
.mItem:nth-child(even){margin-left:.26667rem
}
.mImg{width:4rem;height:4rem
}
.mSize{font-size:.29333rem;color:#999
}
.mName{font-size:.37333rem;color:#333;height:.64rem
}
.mPrice{font-size:.34667rem;color:#d4282d
}
.el-icon-delete.icon{color:#999;font-size:.4rem
}
.fbox{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;padding:.26667rem;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap
}
.page{width:100%;height:1.38667rem;position:fixed;bottom:0;left:0;background-color:#fff;border-top:1px solid #eee;z-index:1000
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.collect-wrapper{position:relative;padding:0 .26667rem;margin:.26667rem 0
}
.wInner{height:15.2rem;width:10rem
}
.pulldown-wrapper{position:absolute;width:100%;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:all;transition:all
}
.pullup-wrapper{z-index:1000;position:absolute;bottom:0;left:0;width:10rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;background-color:#f2f2f2
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
.mBg{background-color:#f2f2f2;display:block;width:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.mu-invoice{background-color:#fff;padding:0 .26667rem;margin-top:.26667rem
}
.mui-top{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:.26667rem 0 .13333rem 0
}
.mui-text{padding-bottom:.26667rem
}
.mui-control{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:.26667rem 0;border-top:1px solid #ddd
}
.mui-lfTit{width:2.66667rem;color:#999
}
.mu-addBtn{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:1.38667rem;line-height:1.38667rem;background-color:#fff;position:fixed;left:0;bottom:0;width:100%;border-top:1px solid #eee
}
.mu-addBtn span{background-color:#0bb8b2;color:#fff;width:100%;text-align:center;font-size:.42667rem
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.m-edit-add{background-color:#fff;padding:.26667rem .26667rem .8rem .26667rem
}
.m_sel{font-size:.42667rem
}
.formBtn{width:100%;height:1.38667rem;position:fixed;bottom:0;left:0;background-color:#fff;border-top:1px solid #eee;z-index:1000;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap
}
.m-edit-btn{width:50%;height:1.38667rem;line-height:1.38667rem;text-align:center
}
.m-edit-btn.safe{background-color:#0bb8b2;color:#fff
}
.m-f-h .el-form-item__label{padding-bottom:0;line-height:20px
}
.m-f-h .el-form-item__error{display:block
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.mu-me-box{margin-top:.26667rem
}
.mu-me-inbox{background-color:#fff;padding:0 .26667rem .26667rem .26667rem;margin-top:.26667rem
}
.mu-me-top{padding:.26667rem 0 0 0;width:100%
}
.mu-me-pic{padding-top:.26667rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap
}
.meImg{width:1.68rem;height:1.68rem
}
.starTit{width:.93333rem;-ms-flex-negative:0;flex-shrink:0
}
.delComment{color:#999;-ms-flex-negative:0;flex-shrink:0;font-size:.32rem
}
.starInfo{-ms-flex-negative:1;flex-shrink:1;width:100%;margin-top:.05333rem
}
.time{width:100%;font-size:.32rem
}
.mue-item{background:#f5f5f5;padding:.13333rem;margin-top:.13333rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:distribute;justify-content:space-around
}
.mue-pic{width:1.65333rem;height:1.65333rem;padding-right:.18667rem
}
.mue-image{width:1.65333rem;height:1.65333rem;-o-object-fit:contain;object-fit:contain;background-color:#f2f2f2
}
.mue-info{width:100%
}
.mue-name{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;color:#333;line-height:.61333rem;min-width:6.13333rem
}
.mue-spec{font-size:.29333rem;color:#999;display:block;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:.53333rem;line-height:.53333rem
}
.mue-spec span{display:block;float:left
}
.mue-spec .icon{font-size:.29333rem;color:#999;height:.53333rem;line-height:.53333rem;padding-left:.08rem;float:left
}
.mue-price{font-size:.29333rem;color:#666;display:block;height:.53333rem;line-height:.53333rem
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;height:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.meva-pro{padding:.26667rem .26667rem 0 .26667rem;background:#fff
}
.m-eva-item{background:#f5f5f5;padding:.13333rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:distribute;justify-content:space-around;height:1.6rem
}
.umev-image{width:1.6rem;height:1.6rem;background-color:#fff;margin-right:.26667rem
}
.mev-info{width:6.8rem
}
.mev-name{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;color:#333;line-height:.61333rem;min-width:6.13333rem
}
.mev-spec{font-size:.29333rem;color:#999;display:block;border-right:3px;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:.48rem;line-height:.48rem
}
.mev-spec span{display:block;float:left
}
.mev-spec .icon{font-size:.29333rem;color:#999;height:.48rem;line-height:.48rem;padding-left:.08rem;float:left
}
.mev-form{background-color:#fff;padding-bottom:.26667rem
}
.mev-f-box{padding:0 .26667rem
}
.meva-score{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;padding:.26667rem 0
}
.meva-star{padding:.13333rem 0 0 .4rem
}
.picUploader .el-upload--picture-card{width:62px;height:62px;line-height:62px
}
.picUploader .el-upload-list--picture-card .el-upload-list__item{width:62px;height:62px
}
.picUploader .el-upload-list--picture-card .el-upload-list__item-thumbnail{width:62px;height:62px
}
.meva-subit{width:100%;height:1.38667rem;position:fixed;bottom:0;left:0;border-top:1px solid #eee;z-index:1000;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;line-height:1.38667rem;background-color:#0bb8b2;color:#fff;text-align:center
}
.delIcon{position:absolute;top:0;right:0;color:#ff4400;z-index:1000
}

@media screen and (min-width: 750px){font-family:pingFangSC-Medium, sans-serif
}
html,body{margin:0;padding:0
}
html body{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body{margin-right:auto;margin-left:auto;min-width:320px
}
}
html body[data-content-max]{margin-right:auto;margin-left:auto
}
@media screen and (max-width: 540px){
html body[data-content-max]{margin-right:auto;margin-left:auto;max-width:540px
}
}
html[data-dpr="1"] body{min-width:320px
}
body{border-width:45px;background-color:#f8f8f8;font-size:.37333rem;font-family:"Microsoft YaHei"
}
body{height:100%
}
.mBg{background-color:#f2f2f2;display:block;width:100%;min-height:15.2rem;padding:1.2rem 0 1.38667rem 0
}
.mu-mess-tit{padding:.26667rem;font-size:.34667rem
}
.mu-message{padding:0 .26667rem;background-color:#fff
}
.messItem{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%
}
.messTit{width:5.86667rem;-ms-flex-negative:1;flex-shrink:1
}
.messTime{width:2.4rem;-ms-flex-negative:0;flex-shrink:0;text-align:right
}

/*# sourceMappingURL=app.60eb5ce873fe74c270db2d5af65349da.css.map*/