@font-face {
    font-family: 'news706_b';
    src: url('./font/news706blod/NEWS706B.woff2') format('woff2'),
    url('./font/news706blod/NEWS706B.woff') format('woff'),
    url('./font/news706blod/NEWS706B.svg') format('svg'),
    url('./font/news706blod/NEWS706B.TTF') format('ttf'),
    url('./font/news706blod/NEWS706B.eot') format('eot');
}
.customer_box {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.customer {
    width: 800px;
    height: 464px;
    background-color: #ffffff;
    border-radius: 4px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    box-sizing: border-box;
}
.customer *{
    box-sizing: border-box;
}

.customer_t {
    height: 60px;
    background: url(../image/customer_box_top.png)
    center no-repeat;
    border-bottom: 1px dashed #cfd3e0;
    padding: 0 12px;
    line-height: 60px;
}

.customer_t_l {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0px 1px 5px 0px #dfdfdf;
    position: relative;
    top: 5px;
}

.customer_t_l img {
    max-width: none;
    position: absolute;
    bottom: 5px;
    left: -6px;
}

.customer_t_m {
    font-size: 16px;
    color: #2c2c2c;
}

.customer_t_m span {
    margin: 0 14px;
    position: relative;
}
.customer_t_r {
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    position: relative;
    top: 20px;
    line-height: 20px;
}
.customer_t_m span:first-child:after {
    content: '';
    width: 1px;
    height: 11px;
    background-color: #d3d3d3;
    position: absolute;
    right: -15px;
    top: 6px;
}
.customer_tel {
    line-height: 64px;
    text-align: center;
    background-color: #f4f4f4;
    border-bottom: 1px solid #e8e8e8;
}
.customer_tel span {
    font-size: 18px;
    color: #3c3c3c;
    font-weight: bold;
    vertical-align: middle;
}
.customer_tel span:first-child {
    font-size: 14px;
}
.customer_m {
    height: 240px;
}
.customer_m li {
    width: 25%;
    height: 100%;
    float: left;
    padding: 10px;
    text-align: center;
    border-left: 1px solid #e8e8e8;
}
.customer_m li:first-child {
    border-left: none;
}
.customer_m_pic {
    width: 104px;
    height: 104px;
    margin: auto;
    background-color: #fefefe;
    border-radius: 50%;
    border: solid 1px #e7e7e7;
    padding: 10px;
}
.customer_m_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.customer_m_name {
    font-size: 14px;
    color: #999999;
    margin: 8px 0 6px;
}
.customer_m_text {
    font-size: 14px;
    color: #363636;
}
.customer_m_btn {
    width: 130px;
    height: 36px;
    color: #fff;
    font-size: 14px;
    line-height: 36px;
    margin-top: 12px;
    display: inline-block;
    background-color: #487cff;
    border-radius: 2px;
    transition: all 0.2s;
}
.customer_m_btn:hover {
    background-color: #ff8400;
}
.customer_num {
    width: 100%;
    margin: auto;
    height: 100px;
    background-color: #f4f4f4;
    border-radius: 4px;
}

.customer_num li {
    width: 200px;
    height: 100%;
    float: left;
    padding-left: 24px;
    border-left: 1px solid #e8e8e8;
}

.customer_num li:first-child {
    border-left: none;
}

.customer_num li h2 {
    color: #3b3b3b;
    font-size: 40px;
    font-family: news706_b;
    margin-top: 10px;
    position: relative;
    -webkit-transition: color 0.3s linear;
    transition: color 0.3s linear;
}

.customer_num li h2 .top_label {
    width: 14px;
    height: 14px;
    display: inline-block;
    font-size: 14px;
    color: #919191;
    font-weight: normal;
    position: relative;
    right: 10px;
    bottom: 4px;
}

.customer_num li h2 .top_label div {
    background-color: rgba(85, 85, 85, 0.4);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.customer_num li h2 .top_label .x_s {
    width: 100%;
    height: 4px;
}

.customer_num li h2 .top_label .y_s {
    width: 4px;
    height: 100%;
}

.customer_num li p {
    color: #919191;
    font-size: 14px;
    margin-top: -12px;
}
.customer_float {
    width: 156px;
    height: 84px;
    transform: scale(0);
    -webkit-transform: scale(0);
    position: fixed;
    left: 30px;
    bottom: 100px;
    z-index: 9;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    background: url(../image/customer_float.png) left
    bottom no-repeat;
}

.customer_float a {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
}

.customer_float img {
    position: absolute;
    left: 46px;
    bottom: 40px;
    animation: cartoon 2s ease-in-out infinite alternate;
    -webkit-animation: cartoon 2s ease-in-out infinite alternate;
}

@keyframes cartoon {
    80% {
        bottom: 40px;
    }

    90% {
        bottom: 44px;
    }

    100% {
        bottom: 40px;
    }
}
@-webkit-keyframes cartoon {
    80% {
        bottom: 40px;
    }

    90% {
        bottom: 44px;
    }

    100% {
        bottom: 40px;
    }
}

/* ymr css */


mark {
    color: #000;
    background: #ff0;
}
.fade.in {
    opacity: 1;
}
.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal-footer .btn+.btn {
    margin-bottom: 0;
    margin-left: 5px;
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px;
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        /* width: 900px; */
    }
}

.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}
.modal-header:after,
.modal-footer:after {
    clear: both;
}

.fast-shang-tong1-model-wrap{
    margin-top: 0 !important;
}

.fast-shang-tong1-model-wrap button{
    cursor: pointer;
}
.fast-shang-tong1-model-wrap .head{
    position: relative;
    width: 720px;
    height: 110px;
    font-size: 30px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    line-height: 110px;
    text-shadow: 0px 2px 4px #004A89;
    background: url(../image/bj.png);
}

.fast-shang-tong1-model-wrap .head img{
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 20px;
}
.fast-shang-tong1-model-wrap .body{
    width: 720px;
    height: 384px;
    box-sizing: border-box;
    padding: 32px 30px 0 31px;
    background: #FFFFFF;
}
.fast-shang-tong1-model-wrap .body .content11{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.fast-shang-tong1-model-wrap .body .content11 .left{
    position: relative;
    width: 320px;
    height: 280px;
    background: #F6F7FB;
    border: 1px solid rgba(16, 121, 223, 0.07);
}

.fast-shang-tong1-model-wrap .body .content11 .left .left-title{
    position: absolute;
    text-align: center;
    top: 80px;
    left: 21px;
}

.fast-shang-tong1-model-wrap .body .content11 .left .right-title{
    position: absolute;
    text-align: center;
    top: 80px;
    right: 29px;
}

.fast-shang-tong1-model-wrap .body .content11 .left .box{
    display: flex;
    width: 120px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.fast-shang-tong1-model-wrap .body .content11 .left .title-img{
    position: absolute;
    width: 184px;
    height: 53px;
    top: 0;
    left: 64px;
    background: url(../image/beij.png) center -4px no-repeat;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
    font-family: MicrosoftYaHeiSemibold;
    color: #FFFFFF;
}

.fast-shang-tong1-model-wrap .body .content11 .left .icon-img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.fast-shang-tong1-model-wrap .body .content11 .left h5{
    margin-top: 22px;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #333333;
    line-height: 16px;
}

.fast-shang-tong1-model-wrap .body .content11 .left .box{
    border: 1px solid #0761CA;
    box-sizing: border-box;
    /* height: 32px; */
}

.fast-shang-tong1-model-wrap .body .content11 .left .box button{
    font-size: 12px;
    font-family: MicrosoftYaHei;
    border: none;
}

.fast-shang-tong1-model-wrap .body .content11 .left .box button:nth-child(1) {
    box-sizing: border-box;
    width: 62px;
    background: #FFFFFF;
    color: #2C6BEA;
}

.fast-shang-tong1-model-wrap .body .content11 .left .box button:nth-child(2) {
    width: 62px;
    background: linear-gradient(270deg, #137FE5 0%, #0761CA 100%);
    color: #FFFFFF;
}

.fast-shang-tong1-model-wrap .body .content11 .right{
    width: 320px;
    height: 280px;
}

.fast-shang-tong1-model-wrap .body .content11 .right .box{
    position: relative;
    display: flex;
    align-items: center;
    width: 320px;
    height: 62px;
    margin-bottom: 10px;
    background: #F6F7FB;
    border: 1px solid rgba(8, 100, 205, 0.41);
}

.fast-shang-tong1-model-wrap .body .content11 .right .box img{
    margin-left: 29px;
}

.fast-shang-tong1-model-wrap .body .content11 .right .box span{
    margin-left: 10px;
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #333333;
}

.fast-shang-tong1-model-wrap .body .content11 .right .box button{
    position: absolute;
    right: 10px;
    width: 104px;
    height: 42px;
    background: linear-gradient(270deg, #2C6BEA 0%, #2C6BEA 100%);
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 42px;
    text-align: center;
    border: none;
}

.fast-shang-tong1-model-wrap .body .content11 .right .box1{
    position: relative;
    display: flex;
    align-items: center;
    width: 320px;
    height: 62px;
    background: linear-gradient(270deg, #2C6BEA 0%, #2C6BEA 100%);
    box-shadow: 0px 4px 8px 0px rgba(17, 123, 226, 0.3);
    border: none;
}

.fast-shang-tong1-model-wrap .body .content11 .right .box1 img{
    margin-left: 73px;
}

.fast-shang-tong1-model-wrap .body .content11 .right .box1 span{
    font-size: 18px;
    font-family: MicrosoftYaHeiSemibold;
    color: #FFFFFF;
    margin-left: 4px;
}

.fast-shang-tong1-model-wrap .body .footer-content{
    width: 100%;
    height: 73px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fast-shang-tong1-model-wrap .body .footer-content span{
    font-size: 12px;
    font-family: MicrosoftYaHei;
    color: #9C9C9C;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

.modal-open {
    overflow: hidden;
}
@keyframes disappear {
    0% {transform: translate(0,0) scale(1);}
    100% {transform: translate(-850px, 350px) scale(0.01);}
}
@keyframes show{
    0% {transform: translate(-850px, 350px) scale(0);}
    100% {transform: translate(0,0) scale(1);}
}
.ymr_animate{
    animation-name:disappear;
    animation-duration: .5s;
}
.ymr_animate_show{
    animation-name:show;
    animation-duration: .5s;
}

/*news*/
.popup-box{
    margin-top:150px;
}
.popup-box .popup-contents{
    width:613px;
    height: 454px;
    background-image: url(../image/bg.png);
    position: relative;
    padding: 0 30px 0 70px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position-x: right;
    background-size: contain;
}
.popup-contents #img{
    width:24px;
    height:24px;
    position: absolute;
    top:17px;
    right:-30px;
    bottom:auto;
    left:auto;
    cursor: pointer;
}
.popup-contents .titles{
    font-size: 24px;
    color: #FFFFFF;
    padding-top:68px;
}
.popup-contents .titles i{
    width: 5px;
    height: 5px;
    background: #FFFFFF;
    opacity: 0.6;
}
.popup-contents .titles .numbers{
    font-size: 25px;
    font-weight: bold;
    color: #59FFE2;
}
.popup-contents .details{
    font-size: 12px;
    font-weight: 500;
    color: #BFD2FF;
    padding-top:7px;
    height:25px;
}
.popup-contents .details span{
    opacity: 0.4;
    color: #ffffff;
}
.popup-contents .popup-deal{
    margin-top:47px;
    height:260px;
}
.popup-contents .popup-deal .deal-l{
    float: left;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}
.popup-contents .popup-deal .deal-r{
    float: right;
    font-size: 12px;
    font-weight: 500;
    color: #2C6AEA;
    cursor: pointer;
}
.popup-contents .popup-deal .deal-r img{
    width:12px;
    height: 12px;
    position: relative;
    top:-2px;
}
.popup-contents .deal-box{
    padding-top:33px;
}
.popup-contents .deal-box .deal-conter-l{
    float: left;
}
.popup-contents .deal-list .deal-icon{
    width:50px;
    height:50px;
    margin-right:10px;
    float: left;
}
.popup-contents .deal-list .deal-server{
    float: left;
}
.popup-contents .deal-list .deal-server .fonts{
    position: relative;
    font-size: 17px;
    font-weight: 600;
    color: #222222;
    height:25px;
}
.popup-contents .deal-list .deal-server .fonts img{
    position: absolute;
    width:28px;
    height:13px;
    margin-left: 3px;
    margin-top: 5px;
}
.popup-contents .deal-list .deal-server .des{
    font-size: 12px;
    font-weight: 400;
    color: #8093B4;
    padding-top: 6px;
    height:24px;
}
.popup-contents .deal-box .deal-buttom button{
    margin-top:16px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    width: 112px;
    height: 30px;
    font-size: 12px;
    font-weight: 500;
    float: left;
    cursor: pointer;
}
.popup-contents .deal-box .deal-buttom .sell{
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px 0 0 6px;
    border: 1px solid #1D5FC6;
    color: #1D5FC6;
}
.popup-contents .deal-box .deal-buttom .buy{
    background: #1D5FC6;
    border-radius: 0 6px 6px 0;
    color: #FFFFFF;
}
.popup-contents .deal-box .deal-buttom .sell:hover{
    background: #D3E9FF;
    color: #1D5FC6;
}
.popup-contents .deal-box .deal-buttom .buy:hover{
    background: #063EDB;
}
.popup-contents .deal-box .deal-conter-r{
    float: right;
}
.popup-box .popup-list .server-icon-h{
    display: none;
}
.popup-box .popup-list{
    margin-top:36px;
}
.popup-box .popup-list a{
    display: inline-block;
    width: 164px;
    height: 64px;
    background: rgba(255,255,255,0.5);
    border-radius: 16px;
    margin-right:6px;
    padding:12px;
    box-sizing: border-box;
}
.popup-box .popup-list .list-icon-bg{
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
    float: left;
    margin-right:17px;
    text-align: center;
    position: relative;
}
.popup-box .popup-list .list-afterb::after{
    content: "";
    display: block;
    width: 12px;
    height: 10px;
    background: rgba(255,226,206,0.9);
    border-radius: 4px;
    position: absolute;
    bottom:8px;
    right:7px;
    left:auto;
    top:auto;
}
.popup-box .popup-list .list-after::after{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(255,226,206,0.9);
    border-radius: 4px;
    position: absolute;
    bottom:8px;
    right:7px;
    left:auto;
    top:auto;
}
.popup-box .popup-list a:last-child{
    margin-right:0 !important;
}
.popup-box .popup-list .list-icon{
    width:34px;
    height:34px;
    object-fit: cover;
}
.popup-box .popup-list .list-dear{
    float: left;
}
.popup-box .popup-list .tls{
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}
.popup-box .popup-list .list-dear>div{
    height:20px;
    line-height: 20px;
}
.popup-box .popup-list .list-server{
    font-size: 12px;
    font-weight: 500;
    color: #FF7800;
}
.popup-box .popup-list .list-server img{
    width:14px;
    height:14px;
    position: relative;
    top: -1px;
}
.popup-box .popup-list a:hover .list-server{
    color: #FF3700;
}
.popup-box .popup-list a:hover .server-icon{
    display: none;
}
.popup-box .popup-list a:hover .server-icon-h{
    display: inline-block;
}