﻿/* xffxs */
/* 默认样式 */
* {
    margin: 0;padding: 0;
    -webkit-touch-callout:none;
    /*-webkit-user-select:none;*/
    -webkit-tap-highlight-color:transparent;
}
ul,ol{list-style: none;}
a,a:hover,a:focus{text-decoration: none;}

body{
    font-family:"microsoft yahei";
    background: #fff;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    /*max-width:7.5rem;*/
    /*margin:0 auto;*/
}
input,button{
    border: 0;
    outline: none;
}
img {
    border: 0px;
    display: block;
}
.clear {
    clear: both;
}

a,button,input,textarea{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
input{
    -webkit-appearance: none;
}
::-webkit-input-placeholder { /* WebKit browsers */
    color:#8C8C8C;
    font-size:0.3rem;
    font-weight:300;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:#8C8C8C;
    font-size:0.3rem;
}

*::-webkit-scrollbar {/*隐藏滚轮*/
    display: none;
}
.item{
    -webkit-overflow-scrolling: touch;
}

/* 兼容性：ios 4+、android 2.3+、winphone8+ */
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


/* <1px */
.border_1 {
    position: relative;
}
.border_1::before {
    content: '';
    border-bottom: 1px solid rgba(0,0,0,0.14);
    transform: scale(0.5);
    transform-origin: 0 0;
    pointer-events: none; /* 防止点击触发 */
    box-sizing: border-box;
    /*height: 200%;*/
    width: 200%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}

.border_box_1{
    position: relative;
}
.border_box_1::before {
    content: '';
    border-bottom: 1px solid rgba(0,0,0,0.14);
    transform: scale(0.5);
    transform-origin: 0 0;
    pointer-events: none; /* 防止点击触发 */
    box-sizing: border-box;
    /*height: 200%;*/
    width: 200%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}
.scale-1px{
    position: relative;
    border:none;
}
.scale-1px:after{
    content: '';
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.14);
    width: 100%;
    height: 1px;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

@media (-webkit-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5) {
    .border_1::before {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    .border_box_1::before{
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}
@media (-webkit-device-pixel-ratio: 2),(min-device-pixel-ratio: 2) {
    .border_1::before {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    .border_box_1::before{
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}
/*@media (-webkit-device-pixel-ratio: 3),(min-device-pixel-ratio: 3) {*/
/*.border_1::before {*/
/*-webkit-transform: scale(0.33);*/
/*transform: scale(0.33);*/
/*}*/
/*}*/


.ipx{
    display: block;
    width:100%;
    height:0;
    background:rgba(250,250,250,1);
    position: fixed;
    left:0;
    bottom:0;
}

.no-more{
    text-align: center;
    font-size:0.24rem;
    color: rgba(140,140,140,1);
    padding:0.28rem 0 0.32rem;
    /*display: none;*/
}

.dialog{
    position: fixed;
    left: 0;top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.3);
    z-index: 999999999;
    display: none;
}
.dialog .dialog-content{
    position: relative;
    width: 6rem;
    /*width: 85%;*/
    /*width: 80vw;*/
    height: auto;
    background: #fff;
    border-radius: 0.12rem;
    left: 50%;top: 50%;
    transform: translate(-50%,-50%);
    color: #333;
    font-size: 0.32rem;
}
.dialog .dialog-header{
    padding: 0.4rem 0.3rem 0.2rem 0.32rem;
    text-align: center;
}
.dialog .dialog-header .title{
    font-size: 0.32rem;
    color:rgba(2,2,2,1);
    font-weight:bold;
}
.dialog .dialog-header .close{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0.8rem;height: 0.8rem;
    position: absolute;
    top: 0;
    right: 0;
    /*font-size: 0.64rem;*/
    /*font-weight: 100;*/
    color: #000;
    /*filter: alpha(opacity=20);*/
    /*opacity: 0.2;*/

    /*background: url(../images/close.png) no-repeat 0.2rem 0.2rem;*/
    /*background-size: 0.24rem 0.24rem;*/
}
.dialog .dialog-header .close div{
    position: absolute;
    right: 0.2rem;
    top: 0.18rem;
    display: block;
    width:0.24rem;
    height:0.24rem;
    background: url(../images/close.png) no-repeat left top;
    background-size: 0.24rem 0.24rem;
}
.dialog .dialog-body{
    padding: 0 0.4rem;
    margin-bottom: 0.85rem;
}
.dialog .good{
    text-align: left;
    padding-left: 0.5rem;
    display: none;
}
.dialog .good .good1{
    font-size: 0.24rem;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 0.14rem;
    color: #B42536;
}
.dialog .good .good2{
    font-size: 0.24rem;
    color: red;
    display: inline-block;
    margin-bottom: 0.14rem;
    color: #8C8C8C;
}
.dialog .dialog-body .form-wrap{
    display: block;
    width:100%;
    margin-bottom: 0.4rem;
    padding: 0;
    border-radius: 0.1rem;
    text-align: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.dialog .dialog-body .form-wrap input{
    display: block;
    width:100%;
    font-size: 0.28rem;
    color: #333;
    padding:0.36rem 0 0.36rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.dialog .dialog-footer{
    display: block;
}
.dialog .dialog-footer input[type=submit]{
    width: 100%;
    height: 0.88rem;
    border-radius: 0px 0px 6px 6px;
    text-align: center;
    color:rgba(180,37,54,1);
    background-color: rgba(180,37,54,0.07);
    font-size: 0.32rem;
}


.dialog-back .dialog-body{
    padding:0 0.58rem;
}
.dialog-back .dialog-body .form-wrap{
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.dialog-back .dialog-body .form-wrap img{
    width: 1.64rem;
    height: 1.64rem;
    margin: 0.5rem 0;
}
.dialog-back .dialog-body .div{
    font-size: 0.4rem;
    color:rgba(2,2,2,1);
    margin-bottom: 0.3rem;
    text-align: center;
}
.dialog-back .dialog-body .back{
    font-size: 0.28rem;
    color: #888888;
    margin-bottom: 0.8rem;
    text-align: center;
}
.dialog-back  .dialog-body .back > div,
.dialog-back  .dialog-body .div > div
{
    width:100%;
    text-align: center;
}
.dialog .dialog-footer{
    margin:0.88rem auto 0;
    overflow: hidden;
}
.dialog .dialog-footer input[type=submit]{
    display: block;
    width:4.2rem;
    height:0.84rem;
    text-align: center;
    background:rgba(180,37,54,1);
    border-radius:0.08rem;
    font-size:0.32rem;
    font-weight:500;
    color:rgba(250,250,250,1);
    margin:0 auto 0.6rem;
}



.nav-fixed{
    position: fixed;
    left: 0;bottom: 0;
    height: 0.98rem;
    line-height: 1rem;
    width: 100%;
    box-sizing: border-box;
    background:rgba(255,255,255,1);
    border-top:0.02rem solid rgba(0,0,0,0.1);
}
.nav-fixed ul{
    width: 100%;
    height: 100%;
}
.nav-fixed .n_item{
    text-align: center;
}
.nav-fixed .n_item a{
    display: flex;
    width:100%;
    height:100%;
    position: relative;
}
.nav-fixed .n_item img{
    display: block;
    width: auto;
    height: 0.4rem;
    margin: 0 auto 0.02rem;
    overflow: hidden;
    position: absolute;
    top:0.16rem;
    left:50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.nav-fixed .n_item:first-child a img{
    height:0.44rem;
    top:0.12rem;
}
.nav-fixed .n_item span{
    display: block;
    width: 100%;
    line-height: 0.34rem;
    text-align: center;
    font-size:0.24rem;
    color:rgba(2,2,2,1);
    position: absolute;
    bottom:0.04rem;
}
.nav-fixed .n_item span.active{
    color:rgba(180,37,54,1);
}


.dialog-fxs .dialog-content{
    width:6.14rem;
}
.fxs_tips{
    font-size:15px;
    font-weight:400;
    color:rgba(2,2,2,1);
    line-height:0.42rem;
    margin-bottom: 0.64rem;
    text-align: center;
}



.spinner {
    margin: -10% auto 0;
    width: 150px;
    text-align: center;

    position: fixed;
    left:50%;
    top:50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index:99999999999999999;
    display: none;
}

.spinner > div {
    width: 16px;
    height: 16px;
    /*background-color: #67CF22;*/
    background-color:rgba(180,37,54,1);

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0.0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 40% {
          transform: scale(1.0);
          -webkit-transform: scale(1.0);
      }
}



.dialog .dialog-tips{
    text-align: center;
    font-size:0.28rem;
    font-weight:400;
    color:rgba(180,37,54,1);
    margin-bottom: 0.4rem;
}
.dialog .dialog-tips > img{
    margin-bottom: 0.34rem;
    margin-top:0.2rem;
}
.dialog .dialog-tips > div{
    margin-bottom: 0.68rem;
}
.dialog .dialog-tips .tips-text{
    margin-top:0.02rem;
    display: none;
}
.dialog .tips-img{
    margin-top:0.1rem;
    width:auto;
    height:0.64rem;
    display: inline-block;
    text-align: center;
    display: none;
}
.dialog .img-gf{
    display: none;
}

.dialog .dialog-body .form-wrap input{
    padding:0;
    padding-left:0.24rem;
    height:0.88rem;
    border-radius:0.08rem;
    border:1px solid rgba(0,0,0,0.3);
    box-sizing: border-box;
}


/* toast  */

.alert{
    display: block;
    margin:0 auto;
    width:2.4rem;
    height:2.4rem;
    -webkit-border-radius: 0.2rem;
    -moz-border-radius: 0.2rem;
    border-radius: 0.2rem;
    background: rgba(17,17,17,0.7);
    position: fixed;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    z-index:99999999999999;
    display: none;

}
.alert_content{
    display: block;
    text-align: center;
    padding:0.6rem 0 0.4rem;
}
.alert_img{
    display: block;
    width:1rem;
    height:0.72rem;
    margin:0 auto 0.32rem;
}
.alert_text{
    text-align: center;
    font-size:0.26rem;
    font-weight:400;
    color:rgba(255,255,255,1);
}


/* 小于1px */

.hairlines_top{
    position: relative;
    border:none;
}
.hairlines_top:after{
    content: '';
    position: absolute;
    left: 0;
    top:0;
    background: rgba(0,0,0,0.1);
    width: 100%;
    height: 1px;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.hairlines_bottom{
    position: relative;
    border:none;
}
.hairlines_bottom:after{
    content: '';
    position: absolute;
    left: 0;
    bottom:0;
    background: rgba(0,0,0,0.1);
    width: 100%;
    height: 1px;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}


.dialog_bg{
    position: fixed;
    left:0;
    top:0;
    display: block;
    width:100%;
    height:100%;
    z-index:999;
    background: rgba(0,0,0,0.5);
    display: none;
}
.dialog_content{
    position: relative;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    display: block;
    width:86%;
    height:auto;
    background: #fff;
    border-radius:4px;
    padding:22px;
    text-align: center;
    box-sizing: border-box;
}
.ok_content .ok_icon{
    display: block;
    width:80px;
    height:80px;
    margin:0 auto;
}
.ok_content .ok_text{
    display: block;
    font-size:18px;
    font-weight:bold;
    color:rgba(33,33,33,1);
    margin-top:18px;
}
.ok_content .ok_tips{
    display: block;
    font-size:13px;
    font-weight:400;
    color:rgba(180,37,54,1);
    margin-top:12px;
}
.ok_content .ok_form{
    display: block;
    margin:32px auto 30px;
}
.ok_content .ok_form .ok_wrapper{
    display: block;
    text-align: left;
    margin-top:12px;
}
.ok_content .ok_form .ok_wrapper:first-child{
    margin-top:0;
}
.ok_content .ok_form .ok_wrapper label{
    display: inline-block;
    font-size:14px;
    font-weight:400;
    color:rgba(33,33,33,1);
    margin-right:10px;
}
.ok_content .ok_form .ok_wrapper input{
    display: inline-block;
    vertical-align: middle;
    width:65%;
    height:44px;
    border-radius:4px;
    border:1px solid rgba(212,212,212,1);
    padding-left:20px;
    outline: none;
}
.ok_content .ok_btn{
    display: block;
    text-align: center;
    line-height: 42px;
    width:64%;
    height:42px;
    margin:0 auto;
    background:rgba(180,37,54,1);
    border-radius:4px;
    font-size:16px;
    font-weight:bold;
    color:rgba(250,250,250,1);
    border:0;
}

/* 添加 */
.sx .sx_ul{
    display: flex;
}
.sx .sx_ul li{
    position: static !important;
    float: none !important;
    flex: 1;
    margin-left: 0 !important;
}
.sx_ul {
    position: relative;
}
.sx .sx_ul li .query-list{
    left: 0;
    z-index: 10001;
    background: rgba(255, 255, 255, .95) !important;
    border: none !important;
    overflow-y: auto !important;
}
.sx .sx_ul li .acton{
    max-height: 200px;
    overflow-y: auto;
}
.sx .sx_ul li .query-list a{
    display: block;
    line-height: 32px;
    border-bottom: 1px solid #dcdcdc;
}
.sx .sx_ul li .label{
    position: relative;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-top: 1px solid transparent;
    height: 32px;
    line-height: 32px;
}
/* .sx .sx_ul li .label:before{
    content: "";
    width: 1px;
    vertical-align: middle;
    position: absolute;
    right: 0;
    height: 40px;
    top: 10px;
    background-image: -webkit-radial-gradient(center, circle farthest-corner, #999 0%, #eee 80%);
}
.sx .sx_ul li:last-child .label:before{
    background:none;
} */
.sx .sx_ul li .label.active{
    background: #fff;
    z-index: 1001;
    border-left: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    border-top: 1px solid #dcdcdc;
}
.sx .sx_ul li .arrow,.sx .sx_ul .scv-shaixuan .arrow{
   
    position: relative;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    top: 4px;
    padding: 0 12px 0 0;
    background: url(../images/down.png) 100% 50% no-repeat;
    background-size: 10px 6px;
   
}


.sx .sx_ul .scv-shaixuan{

    position: relative !important;
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
}
.sx .sx_ul .scv-shaixuan .label{
    height: 32px;
    line-height: 32px;
    background: url(../images/list_pc_down.png) no-repeat 90px center;
    background-size: 18px 10px;

}
