@charset "utf-8";
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

h2,
h3,
i,
em {
    font-style: normal;
}

html,
body {
    font-family: "微软雅黑";
}

input,
img,
a,
button {
    outline: none;
    border: 0;
}

.clear {
    clear: both;
}

.pic {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.pic:hover img {
    transform: scale(1.2);
}

.wp {
    max-width: 14rem;
    margin: 0 auto;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.flex-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-v-center {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.l2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.l3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media (min-width:3000px) and (max-width:4000px) {
    html {
        font-size: 130px!important;
    }
    .wp {
        max-width: 18rem!important;
    }
}

@media (min-width:1930px) and (max-width:3000px) {
    html {
        font-size: 120px!important;
    }
    .wp {
        max-width: 17rem !important;
    }
}

@media screen and (max-width:1930px) {
    html {
        font-size: 100px!important;
    }
}

@media screen and (max-width:1800px) {
    html {
        font-size: 95px!important;
    }
}

@media screen and (max-width:1600px) {
    html {
        font-size: 90px!important;
    }
}

@media screen and (max-width:1400px) {
    html {
        font-size: 85px!important;
    }
}

@media screen and (max-width:1024px) {
    html {
        font-size: 75px!important;
    }
}

@media screen and (max-width:900px) {
    html {
        font-size: 70px!important;
    }
}

@media screen and (max-width:640px) {
    html {
        font-size: 80px!important;
    }
}

@media screen and (max-width:480px) {
    html {
        font-size: 80px!important;
    }
}

@media screen and (max-width:375px) {
    html {
        font-size: 75px!important;
    }
}

@media screen and (max-width:360px) {
    html {
        font-size: 70px!important;
    }
}

@media screen and (max-width:350px) {
    html {
        font-size: 65px!important;
    }
}

@media(min-width: 1200px) {
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 120dpi) {}
    @media (-webkit-min-device-pixel-ratio: 1.05) {
        @media screen and (min-width: 1920px) {
            html {
                font-size: 100px!important;
            }
        }
        @media screen and (max-width:1920px) {
            html {
                font-size: 95.5px!important;
            }
        }
    }
    @media (-webkit-min-device-pixel-ratio: 1.1) {
        @media screen and (min-width: 1920px) {
            html {
                font-size: 100px!important;
            }
        }
        @media screen and (max-width:1920px) {
            html {
                font-size: 92.5px!important;
            }
        }
    }
    @media (-webkit-min-device-pixel-ratio: 1.15) {
        @media screen and (min-width: 1920px) {
            html {
                font-size: 80px!important;
            }
        }
        @media screen and (max-width:1920px) {
            html {
                font-size: 87px!important;
            }
        }
    }
    @media (-webkit-min-device-pixel-ratio: 1.20) {
        @media screen and (min-width: 1920px) {
            html {
                font-size: 80px!important;
            }
        }
        @media screen and (max-width:1920px) {
            html {
                font-size: 84px!important;
            }
        }
    }
    @media (-webkit-min-device-pixel-ratio: 1.25) {
        @media screen and (min-width: 1920px) {
            html {
                font-size: 80px!important;
            }
        }
        @media screen and (max-width:1920px) {
            html {
                font-size: 80px!important;
            }
        }
    }
    @media (-webkit-min-device-pixel-ratio: 1.5) {
        @media screen and (min-width: 1920px) {
            html {
                font-size: 80px!important;
            }
        }
        @media screen and (max-width:1920px) {
            html {
                font-size: 70px!important;
            }
        }
    }
}


/* Ã¦ÂÅ“Ã§Â´Â¢ */

.search-dialog-box {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease 0s;
}

.search-dialog-box.on {
    opacity: 1;
    visibility: visible;
}

.search-dialog-box a {
    position: absolute;
    width: 0.48rem;
    height: 0.48rem;
    z-index: 10;
    right: 0.25rem;
    top: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
}

.search-dialog-box a i {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background: url(../images/close.png) no-repeat center center;
    background-size: 0.2rem auto;
    transition: all 0.6s ease 0s;
}

.search-dialog-box a i:hover {
    transform: rotate(180deg);
}

.search-dialog-box.on .search-bg {
    height: 100vh;
}

.search-dialog-box .search-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0px;
    margin: 0px;
    background: 0% 0% / cover no-repeat rgba(0, 0, 0, 0.7);
    transform-origin: center center;
    transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.search-dialog {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

.search-dialog .search-inner {
    overflow: hidden;
    margin-top: 0px;
}

.search {
    position: relative;
    max-width: 9rem;
    width: 100%;
    padding-right: 1rem;
    margin: 0px auto;
    background-color: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    font-size: 0;
}

.search input[type="text"] {
    width: 100%;
    height: 0.7rem;
    background-color: rgb(255, 255, 255);
    font-size: 0.2rem;
    color: #666;
    transition: all 0.3s ease 0s;
    padding: 0px 0.2rem;
    box-sizing: border-box;
}

.search span {
    position: absolute;
    width: 1rem;
    top: 0;
    bottom: 0;
    right: 0;
    background: #055ead;
}

.search span input[type="image"] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: .3rem;
}


/* Ã¦ÂÅ“Ã§Â´Â¢Ã§Â»â€œÃ¦ÂÅ¸ */

.header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: url(../images/head-tc.png) no-repeat center bottom;
    z-index: 99;
}

.head {
    padding: .38rem 0;
    font-size: 0;
    align-items: center;
}

.head-l {
    width: 2.65rem;
}

.head-l a {
    display: block;
}

.head-l a img {
    display: block;
    height: 0.6rem;
}

.head-r {
    font-size: 0;
    align-items: center;
}

.nav {
    font-size: 0;
}

.nav>ul {
    font-size: 0;
}

.nav>ul>li {
    display: inline-block;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.nav>ul>li>a {
    padding: 0 .08rem;
    display: block;
    height: .55rem;
    line-height: .55rem;
    font-size: .19rem;
    color: #fff;
    transition: all .3s;
}

.nav>ul>li:hover>a {
    font-size: .22rem;
}

.nav>ul>li>ul {
    position: absolute;
    left: 50%;
    width: 1.5rem;
    margin-left: -0.75rem;
    top: 100%;
    border-top: 3px solid #41F9FF;
    background-color: #1D4B9D;
    padding: .09rem .1rem;
    z-index:-1;
    opacity: 0;
  
    opacity: 0;
    transition: all 0.5s ease 0s;
    transform-origin: center top;
}

.nav>ul>li:hover>ul {
    opacity: 1;
 z-index: 1000;
    visibility: visible;
}

.nav>ul>li>ul>li {
    line-height: .34rem;
    border-bottom: 0.5px dashed #D8D8D8;
}

.nav>ul>li>ul>li:last-child {
    border-bottom: 1px dashed transparent;
}

.nav>ul>li>ul>li>a {
    font-size: .16rem;
    color: #fff;
}

.nav>ul>li>ul>li:hover>a {
    font-weight: bold;
}

.banner a {
    position: relative;
    display: block;
}

.banner a img {
    display: block;
    width: 100%;
}
.banner .slick-dots {
    bottom: .7rem;
}

.banner .slick-dots li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    margin: 0 5px;
}

.banner .slick-dots li.slick-active {
    background: #fff;
}
.footer {
    position: relative;
    margin-top: -.45rem;
    background: url(../images/footer-bg.png) no-repeat center top;
    background-size: cover;
    z-index: 10;
}
.ft-phone{display:none;}
.foot-top {
    position: relative;
    padding-top: .7rem;
    padding-bottom: .45rem;
}

.foot-top h2 {
    font-size: 0;
    color: #fff;
    padding-bottom: .25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.foot-top h2 span {
    font-size: .24rem;
    line-height: .28rem;
    padding-left: .2rem;
    border-left: 3px solid #fff;
}

.foot-top .ft-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.foot-top .ft-logo a {
    display: block;
}

.foot-top .ft-logo a img {
    height: 1.4rem;
}

.ft-l {
    width: 41%;
}

.ft-l>ul {
    font-size: 0;
}

.ft-l>ul>li {
    display: inline-block;
    position: relative;
    margin-top: .34rem;
    margin-right: .7rem;
}

.ft-l>ul>li>a {
    padding-left: .12rem;
    padding-right: .33rem;
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    line-height: .38rem;
    font-size: .18rem;
    color: #fff;
}

.ft-l>ul>li>span {
    position: absolute;
    right: .12rem;
    width: .15rem;
    height: .15rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/zk.png) no-repeat center center
}

.ft-l>ul>li>ul {
    position: absolute;
    background: #fff;
    padding: .15rem;
    left: 0;
    width: 1.5rem;
    bottom: 100%;
    display: none;
}

.ft-l>ul>li:hover>ul {
    display: block;
}

.ft-l>ul>li>ul>li {
    line-height: .3rem;
    padding-left: .15rem;
}

.ft-l>ul>li>ul>li>a {
    display: block;
    font-size: .14rem;
    color: #198CFF;
}

.ft-l>ul>li>ul>li:hover {
    background: #198CFF;
}

.ft-l>ul>li>ul>li:hover a {
    color: #fff;
}

.ft-r {
    width: 40%;
}

.ft-r h2 {
    margin-bottom: .15rem;
}

.ft-r p {
    line-height: .32rem;
    font-size: .16rem;
    color: #fff;
}

.foot-down {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.foot-down p {
    font-size: .12rem;
    color: rgba(255, 255, 255, 0.6);
    padding: .14rem 0;
}

.m_header_box {
    transition: .6s;
    display: none;
    height: .7rem;
    position: relative;
    z-index: 100000;
}

.m_header_box header {
    padding: 0 0 0 .15rem;
    height: .7rem;
    background: #198cff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .05);
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m_header_box header #logo img {
    height: .5rem;
}

.m_header_box header #logo {
    padding: 0;
    width: 100%;
    font-size: 0;
}

.m_header_box .list_box1 {
    margin-right: .4rem;
}

.m_header_box .list_box1 .li a {
    border-radius: 0;
    width: 28px;
    height: 20px;
    font-size: 10px;
}


/*?Ã‹â€°?ÃƒÂ¨?a??Ã¢â‚¬Â°ÃƒÂ©Ã¢â‚¬â„¢???Ã¯Â¿Â½?Ã‚Â§?*/

#nav_btn_box.on {
    background: none;
}

#nav_btn .point.on .navbtn::after,
#nav_btn .point.on .navbtn::before {
    /* background: #fff; */
}

#nav_btn_box {
    position: relative;
    width: .85rem;
    height: .7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    min-width: .85rem;
    font-size: 0;
}

#nav_btn_box:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #e2640c;
}

#nav_btn_box:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -.08rem;
    border-right: #e2640c 7px solid;
    border-bottom: transparent .7rem solid;
}

#nav_btn {
    cursor: pointer;
    text-align: center;
    z-index: 99999;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    outline: none;
    box-shadow: none;
    pointer-events: none;
}

#nav_btn .point {
    display: inline-block;
    width: .34rem;
    height: 18px;
    position: relative;
    outline: none;
}

#nav_btn .point:hover .navbtn,
#nav_btn .point:hover .navbtn::after,
#nav_btn .point:hover .navbtn::before {
    width: 100%;
}

#nav_btn .navbtn {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: #fff;
    margin-top: -1px;
}

#nav_btn .navbtn::after,
#nav_btn .navbtn::before {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    content: '';
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: #fff;
}

#nav_btn .navbtn::after {
    top: -8px;
}

#nav_btn .navbtn::before {
    top: 8px;
}

#nav_btn .point.on .navbtn {
    background: transparent;
}

#nav_btn .point.on .navbtn::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
}

#nav_btn .point.on .navbtn::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0px;
}

.m_nav_list {
    flex-direction: column;
    /* justify-content: center; */
    width: 100%;
    height: 100%;
    overflow: auto;
    align-items: center;
    display: flex;
    background: rgba(255, 255, 255, .1);
}

.m_nav_list::-webkit-scrollbar {
    display: none
}

#m_nav {
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100vh;
    right: -105vw;
    top: 0;
    display: none;
    padding: 84px 20px 30px;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #198cff;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

#m_nav .close {
    position: absolute;
    top: 7px;
    right: 15px;
    left: 15px;
    font-size: 30px;
    color: #333;
    z-index: 10000;
    /* background: rgba(255,255,255,.1); */
    width: auto;
    height: 35px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0;
}

#m_nav.act {
    pointer-events: auto;
    right: 0;
    opacity: 1;
    visibility: visible;
}

#m_nav .search_box input.submit {
    background: #0656b7 url(../images/submit.svg) center no-repeat;
    background-size: 1.75rem;
}

#m_nav .old_rukou {
    margin: .24rem 0 0;
    width: 100%;
}

#m_nav .list_box1 {
    width: calc(100% + 6px);
    justify-content: center;
}

#m_nav .list_box1 li a {
    font-size: .18rem
}

.list_box_nav_mobile {
    width: 100%;
    height: 100%;
    /* background: rgba(255,255,255,.1); */
    padding: 0 0 10px;
    overflow: hidden;
    overflow-y: scroll;
    margin: 0;
    flex: 1;
}

.list_box_nav_mobile>li {
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    margin: 0 auto;
}

.list_box_nav_mobile>li .con {
    position: relative
}

.list_box_nav_mobile>li .a {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    line-height: .64rem;
    color: rgba(255, 255, 255, .8);
    padding: 0;
    font-size: .2rem;
    display: flex;
    position: relative;
    transition: .5s;
}

.list_box_nav_mobile>li i {
    opacity: 1;
    filter: alpha(opacity=100);
    display: inline-block;
    width: .64rem;
    height: .64rem;
    display: inline-block;
    background: url(../images/m-nav_down.png) center no-repeat;
    background-size: 15px 15px !important;
    position: absolute;
    display: block;
    right: -.2rem;
    top: 0;
}

.list_box_nav_mobile>li.on1 i {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
}

.list_box_nav_mobile>li.on .a {
    color: rgba(255, 255, 255, 1);
}


/*??Ã¢â‚¬Â°?oÃ‚Â§?Ã‹â€°?ÃƒÂ¨?a ??Ã¯Â¿Â½?Ã‚Â§?*/

.list_box_nav_mobile>li .list {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none
}

.list_box_nav_mobile>li .list a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    line-height: 2.5;
}

.nav_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 888;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}


/*ÃƒÂ©??ÃƒÂ©?Ã‚Â¨????Ã¢â‚¬Â²Ã¯Â¿Â */

.wap_search {
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    overflow: hidden;
    width: 100%;
    height: 60px;
    display: block;
}

.wap_search form {
    height: 40px;
    border-radius: 0;
    background: rgb(255 255 255);
    position: relative;
    width: 100%;
    margin: 10px auto;
}

.wap_search .input {
    font-size: 14px;
    color: #646464;
    height: 40px;
    line-height: 40px;
    padding: 0 .24rem;
    box-shadow: none;
    -webkit-appearance: none;
    float: left;
    border-right: 0;
    background: none;
    width: calc(100% - 40px);
    border: none;
}

.wap_search .btn_blue {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
    background: url(../images/submit.svg) center no-repeat #e2640c;
    background-size: .24rem;
    border-radius: 0;
}

.wap_search .btn_blue.fr {
    background: #e9edef;
    color: #4e4f53;
}

.wap_search input::-webkit-input-placeholder {
    color: #999;
}

.wap_search input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
}

.wap_search input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
}

.wap_search input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #999;
}


/* WebKit browsers */

.wap_search input:focus::-webkit-input-placeholder {
    color: transparent;
    /* transparent??Ã‹â€°?Ã¢â‚¬Â¦Ã‚Â¨ÃƒÂ©Ã¯Â¿Â½????ÃƒÂ©?Ã¢â‚¬ËœÃƒÂ¨Ã¢â‚¬Â°2(black)???ÃƒÂ©Ã¯Â¿Â½?ÃƒÂ¨?Ã‚Â°?3??????3??Ã¯Â¿Â½??a?Ã‚Â±????rgba(0,0,0,0)ÃƒÂ¨????Ã‚Â·????Ã¯Â¿Â½? */
}


/* Mozilla Firefox 4 to 18 */

.wap_search input:focus:-moz-placeholder {
    color: transparent;
}


/* Mozilla Firefox 19+ */

.wap_search input:focus::-moz-placeholder {
    color: transparent;
}


/* Internet Explorer 10+ */

.wap_search input:focus:-ms-input-placeholder {
    color: transparent;
}

@media(max-width: 1200px) {
    .header {
        display: none;
    }
    .m_header_box {
        display: block;
    }
    .wp {
        width: 95%;
    }
    .ft-l>ul>li {
        margin-right: .2rem;
    }
}

@media(max-width: 1000px) {}

@media(max-width: 750px) {
.banner .slick-dots{bottom:.2rem;}
    .footer {
        margin-top: -.7rem;
    }
.foot-top .ft-logo a img{
    height: 0.8rem;}
.ft-phone{display:block;text-align:center;width:100%;}
.ft-phone a{width: 35%;
    line-height: .5rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: .18rem;
    font-weight: bold;
    background: #33a1fe;
    color: #fff;}
    .foot-top .ft-logo {
       position: absolute;
    top: -0.4rem;
    left: 50%;
    transform: translateX(-50%);
font-size:0;
    }
    .ft-l {
        width: 100%;
    }
    .ft-r {
        width: 100%;
        margin-top: .15rem;
    }
    .ft-l>ul>li {
        margin-top: .15rem;
    }
    .foot-top {
        padding-bottom: .15rem;
    }
}