/**
全局公用样式
 */
*{
    margin:0;
    padding:0;
    -webkit-tap-highlight-color: transparent;
    font-size: 13px;

    --theme:#558CE9;
    --light-theme:#D2DDEE;
    --active:#FE3B21;
    --btn-bg:#0D8382;
    --btn-yellow:#DBBB6E;
    --blue:#22A7FF;
    --lan:#2334CB;
    --orange:#FF7337;
    --price:#FF8B8B;
    --pink:#F96197;
    --info:#48B0F7;
    --purple:#926DDE;
    --bg-color:#F6F6F7;
    --bg-color1:#E6E6E6;
    --bg-color2:#F8F8F8;
    --bg-f5f5f5:#F5F5F5;
    --bg-f6f6f6:#F6F6F6;
    --border:#F4F4F4;
    --border1:#EBEBEB;
    --red:#FF2916;
    --danger:#FD5151;
    --green:#15C377;
    --yellow:#f0ad4e;
    --text-color:#8b95a5;
    --text-dark:#4d5259;
    --dis-color:#D1D1F7;
    --jin:#FED7B1;
    --grey:#BDBDBD;
    --grey-b3b3b3:#B3B3B3;
    --grey-7f7f7f:#7F7F7F;
    --grey-e9e9eb:#E9E9EB;
    --grey-b3bdc8:#B3BDC8;
    --grey-e8e8e8:#E8E8E8;
    --grey-e1e1e1:#E1E1E1;
    --grey-5d5d5d:#5D5D5D;
    --grey-70798b:#70798B;
    --grey-333:#333;
    --grey-555:#555;
    --grey-666:#666;
    --grey-777:#777;
    --grey-999:#999;
    --grey-ccc:#ccc;
    --grey-797979:#797979;
    --gradient:linear-gradient(to right,#FF5812,#FD4028);
}
html{
    width:100%;
    height:100%;
}
body{
    color:#000;
    position:relative;
    width:100%;
    min-height:100%;
    font-size:13px;
    background: var(--bg-color);
}
a{
    color:inherit;
    -webkit-tap-highlight-color: transparent;
}
a:active,a:hover {
    color: inherit;
}
input{
    padding-left:5px;
}
input,button{
    border:none;
    outline:none;
}
img{
    max-width:100%;
    max-height:100%;
}
/*公用颜色*/
.black{
    color:#333!important;
}
.dark{
    color:var(--text-dark)!important;
}
.fff{
    color:#fff!important;
}
.grey{
    color:var(--grey-999)!important;
}
.ccc{
    color:var(--grey-797979)!important;
}
.blue{
    color:var(--blue)!important;
}
.success{
    color:var(--green)!important;
}
.theme{
    color:var(--theme)!important;
}
.price{
    color:var(--price)!important;
}
.red{
    color:var(--red)!important;
}
.yellow{
    color:var(--yellow)!important;
}
.orange{
    color:var(--orange)!important;
}
.pink{
    color:var(--pink)!important;
}
.text-info{
    color:var(--info)!important;
}
.purple{
    color:var(--purple)!important;
}
.bg-normal{
    background:var(--bg-color1)!important;
}
.bg-theme{
    background:var(--theme)!important;
}
.bg-fff{
    background:#fff!important;
}
.bg-white-btn{
    background:#fff!important;
    border: 1px solid #D5D5D5;
    color: var(--grey-333)!important;
}
.bg-black{
    background:#333!important;
}
.bg-ccc{
    background:#bfbfbf!important;
}
.bg-blue{
    background: #1E9FFF!important;
}
.bg-success{
    background:var(--green)!important;
}
.bg-red{
    background:var(--btn-bg)!important;
}
.bg-danger{
    background:var(--danger)!important;
}
.horizontal-line{
    background-color: var(--border);
    height: 1px;
}
.bg-yellow{
    background:#f0ad4e!important;
}
.bg-trs{
    background:rgba(0,0,0,0)!important;
}
.bg-normal{
    background:#e7e7e8!important;
}
.btn-block{
    width: 100%;
    display: block;
    height: 100%;
    border: none;
    padding:0;
}
.btn-w50{
    width: 50%;
    display: inline-block;
    height: 100%;
    border: none;
    padding:0;
    margin: 0;
}
button:disabled{
    background: var(--dis-color) !important;
}
.btn-public{
    width:80%;
    margin:10px auto;
    display:block;
    padding: 0;
    border:none;
    background:var(--btn-bg);
    height:40px;
    color:#fff;
    border-radius:3px;
}
/*公用颜色end*/
/*公用布局s*/
.h50{
    height:50px;
    box-sizing:border-box;
    width:100%;
}
.m2-left{
    margin-left:2px;
}
.m4-left{
    margin-left:4px;
}
.mto5{
    margin-top:5px;
}
.mto10{
    margin-top:10px;
}
.m4{
    margin:5px auto;
}
.m10{
    margin-top:10px;
    padding:10px;
}
.p10{
    padding:10px;
}
.p5{
    padding:0 5px;
}
.pto45{
    padding-top: 45px;
}
.pto50{
    padding-top: 50px;
}
.p50{
    padding-bottom:55px;
}
.p45{
    padding: 45px 5px 55px 5px;
}
.public{
    padding: 50px 5px 55px 5px;
}
.word{
    word-break: break-word;
    word-wrap: break-word;
    width: 100%;
    display: block;
}
.flex-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.flex-center{
    display:flex;
    justify-content:center;
    align-items:center;
}
.fl1{
    flex:1;
}
.fl2{
    flex:2;
}
.ab-top{
    position:absolute;
    left:0;
    top:0;
}
.ab-bot{
    position:absolute;
    bottom:0;
    top:0;
}
.fix-top{
    position:fixed;
    left:0;
    top:0;
}
.fix-bot{
    position:fixed;
    bottom:0;
    left:0;
    margin-top:50px;
}
.btn-bottom{
    position:fixed;
    bottom:0;
    width:100%;
    height:50px;
    color:#fff;
}
.btn{
    background: var(--theme);
    display:block;
    width:80%;
    height:40px;
    color:#fff;
    text-align:center;
    border-radius:3px;
    line-height:40px;
    margin:0 auto;
}
.public-list{

}
.public-list .title{
    height: 30px;
    line-height: 30px;
}
.public-list .public-list-list{
    /*background: #fff;*/
    border-radius: 3px;
}
.public-list .public-list-list .public-list-item{
    display: flex;
    background: #fff;
    padding: 8px 0;
}
.public-list .public-list-list .public-list-item:not(:last-child){
    border-bottom: 1px solid var(--border);
}
.public-list .public-list-list .public-list-item .public-list-item-a{
    display: flex;
    flex: 1;
}
.public-list .public-list-list .public-list-item .danxuan-fa .danxuan-item{
    display: flex;
    height: 100%;
    align-items: center;
}
.public-list .public-list-list .public-list-item .danxuan-fa .danxuan-item .icondanxuan{
    color: var(--grey-7f7f7f);
}
.public-list .public-list-list .public-list-item .danxuan-fa .danxuan-item .icondanxuanact{
    color: var(--theme);
}
.public-list .public-list-list .public-list-item .img{
    margin-right: 10px;
}
.public-list .public-list-list .public-list-item .img img{
    width: 80px;
    height: 80px;
    border-radius: 3px;
}
.public-list .public-list-list .public-list-item .good{
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-around;
    color: var(--grey-333);
}
.public-list .public-list-list .public-list-item .good .flex-between{
    padding-right: 5px;
    font-weight: bold;
}
.public-list .public-list-list .public-list-item .good .flex-between span:last-child{
    text-decoration: line-through;
    color: #bfbfbf;
}
.public-list .public-list-list .layui-flow-more{
    width: 100%;
}
.public-list .column{
    display: flex;
    background: none;
    flex-wrap: wrap;
    padding: 0 10px;
}
.public-list .column .public-list-item{
    width: 49%;
    padding-top:0;
    overflow:hidden;
    background: #fff;
    flex-direction: column;
    border-radius: 5px;
    margin-bottom: 5px;
}
.public-list .column .public-list-item .good .flex-between{
    padding-right: 0;
}
.public-list .column .public-list-item .public-list-item-a{
    flex-direction: column;
}
.public-list .column .public-list-item:nth-child(2n+1){
    margin-right: 2%;
}
.public-list .column .public-list-item{
    border-bottom: none!important;
}
#cart .public-list .public-list-list .public-list-item:last-child{
    border-bottom:none;
}
#cart .public-list .public-list-list .public-list-item .good .flex-between span:last-child{
    text-decoration:none;
    color:var(--price);
}
#cart .public-list .public-list-list{
    border-radius:unset;
    padding: 0 10px;
}
#cart .note{
    margin-top:10px;
    background:#fff;
}
#cart .note .textarea{
    padding:10px;
    display: flex;
}
#cart .note .textarea .left{
    margin-right: 5px;
}
#cart .note .textarea textarea{
    flex: 1;
    height:70px;
    padding:5px;
    box-sizing:border-box;
    border-radius: 3px;
    border: none;
    background: var(--bg-color);
}
#cart .jifen{
    margin-top:10px;
    background:#fff;
    padding: 0 10px 10px;
}
#cart .jifen .title{
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#cart .jifen .title .right .switch{
    width: 50px;
    height: 26px;
    border-radius: 13px;
    background-color: var(--bg-color1);
    position: relative;
}
#cart .jifen .title .right .switch .yuan{
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 1px;
    top: 1px;
    transition: 0.2s ease-out;
}
#cart .jifen .title .right .act{
    background-color: var(--btn-bg);
}
#cart .jifen .title .right .act .yuan{
    left: 25px;
}
#cart .jifen .input input{
    width: 100%;
    height: 35px;
    border: 1px solid var(--border);
    border-radius: 3px;
}
#cart .jifen .input input:disabled{
    background-color: #E7ECF0;
}
#cart .info{
    background:#fff;
    margin-top:10px;
}
#cart .info dl{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:40px;
    padding:0 10px;
    border-bottom:1px solid var(--border);
}
#cart .info dl .order-sn{
    display:flex;
    align-items: center;
}
#cart .info .upload .row{
    display:flex;
    padding: 10px 5px;
}
#cart .info .upload .row .left{
    color:var(--grey-797979);
    margin-right: 10px;
    min-width: 65px;
}
#cart .info .upload .row img,#cart .info .images img{
    width: 90px;
    height: 90px;
}
#cart .info dl .order-sn .iconfont{
    padding: 0 5px;
    color:var(--grey-797979);
}
#cart .pay dl dd{
    flex:1;
    margin-left:5px;
}
#cart .info dl:last-child{
    border-bottom:none;
}
#cart .info dl dt{
    color:var(--grey-7f7f7f);
}
#cart .info dl dd{
    color:var(--grey-666);
}
#cart .pay dl dd{
    color:#000;
}
#cart .pay dl.red dd,#cart .pay dl.red dt{
    color:var(--theme);
}
#cart .info dl dd button{
    padding:5px 8px;
    border-radius:3px;
    background: none;
    color: #000;
    border: 1px solid #9e9c9c;
}
.danxuan,.title-danxuan,.danxuan-all{
    margin-right: 5px;
    font-weight: normal;
}
.danxuan,.title-danxuan{
    margin-left:5px;
}
.title-danxuan{
    display: none;
}
.danxuan-fa{
    display: none;
}
.public-list .column .public-list-item .img{
    margin-right: 0;
}
.public-list .column .public-list-item .img img{
    width: 100%;
    height: 100%;
}
.public-list .column .public-list-item .good{
    padding: 0 5px;
}
.public-bottom{
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
}
.public-bottom .public-bottom-item{
    display: flex;
    width: 100%;
    align-items: center;
    background: var(--theme);
    height: 50px;
    padding-left: 10px;
    box-sizing: border-box;
}
.public-bottom .left{
    flex: 1;
    height: 100%;
    color: #fff;
}
.public-bottom .left .cancle{
    width: 100%;
    height: 100%;
    background: none;
}
.public-bottom .right{
    height: 100%;
    flex:1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.public-bottom .right .new-btn{
    background: #fff;
    color: var(--theme);
    width: 70%;
    height: 35px;
    border-radius: 20px;
    font-size: 16px;
}
.buy{
    display:block;
}
.buy .public-bottom-item{
    padding-left:0;
}
.buy .public-bottom-item .btn-two{
    display: flex;
    align-items: center;
}
.buy .public-bottom-item .btn-two button{
    flex: 1;
    height: 100%;
}
.buy .public-bottom-item .left{
    display:flex;
}
.buy .public-bottom-item .left a{
    flex:1;
    text-align:center;
    position: relative;
}
.buy .public-bottom-item .left a .iconfont{
    font-size:20px;
}
.buy .public-bottom-item .left a .badge{
    height: 20px;
    width: 20px;
    display: none;
    padding: 2px;
    border-radius: 50%;
    background: #dd524d;
    color: #fff;
    position: absolute;
    right: 18%;
    top: -5px;
}
.buy .public-bottom-item .left a p{
    font-size:14px;
}
.goods-list{}
.goods-list .img-title{
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.goods-list .img-title img{
    height: 40px;
}
.goods-list .title{
    color: var(--theme);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.goods-list .title .name{
    margin: 0 5px;
    font-size: 14px;
    font-weight: bold;
}
.goods-list .goods-list-container{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
}
.goods-list .goods-list-container .goods-item{
    width: 49%;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}
.goods-list .goods-list-container .goods-item:nth-child(2n+1){
    margin-right: 2%;
}
.goods-list .goods-list-container .goods-item .goods-img{
    width: calc(100% - 20px);
    height: 170px;
    margin: 10px 10px 0 10px;
}
.goods-list .goods-list-container .goods-item .goods-info{
    padding: 10px;
}
.goods-list .goods-list-container .goods-item .goods-info .goods-name{
    font-size: 14px;
    color: var(--grey-70798b);
}
.goods-list .goods-list-container .goods-item .goods-info .goods-bot{
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.goods-list .goods-list-container .goods-item .goods-info .goods-bot .left{
   color: var(--price);
    font-size: 16px;
}
.goods-list .goods-list-container .goods-item .goods-info .goods-bot .right{
    background-color: var(--btn-yellow);
    color: #fff;
    padding: 1px 8px;
    font-size: 12px;
}
.goods-list .goods-list-container .goods-item .goods-info .goods-bot .add-cart{
    width: 20px;
}
.goods-list .goods-list-container .layui-flow-more{
    width: 100%;
}
.goods-list .goods-cate-container .goods-cate-tit{
    line-height: 30px;
    display: block;
}
.goods-list .goods-cate-container .goods-items{
    display: flex;
    flex-wrap: wrap;
}
.goods-list .goods-cate-container .goods-items .goods-item{
    width: 49%;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}
.goods-list .goods-cate-container .goods-items .goods-item{
    width: 49%;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}
.goods-list .goods-cate-container .goods-items .goods-item:nth-child(2n+1){
    margin-right: 2%;
}
.goods-list .goods-cate-container .goods-item .goods-img{
    width: 100%;
    height: 120px;
}
.goods-list .goods-cate-container .goods-item .goods-info{
    padding: 10px;
}
.goods-list .goods-cate-container .goods-item .goods-info .goods-name{
    font-size: 14px;
    color: var(--grey-5d5d5d);
}
.goods-list .goods-cate-container .goods-item .goods-info .goods-bot{
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.goods-list .goods-cate-container .goods-item .goods-info .goods-bot .left{
    color: var(--orange);
    font-size: 16px;
}
.goods-list .goods-cate-container .goods-item .goods-info .goods-bot .right{
    background-color: var(--btn-yellow);
    color: #fff;
    padding: 1px 8px;
    font-size: 12px;
}
.goodslist{
    padding:45px 0 0 0;
}
.public_header{
    height:35px;
    width:100%;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.public_header a{
    text-align:center;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:1;
}
.public-view-list{
    /*background:#fff;*/
}
.public-view-list .title,.public-view-list .list{
    display:flex;
    min-height:40px;
    align-items:center;
    border-bottom:1px solid var(--border);
}
.public-view-list .money-item{
    display:flex;
    min-height:30px;
    padding: 10px;
    align-items:center;
    justify-content: space-between;
    color: var(--grey-333);
    border-bottom:1px solid var(--border);
}
.public-view-list .money-item .left p{
    margin-top: 5px;
}
.public-view-list .money-item .left h5{
   font-weight: 600;
}
.public-view-list .money-item .right{
   font-size: 14px;
}
.public-view-list>div.title{
    color:var(--grey-797979);
}
.public-view-list>div span{
    flex:1;
    text-align:center;
    font-size: 12px;
    color: #333;
}
.public-view-list>a span{
    flex:1;
    text-align:center;
}
.order .public_header a.red{
    border-bottom:1px solid var(--theme);
}
#demo{
    padding:0 5px;
}
.order .order-list{
    background:#fff;
    margin:5px 0;
    border-radius:3px;
    padding:5px;
}
.order .order-list .order-info{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
    line-height: 30px;
}
.order .order-list .order-info .order-info-item{
    width: 50%;
    display: flex;
    align-items: center;
}
.order .order-list .order-info .order-info-item .tit{
    color:var(--grey-797979);
}
.order .order-list .title{
    height:35px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid var(--border);
}
.order .order-list .title{
    color:var(--grey-797979);
}
.order .order-list .title .right{
    color:var(--theme);
}
.order .order-list .order-list-list{
    border-bottom:1px solid var(--border);
    display:block;
    padding:5px 0;
}
.order .order-list .order-list-list .order-list-item{
    display:flex;
    padding:5px 0;
}
.order .order-list .order-list-list .order-list-item .left img{
    width: 80px;
    height: 80px;
    margin-right:5px;
}
.order .order-list .order-list-list .order-list-item .right{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-around;
}
.order .order-list .order-list-list .order-list-item .right p:last-child{
    display:flex;
    justify-content:space-between;
    align-items: center;
    color:var(--price);
}
.order .order-list .order-list-list .order-list-item .right p .price{
    font-size:14px;
}
.order .order-list .order-bottom{
    height:35px;
    display:flex;
    align-items:center;
    padding-top:5px;
}
.order .order-list .order-bottom .left{
    color:var(--price);
    flex:1;
}
.order .order-list .order-bottom .right{
    display: flex;
    align-items: center;
}
.order .order-list .order-bottom .right button,.order .order-list .order-bottom .right a{
    margin:0 5px;
    background:var(--theme);
    color:#fff;
    border-radius:3px;
    width: 70px;
    text-align: center;
    height: 26px;
}
.order .order-list .order-bottom .right a{
    line-height: 26px;
}
.order .order-list .order-bottom .right .cancel{
    background:none;
    color:var(--grey-666);
    border:1px solid var(--grey-666);
    box-sizing: border-box;
}
.public_header .act{
    color:var(--active);
}
.public_header a span.right{
    position: relative;
    height:100%;
}
.public_header a span.right .iconfont{
    font-size:12px;
    width:8px;
    height:8px;
    display: block;
    position: absolute;
}
.public_header a span.right .iconfont:nth-child(1){
    top: calc(50% - 10px);
}
.public_header a span.right .iconfont:nth-child(2){
    top: calc(50% - 3px);
}
.public_title{
    height:40px;
    line-height:40px;
    text-align:center;
}
.number-box{
    display:flex;
    justify-content:center;
    width:120px;
}
.number-box div{
    background:var(--theme);
    width:20px;
    height:20px;
    border-radius: 50%;
    text-align:center;
    line-height:20px;
    font-size:16px;
    color:#fff;
}
.number-box .dis{
    background:#F1F2F2;
    color:#bfbfbf;
}
.number-box input{
    width:50px;
    padding:0 5px;
    text-align:center;
}
/*公用布局e*/
/*公共头部s*/
.header{
    height:45px;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:var(--grey-333);
    padding:0 10px;
    box-sizing:border-box;
    position:fixed;
    top:0;
    left:0;
    z-index:10;
}
.header .segmented{
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
}
.trs{
    background:rgba(221,82,77,0);
    box-shadow:none;
}
.header a{
    font-size:12px;
}
.header .iconfont{
    font-size:16px;
}
.header .title{
    font-size: 14px;
    text-align:center;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: -1;
}
.header .search{
    flex:1;
    padding:0 5px;
    position:relative;
}
.header .search input{
    padding: 5px 0 5px 25px;
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
    display: block;
    font-size: 12px;
}
.header .search input:focus{
    text-align:left;
}
.header .search:before{
    content:'\e60f';
    font-family:'iconfont';
    font-size:16px;
    color:#757575;
    position:absolute;
    left:8px;
    top:2px;
    display:inline-block;
}
/*公共头部e*/
/*公共底部s*/
.bottom{
    position:fixed;
    bottom:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    background:#fff;
    height:50px;
    align-items:center;
}
.bottom a dt img{
    width: 25px;
    height: 25px;
}
.bottom a{
    flex:1;
    text-align:center;
    color:var(--grey-b3b3b3);
}
.bottom a.active{
    color:var(--theme);
}
.bottom a dl dt.iconfont{
    font-size:20px;
}
.bottom a dl dd{
    font-size:12px;
}
/*公共底部e*/
/*公共样式s*/
.sh-bot{
    box-shadow:0 2px 4px 0 #dd524d;
}
.sh-all{
    box-shadow:0 0 6px 0 #dd524d;
}
.bot-line{
    position:relative;
}
.bot-line:after{
    content:'';
    background:#bfbfbf;
    position:absolute;
    height:1px;
    bottom:0;
    left:0;
    width:100%;
}
.rot-nav{
    position:relative;
    padding-right: 20px;
    color: var(--grey-666);
}
.rot-nav:after{
    content:'\e64e';
    font-family: iconfont;
    color: inherit;
    position:absolute;
    top: 50%;
    right:0;
    font-size: inherit;
    display: block;
    transform: translateY(-50%);
}
.iconjiantou{
    color:#9a9898;
}
#empty{
    width: 100%;
    margin: 10% 0;
    text-align: center;
    color: #777;
}
#empty .empty{
    font-size: 50px;
    margin-bottom: 10px;
}
/*公共样式e*/
/*弹出层s*/
.shade{
    position:fixed;
    left:0;
    top:45px;
    width:100%;
    height:100%;
    z-index:998;
    background:rgba(0,0,0,0.2);
}
.popup{
    z-index:999;
    position:fixed;
    right:5px;
    top: 48px;
    width:100px;
    background:#fff;
    border-radius: 3px;
}
.popup i{
    background: #fff;
    height: 16px;
    width: 16px;
    display: block;
    transform: rotate(45deg);
    position: absolute;
    top: -8px;
    right: 7px;
}
.popup a{
    position: relative;
    width: 100%;
    display: inline-block;
}
.popup a:after{
    content:'';
    background:#bfbfbf;
    position:absolute;
    height:1px;
    bottom:0;
    left:0;
    width:100%;
}
.popup a:last-child:after{
    content:none;
}
.popup a dl{
    display:flex;
    height:35px;
    justify-content:left;
    align-items:center;
}
.popup a dl dt.iconfont{
    margin: 0 10px;
}
#search .search-info{
    z-index:999;
    position:fixed;
    top:-80px;
    left:0;
    width:100%;
    background:#fff;
}
#search .search-info .title{
    height:30px;
    text-align:center;
    line-height:30px;
}
#search .search-info .search-list{
    display:flex;
    padding:5px;
    flex-wrap:wrap;
}
#search .search-info .search-list span{
    border:1px solid #bfbfbf;
    padding:2px 3px;
    margin:2px;
    text-align:center;
    width:32%;
    box-sizing:border-box;
    display:inline-block;
    border-radius:2px;
}
/*弹出层e*/
/*轮播s*/
.swiper-container{
    height:180px;
}
.swiper-container img{
    width:100%;
    height:100%;
}
.swiper-pagination-bullet{
    background:#dd524d;
    opacity:0.6;
}
.swiper-pagination-bullet-active{
    background:#dd524d;
    opacity:1;
}
/*轮播e*/
/*tab切换s*/
.public-tab{
    color: var(--grey-797979);
    display: flex;
    align-items: center;
    min-height: 40px;
}
.public-tab >*{
    flex: 1;
    text-align: center;
    position: relative;
    height: 30px;
    box-sizing: border-box;
    line-height: 30px;
}
.public-tab .act{
    color: var(--theme);
}
.public-tab .act:after{
    content: '';
    background-color: var(--theme);
    width: 30px;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
}
.common-tab{
    color: var(--grey-666);
    display: flex;
    align-items: center;
    min-height: 40px;
}
.common-tab >*{
    text-align: center;
    position: relative;
    height: 30px;
    box-sizing: border-box;
    line-height: 30px;
    margin-right: 10px;
}
.common-tab .act{
    color: var(--btn-bg);
    font-size: 15px;
}
.common-tab .act:after{
    content: '';
    background-color: var(--btn-bg);
    width: 15px;
    height: 4px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    border-radius: 3px;
}
/*tab切换e*/
/*segmented-s*/
.segmented{
    background-color: var(--grey-e9e9eb);
    display: flex;
    align-items: center;
    position: relative;
    min-height: 30px;
    border-radius: 5px;
    color: var(--grey-666);
}
.segmented p{
    width: 80px;
    text-align: center;
    z-index: 2;
}
.segmented .bg{
    position: absolute;
    left: 2px;
    top: 2px;
    height: calc( 100% - 4px);
    background-color: #fff;
    width: 80px;
    border-radius: 5px;
    box-shadow: 0 0 3px 3px rgba(0,0,0,0.1);
    z-index: 1;
    transition: 0.3s linear;
}
/*segmented-e*/
/*视频列表s*/
.video-list{}
.video-list .video-item{
    padding: 10px;
    background-color: #fff;
    color: #fff;
    position: relative;
    margin-bottom: 10px;
}
.video-list .video-item .video{
    width: 100%;
    height: 200px;
    object-fit: fill;
}
.video-list .video-item .video-title{
    position: absolute;
    left: 15px;
    top: 15px;
}
.video-list .video-item .play{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%,-50%);
}
.video-list .video-item .video-duration{
    position: absolute;
    right: 15px;
    top: 15px;
}
/*视频列表e*/
/*进度条s*/
.progress .progress-tit{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.progress .progress-tit .left p{
    color: var(--grey-7f7f7f);
    margin-bottom: 3px;
}
.progress .progress-tit .left h4{
    font-size: 18px;
    font-weight: bold;
}
.progress .progress-tit .right{
    display: flex;
    align-items: center;
}
.progress .progress-tit .right .first{
    color: var(--grey-7f7f7f);
    margin-right: 5px;
}
.progress .progress-tit .right h4{
    font-size: 18px;
    font-weight: bold;
    margin-right: 3px;
}
.progress .progress-tit .right .iconfont{
    color: var(--grey-7f7f7f);
    font-size: 12px;
}
.jindu{
    background: var(--light-theme);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.jindu .jindu-info{
    width: 50%;
    height: 100%;
    background: var(--theme);
}
/*进度条e*/