@charset "UTF-8";
/*通用*/
*{
    padding: 0;margin: 0;
    touch-action: pan-y;
}
html {
    font-size: 8px;
}
/*全站变黑白*/
/*html {*/
    /*-webkit-filter: grayscale(100%);*/
    /*-moz-filter: grayscale(100%);*/
    /*-ms-filter: grayscale(100%);*/
    /*-o-filter: grayscale(100%);*/
    /*filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);*/
    /*_filter:none;*/
/*}*/
body{
    /* IOS禁止微信调整字体大小 */
    -webkit-text-size-adjust: 100% !important;
}
@media screen and (min-width: 320px) {
    html {
        /* iPhone6的375px尺寸作为16px基准，414px正好18px大小, 600 20px */
        font-size: calc(100% + 2 * (100vw - 320px) / 55);
        font-size: calc(7px + 2 * (100vw - 320px) / 55);
    }
}
@media screen and (min-width: 375px) {
    html {
        /* iPhone6的375px尺寸作为16px基准，414px正好18px大小, 600 20px */
        font-size: calc(100% + 2 * (100vw - 375px) / 39);
        font-size: calc(8px + 2 * (100vw - 375px) / 39);
    }
}

@media screen and (min-width: 412px) {
    html {
        /* 414px-1000px每100像素宽字体增加1px(18px-22px) */
        font-size: calc(112.5% + 4 * (100vw - 412px) / 588);
        font-size: calc(9px + 4 * (100vw - 412px) / 588);
    }
}

@media screen and (min-width: 600px) {
    html {
        /* 600px-1000px每100像素宽字体增加1px(20px-24px) */
        font-size: calc(125% + 4 * (100vw - 600px) / 400);
        font-size: calc(10px + 4 * (100vw - 600px) / 400);
    }
}

@media screen and (min-width: 1000px) {
    html {
        /* 1000px往后是每100像素0.5px增加 */
        font-size: calc(137.5% + 6 * (100vw - 1000px) / 1000);
        font-size: calc(11px + 6 * (100vw - 1000px) / 1000);
    }
}
/*iPhone X XS */
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    body {
        padding-top: constant(safe-area-inset-top);   //为导航栏状态栏的高度 88px
        padding-left: constant(safe-area-inset-left);   //如果未竖屏时为0
        padding-right: constant(safe-area-inset-right); //如果未竖屏时为0
        padding-bottom: constant(safe-area-inset-bottom);//为底下圆弧的高度 34px
    }
}
/*iphone XR*/
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio:2)
{
    body{
        padding-top: constant(safe-area-inset-top);   //为导航栏状态栏的高度 88px
        padding-left: constant(safe-area-inset-left);   //如果未竖屏时为0
        padding-right: constant(safe-area-inset-right); //如果未竖屏时为0
        padding-bottom: constant(safe-area-inset-bottom);//为底下圆弧的高度 34px
    }

}
/*iPhone Xs MAX*/
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) {
    body{
        padding-top: constant(safe-area-inset-top);   //为导航栏状态栏的高度 88px
        padding-left: constant(safe-area-inset-left);   //如果未竖屏时为0
        padding-right: constant(safe-area-inset-right); //如果未竖屏时为0
        padding-bottom: constant(safe-area-inset-bottom);//为底下圆弧的高度 34px
    }
}
/*遮掩层*/
#mask {
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
    -webkit-opacity: 0.3;
    -moz-opacity: 0.3;
    filter: alpha(opacity=30);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

body{
    /* IOS禁止微信调整字体大小 */
    -webkit-text-size-adjust: 100% !important;
    line-height:2.5rem;
}
a {
    text-decoration: none;
    color: #F39800;
}
a:active {
    color: #333333;
}

textarea::placeholder {
    color: #999999;
    font-size: 2rem;

}
textarea::-webkit-input-placeholder {
    color: #999999;
    font-size: 2rem;

}
textarea::-moz-placeholder {
    color: #999999;
    font-size: 2rem;
}
textarea:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color: #999999;
    font-size: 2rem;
}
textarea:-ms-input-placeholder{  /* Internet Explorer 10-11 */
    color: #999999;
    font-size: 2rem;
}
input::-webkit-input-placeholder{
    color:#999999;
    font-size: 2rem;
    padding-top: 5px;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#999999;
    font-size: 2rem;
    padding-top: 5px;

}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#999999;
    font-size:2rem;
    padding-top: 5px;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
    color:#999999;
    font-size: 2rem;
    padding-top: 5px;

}

.mui-bar
{
    background-color: #F6F6F6;
    -webkit-box-shadow:inset 0 1px 0 rgba(0, 0, 0, .1);
    box-shadow:inset 0  1px rgba(0, 0, 0, .1);
    -moz-box-shadow:inset 0  1px 0 rgba(0, 0, 0, .1);
}
.mui-content
{
    background-color: #f2f2f2;
    padding-top: 0;
    min-height: calc(100vh - 6.13rem);
}
.mui-content.index-content{
    min-height:inherit;
}

.mui-tab-item{
    color:#9E9E9E;
    padding-top:0.5rem;
}
.mui-bar-tab .mui-tab-item.mui-active{
    color: #F39800;
}
.mui-bar-tab .mui-tab-item .mui-icon{
    width: 3rem;
    height: 3rem;
}
.mui-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1998;
    background-color: rgba(0,0,0,.3);
}

/*slider 左滑btn*/
.mui-table-view-cell > .mui-slider-left > .mui-btn, .mui-table-view-cell > .mui-slider-right > .mui-btn{
    padding: 0 10px;
}


input[type='submit'], .mui-btn-primary, .mui-btn-blue {
    color: #fff;/*按钮上文字的颜色*/
    border: 1px solid rgba(243, 152, 0 , 0.85);
    background-color: rgba(243, 152, 0 , 0.85);
}

.mui-btn-primary:enabled:active,
.mui-btn-primary:active {
    color: #fff;/*按钮上文字的颜色*/
    border: 1px solid #F39800;/*按钮被按下时边框线的颜色*/
    background-color: #F39800 !important;/*按钮被按下时的颜色*/
}

.mui-bar-tab .mui-tab-item .mui-icon ~ .mui-tab-label {
    font-size: 1.5rem;
}

.mui-badge-primary, .mui-badge-blue {
    color: #fff;
    background-color: #F39800;
}

/*mui.showLoading begin*/
.mui-show-loading {
    position: fixed;
    padding: 5px;
    width: auto;
    min-height: 120px;
    min-width: 120px;
    top: 45%;
    left: 50%;
    margin-left: -60px;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    border-radius: 5px;
    color: #FFFFFF;
    visibility: hidden;
    margin: 0;
    z-index: 2000;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    opacity: 0;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.mui-show-loading.loading-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
}

.mui-show-loading .mui-spinner {
    margin-top: 24px;
    width: 36px;
    height: 36px;
}
.mui-show-loading .mui-spinner.mui-vmiddle{
    margin-top: calc(50% - 18px);
}
.mui-show-loading .text {
    line-height: 1.6;
    font-family: -apple-system-font,"Helvetica Neue",sans-serif;
    font-size: 14px;
    margin: 10px 0 0;
    color: #fff;
}

.mui-show-loading-mask {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.mui-show-loading-mask-hidden {
    display: none !important;
}

.mui-show-loading .iconfont{
    font-size: 36px;
    margin-top: 24px;
    display: inline-block;
    margin-bottom: 20px;
}

/*show_loading end*/


/*西柚通用部分*/

.mui-content{
    background: #f6f6f6;
}

.mui-content.xy-content{
    padding: 2rem 2rem;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    height: auto;
    padding-bottom: calc(6.13rem + env(safe-area-inset-bottom));
}
.mui-content.xy-content .title{
    font-size: 2.25rem;
    line-height: 3rem;
    color: #000000;
    padding-top: 2rem;
    font-weight: 500;
}
.mui-content.xy-content .title p{
    font-size: 1.75rem;
    color:#999999;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.mui-content.xy-content .title p.error{
    color:#F39800;
}


.mui-content.xy-content::-webkit-scrollbar {
    width: 0 !important;
}

.mui-content.xy-content .content-block{
    padding: 2rem 0 0 0;
}
.mui-content.xy-content .content-block:first-of-type{
    padding: 0;
}
.mui-content.xy-content .content .content-block:last-of-type{
    margin-bottom: 6.13rem;
}


.xy-btn-green{
    background-color: #A3C41F;
}
.xy-btn-yellow{
    background-color: #F39800;
}
.xy-btn-red{
    background-color: #ff3300;
}
/*nav导航条*/
.sy-nav
{
    height: 6.13rem;
    z-index: 1997!important;
    margin-bottom: env(safe-area-inset-bottom);
}
.sy-nav.xy-flex{
    display: flex;
    display: -webkit-flex;
    line-height: 6.13rem;
}
.sy-nav .left .mui-tab-item,.sy-nav .right .mui-tab-item{
    height: 100%;
}
.sy-nav .right{
    text-align: center;
    background: transparent;
    height: 100%;
    color: #F2F2F2;
    font-weight: 400;
}
.sy-nav .right .mui-tab-item{
    display: table-cell;
    padding-top: 0;
    background:rgba(243,152,0,1);
}
.sy-nav .right .mui-tab-item:first-of-type{
    background: rgba(243,152,0,0.8)	;
}
.sy-nav .right .mui-tab-item span{
    color:#ffffff;
}
.sy-nav .left{
    display: flex;
    display: -webkit-flex;
    font-size: 1.75rem;
    padding-left: 2rem;
    flex-flow: nowrap;
}
.sy-nav .left.xy-table{
    display: table;
    padding: 0 1rem;
    line-height: 2.5rem;
}
.sy-nav .left label{
    font-size: 2rem;
    padding-left: 6rem;
    padding-top: 0.2rem;
}
.sy-nav .left .jifen{
    font-size: 2.5rem;
    color: #F39800;
    display: inline-block;
    padding-right: 1rem;
}
.sy-nav .left input[type="checkbox"]{
    left: 2rem;
    top:1.5rem;
}

/*自由拖动导航条*/

.sy-nav.dock {
    bottom: 8.15rem;
    position: fixed;
    background: #f39800;
    left: calc(50vw - 8.15rem / 2);
    height: 6.15rem;
    width: 25vw;
    line-height: 6.15rem;
    border:1px solid #f6f6f6;
    border-radius: 6.15rem;
    color: #fff;
    font-size: 1.75rem;
    text-align: center;
    filter: alpha(opacity:90);
    opacity: 0.9;
    -moz-opacity: 0.9;
    -khtml-opacity: 0.9;
    display: flex;
    justify-content: space-around;
    padding: 0 6px;
}
.sy-nav.dock .iconfont{
    font-size: 3.2rem;
    line-height: 1.8;
}

/*iphoneX处理*/
.fix-bottom-nav{
    position: fixed;
    bottom: 0;
    left:0;
    width: 100%;
    height: env(safe-area-inset-bottom);
    background-color: #F6F6F6;
    z-index: 1997 !important;
}

/*======首页======*/
/*首页轮播Slider*/
#home_slider {
    width: calc(100vw - 20px);
    margin: 8px auto;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .4);
}

/*首页的推荐分类 begin*/
.sy-home-category{
    height: 12rem;
    overflow: hidden;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    padding: 12px 25px;
}
.sy-home-category .category-item{

}
.sy-home-category img{
    height:6rem;
    border-radius: 50%;
    box-shadow:4px 4px 4px rgba(153,153,153,.2);

}
.sy-home-category .txt{
    text-align: center;
    font-size: 1.5rem;
    line-height: 2.5rem;
    color:#333333;
}
/*首页的推荐分类 end*/


#cart .cart-num {
    font-size: 12px;
    line-height: 1;
    display: inline-block;
    padding: 3px 6px;
    color: #ffffff;
    border-radius: 100px;
    background-color: #F39800;
    position: absolute;
    margin-left: 1.8rem;
    z-index: 99;
}

.sy-left{
    padding-left:2rem;
    overflow: hidden;
}

.sy-right{
    padding-right: 2rem;
    text-align: right;
}


/*标题头*/
.sy-header{
    height:7.5rem;
    width: 100%;
    background-color: #fff;
    line-height: 7.5rem;
}
.sy-header .title{
    line-height: 3rem;
    padding-top: 1.5rem;
}
.sy-header .sy-right .iconfont{
    width: 4rem;
    height: 4rem;
    font-size: 2.25rem;
    color:#999;
}
/*积分*/
.sy-score{
    color:#F39800;
}

/*货币符号*/
.money:before{
    content: "￥";
    font-size: 1.2rem;
    font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/*有导航栏时*/
.sy-has-nav{
    padding-bottom: 6.5rem;
}
/*新品标签，推荐标签*/
.sy-label-new{
    background-color: #F39800;
    color:#ffffff;
}
.sy-label-recc{
    background-color: #A3C41F;
    color:#ffffff;
}

/*西柚header*/
.xy-header.mui-bar{
    height: 5rem;
    width: 100vw;
    background: #DDD;
    display: flex;
    justify-content: space-between;
}

.xy-header.mui-bar a {
    color: #333;
    display: inline-block;
    width: 5%;
    min-width: 7rem;
    padding: 0 10px;
    line-height: 5rem;
    font-size: 1.5rem;
    text-align: center;
}

.xy-header.mui-bar-nav.mui-bar .mui-icon{
    font-size: 2rem;
    line-height: 5rem;
}

.xy-header.mui-bar .mui-search{
    display: block;
    overflow: hidden;
    line-height: 5rem;
    width: 100%;
}
.xy-header.mui-bar .mui-search input{
    height: 3.5rem;
    line-height: 2rem;
    padding-left: 4rem;
    border-radius: 3.5rem;
}
.xy-header.mui-bar .mui-search input::-ms-input-placeholder{
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.5rem;
}
.xy-header.mui-bar .mui-search input::-webkit-input-placeholder{
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.5rem;
}
.xy-header.mui-bar .mui-btn{
    height:3.5rem;
    font-size: 2rem;
    top: 1rem;
    line-height: 2.5rem;
    padding: 0 1rem;
    color: #A3C41F;
    border: #A3C41F 0px solid;
    background: transparent;
}
.xy-header.mui-bar .xy-right{
    width: 8rem;
    height: 100%;
    text-align: center;
}
.xy-header.mui-bar .mui-search input ~ i.search-icon{
    position: absolute;
    left: 1rem;
    top:0;
    color: #9e9e9e;
}
.xy-header.mui-bar .xy-right span:first-child{
    margin-right: 1rem;
}
.xy-header.mui-bar .xy-right .iconfont{
    padding-top: 1.5rem;
    font-size: 3rem;
    display: inline-block;
    line-height: 3rem;
    color: #A3C41F;
}
.xy-header.mui-bar .xy-right .iconfont :last-child{
    padding-right:0;
}

.xy-header.mui-bar .mui-input-row .mui-input-clear ~ .mui-icon-clear,
.xy-header.mui-bar .mui-input-row .mui-input-speech ~ .mui-icon-speech
{
    top:-1rem;
    right: 12px;
}

.xy-header.mui-bar-nav ~ .mui-content {
    padding-top: 5rem;
}


.jifen{
    font-size: 2.5rem;
    color: #F39800;
    padding-bottom: 1rem;
    font-weight: 500;
}
.jifen span{
    font-size: 1.5rem;
    color: #c1c1c1;
    display: inline-block;
    margin-left: 1rem;
    margin-right: 1rem;
}
.jifen span.num{
    font-size: 2rem;
    color: #333333;
}
.title{
    display: block;
    font-size: 2rem;
    color: #666666;
    font-weight:600;
}
.vice-title{
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #c1c1c1;
}
.mui-content.order-form{
    padding-bottom: 9.13rem;
    position: relative;
    z-index: 0;
}
.xy-content-pad{
    display: block;
    clear: both;
    min-height: 4rem;
    background-color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    margin: 1rem;
}
/*地址信息*/
.xy-content-pad.consignee{
    display: flex;
    padding: 1rem 2rem 2rem 2rem;
    margin-bottom:0;
}
.xy-content-pad.consignee ~ .consignee-line{
    height: 2px;
    background: #ffffff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAADCAYAAACJZs+gAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFdJREFUeNpiZAACIa2OzUBKkgE3iHp3reIWjPMqRLgBSPngUd8rtubtchCDCWi4GgHDnyMbDgX2DPjBQRiDCeQ6AooPIHOArvcFUrx41N8Cuv4ZjAMQYACwyxY6AAJ+kQAAAABJRU5ErkJggg==) repeat-x left bottom;
    margin-bottom:1rem;
}
.xy-content-pad.consignee span{
    font-size: 1.5rem;
}
.xy-content-pad.consignee span.iconfont{
    font-size: 3rem;
    width: 4rem;
}
.xy-content-pad.consignee .no-address{
    height: 100%;
    padding-top: 2.5rem;
}
.xy-content-pad.consignee .no-address p.add{
    color:#f39800;
    text-align: right;
}
.xy-content-pad.consignee.no-add .address{
    display: none;
}
.xy-content-pad.consignee.no-add .contact{
    display: none;
}

.xy-content-pad.consignee .address{
    font-size: 1.75rem;
    color: #666666;
}

.xy-content-pad.consignee .right {
    font-size: 3rem;
    color: #666666;
    line-height:8rem;
    text-align: right;
}
.xy-content-pad.consignee .right span{
    vertical-align: middle;
    color: #999;
    font-size: 2rem;
}
.xy-content-pad.consignee .right {
    line-height: 10rem;
}


.xy-content-pad .content-title{
    height: 6.13rem;
    border-bottom: 1px solid #F2F2F2;
    line-height: 6.13rem;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-flow:nowrap ;
}

.xy-content-pad .content-title span{
    font-size: 2.5rem;
}
.xy-content-pad .content-title span.right{
    font-size: 1.5rem;
    color: #999999;
}
.xy-content-pad .content-list{
    margin: 0;
    padding: 0;
}
.xy-content-pad .content-list .content-row
{
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-flow:nowrap ;
    padding: 1rem 0;
    border-bottom: solid 1px #F2F2F2;
}
.xy-content-pad .content-list .content-row:last-of-type
{
    border-bottom: 0;
}
.xy-content-pad .content-list .content-row img
{
    width: 10rem;
    max-width: 10rem;
    height: 10rem;
}
.xy-content-pad .content-list .content-row.multi-goods img
{
    width: 6.5rem;
    max-width: 6.5rem;
    height: 6.5rem;
}
.xy-content-pad .content-list .content-row .left
{
    padding-right: 1rem;
    font-size: 2rem;
    color: #666666;
}
.xy-content-pad .content-list .content-row.online-pay .left span{
    font-size: 1.5rem;
    display: inline-block;
    background-color: #f8f8f8;
    padding: 1px 0.5rem;
    margin-left: 0.5rem;
    border-radius: 0.5rem;
}


.xy-content-pad .content-list .content-row .right{
    width: 60vw;
    text-align: right;
}
.xy-content-pad .content-list .content-row  .right .spec
{
    display: inline-block;
    width: auto;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 0 1rem;
    font-size: 1rem;
    line-height: 2rem;
}
.xy-content-pad .content-list .content-row  .right .spec:after
{
    content:"›";
    color:#999999;
    font-size: 1.5rem;
}
.xy-content-pad .content-list .content-row  .right .spec.num:after
{
    content:"";
}

.xy-content-pad .content-list .content-row.single-goods .right{
    width: 75vw;
    text-align: left;
}


.xy-content-pad .content-list .content-row  .right span
{
    font-size: 1.75rem;
    color: #999999;
}
.xy-content-pad .content-list .content-row  .right span.num
{
    font-size: 1.75rem;
    padding: 0 1rem;
    color: #333;
}
.xy-content-pad .content-list .content-row  .right em
{
    font-size: 1.5rem;
    color: #ccc;
}
.xy-content-pad .content-list .content-row  .right span.jifen
{
    font-size: 2rem;
    color: #F39800;
}
.xy-content-pad .content-list .content-row .mui-row .mui-btn
{
    font-size: 1.2rem;
    border-radius: 3rem;
    line-height: 1.2rem;
}

.xy-content-pad .content-footer .mui-btn
{
    font-size: 1.2rem;
    border-radius: 3rem;
    line-height: 1.5rem;
    height: 3rem;
    margin-left: 0.5rem;
}

.sy-nav .left .iconfont{
    font-size: 2.5rem;
}

.sy-nav .jine{
    padding-left: 2rem;
}

.address-fixed{
    position: fixed;
    bottom: 6.13rem;
    height:4rem;
    left:0;
    background-color: rgba(163,196,31,0.3)	;
    width: 100vw;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 1rem 2rem  !important;
    font-size: 1.5rem !important;
}

#op_form{
    z-index: 99999;
    height: 50vh;
    background-color: #ffffff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 4rem 2rem 0 2rem;
    overflow-y:scroll;
}
#op_form .op-btn {
    font-size: 2.5rem;
    text-align: center;
    height: 6.13rem;
    position: fixed;
    bottom: 0;
    left:0;
    width: 100vw;
    z-index:2;
}
#op_form .op-btn button {
    background-color: #A3C41F;
    color: #F2F2F2;
}
#op_form .icon-guanbi{
    right: 0;
    display: block;
    position: absolute;
    top: 0;
    padding-top: 3rem;
    text-align: right;
    font-size: 2.5rem;
    color: #999999;
    width: 12rem;
    height: 8rem;
    padding-right: 3rem;
}
#op_form .op-title{
    font-size: 2rem;
    text-align: center;
    margin-top: 6rem;
}
#op_form .op-title h1{
    font-size: 3rem;
}
#op_form .op-content{
    padding: 3rem 2rem;
}

#op_form .op-content .input-pwd{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}
#op_form .op-content .input-pwd input{
    width: 5.5rem;
    height: 5.5rem;
    caret-color:transparent;
    -webkit-text-security:disc;
    text-security:disc; /*使用指定形状代替文字显示 circle圆圈 disc 圆形 square 正方形*/
}

#op_form .op-content .tip-info{
    color: #F39800;
    font-size: 1.5rem;
    text-align: center;
}
#op_form .op-content.show-icon{
    text-align: center;
}
#op_form .op-content.show-icon i{
    display: block;
    font-size:12rem;
    line-height:12rem;
    margin: 1rem 0;
}
#op_form .op-content.show-icon i.icon-zhifuchenggong{
    color: #A3C41F;
}
#op_form .op-content.show-icon i.icon-zhifushibai{
    color: #F39800;
}
#op_form .op-content.show-icon h2{
    font-size:3rem;
    line-height:3rem;
    margin: 1rem 0;
    color: #666666;
}

.xy-content-pad.xy-input{
    clear: both;
    min-height: 100vh;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    border-radius: 0;
    margin: 0;
    width: 100%;
}
.xy-content-pad.xy-input  .content-list .content-row{
    padding: 1rem 0;
}
.xy-content-pad.xy-input .left{
    padding-top: 1rem;
}
.xy-content-pad.xy-input input,.xy-content-pad.xy-input textarea{
    border: 0;
    margin-bottom: 0;
    text-align: right;
    width: 100%;
}
.mui-poppicker {
    z-index: 99999!important;
}
.mui-poppicker .mui-poppicker-header .mui-btn.mui-poppicker-btn-ok{
    background-color:#F39800;
    border:1px solid #F39800;
    /*background-color:#A3C41F;*/
    /*border:1px solid #A3C41F;*/
}
.choose-pca{
    color: #999999;
    padding: 1rem  2rem;
    overflow: hidden;
    font-size: 2rem;
}
.choose-pca.has-selected{
    color: #333333;
}

.consignee-list span{
    font-size: 2.5rem;
}
.consignee-list span.iconfont{
    font-size: 5rem;
    width: 4rem;
}
.consignee-list .address span{
    font-size: 2rem;
    color: #666666;
    padding:1rem 1rem 0 0;
}

.consignee-list .right {
    font-size: 3rem;
    color: #666666;
    line-height:8rem;
    text-align: right;
}
.consignee-list .right span{
    vertical-align: middle;
    color: #A3C41F;
    font-size:3.5rem;
    padding-right: 1rem;
}
.consignee-list .right {
    border-left: 1px solid rgba(0,0,0,0.1);
}


/*商品列表*/
.sy-goods-list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: transparent;
}

.sy-goods-list li{
    text-align: center;
    margin:  0.5rem 0 ;
    border-radius: 5px;
    overflow: hidden;
}
.sy-goods-list li:nth-of-type(1){
    margin-top:1rem;
}
.sy-goods-list li:nth-of-type(2){
    margin-top:1rem;
}

.sy-goods-list .mui-col-xs-6{
    width: calc(50vw - 12px);
}
.sy-goods-list.mui-table-view:after{
    height:0;
}
.sy-goods-list.mui-table-view a{
    width: 100%;
    display: inline-block;
    height: 100%;
    background: #fff;
}
.sy-goods-list.mui-table-view .mui-media-object{
    width: 100%;
    height: auto;
    line-height: normal;
    max-width: 100%;
    overflow: hidden;
    border: 0;
}
.sy-goods-list.mui-table-view .mui-media-body{
    text-align: left;
    background: #ffffff;
    padding: 1rem;
}
.sy-goods-list.mui-table-view .mui-media-object img{
    width: 100%;
}
.sy-goods-list.mui-table-view .mui-media-body .sy-score{
    font-size: 2.25rem;
}
.sy-goods-list.mui-table-view .mui-media-body .jifen{
    font-size: 1.5rem;
    color:#333333;
    line-height: 1.5rem;
    margin-left:1rem ;
    display: inline-block;
}

.sy-goods-list.mui-table-view .mui-media-body .sy-title{
    line-height: 2.5rem !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 0;
}
.sy-goods-list.mui-table-view .mui-media-body .sy-label {
    position: relative;
}
.sy-goods-list.mui-table-view .mui-media-body .sy-label span{
    line-height: 2rem;
    border-radius: 1rem;
    padding: 2px 1rem;
    font-size: 1rem;
    background: #eee;
}
.sy-goods-list.mui-table-view .mui-media-body .sy-label.sales span{
    border-radius: 2px;
    background: #f39800;
}

.sy-goods-list.single-goods .mui-col-xs-6{
    width: 100%;
}
.sy-goods-list.single-goods li{
    border: 0;
    border-radius: 0;
}
.sy-goods-list.single-goods li:first-of-type {
    margin-top:1rem;
}
.sy-goods-list.single-goods li:nth-of-type(2) {
    margin-top:0.5rem;
}
.sy-goods-list.single-goods li:after{
    content: '';
    height: 1px;
    background: #f6f6f6;
    width: 95vw;
    position: absolute;
    bottom: 0;
    left: 0;
}
.sy-goods-list.single-goods.mui-table-view a {
    display: flex;
    justify-content: space-around;
}
.sy-goods-list.single-goods.mui-table-view .mui-media-object{
    width: 30%;
    height: 100%;
}
.sy-goods-list.single-goods.mui-table-view .mui-media-body{
    width: 70vw;
}
/*公告条列表 BEGIN*/
.notice-list {
    position: fixed;
    top:5rem;
    left:0;
    background-color: rgba(243,152,0,0.8);
    padding: 0 2rem;
    width: 100%;
    height: 2.5rem;
    z-index: 1996!important;
    color: #fff;
}

.notice-list .close-btn{
    position: absolute;
    right: 1rem;
    top: 0;
    font-size: 1.5rem;
}
.notice-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    width: 100%;
}
.notice-list li {
    font-size: 1.5rem;
    text-align: left;
    background-color: transparent;
    border: 0;
    width: 100%;
    height: 50px;
    padding: 0;
    margin: 0;
    display: block;
    float: left;
}
.notice-list.responsive {
    width: auto;
    margin-left: 0;
}
.notice-list .clearfix {
    float: none;
    clear: both;
}
/*公告条列表 END*/

/*公告弹出内容 BEGIN*/
.mui-backdrop .notice-box{
    background: rgba(255,255,255,0.95);
    width: 80vw;
    height: auto;
    min-height: 50vh;
    max-height: 70vh;
    top: 15vh;
    left: 10vw;
    padding: 2rem;
    position: absolute;
    border-radius: 1rem;
}
.mui-backdrop .notice-box .title{
    line-height: 5rem;
    text-align: center;
}
.mui-backdrop .notice-box .content{
    max-height:calc(70vh - 9rem);
    overflow: scroll;
}

.mui-backdrop .notice-box p{
    font-size:1.5rem;
    line-height: 3rem;
}
.mui-backdrop .notice-box p.sign{
    text-align: right;
    margin-bottom: 0rem;
    font-size: 1.75rem;
    font-weight: 600;
}
.mui-backdrop .notice-box p.date{
    text-align: right;
    font-size:1.5rem;
    font-weight: 600;
}

.mui-backdrop .notice-box .close-btn{
    width: 4rem;
    height: 4rem;
    background: rgba(255,255,255,0.6);
    bottom: -10vh;
    left: calc(40vw - 16px);
    position: absolute;
    border-radius: 32px;
    line-height: 4rem;
    padding-left: calc(2rem - 8px);
}
.mui-backdrop .notice-box .close-btn:after {
    content: '';
    position: absolute;
    height: 5vh;
    width: 1px;
    background: #f6f6f6;
    top: -5vh;
    left:calc(2rem - 0.5px);
}
/*公告弹出内容 END*/


/*以上部分有用，下放暂存*/
.contain {
    display: flex;
    display: -webkit-flex;
    background: #999;
    /*水平方向，左端对齐*/
    flex-direction: row;
    /*水平方向，右端对齐*/
    /*flex-direction: row-reverse;*/
    /*垂直方向，顶部对齐*/
    /*flex-direction: column;*/
    /*垂直方向，底部对齐*/
    /*flex-direction: column-reverse;*/
    /*换行*/
    flex-wrap: wrap;
    /*不换行，默认*/
    /*flex-wrap: nowrap;*/
    /*换行，第一行在下方*/
    /*flex-wrap: wrap-reverse;*/
    /*默认，项目左对齐*/
    /* justify-content: flex-start; */
    /*项目右对齐*/
    /*justify-content: flex-end;*/
    /*项目居中对齐*/
    /* justify-content: center; */
    /*项目两端对齐*/
    justify-content: space-between;
    /*每个项目两侧的间隔相等*/
    /*justify-content: space-around;*/
    /*纵轴的顶部对齐*/
    align-items: flex-start;
    /*纵轴的底部对齐*/
    /*align-items: flex-end;*/
    /*纵轴的中点对齐*/
    /*align-items: center;*/
    /*项目的第一行文字的基线对齐*/
    /*align-items: baseline;*/
    /*默认对齐方式，如果项目未设置高度或设为auto，将占满整个容器的高度*/
    /*与纵轴的顶部对齐*/
    /*align-content: flex-start;*/
    /*与纵轴的底部对齐*/
    /*align-content: flex-end;*/
    /*与纵轴的中点对齐*/
    /*align-content: center;*/
    /*与纵轴两端对齐*/
    /*align-content: space-between;*/
    /*每根轴线两侧的间隔都相等*/
    /*align-content: space-around;*/
    /*默认值，轴线占满整个交叉轴默认值，*/
    width: 100%;
    height: 100%;

}

/*弹层动画（从上往下）*/

.fadeIn {
    -webkit-animation: fadeInDown .3s;
    animation: fadeInDown .3s;
}

@keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -20%, 0);
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -20%, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: none;
        opacity: 1;
    }
}


/*弹层动画（从下往上）*/

.fadelogIn {
    -webkit-animation: fadelogIn .4s;
    animation: fadelogIn .4s;
}

@keyframes fadelogIn {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadelogIn {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
    }
    100% {
        -webkit-transform: none;
    }
}


/*弹层动画（从右往左）*/

.fadeleftIn {
    -webkit-animation: fadeleftIn .4s;
    animation: fadeleftIn .4s;
}

@keyframes fadeleftIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeleftIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
    }
    100% {
        -webkit-transform: none;
    }
}


/*弹层动画（放大）*/

.popIn {
    -webkit-animation: fadeleftIn .4s;
    animation: fadeleftIn .4s;
    -webkit-animation-name: popIn;
    animation-name: popIn;
}

@-webkit-keyframes popIn {
    0% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0.5, 0.5, 0.5);
        opacity: 0;
    }
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0.5, 0.5, 0.5);
        opacity: 0;
    }
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 1;
    }
}

/*引导箭头上下动画*/
@keyframes bounce-down {
    25% {transform: translateY(-3px);}
    50%{transform: translateY(0);}
    75% {transform: translateY(3px);}
    100% {transform: translateY(0);}
}
.animate-bounce-down{
    -webkit-animation: bounce-down 1s linear infinite;
    animation: bounce-down 1s linear infinite;
}

@keyframes bounce-up {
    25% {transform: translateY(-3px);}
    50%, 100% {transform: translateY(0);}
    75% {transform: translateY(3px);}
}
.animate-bounce-up{
    -webkit-animation: bounce-up 1s linear infinite;
    animation: bounce-up 1s linear infinite;
}

.no-data {
    text-align: center;
    margin-top: 30vh;
}

.no-data p {
    font-size: 2rem;
    margin-top: 10px;
}

.no-data .iconfont {
    font-size: 6rem;
    color: #8f8f94;
}
.no-data img {
    width: 30vw!important;
}


/*搜索form*/
.search-form{
    overflow: scroll;
    clear: both;
    height: 100vh;
    padding-bottom:calc(6.13rem + env(safe-area-inset-bottom));
    background: #fff;
}
.search-form .search-title{
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    font-size: 1.5rem;
}
.search-form .search-title span{
    font-weight: 600;
}

.search-form .search-key{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 1rem 2rem;
    height: auto;
    font-size: 1.5rem;
}
.search-form .search-key span{
    margin: 0.5rem;
    background: #eee;
    padding: 2px 16px;
    border-radius: 1.5rem;
    color: #666;
}

/*分类*/
.xy-cat {
    overflow: hidden;
    clear: both;
    height: 100vh;
    padding-bottom:calc(6.13rem + env(safe-area-inset-bottom));
}

.xy-cat .lside {
    width: 25%;
    height: 100%;
    float: left;
    overflow-y: auto;
    background: #eee;
}

.xy-cat .lside::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.xy-cat .lside a {
    display: block;
    height: 5rem;
    line-height: 5rem;
    overflow: hidden;
    text-align: center;
    color: #333;
    font-size: 1.5rem;
    padding-left: 0;
    margin-bottom: 1px;
    position: relative;
}

.xy-cat .lside a.on {
    background-color: #fafafa;
    color: #333;
    font-weight: 600;
    font-size: 1.75rem;
}
.xy-cat .lside .on:after {
    position: absolute;
    left: 0;
    height: 5rem;
    width: 0.5rem;
    content: '';
    -webkit-transform: scaleY(.5);
    background-color: #f39800;
}

.xy-cat .lside img {
    width: 100%;
}

.xy-cat .rside {
    width: 75%;
    height: 100%;
    float: right;
    overflow-y: scroll;
    padding: 0 10px;
    background-color: #fafafa;
}
.xy-cat .rside .banner{
    text-align: center;
    background: #ffffff;
}
.xy-cat .rside .banner img{
    width: 100%;
}

.xy-cat .rside .cat-2{
    background: #fff;
    padding: 0;
    margin-top: 1rem;
    border-radius: 5px;
}

.xy-cat .rside a.cat-2-name {
    display: block;
    font-size: 1.5rem;
    line-height: 4rem;
    font-weight: 600;
    padding: 1rem 1rem 0 1rem;
    color: #333;
}
.xy-cat .rside ul {
    width: 100%;
    line-height: 28px;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}


.xy-cat .rside ul a {
    display: block;
    color: #333;
    text-align: center;
    line-height: 2rem;
}
.xy-cat .rside ul li {
    padding:10px;
}
.xy-cat .rside ul li img {
    width: 85%;
}

.xy-cat .rside ul li span.cat-3-name {
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.2rem;
}

.xy-cat .rside ul.goods-item li {
    list-style: none;
    float: left;
    margin-bottom: 7px;
    width: 50%;
    padding: 1rem;
}

.xy-cat .rside ul.goods-item li img {
    width: 100%;
    border-radius: 0.9rem;
    border: 1px solid #c1c1c1;
}

.xy-cat .rside .box > div {
    margin-bottom: 3px;
}


/*弹窗POP，$.createPop('')*/
.mui-backdrop .pop-box {
    background: rgba(255,255,255,0.95);
    width: 100vw;
    height: auto;
    min-height: 50vh;
    max-height: 100vh;
    bottom: 0;
    left: 0;
    padding:0;
    position: absolute;
    border-radius: 1rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));

}
.mui-backdrop .pop-box .close-btn {
    width: 4rem;
    height: 4rem;
    background: rgba(0,0,0,0.2);
    color: #fff;
    top: 2rem;
    right: 2rem;
    position: absolute;
    border-radius: 32px;
    line-height: 4rem;
    padding-left: calc(2rem - 8px);
}
.mui-backdrop .pop-box .title{
    line-height: 2;
    position: relative;
    margin: 2rem;
}
.mui-backdrop .pop-box .op-btn{
    position: absolute;
    display: block;
    bottom: 0;
    width: 100vw;
    background-color: #fff;
    padding: 1rem 2rem;
    z-index: 2;
}
.mui-backdrop .pop-box .title:after{
    content: '';
    height: 1px;
    width: 60vw;
    background: #ccc;
    position: absolute;
    left: 0;
    bottom: 0;
}

.sy-nav.back-dock {
    bottom: 8.15rem;
    position: fixed;
    left: calc(50vw + 33.15rem / 2);
    height: 6.15rem;
    width: 14vw;
    line-height: 6.15rem;
    border: 1px solid #f6f6f6;
    border-radius: 6.15rem 0px 0px 6.15rem;
    color: #fff;
    font-size: 1.75rem;
    text-align: center;
    filter: alpha(opacity:90);
    opacity: 0.8;
    -moz-opacity: 0.9;
    -khtml-opacity: 0.9;
    display: flex;
    justify-content: space-around;
    padding: 0 6px;
    background: #f39800;
}

.sy-nav.back-dock .iconfont {
    font-size: 3.2rem;
    line-height: 1.8;
}
