@charset"utf-8";

/**
 * Zhang Jian reset css
 * 2017-now
 */
 * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
 article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul, li {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
    display: block;
}
/* custom */
 a {
    color: #666;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a:hover {
    text-decoration: none;
    color: #c40000;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical {
    height: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
    width: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}
html, body {
    width: 100%;
    font-family: PingFang SC, Lantinghei SC, Helvetica Neue, Helvetica, Arial, Microsoft YaHei, 微软雅黑, STHeitiSC-Light, simsun, 宋体, WenQuanYi Zen Hei, WenQuanYi Micro Hei, "sans-serif";
    color: #666;
    transition: all .3s;
}
body {
    line-height: 1.7;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 12px;
}
img {
    max-width: 100%;
}
/*浮动*/
 .left {
    float: left;
}
.right {
    float: right;
}
/*弹性布局*/
 .flex {
    display: flex;
}
.flex_wrap {
    flex-wrap: wrap;
}
/*定位*/
 .pr {
    position: relative;
}
.pa {
    position: absolute;
}
/*清除浮动*/
 .clearfix:after {
    content:".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/*页面宽度*/
 .wrapper {
    margin: 0 auto;
}
.wrapper {
    width: 1200px;
}
@media screen and (min-width: 1441px) {
}
/*@media screen and (max-width: 1440px) {*/

/*    .wrapper{*/

/*        width:1200px;*/

/*    }*/

/*}*/

/*隐藏*/
 .dn {
    display: none;
}
/*按钮*/
 .more_style1 {
    margin:90px auto 130px;
    display:block;
    width: 180px;
    height: 46px;
    line-height: 44px;
    border: 1px solid #333;
    position: relative;
    font-size: 18px;
    color: #333;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    background: transparent;
}
.more_style1 div {
    transition: transform .3s, opacity .3s;
}
.more_style1 .dubbed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translate3d(0, 20%, 0);
    pointer-events: none;
}
.more_style1:hover {
    color: #fff;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    background: #c40000;
}
.more_style1:hover .original {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
}
.more_style1:hover .dubbed {
    opacity: 1;
    transform: none;
}
.more_style2 {
    color: #0053b1;
    border-color: #0053b1;
}
.more_style2:hover {
    background: #0053b1;
    color: #fff;
}
.button_wrap {
    margin-top: 40px;
}
.button_wrap .button {
    padding: 13px 49px;
    color: #fff;
    background-color: transparent;
    border-color: #124c96;
    font-size: 16px;
    border-radius: 0;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    letter-spacing: .9px;
    overflow: hidden;
    text-overflow: ellipsis;
    border-style: solid;
    border-width: 2px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    vertical-align: middle;
    user-select: none;
    transition: 0.5s;
    z-index: 1;
    font-style: normal;
}
.button_wrap .button:before {
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #124c96;
}
.button_wrap .button:after {
    content:'';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 0 0;
    border-color: #0f65d3 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: -1;
}
.button_wrap .button:hover {
    color: #fff;
    background-color: transparent;
    border-color: #0f65d3;
}
.button_wrap .button:hover:after {
    border-width: 400px 400px 0 0;
}
@media screen and (max-width: 992px) {
    .more_style1 {
        font-size:16px;
        margin:20px auto 30px;
        width: 140px;
        height: 40px;
        line-height: 38px;
        font-size:16px;
    }
    .button_wrap .button {
        padding: 6px 20px;
    }
}
/* 按钮3 */
 .more_style3 {
    position: relative;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background: #c40000;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    height:50px;
    line-height: 50px;
    margin:25px auto 0;
    text-align: center;
    padding: 0 34px;
    cursor: pointer;
}
.more_style3 i {
    vertical-align: middle;
    margin-right: 7px;
}
.more_style3:before {
    content:"";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:rgba(0, 0, 0, .2);
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}
.more_style3:hover {
    color:#fff;
}
.more_style3:hover:before {
    -webkit-transform: scale(2);
    transform: scale(2);
}
/*鼠标经过图片放大*/
 .img_scale .img {
    overflow: hidden;
}
.img_scale .img img {
    transition: all .5s;
}
.img_scale:hover .img img {
    transform: scale(1.05);
}
.ptb30 {
    padding: 30px 0;
}
.mt20 {
    margin-top: 20px;
}
.mtb40 {
    margin: 40px 0;
}
.mt40 {
    margin-top: 40px;
}
.pt80mpt30 {
    padding-bottom: 80px;
    overflow: hidden;
}
.mtpc100mo40 {
    padding-top: 100px;
}
.mtpc90mo35 {
    margin-top: 90px;
}
.ptpc70m30 {
    padding-bottom: 70px;
}
.ptbpc50m20 {
    padding: 50px 0;
}
@media screen and (max-width: 992px) {
    .mtpc100mo40 {
        margin-top: 35px;
    }
    .mtpc90mo35 {
        margin-top: 35px;
    }
    .ptbpc50m20 {
        padding: 20px 0;
    }
    .pt80mpt30 {
        padding-bottom: 30px;
    }
    .ptpc70m30 {
        padding-bottom: 30px;
    }
    .mtpc100mo40 {
        padding-top: 40px;
    }
}



img {
    border:0
}
body {
    background:#fff;
    color:#666;
    font-family:microsoft yahei, pingfangsc, sans-serif
}
html, body, div, dl, dt, dd, ol, ul, li, h1, h2, h3, h4, h5, h6, p, blockquote, pre, button, fieldset, form, input, legend, textarea, th, td {
    margin:0;
    padding:0
}
a {
    text-decoration:none;
    color:#08acee
}
button {
    outline:0
}
img {
    border:0
}
button, input, optgroup, select, textarea {
    margin:0;
    font:inherit;
    color:inherit;
    outline:none
}
li {
    list-style:none
}
a {
    color:#666
}
a:hover {
    color:#eee
}
.clearfix::after {
    clear:both;
    content:".";
    display:block;
    height:0;
    visibility:hidden
}
.clearfix {
}
.map-content {
    padding:30px 0
}
.map-module {
    width:1200px!important;
    margin:0 auto;
    position:relative;
    transition:all .3s ease
}
.map-title {
    font-size:24px;
    color:#333;
    text-align:center;
    margin:50px 0;
    position:relative
}
.map-branch .map-title {
    margin:20px 0 0;
    z-index:1
}
.map-title:before {
    content:"";
    position:absolute;
    width:0;
    height:0;
    bottom:-23px;
    left:50%;
    transform:translateX(-50%);
    border:6px solid;
    border-color:#20b09f transparent transparent
}
.map-title:after {
    content:"";
    position:absolute;
    width:52px;
    height:3px;
    background-color:#20b09f;
    bottom:-12px;
    left:50%;
    transform:translateX(-50%)
}
.map-content-info {
    position:relative;
    margin-bottom:30px
}
.branch-map-l {
    width:849px;
    height:575px;
    position:relative
}
.map-content-box {
    width:100%;
    height:100%;
    background:url(../images/map-bj.png) no-repeat center;
    position:relative
}
.map-dot {
    position:absolute;
    text-align:center;
    font-size:12px;
    cursor:pointer
}
.beijing {
    left:585px;
    top:220px
}
.tianjin {
    left:604px;
    top:234px
}
.hebei {
    left:575px;
    top:254px
}
.shanxi {
    left:540px;
    top:276px
}
.liaoning {
    left:660px;
    top:196px
}
.jilin {
    left:696px;
    top:167px
}
.heilongjiang {
    left:676px;
    top:106px
}
.shanghai {
    left:668px;
    top:341px
}
.jiangsu {
    left:646px;
    top:316px
}
.zhejiang {
    left:655px;
    top:379px
}
.anhui {
    left:605px;
    top:334px
}
.fujian {
    left:625px;
    top:428px
}
.jiangxi {
    left:595px;
    top:402px
}
.shandong {
    left:610px;
    top:284px
}
.henan {
    left:562px;
    top:316px
}
.hubei {
    left:555px;
    top:359px
}
.hunan {
    left:545px;
    top:409px
}
.guangdong {
    left:575px;
    top:466px
}
.guangxi {
    left:506px;
    top:461px
}
.chongqing {
    left:495px;
    top:364px
}
.sichuan {
    left:425px;
    top:354px
}
.guizhou {
    left:484px;
    top:424px
}
.yunnan {
    left:405px;
    top:462px
}
.shanxi1 {
    left:502px;
    top:312px
}
.hainan {
    left: 522px;
    top: 530px;
}
.map-dot:after {
    content:"";
    display:block;
    width:8px;
    height:8px;
    margin:0 auto;
    background-color:#c40000;
    border-radius:50%
}
.map-dot.beijing:after {
    width:13px;
    height:12px;
    border-radius:0;
    background:url(../images/icon-star.png) no-repeat center
}
.branch-map-data {
    position:absolute;
    box-sizing:border-box;
    width:430px;
    border:1px solid #c40000;
    box-shadow:0 0 2px 2px #e9e9e9;
    background-color:#fff;
    padding:10px 30px;
    z-index:1;
    display:none
}
.branch-map-data-title {
    border-bottom:1px solid #eee
}
.branch-map-data-title p {
    font-size:18px;
    color:#333;
    line-height:28px
}
.branch-map-data-info {
    max-height:236px;
    overflow-y:auto
}
.data-branch {
    border-bottom:1px dashed #eee;
    padding:6px 0;
    box-sizing:border-box
}
.data-branch:last-child {
    border:none
}
a, button, input, textarea {
    -webkit-tap-highlight-color:transparent;
    -moz-transition:all .3s ease;
    -webkit-transition:all .3s ease;
    transition:all .3s ease
}
.data-branch .data-name {
    font-size:14px;
    color:#666;
    line-height:normal;
    margin-bottom:5px
}
.data-branch p {
    font-size:12px;
    color:#999;
    line-height:20px
}
.data-branch p {
    font-size:12px;
    color:#999;
    line-height:20px
}
.branch-map-data:before {
    content:"";
    position:absolute;
    left:-16px;
    top:50%;
    transform:translateY(-50%);
    width:0;
    height:0;
    border:8px solid;
    border-color:transparent #c40000 transparent transparent
}
.branch-map-data:after {
    content:"";
    position:absolute;
    left:-15px;
    top:50%;
    transform:translateY(-50%);
    width:0;
    height:0;
    border:8px solid;
    border-color:transparent #fff transparent transparent
}
.map-dot.cur:before {
    content:"";
    position:absolute;
    left:50%;
    bottom:-3px;
    transform:translateX(-50%);
    width:14px;
    height:14px;
    border-radius:50%;
    border:1px solid #c40000;
    animation:dot 4s infinite
}
@keyframes dot {
    100% {
        transform:translateX(-50%) scale(1);
        opacity:1
    }
    50% {
        transform:translateX(-50%) scale(1.5);
        opacity:.1
    }
}