@charset "utf-8";
/*公用样式--↓*/

/*样式重置*/
*{border: none;margin: 0;padding: 0 0 0 0;box-sizing: border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-size: 14px;font-weight: 400;}
/*html{overflow-x: hidden;}*/
body{width: 100%;background:rgba(242,243,246,1);}
a{text-decoration: none;color:rgba(255,255,255,1)}
a:hover{text-decoration: none;}
ul,ol{list-style: none;}
h1, h2, h3, h4, h5, h6{ font-size:100%; }
button{cursor: pointer;}
input,button,textarea{transition: all .2s linear;outline: none;}
input::placeholder{color:rgba(0,0,0,.4);}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td{letter-spacing: 0;}

/*flex布局样式*/
.flex-FRW{
    display: flex;
    flex-flow: row wrap;
}
.flex-FRN{
    display: flex;
    flex-flow: row nowrap;
}
.flex-FRRW{
    display: flex;
    flex-flow: row-reverse wrap;
}
.flex-FRRN{
    flex-flow: row-reverse nowrap;
}
.flex-FCW{
    display: flex;
    flex-flow: column wrap;
}
.flex-FCN{
    display: flex;
    flex-flow: column nowrap;
}
.flex-FCRW{
    flex-flow: column-reverse wrap;
}
.flex-FCRN{
    display: flex;
    flex-flow: column-reverse nowrap;
}
.flex-center{
    justify-content: center;
}
.flex-left{
    justify-content: left;
}
.flex-right{
    justify-content: right;
}
.flex-start{
    justify-content: flex-start;
}
.flex-around{
    justify-content: space-around;
}
.flex-between{
    justify-content: space-between;
}
.flex-evenly{
    justify-content: space-evenly;
}
.align-center{
    align-items: center;
}
.flex-last-item{
    flex:1 0 auto;
}
/*input边框状态颜色*/
.Focus{
    border: 1px solid rgba(255,141,0,1);
}
.Blur{
    border: 1px solid rgba(238,238,238,1);
}

/*button状态颜色*/
.redBtn{
    color:rgba(255,255,255,1);
    background:rgba(178,11,40,1);
    border-radius:2px;
}
.redBtn:hover{

}
.grayBtn{
    color:rgba(0,0,0,0.4);
    background:rgba(242,243,246,1);
    border-radius:2px;
}
.grayBtn:hover{

}
/*鼠标*/
.pointer{
    cursor: pointer;
}

/*文字颜色*/
.gray{
    color:rgba(0,0,0,.4);
}
.red{
    color:rgba(202,31,61,1) !important;
}

/**/
.container{
    width: 100%;
    min-width: 1200px;
    padding:112px 0 0;
    position: relative;
}
.center{
    width: 1200px;
    margin: 0 auto;
}
.clear:after{
    content: '';
    display: block;
    visibility: hidden;
    clear: both;
    width: 100%;
    height: 0;
    font-size: 0;
    zoom: 1;
}
.class-all-type-item{
    width: 123px;
    height: 32px;
    background: rgba(216, 216, 216, 0);
}
/*BoxTitle*/
.BoxTitle{
    display: flex;
    justify-content: space-between;
    padding:20px 0 12px;
    border-bottom:1px solid rgba(238,238,238,1);
}
.BoxTitle>span:first-child{
    height:32px;
    font-size:24px;
    color:rgba(31,31,31,1);
    line-height:32px;
    padding-left: 12px;
    border-left: 4px solid rgba(202,31,61,1);
}
.BoxTitle>span:last-child{

}
/*功能页面未开通提示*/
.info-remain{
    width:400px;
    height:120px;
    line-height:120px;
    position: fixed;
    top: 30%;
    left: 50%;
    z-index: 1000;
    transform: translate3d(-50%,-50%,0);
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color:rgba(235,235,235,.6);
    background: -webkit-linear-gradient(top,rgba(255,255,255,.9),rgba(25,25,25,.81));
    border-radius:10px;
    box-shadow: 1px 1px 8px 4px #000;
    animation: alert 3s linear 0s 1;
    animation-fill-mode: forwards;
}
@keyframes alert {
    0%{
        top: 0%;
        opacity: 0;
        background: -webkit-linear-gradient(top,rgba(255,255,255),rgba(0,0,20));
    }
    20%{
        top: 30%;
        opacity: .2;
        background: -webkit-linear-gradient(top,rgba(255,255,255),rgba(0,0,20));
    }
    25%{
        opacity: 1;
    }
    78%{
        top: 30%;
        opacity: 1;
        background: -webkit-linear-gradient(top,rgba(255,255,255),rgba(0,0,20));
    }
    100%{
        top: 0%;
        opacity: 0;
        background: -webkit-linear-gradient(top,rgba(255,255,255),rgba(0,0,20));
    }
}
/*curtain*/
.curtain{
    position: fixed;
    width:100%;
    height: 100%;
    top:0;
    left: 0;
    z-index: 1000;
    background:rgba(0,0,0,.3);
    display: none;
}
/*select*/
.selectBox{
    padding-left: 8px;
    padding-right: 26px;
    background:url(../static/images/icons/small-bottom-gray.svg) no-repeat calc(100% - 8px) center;
    position: relative;
    border:1px solid rgba(224,224,224,1);
    cursor: pointer;
}
.defult-select{
    height:30px;
    font-size:14px;
    font-weight:500;
    color:rgba(0,0,0,0.6);
    line-height:30px;
}
.select-slideBox{
    position: absolute;
    top: 31px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,1);
    box-shadow: 0 0 2px 0 rgba(0,0,0,0.4);
    height: 0;
    opacity: 1;
    overflow-y: scroll;
    z-index: 100;
    transition: all .2s linear;
}
/* 设置滚动条的样式 */
.select-slideBox::-webkit-scrollbar {
    width:2px;
}
/* 滚动槽 */
.select-slideBox::-webkit-scrollbar-track {
    background: rgba(250, 250, 250, 1);
    border-radius:2px;
}
/* 滚动条滑块 */
.select-slideBox::-webkit-scrollbar-thumb {
    border-radius:2px;
    background:rgba(204, 204, 204, 1)
}
.select-slideBox::-webkit-scrollbar-thumb:window-inactive {
    background:rgba(255,0,0,0.4);
}
.selectBox:hover .select-slideBox{
    max-height: 160px;
    height: auto;
    opacity: 1;
}
/*.select-slideBox .active{*/
    /*pointer-events: none;*/
    /*user-select: none;*/
/*}*/
.slide-item{
    height:32px;
    font-size:14px;
    font-weight:500;
    color:rgba(0,0,0,0.6);
    line-height:32px;
    padding-left: 8px;
    /*margin-bottom:4px;*/
    cursor: pointer;
    transition: all .2s linear;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.slide-item:last-of-type{
    margin-bottom:0;
}
.slide-item:hover{
    color:rgba(202,31,61,1);
}
.selectBox .active{
    color:rgba(202,31,61,1);
    background-color:rgba(202,31,61,.1);
}
.select-slideBox::-webkit-scrollbar{
    width: 4px;
}
.select-slideBox::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color:rgba(202,31,61,1);
}
.select-slideBox::-webkit-scrollbar-button{
    display: none;
}
/*head*/
.head{
    position: fixed;
    width: 100%;
    min-width: 1200px;
    height: 64px;
    top: 0;
    left: 0;
    z-index: 1000;
    background:rgba(255,255,255,1);
    box-shadow:0px 4px 8px 0px rgba(0,0,0,0.02);
}
.head>div{
    width: 1200px;
    margin:0 auto;
    height: 100%;
}
.head>div>div:nth-of-type(1)>img{
    margin-top: 16px;
    height: 32px;
}
.head>div>div:nth-of-type(1){
    position: relative;
    height: 100%;
}
.head>div>div:nth-of-type(1)>div{
    position:absolute;;
    overflow: hidden;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/*.head>div>div:nth-of-type(1)>div>input{*/
    /*width: 496px;*/
    /*height: 36px;*/
    /*line-height: 36px; */
    /*background-color:rgba(255,255,255,1);*/
    /*border-radius:2px;*/
    /*border:2px solid rgba(231,66,66,1);*/
    /*padding-left:40px;*/
    /*background-image:url(../static/images/icons/search-white.svg);*/
    /*background-repeat: no-repeat;*/
    /*background-position: 14px center;*/
    /*background-size: 18px;*/
/*}*/
.head>div>div:nth-of-type(1)>div>button{
    width:96px;
    height:36px;
    line-height: 36px;
    position: absolute;
    right: 0;
    background:linear-gradient(135deg,rgba(231,66,66,1) 0%,rgba(202,31,61,1) 100%);
    border-top-right-radius:2px;
    border-bottom-right-radius:2px;
    color:rgba(255,255,255,1);
    font-size:16px;
}
.head>div>div:nth-of-type(2){
    padding:20px 0 12px 0;
}
.head-to span{
    font-size: 16px;
    font-weight:500;
    color:rgba(25,30,50,1);
    transition:all .2s linear;
    cursor: pointer;
}
.head-to span{
    margin-right: 24px;
}
.head-to span:hover{
  color:rgba(202,31,61,1);
}
.head-to span:last-child{
    margin:0;
}
.headson{
    height: 112px;
    box-shadow: 0px 8px 12px 0px rgba(34, 36, 73, 0.04);
}
.headson .head-to{
    position: relative !important;
    top: 0 !important;
    left:0 !important;
    transform: translate(0,0) !important;
    padding: 12px 0 20px;
    height: auto !important;
}
.headdetails{
    width: 100%;
    position: relative !important;
    top: 0 !important;
    left:0 !important;
    transform: translate(0,0) !important;
    padding: 0!important;
}
.headdetails>img{
    height: 32px;
}
.all-title-head{
    border-left:1px solid rgba(224, 224, 224, 1);
    padding-left: 16px;
    position: absolute;
    height: 32px;
    font-size: 24px;
    font-weight: 500;
    color: #191E32;
    line-height: 32px;
    left: 178px;
    top:0;
}
/*head-type2*/
.AllType-Head{
    position: fixed;
    width: 100%;
    min-width: 1200px;
    top: 0;
    left: 0;
    z-index: 1000;
    padding:12px 0 16px;
    background:rgba(255,255,255,1);
    box-shadow:0px 4px 8px 0px rgba(0,0,0,0.02);
}
.AllType-Head>div{
    width: 1200px;
    margin:0 auto;
}
.AllType-Head>div>div:nth-of-type(1){
    margin-bottom:12px;
}
.AllType-Head>div>div:nth-of-type(1)>div:nth-of-type(2)>span,
.AllType-Head>div>div:nth-of-type(1)>div:nth-of-type(1)>span{
    margin-right: 24px;
    height:24px;
    font-size:16px;
    color:rgba(25,30,50,1);
    line-height:24px;
    transition: all .2s linear;
    cursor: pointer;
}
.AllType-Head>div>div:nth-of-type(1)>div:nth-of-type(2)>div>span{
    height:24px;
    font-size:16px;
    color:rgba(25,30,50,1);
    line-height:24px;
    transition: all .2s linear;
    cursor: pointer;
}
.AllType-Head>div>div:nth-of-type(1)>div:nth-of-type(2)>div>b{
    margin:4px 8px 4px;
    height: 16px;
    width: 1px;
    background:rgba(25,30,50,1);
}
.AllType-Head>div>div:nth-of-type(1)>div:nth-of-type(1)>span:last-of-type{
    margin-right: 0;
}
.AllType-Head>div>div:nth-of-type(1)>div:nth-of-type(2)>span:first-child{
    color: rgba(0,0,0,.4);
}
.AllType-Head>div>div:nth-of-type(1)>div:nth-of-type(2)>div>span:hover,
.AllType-Head>div>div:nth-of-type(1)>div:nth-of-type(2)>span:hover,
.AllType-Head>div>div:nth-of-type(1)>div:nth-of-type(1)>span:hover{
    color:rgba(202,31,61,1);
}
.AllType-Head>div>div:nth-of-type(1)>div:nth-of-type(2)>span:nth-of-type(1):hover{
    color:rgba(0,0,0,.4);
}
.AllType-Head>div>div:nth-of-type(2)>div:nth-of-type(1)>img{
    width:127px;
    height:48px;
}
.AllType-Head>div>div:nth-of-type(2)>div:nth-of-type(1)>b{
    width:1px;
    height: 32px;
    margin:8px 8px;
    background:rgba(224,224,224,1);
}
.AllType-Head>div>div:nth-of-type(2)>div:nth-of-type(1)>span{
    height:48px;
    font-size:24px;
    font-weight:500;
    color:rgba(25,30,50,1);
    line-height:48px;
    text-align: center;
}
.AllType-Head>div>div:nth-of-type(2)>div:nth-of-type(2){
    position: relative;
    height: 32px;
    top:8px ;
}
.AllType-Head>div>div:nth-of-type(2)>div:nth-of-type(2)>input{
    width: 274px;
    height:32px;
    background-color:rgba(248,248,248,1);
    border-radius:2px 0px 0px 2px;
    line-height: 32px;
    padding-left: 32px;
    background-image:url(../static/images/icons/search-white.svg);
    background-repeat: no-repeat;
    background-position: 6px center;
}
.AllType-Head>div>div:nth-of-type(2)>div:nth-of-type(2)>button{
    position: absolute;
    top: 0;
    right: 0;
    width:80px;
    color:rgba(255,255,255,1);
    height:32px;
    background:linear-gradient(135deg,rgba(231,66,66,1) 0%,rgba(202,31,61,1) 100%);
    border-radius:0px 2px 2px 0px;
    line-height: 32px;
    text-align: center;
}
/*foot*/
.foot{
    /*position: absolute;*/
    position: relative;
    background: linear-gradient(135deg, #3D404D 0%, #191E32 100%);
    width: 100%;
    min-width: 1200px;
    bottom:0;
    left: 0;
    z-index: 1000;
    padding: 59px 0 57px;
}
.foot>div{
    width: 1200px;
    margin:0 auto;
}
.foot>div>img{
    width: 180px;
    height:32px;
    transform: translateY(1px);
    position: relative;
    z-index: 2;
}
.foot>div>.banner-img{
    position: absolute;
    top:0;
    left: 0;
    height: 155px;
    width: 100%;
    z-index: 1;
}
.foot>div>p{
    max-width:714px;
    line-height: 20px;
    color:rgba(255,255,255,1);
    word-wrap: break-word;
    word-break: break-all;
    position: relative;
    z-index: 2;
}
.search-box{

    transform: translate(0,0) !important;
    right: 0 !important;
    top: 16px !important;
    left: auto !important;
}
.search-box input{
    width: 180px;
    height: 32px;
    background: #F4F4F4;
    border-radius: 16px;
    padding: 0px 36px 0 16px;
}
.search-img{
    position: absolute;
    width: 20px;
    height: 20px;
    right: 14px;
    top: 6px;
    cursor: pointer;
}
.no-tip-letter{
    color: rgba(0,0,0,0.4) !important;
    font-size: 16px !important;
    line-height: 24px !important;
    text-align: center;
    border: none !important;
}
.img-intro{
    width: 390px;
}


