body{
    padding-top: 1.45rem;
    overflow-x: auto;
}

.header{
    width: 100%;
    height: auto;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 99;
}

.head_top .main{
    width: 14.8rem;
    max-width: 14.8rem;
    padding: 0.15rem 0.25rem 0.15rem 0.2rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head_top .head_logo{
    width: auto;
    height: 0.6rem;
}
.head_top .head_logo img{
    width: auto;
    height: 100%;
    object-fit: contain;
}
.head_top .head_txt{
    display: flex;
    align-items: center;
}
.head_top .head_txt .head_search{
    margin-right: 0.1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.head_top .head_txt .head_search::before{
    content: "";
    position: absolute;
    width: 0.14rem;
    height: 0.14rem;
    background: url(/assets/img/search_icon.png) center no-repeat;
    background-size: contain;
    top: 0.13rem;
    left: 0.07rem;
}
.head_top .head_txt .head_search .search_text{
    width: 2.22rem;
    height: 0.4rem;
    background: #F2F2F2;
    padding: 0 0.1rem 0 0.26rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 0.16rem;
    color: #000;
}
.head_top .head_txt .head_search .search_text::placeholder{
    color: #333333;
}
.head_top .head_txt .head_search .submit{
    width: 0.67rem;
    height: 0.4rem;
    background: #0084CE;
    font-weight: 400;
    font-size: 0.14rem;
    color: #FFFFFF;
    cursor: pointer;
}
.head_top .head_txt .head_url{
    width: 1.2rem;
    height: 0.4rem;
    background: #0084CE;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 0.14rem;
    color: #FFFFFF;
    margin-left: 0.18rem;
}


.head_nav{
    background: #0084CE;
}
.head_nav .navbar_nav {
    width: 14.8rem;
    margin: 0 auto;
    display: flex;
}
.head_nav .navbar_nav .dropdown{
    width: calc((100% - 1.4rem) / 8);
    text-align: center;
    line-height: 0.56rem;
    display: inherit;
    position: relative;
}
.head_nav .navbar_nav .dropdown .navNameLink{
    text-decoration: none;
    height: 100%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
    font-size: 0.16rem;
}
.head_nav .navbar_nav .dropdown:hover>.navNameLink{
    color: #ffffff;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
}
.head_nav .navbar_nav .dropdown .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 160px;
    background: rgba(255, 255, 255, 0);
    padding: 0.1rem 0;
    height: 0px;
    overflow: hidden;
    padding: 0px;
    transition: all 0.5s ease 0s;
}

.head_nav .navbar_nav .dropdown .dropdown_menu a {
    font-size: 0.14rem;
    color: #666;
    padding: 0px;
    line-height: 0.4rem;
    text-align: center;
    background: #fff;
    display: block;
    height: 0.42rem;
    font-weight: bold;
}

.head_nav .navbar_nav .dropdown:hover .dropdown_menu {
    height: 3.4rem;
    border-top: 0.02rem solid #0084CD;
}
.head_nav .navbar_nav .dropdown:hover .dropdown_menu a:after {
    content: "";
    display: block;
    width: 0%;
    height: 0.02rem;
    transition: all 0.5s ease 0s;
    background-color: rgba(0, 132, 205, 1);
}
.head_nav .navbar_nav .dropdown:hover .dropdown_menu a:hover:after {
    width: 100%;
}
.head_nav .navbar_nav .dropdown:hover .dropdown_menu a:hover {
    color: #0084CD!important;
    background: #fff;
}






.left_nav{
    position: fixed;
    right: 0.02rem;
    top: 80%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0.5rem 0;
    border-right: 0.01rem solid #20b09f;
    height: 4.82rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 99;
    text-align: -webkit-right;
}
.left_nav .item_block{
    width: 0.7rem;
    height: 0.7rem;
    background-color: rgba(0, 0, 0, .4);
    border: 1px solid #0084cd;
    border-right: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 0.1rem;
    display: flex;
    transition: all 0.5s;
    position: relative;
}
.left_nav .item_block:before {
    content: "";
    background-color: rgb(0 132 205);
    position: absolute;
    height: 0.7rem;
    width: 0;
    -webkit-transition: all .8s ease;
    -o-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
}
.left_nav .item_block.cur::before {
    width: 100%;
}
.left_nav .item_block .wyz_item{
    width: 100%;
    height: 100%;
}
.left_nav .item_block .wyz_item .img_block{
    width: 0.28rem;
    height: 0.28rem;
    margin: 0.07rem auto 0.06rem;
}
.left_nav .item_block .wyz_item p{
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 0.12rem;
    color: #FFFFFF;
}
.left_nav .item_block .wyz_cont{
    height: 100%;
    display: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.left_nav .item_block .wyz_cont p{
    font-size: 0.14rem;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 0.68rem;
    white-space: nowrap;
}
.left_nav .item_block.cur{
    width: 1.56rem;
}
.left_nav .item_block.cur .wyz_item{
    display: none;
}
.left_nav .item_block.cur .wyz_cont{
    width: 100%;
    display: block;
}
.item_block .wyz_code{
    display: none;
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(32, 176, 159, .8);
    left: -1.6rem;
    bottom: -0.04rem;
    width: 1.6rem;
    height: 1.6rem;
    justify-content: center;
    align-items: center;
}
.item_block.cur .wyz_code{
    display: flex;
}
.item_block .wyz_code img{
    width: 100%;
    height: 100%;
}


.header #navToggle {
    height: 50px;
    padding: 9px 15px;
    width: auto;
    display: none;
}

.header #navToggle span {
    position: relative;
    width: 25px;
    height: 1px;
    margin-top: 19px;
}

.header #navToggle span:before, 
.header #navToggle span:after {
    content: '';
    position: relative;
    width: 100%;
    height: 1px;
    left: 0;
}

.header #navToggle span, 
.header #navToggle span:before, 
.header #navToggle span:after {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: #ffffff;
}

.header #navToggle span:before {
    top: 8px;
}

.header #navToggle span:after {
    bottom: 10px;
}

.header #navToggle.open span:before {
    top: 10px;
    -webkit-transform: translateY(-11px) rotate(-45deg);
    -moz-transform: translateY(-11px) rotate(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    -o-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
}

.header #navToggle.open span:after {
    bottom: 12px;
    -webkit-transform: translateY(10px) rotate(45deg);
    -moz-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    -o-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
}

.header #navToggle.open span {
    background: none;
}

.header #navToggle.open span:before, 
.header #navToggle.open span:after {
    background: #fff;
}

.m_nav {
    position: fixed;
    top: 0;
    box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
    width: 100%;
    height: 1000px;
    background: #fff;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    -webkit-transition: all ease 0.5s;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transform: translateX(100%);
    display: none;
}

.m_nav.open {
    transform: translateX(0);
}

.m_nav .top {
    height: 60px;
    padding: 20px;
    box-sizing: border-box;
}

.m_nav .top .closed {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    float: right;
    cursor: pointer;
    font-size: 30px;
}

.m_nav .logo {
    width: 100%;
    margin: 0 auto;
}

.m_nav .logo img {
    height: 50px;
    display: block;
    margin: 30px auto;
}

.m_nav .ul {
    margin-top: 30px;
}

.m_nav .ul li {
    padding: 0 20px;
    border-bottom: 1px solid #f5f5f5;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
    position: relative;
}

.m_nav.open .ul li {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    width: 100%;
}

.m_nav .ul li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(7) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(8) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li a {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    width: auto;
}

.m_nav .ul li .dropdown_menu {
    display: none;
}

.m_nav .ul li.dropdown.active .dropdown_menu {
    display: block;
}
.m_nav .ul li.dropdown .iconfont{
    width: 10px;
    height: 18px;
    display: inline-block;
    transition: all .5s ease;
    margin-top: 16px;
    position: absolute;
    left: 80%;
}
.m_nav .ul li.dropdown .iconfont.jtRote{
    transform: rotate(90deg);
}
.m_nav .ul li .dropdown_menu a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #f5f5f5;
}

.m_nav .ul li .dropdown_menu a:last-child {
    border: none;
}
@media screen and (max-width: 1043px) {
    body{
        padding-top: 140px;
    }
    .head_top .main{
        width: 94%;
        padding: 15px 0;
    }
    .head_top .head_txt{
        display: none;
    }
    .head_top .head_logo{
        height: 40px;
    }

    .head_nav .navbar_nav{
        width: 94%;
        display: flex;
        flex: 1;
    }
    .head_nav .navbar_nav .dropdown{
        width: 12.5%;
    }
    .head_nav .navbar_nav .dropdown .navNameLink{
        font-size: 16px;
    }
    .head_nav .navbar_nav .dropdown .dropdown_menu a{
        font-size: 14px;
        height: 42px;
        line-height: 42px;
    }
}
@media screen and (max-width: 769px) {
    body{
        padding-top: 120px;
    }
    .head_nav{
        display: flex;
        justify-content: right;
    }
    .head_nav .navbar_nav{
        display: none;
    }
    .m_nav,
    .header #navToggle{
        display: inline-block;
    }



    .left_nav .item_block{
        width: 60px;
        height: 60px;
    }
    .left_nav .item_block .wyz_item .img_block{
        width: 26px;
        height: 26px;
    }
    .left_nav .item_block .wyz_item p{
        font-size: 12px;
    }
    .left_nav .item_block.cur{
        width: 150px;
    }
    .left_nav .item_block .wyz_cont p{
        font-size: 14px;
        height: 100%;
    }
    .left_nav .item_block:before{
        height: 100%;
    }
}<!--ºÄÊ±1768325751.8811Ãë-->