/* 字体加载  OTF: opentype   TTF: truetype */
/* @font-face {
    font-family: 'HarmonyOS_Sans_Bold';
    src: url('../fonts/harmonyos_sans_bold.ttf');
    src: url('../fonts/harmonyos_sans_bold.ttf') format('truetype');
}

@font-face {
    font-family: 'HKGrotesk-Light';
    src: url('../../font/HKGrotesk-Light.otf');
    src: url('../../font/HKGrotesk-Light.otf') format('opentype');
}

@font-face {
    font-family: 'MONTSERRAT-BOLD';
    src: url('../../font/MONTSERRAT-BOLD_0.OTF');
    src: url('../../font/MONTSERRAT-BOLD_0.OTF') format('opentype');
}


@font-face {
    font-family: 'HarmonyOS_Sans_SC_Regular';
    src: url('../fonts/harmonyos_sans_sc_regular_0.ttf');
    src: url('../fonts/harmonyos_sans_sc_regular_0.ttf') format('truetype');
}

@font-face {
    font-family: 'HarmonyOS_Sans_SC_Light';
    src: url('../fonts/harmonyos_sans_sc_light.ttf');
    src: url('../fonts/harmonyos_sans_sc_light.ttf') format('truetype');
}

@font-face {
    
    src: url('../fonts/poppins-regular.ttf');
    src: url('../fonts/poppins-regular.ttf') format('opentype');
} */


/*css 初始化 */
html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
nav,
header,
form,
fieldset,
legend,
img,
div,
span,
section,
footer,
em,
input,
textarea,
a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'microsoft yahei','微软雅黑',Arial,'黑体',"宋体", sans-serif;
    font-weight: normal;
}

fieldset,
img,
input,
button,
textarea {
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
}

ul,
ol {
    list-style: none;
}

input,
textarea {
    padding-top: 0;
    padding-bottom: 0;
    font-family: 'microsoft yahei','微软雅黑',Arial,'黑体',"宋体", sans-serif;
}

select,
input {
    vertical-align: middle;
}

select,
input,
textarea {
    margin: 0;
}

textarea {
    resize: none;
}

img {
    border: 0;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

body {
    font-size: 14px;
    font-family: 'Poppins-Regular', 'HarmonyOS_Sans_SC_Regular', 'HarmonyOS_Sans_SC_Light';
    font: Arial, Verdana, "\5b8b\4f53";
    color: #666;
    background: #fff
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
    /*IE/7/6*/
}

a {
    color: #666;
    text-decoration: none;

    transition: color 0.4s ease, box-shadow 0.4s ease;
    -webkit-transition: color 0.4s ease, box-shadow 0.4s ease;
    -moz-transition: color 0.4s ease, box-shadow 0.4s ease;
    -o-transition: color 0.4s ease, box-shadow 0.4s ease;
}

/* a:hover{color:#C81623;} */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-decoration: none;
    font-weight: normal;
}

s,
i,
em {
    font-style: normal;
    text-decoration: none;
}

.col-red {
    color: #C81623 !important;
}

:focus-visible {
    outline: none !important;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none !important;
    outline-offset: 0 !important;
}

.container {
    padding: 0;
    margin: 0;
}

.txet-over1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

section {
    overflow: hidden
}

nav {
    position: relative;
    width: 100%;
    height: auto
}

nav .nav-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    z-index: 59;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto
}

nav .nav-main .main-cont .main-logo {
    position: relative;
    width: 3.55rem;
    height: 100%;
}

nav .nav-main .main-cont .main-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    /* width: 125px; */
    height: 50px;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-logo .img2 {
    opacity: 0
}

nav .nav-main .main-cont .main-nav {
    display: flex;
    justify-content: flex-end;
    width: auto;
    height: 100%
}

nav .nav-main .main-cont .main-nav .nav-li {
    position: relative;
    display: inline-block;
    width: auto;
    height: 100%;
    padding: 0 .25rem
}

nav .nav-main .main-cont .main-nav .nav-li .li-link {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 15px;
    line-height: 90px;
    color: #fff
}

nav .nav-main .main-cont .main-nav .nav-li .li-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #074C9C;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-nav .nav-li .li-link-active {
    font-weight: 600;
}

nav .nav-main .main-cont .main-nav .nav-li .li-list {
    position: absolute;
    top: 100px;
    left: 50%;
    width: 200px;
    height: auto;
    padding: .28rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.21);
    opacity: 0;
    visibility: hidden;
    z-index: 29;
    transform: translate(-50%, .2rem);
    -o-transform: translate(-50%, .2rem);
    -moz-transform: translate(-50%, .2rem);
    -webkit-transform: translate(-50%, .2rem);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-nav .nav-li .li-list::after {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    width: 44px;
    height: 37px;
    background: url(../images/common/icon-nav-arrow.png) no-repeat center;
    background-size: 100%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%)
}

nav .nav-main .main-cont .main-nav .nav-li .li-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding-bottom: .2rem;
    margin-bottom: .25rem;
    font-size: 14px;
    color: #333;
    border-bottom: solid 1px #d3d4d6
}

nav .nav-main .main-cont .main-nav .nav-li .li-list a:last-of-type {
    padding-bottom: .1rem;
    margin-bottom: 0;
    border-bottom: none
}

nav .nav-main .main-cont .main-nav .nav-li .li-list a em {
    width: 6px;
    height: 9px;
    background: url(../images/common/icon-nav-list-arrow.png) no-repeat center;
    background-size: 100%;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-nav .nav-li .li-list a:hover {
    font-weight: bold;
    color: #074C9C
}

nav .nav-main .main-cont .main-nav .nav-li .li-list a:hover em {
    background: url(../images/common/icon-nav-list-arrow-active.png) no-repeat center;
    background-size: 100%
}

nav .nav-main .main-cont .main-nav .nav-li:hover .li-link {
    font-weight: bold;
    color: #074C9C !important
}

nav .nav-main .main-cont .main-nav .nav-li:hover .li-list {
    opacity: .96;
    visibility: visible;
    transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0)
}

nav .nav-main .main-cont .main-nav .nav-li-active .li-link {
    color: #074C9C
}


nav .nav-main .main-cont .main-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 300px;
    height: 100%
}

nav .nav-main .main-cont .main-right .right-serach-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    width: 250px;
    height: 30px;
    border-radius: 30px;
    border: solid 1px #ededed;
}

nav .nav-main .main-cont .main-right .right-serach-box .serach-input {
    font-size: 14px;
    line-height: 28px;
    width: 220px;
    height: 28px;
    border: none;
    outline: none;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    text-indent: 13px;
}

nav .nav-main .main-cont .main-right .right-serach-box .serach-icon-box {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    text-align: center;
}

nav .nav-main .main-cont .main-right .right-serach-box .serach-icon-box .serach-icon {
    margin-right: 6px;
}

nav .nav-main .main-cont .main-right .right-lang .lang-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%
}

nav .nav-main .main-cont .main-right .right-lang .lang-cont .cont-icon {
    position: relative;
    width: 20px;
    height: 20px
}

nav .nav-main .main-cont .main-right .right-lang .lang-cont .cont-icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-right .right-lang .lang-cont .cont-icon .img2 {
    opacity: 0
}

nav .nav-main .main-cont .main-right .right-lang .lang-subnav {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 50%;
    width: 150px;
    height: auto;
    padding: .2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.21);
    opacity: 0;
    visibility: hidden;
    z-index: 59;
    transform: translate(-50%, .2rem);
    -o-transform: translate(-50%, .2rem);
    -moz-transform: translate(-50%, .2rem);
    -webkit-transform: translate(-50%, .2rem);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-right .right-lang .lang-subnav::after {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    width: 44px;
    height: 37px;
    background: url(../images/common/icon-nav-arrow.png) no-repeat center;
    background-size: 100%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%)
}

nav .nav-main .main-cont .main-right .right-lang .lang-subnav .subnav-link {
    width: 100%;
    height: auto;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    color: #1c1d21;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-right .right-lang .lang-subnav .subnav-link:hover {
    color: #074C9C
}

nav .nav-main .main-cont .main-right .right-lang:hover .lang-cont .cont-arrow img {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

nav .nav-main .main-cont .main-right .right-lang:hover .lang-subnav {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0)
}

nav .nav-main .main-cont .main-right .right-serach {
    position: relative;
    width: 1.2rem;
    height: 100%;
    border-left: solid 1px rgba(255, 255, 255, 0.1);
    cursor: pointer
}

nav .nav-main .main-cont .main-right .right-serach img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 21px;
    z-index: 9;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-right .right-serach .img2 {
    opacity: 0
}

nav .nav-main .main-cont .main-right .right-menu {
    position: relative;
    width: 1.2rem;
    height: 100%;
    border-left: solid 1px rgba(255, 255, 255, 0.1);
    cursor: pointer
}

nav .nav-main .main-cont .main-right .right-menu img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 21px;
    z-index: 9;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-right .right-menu .img2 {
    opacity: 0
}

nav .nav-main .main-cont .main-web-right {
    display: none
}

nav .nav-main .main-cont .main-popup-suosou {
    position: absolute;
    top: 90px;
    left: 50%;
    display: none;
    width: 100%;
    height: auto;
    padding: .9rem 0 1.2rem;
    background: #fff;
    border-top: solid 1px #eee;
    z-index: 59;
    transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-popup-suosou .sousuo-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    width: 15.36rem;
    height: .75rem;
    margin: 0 auto;
    border-bottom: solid 1px #074C9C
}

nav .nav-main .main-cont .main-popup-suosou .sousuo-box a {
    width: 16px;
    height: auto
}

nav .nav-main .main-cont .main-popup-suosou .sousuo-box a img {
    width: 100%
}

nav .nav-main .main-cont .main-popup-suosou .sousuo-box input {
    flex: 1;
    height: .75rem;
    padding: 0 .5rem;
    font-size: 16px;
    color: #333;
    background: none
}

nav .nav-main .main-cont .main-popup-suosou .sousuo-box input::placeholder {
    font-size: 16px;
    color: #999
}

nav .nav-main .main-cont .main-popup-suosou .sousuo-box .box-hidden {
    width: 22px;
    height: auto;
    cursor: pointer
}

nav .nav-main .main-cont .main-popup-suosou .sousuo-box .box-hidden img {
    width: 100%;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-popup-suosou .sousuo-box .box-hidden:hover img {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

nav .nav-main .main-cont .main-popup-nav {
    position: absolute;
    top: 90px;
    left: 50%;
    width: 100%;
    height: auto;
    padding: .55rem 0 .48rem;
    background: rgba(23, 107, 170, 0.95);
    border-top: solid 1px #eee;
    opacity: 0;
    visibility: hidden;
    z-index: 59;
    transform: translate(-50%, -80px);
    -o-transform: translate(-50%, -80px);
    -moz-transform: translate(-50%, -80px);
    -webkit-transform: translate(-50%, -80px);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-popup-nav .nav-cont {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 980px;
    margin: 0 auto
}

nav .nav-main .main-cont .main-popup-nav .nav-cont .cont-item {
    position: relative;
    width: 250px;
    padding-bottom: 15px;
    margin-right: 115px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3)
}

nav .nav-main .main-cont .main-popup-nav .nav-cont .cont-item:nth-child(3n) {
    margin-right: 0
}

nav .nav-main .main-cont .main-popup-nav .nav-cont .cont-item::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: url(../images/common/icon-subnav-arrow.png) no-repeat center center;
    z-index: 10;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-popup-nav .nav-cont .cont-item:hover::after {
    transform: translateX(.15rem);
    -o-transform: translateX(.15rem);
    -moz-transform: translateX(.15rem);
    -webkit-transform: translateX(.15rem)
}

nav .nav-main .main-cont .main-popup-nav .nav-hidden {
    position: absolute;
    top: 10px;
    right: 30px;
    width: 24px;
    height: 24px;
    cursor: pointer
}

nav .nav-main .main-cont .main-popup-nav .nav-hidden img {
    width: 100%;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main .main-cont .main-popup-nav .nav-hidden:hover img {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

nav .nav-main .main-cont .main-popup-nav-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0)
}

nav .nav-main:hover {
    background: #fff
}


nav .nav-main:hover .main-cont .main-logo .img1 {
    opacity: 0
}

nav .nav-main:hover .main-cont .main-logo .img2 {
    opacity: 1
}

nav .nav-main:hover .main-cont .main-nav .nav-li .li-link {
    color: #333
}

nav .nav-main:hover .main-cont .main-right .right-lang {
    border-left: solid 1px #ededed
}

nav .nav-main:hover .main-cont .main-right .right-lang .lang-cont .cont-icon .img1 {
    opacity: 0
}

nav .nav-main:hover .main-cont .main-right .right-lang .lang-cont .cont-icon .img2 {
    opacity: 1
}

nav .nav-main:hover .main-cont .main-right .right-serach,
nav .nav-main:hover .main-cont .main-right .right-menu {
    border-left: solid 1px #ededed
}

nav .nav-main:hover .main-cont .main-right .right-serach .img1,
nav .nav-main:hover .main-cont .main-right .right-menu .img1 {
    opacity: 0
}

nav .nav-main:hover .main-cont .main-right .right-serach .img2,
nav .nav-main:hover .main-cont .main-right .right-menu .img2 {
    opacity: 1
}

nav .nav-main-active {
    background: #fff;
    border-bottom: solid 1px #ededed
}

nav .nav-main-active .main-cont .main-logo {}

nav .nav-main-active .main-cont .main-logo .img1 {
    opacity: 0
}

nav .nav-main-active .main-cont .main-logo .img2 {
    opacity: 1
}

nav .nav-main-active .main-cont .main-nav .nav-li .li-link {
    color: #333
}

nav .nav-main-active .main-cont .main-right .right-lang {
    border-left: solid 1px #ededed
}

nav .nav-main-active .main-cont .main-right .right-lang .lang-cont .cont-icon .img1 {
    opacity: 0
}

nav .nav-main-active .main-cont .main-right .right-lang .lang-cont .cont-icon .img2 {
    opacity: 1
}

nav .nav-main-active .main-cont .main-right .right-serach,
nav .nav-main-active .main-cont .main-right .right-menu {
    border-left: solid 1px #ededed
}

nav .nav-main-active .main-cont .main-right .right-serach .img1,
nav .nav-main-active .main-cont .main-right .right-menu .img1 {
    opacity: 0
}

nav .nav-main-active .main-cont .main-right .right-serach .img2,
nav .nav-main-active .main-cont .main-right .right-menu .img2 {
    opacity: 1
}

nav .nav-main-active2 {
    background: #fff
}

nav .nav-main-active2 .main-cont .main-box .box-item .item-title {
    color: #333
}

nav .nav-main-active2 .main-cont .main-right .right-suosou {
    border: solid 1px rgba(76, 69, 139, 0.3)
}

nav .nav-main-active2 .main-cont .main-right .right-suosou .img1 {
    opacity: 0
}

nav .nav-main-active2 .main-cont .main-right .right-suosou .img2 {
    opacity: 1
}

nav .nav-main-active2 .main-cont .main-right .right-lang .lang-cont {
    border: solid 1px rgba(76, 69, 139, 0.3)
}

nav .nav-main-active2 .main-cont .main-right .right-lang .lang-cont .cont-text {
    color: #000
}

nav .nav-main-active2 .main-cont .main-right .right-lang .lang-cont .cont-icon .img1,
nav .nav-main-active2 .main-cont .main-right .right-lang .lang-cont .cont-arrow .img1 {
    opacity: 0
}

nav .nav-main-active2 .main-cont .main-right .right-lang .lang-cont .cont-icon .img2,
nav .nav-main-active2 .main-cont .main-right .right-lang .lang-cont .cont-arrow .img2 {
    opacity: 1
}

nav .nav-main2 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #fff;
    z-index: 59;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main2 .main-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 14.4rem;
    height: 100%;
    margin: 0 auto
}

nav .nav-main2 .main-cont .main-logo {
    position: relative;
    width: 2.7rem;
    height: 100%
}

nav .nav-main2 .main-cont .main-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.74rem;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main2 .main-cont .main-nav {
    display: flex;
    justify-content: flex-end;
    width: auto;
    height: 100%
}

nav .nav-main2 .main-cont .main-nav .nav-li {
    position: relative;
    display: inline-block;
    width: auto;
    height: 100%;
    padding: 0 .25rem
}

nav .nav-main2 .main-cont .main-nav .nav-li .li-link {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 15px;
    line-height: 90px;
    color: #333
}

nav .nav-main2 .main-cont .main-nav .nav-li .li-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #074C9C;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main2 .main-cont .main-nav .nav-li .li-link-active {
    font-weight: bold
}

nav .nav-main2 .main-cont .main-nav .nav-li .li-link-active::after {
    width: 100%
}

nav .nav-main2 .main-cont .main-nav .nav-li:hover .li-link {
    font-weight: bold;
    color: #074C9C !important
}

nav .nav-main2 .main-cont .main-nav .nav-li:hover .li-link::after {
    width: 100%
}

nav .nav-main2 .main-cont .main-nav .nav-li:hover .li-list {
    opacity: .96;
    visibility: visible;
    transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0)
}

nav .nav-main2 .main-cont .main-nav .nav-li-active .li-link {
    color: #074C9C
}

nav .nav-main2 .main-cont .main-nav .nav-li-active .li-link::after {
    width: 100%
}

nav .nav-main2 .main-cont .main-web-right {
    display: none
}

nav .nav-main2 .main-cont .main-popup-suosou {
    position: absolute;
    top: 90px;
    left: 50%;
    display: none;
    width: 100%;
    height: auto;
    padding: .9rem 0 1.2rem;
    background: #fff;
    border-top: solid 1px #eee;
    z-index: 59;
    transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    width: 15.36rem;
    height: .75rem;
    margin: 0 auto;
    border-bottom: solid 1px #074C9C
}

nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box a {
    width: 16px;
    height: auto
}

nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box a img {
    width: 100%
}

nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box input {
    flex: 1;
    height: .75rem;
    padding: 0 .5rem;
    font-size: 16px;
    color: #333;
    background: none
}

nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box input::placeholder {
    font-size: 16px;
    color: #999
}

nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box .box-hidden {
    width: 22px;
    height: auto;
    cursor: pointer
}

nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box .box-hidden img {
    width: 100%;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box .box-hidden:hover img {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

nav .nav-main2 .main-cont .main-popup-nav {
    position: absolute;
    top: 90px;
    left: 50%;
    width: 100%;
    height: auto;
    padding: .55rem 0 .48rem;
    background: rgba(23, 107, 170, 0.95);
    border-top: solid 1px #eee;
    opacity: 0;
    visibility: hidden;
    z-index: 59;
    transform: translate(-50%, -80px);
    -o-transform: translate(-50%, -80px);
    -moz-transform: translate(-50%, -80px);
    -webkit-transform: translate(-50%, -80px);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main2 .main-cont .main-popup-nav .nav-cont {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 980px;
    margin: 0 auto
}

nav .nav-main2 .main-cont .main-popup-nav .nav-cont .cont-item {
    position: relative;
    width: 250px;
    padding-bottom: 15px;
    margin-right: 115px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3)
}

nav .nav-main2 .main-cont .main-popup-nav .nav-cont .cont-item:nth-child(3n) {
    margin-right: 0
}

nav .nav-main2 .main-cont .main-popup-nav .nav-cont .cont-item::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: url(../images/common/icon-subnav-arrow.png) no-repeat center center;
    z-index: 10;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main2 .main-cont .main-popup-nav .nav-cont .cont-item:hover::after {
    transform: translateX(.15rem);
    -o-transform: translateX(.15rem);
    -moz-transform: translateX(.15rem);
    -webkit-transform: translateX(.15rem)
}

nav .nav-main2 .main-cont .main-popup-nav .nav-hidden {
    position: absolute;
    top: 10px;
    right: 30px;
    width: 24px;
    height: 24px;
    cursor: pointer
}

nav .nav-main2 .main-cont .main-popup-nav .nav-hidden img {
    width: 100%;
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

nav .nav-main2 .main-cont .main-popup-nav .nav-hidden:hover img {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

nav .nav-main2 .main-cont .main-popup-nav-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0)
}

nav .nav-main2:hover {
    background: #fff
}

nav .nav-main2:hover .main-cont .main-logo .img1 {
    opacity: 0
}

nav .nav-main2:hover .main-cont .main-logo .img2 {
    opacity: 1
}

nav .nav-main2:hover .main-cont .main-nav .nav-li .li-link {
    color: #333
}

nav .nav-main2:hover .main-cont .main-right .right-lang .lang-cont .cont-icon .img1 {
    opacity: 0
}

nav .nav-main2:hover .main-cont .main-right .right-lang .lang-cont .cont-icon .img2 {
    opacity: 1
}

nav .nav-main2:hover .main-cont .main-right .right-serach .img1,
nav .nav-main2:hover .main-cont .main-right .right-menu .img1 {
    opacity: 0
}

nav .nav-main2:hover .main-cont .main-right .right-serach .img2,
nav .nav-main2:hover .main-cont .main-right .right-menu .img2 {
    opacity: 1
}

nav .nav-cont2 {
    width: 100%;
    height: 70px;
    background: #042238
}

nav .nav-cont2 .cont-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 14.4rem;
    height: 100%;
    margin: 0 auto
}

nav .nav-cont2 .cont-main .main-left {
    width: max-content;
    height: auto;
    font-size: 18px;
    color: #fff
}

nav .nav-cont2 .cont-main .main-right {
    width: max-content;
    height: auto
}

nav .nav-cont2 .cont-main .main-right a {
    margin-left: .4rem;
    font-size: 18px;
    color: #fff
}

nav .nav-cont2 .cont-main .main-right a:hover {
    text-decoration: underline
}

nav .borB {
    border-bottom: solid 1px #dadada
}

nav .Whead-search,
nav .sidebar-mask,
nav .Whead-sidebar,
nav .head-Wnav,
nav .cont-web-suosou,
nav .cont-web-caidan {
    display: none
}


footer {
    width: 100%;
    height: auto;
    background: #242424;
    position: relative;
    z-index: 2;
}

footer .foot-main {
    display: flex;
    justify-content: space-between;
    width: 15.36rem;
    height: auto;
    margin: 0 auto 0.3rem;
    padding-top: 0.6rem;
}

footer .foot-main .main-nav {
    display: flex;
    justify-content: flex-start;
    width: auto;
    height: auto
}

footer .foot-main .main-nav .nav-item {
    width: 1.48rem;
    height: auto
}

footer .foot-main .main-nav .nav-item .item-title {
    display: block;
    font-size: 16px;
    /* font-weight: bold; */
    color: #fff
}

footer .foot-main .main-nav .nav-item .item-cent {
    width: 100%;
    height: auto;
    margin-top: .4rem
}

footer .foot-main .main-nav .nav-item .item-cent a {
    display: block;
    font-size: 14px;
    line-height: 36px;
    color: #999
}

footer .foot-main .main-nav .nav-item .item-cent a:hover {
    color: #fff
}

footer .foot-main .main-right {
    width: 200px;
    height: auto;
    text-align: right;
}

footer .foot-main .main-right .right-ewm {
    width: 1rem;
    height: auto;
    margin: 0 auto;
}

footer .foot-main .main-right .right-ewm img {
    width: 100%
}

footer .foot-main .main-right .right-ewm .ewm-title {
    margin-top: .1rem;
    font-size: 14px;
    text-align: center;
    color: #fff
}

footer .foot-main .main-right .right-intel {
    width: 100%;
    height: auto;
    line-height: 25px;
    margin-top: .4rem;
    text-align: left;
    color: #ffffff;
}

footer .foot-main .main-right .right-intel .foot-contact {
    display: none;
}

footer .foot-main .main-right .right-intel .foot-contact-pc {
    color: #ffffff;
    display: block;
}

footer .foot-main .main-right .right-intel img {
    width: 100%
}

footer .foot-box {
    width: 15.36rem;
    height: auto;
    margin: 0 auto;
    padding: .55rem 0;
    border-bottom: solid 1px #3a3a3a
}

footer .foot-box .box-link {
    font-size: 14px
}

footer .foot-box .box-link span {
    color: rgba(255, 255, 255, 0.3)
}

footer .foot-box .box-link a {
    margin: 0 .2rem;
    color: rgba(255, 255, 255, 0.3)
}

footer .foot-box .box-link a:hover {
    color: #fff
}

footer .foor-bottom {
    width: 100%;
    text-align: center;
    padding: .3rem 0;
    border-top: solid 1px #3a3a3a
}

footer .foor-bottom .bottom-zizhi {
    font-size: 12px;
    color: #999
}

footer .foor-bottom .bottom-zizhi a {
    margin-left: .1rem;
    color: #999
}

footer .foor-bottom .bottom-zizhi a:hover {
    color: #fff
}

footer .foor-bottom .bottom-cont {
    width: auto;
    height: auto
}

footer .foor-bottom .bottom-cont a {
    margin-left: .3rem;
    color: #999
}

footer .foor-bottom .bottom-cont a:hover {
    color: #fff
}

footer .foot-main2 {
    display: flex;
    justify-content: space-between;
    width: 14.4rem;
    height: auto;
    margin: 0 auto;
    padding: .75rem 0 .8rem
}

footer .foot-main2 .main-left {
    width: auto;
    height: auto
}

footer .foot-main2 .main-left .left-logo {
    width: 2.5rem;
    height: auto
}

footer .foot-main2 .main-left .left-logo img {
    width: 100%
}

footer .foot-main2 .main-left .left-link {
    width: auto;
    height: auto;
    margin-top: .4rem
}

footer .foot-main2 .main-left .left-link a {
    font-size: 14px;
    color: #fff
}

footer .foot-main2 .main-left .left-link a:hover {
    color: #074C9C
}

footer .foot-main2 .main-left .left-link span {
    margin: 0 .2rem;
    font-size: 14px;
    color: #fff
}

footer .foot-main2 .main-left .left-zizhi {
    margin-top: .3rem;
    font-size: 14px;
    color: #999
}

footer .foot-main2 .main-left .left-zizhi a {
    margin-left: .25rem;
    color: #999
}

footer .foot-main2 .main-left .left-zizhi a:hover {
    color: #fff
}

footer .foot-main2 .main-right {
    display: flex;
    justify-content: flex-end;
    width: auto;
    height: auto
}

footer .foot-main2 .main-right .right-cent {
    width: max-content;
    height: auto
}

footer .foot-main2 .main-right .right-cent .cent-title {
    font-size: 14px;
    color: #666
}

footer .foot-main2 .main-right .right-cent .cent-tel {
    margin-top: .1rem;
    font-family: 'DIN-BOLD';
    font-size: .4rem;
    color: #fff
}

footer .foot-main2 .main-right .right-cent .cent-bottom {
    display: flex;
    justify-content: flex-start;
    width: auto;
    height: auto;
    margin-top: .2rem
}

footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item {
    position: relative;
    width: 43px;
    height: 43px;
    margin-right: .28rem;
    border-radius: 50%;
    background: #fff
}

footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item:last-of-type {
    margin-right: 0
}

footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 21px;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item .img2 {
    opacity: 0
}

footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item .link-ewm {
    position: absolute;
    bottom: 55px;
    left: 50%;
    width: 93px;
    height: 93px;
    border-radius: 10px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, .2rem);
    -o-transform: translate(-50%, .2rem);
    -moz-transform: translate(-50%, .2rem);
    -webkit-transform: translate(-50%, .2rem);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item .link-ewm img {
    position: relative;
    width: 100%;
    border-radius: 10px
}

footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item .link-ewm::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    width: 0;
    height: 0;
    border: solid 8px #fff;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%)
}

footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item:hover {
    background: #4d4948
}

footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item:hover .img1 {
    opacity: 0
}

footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item:hover .img2 {
    opacity: 1
}

footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item:hover .link-ewm {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0)
}

footer .foot-main2 .main-right .right-ewm {
    width: 1.3rem;
    height: 1.3rem;
    margin-left: 1rem
}

footer .foot-main2 .main-right .right-ewm img {
    width: 100%
}

footer .foot-main2 .main-zizhi {
    display: none
}


.page-float {
    position: fixed;
    bottom: 0;
    right: 5px;
    width: 65px;
    height: auto;
    opacity: 0;
    z-index: 29;
    visibility: hidden;
    transform: translatey(-50%);
    -o-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -webkit-transform: translatey(-50%);
    transition: opacity 0.5s,visibility 0.5s;
    -o-transition: opacity 0.5s,visibility 0.5s;
    -moz-transition: opacity 0.5s,visibility 0.5s;
    -webkit-transition: opacity 0.5s,visibility 0.5s;
}

.page-float .float-hide {
    width: 20px;
    height: 20px;
    margin: .1rem auto 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6) url(../images/common/icon-close.png) no-repeat center center;
    background-size: 10px;
    cursor: pointer
}

.page-float .float-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 65px;
    margin-bottom: 1px;
    background: rgba(0, 0, 0, 0.6);
}

.page-float .float-list .list-pic {
    width: 100%;
    height: auto;
    padding-top: 0;
    text-align: center;
    cursor: pointer
}

.page-float .float-list .list-pic img {
    width: 21px
}

.page-float .float-list .list-title {
    margin-top: .05rem;
    font-size: 12px;
    text-align: center;
    color: #fff
}

.page-float .float-list .list-cent {
    position: absolute;
    top: 0;
    left: -230px;
    width: 230px;
    height: auto;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translatey(30px);
    -o-transform: translatey(30px);
    -moz-transform: translatey(30px);
    -webkit-transform: translatey(30px)
}

.page-float .float-list .list-cent .cent-title {
    position: relative;
    width: 100%;
    height: 40px;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    background: #074C9C
}

.page-float .float-list .list-cent .cent-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 12px;
    margin-right: -16px;
    background: url(../images/common/icon-page-sanjiao.png) no-repeat left center;
    transform: translatey(-50%);
    -o-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -webkit-transform: translatey(-50%)
}

.page-float .float-list .list-cent .cent-cont {
    padding: 20px;
    font-size: 16px;
    text-align: center;
    color: #333;
    background: #fff;
    box-shadow: 4px 10px 10px rgba(38, 93, 63, 0.2)
}

.page-float .float-list .list-cent .cent-cont img {
    width: 80%
}

.page-float .float-list:hover {
    background: #074C9C
}

.page-float .float-list:hover .list-pic {
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

.page-float .float-list:hover .list-cent {
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
    -o-transform: translatey(0);
    -moz-transform: translatey(0);
    -webkit-transform: translatey(0);
    transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s
}

.page-float:hover {
    opacity: 1
}

.mr {
    margin-top: 100px
}

.transition_none,
.transition_none * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important
}

.tip-home {
    color: #6f7275 !important;
}


.head-strip {
    position: relative;
    width: 100%;
    height: .8rem;
    background: #f8f8f8;
    border-bottom: solid 1px #ebebeb;
    z-index: 29
}

.head-strip .strip-box {
    display: flex;
    justify-content: space-between;
    max-width: 15.38rem;
    width: auto;
    height: 100%;
    margin: 0 auto
}

.head-strip .strip-box .box-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
.head-strip .strip-box .box-left .nav-swiper{
	width: 11.3rem;
	height: 0.79rem;
	overflow: hidden;
}
.head-strip .strip-box .box-left .nav-swiper .nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.head-strip .strip-box .box-left .left-list {
    position: relative;
    width: auto;
    height: 100%;
    padding: 0 .1rem;
    margin-right: .3rem;
    font-size: 0.16rem;
    line-height: .8rem;
	white-space: nowrap;
    z-index: 9;
    transition: color .5s;
    -o-transition: color .5s;
    -moz-transition: color .5s;
    -webkit-transition: color .5s;
	white-space: nowrap;
}

.head-strip .strip-box .box-left .left-list:last-of-type {
    margin-right: 0
}
.head-strip .strip-box .box-left .left-list a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #909090;
    text-wrap: nowrap;
}

.head-strip .strip-box .box-left .left-list:hover {
    background: #fff
}

.head-strip .strip-box .box-left .left-list:hover a {
    color: #074C9C
}

.head-strip .strip-box .box-left .left-list-active {
    background: #fff
}

.head-strip .strip-box .box-left .left-list-active a {
    color: #074C9C
}

.head-strip .strip-box .box-right {
    display: flex;
    justify-content: flex-end;
    width: 28%;
    text-align: right;
    line-height: .8rem
}

.head-strip .strip-box .box-right .right-icon1 {
    width: 15px
}

.head-strip .strip-box .box-right .right-icon1 img {
    margin-top: -0.04rem
}

.head-strip .strip-box .box-right .right-icon1 a {
    transition: none;
    -webkit-transition: none
}

.head-strip .strip-box .box-right .right-text {
    width: auto;
    font-size: 0.14rem;
	white-space: nowrap;
}

.head-strip .strip-box .box-right .right-text a {
    color: #074C9C
}

.head-strip .strip-box .box-right .right-text a:hover {
    color: #074C9C;
    text-decoration: underline
}

.head-strip .strip-box .box-right .right-text img {
    width: 3px;
    margin: -0.04rem .1rem 0
}

.head-strip .strip-box .box-right .right-text span {
    color: #6f7275
}

.head-Wnav {
    display: none
}

header .banner {
    overflow: hidden;
    position: relative;
    width: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;
}

header .banner_img {
    opacity: 0;
    width: 100%;
    display: inline;
}

header .banner .m_banner_img {
    display: none;
    width: 100%;
}

.center-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    max-width: 15.36rem;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.big-title {
    margin-top: 0.5rem;
}

.big-title .title-content h2 {
    font-size: .32rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.big-title .title-content .blue-line {
    width: 36px;
    height: 3px;
    margin: .2rem 0 0.5rem;
    background: #074C9C;
}

.no-data{
    font-size: 14px;
    color: #909090;
    text-align: center;
    margin: 2rem 0;
}


.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0.4rem auto;
}

.pagination li{
    list-style: none;
    margin: 0 0.05rem;
    cursor: pointer;
    width: auto;
    height: auto;
    /* border-radius: 50%; */
    font-size: 0.14rem;
    color: #666666;
    background-color: #ffffff;
}
.pagination a{
    margin: 0 0.05rem;
    font-size: 0.14rem;
    color: #666666;
    background-color: #ffffff;

    display: block;
    text-align: center;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    line-height: 0.28rem;
    border: 1px solid #666666;
}

.pagination a:hover,
.pagination .page-num-current{
    background-color: #074C9C;
    border-radius: 50%;
    border: 1px solid #074C9C;
    color: #ffffff;
}



@media screen and (max-width:1366px) {

    /* nav .nav-main .main-cont .main-logo{
        width: 160px;
    }
    nav .nav-main .main-cont .main-nav .nav-li {
        padding: 0 .1rem
    } */
    .head-strip {
        height: 80px;
    }
	.head-strip .strip-box .box-left .nav-swiper{
		width: 11.3rem;
		height: 79px;
		overflow: hidden;
	}

    .head-strip .strip-box .box-left .left-list {
        padding: 0 0.15rem;
        margin-right: 0.2rem;
        line-height: 80px;
		white-space: nowrap;
    }
	
    .head-strip .strip-box .box-left .left-list a{
		white-space: nowrap;
	}

    .head-strip .strip-box .box-right {
        line-height: 80px;
        margin-right: 15px;
    }

    nav .nav-main .main-cont .main-right {
        width: 200px;
    }

    nav .nav-main .main-cont .main-right .right-serach-box {
        width: 185px;
    }

    nav .nav-main .main-cont .main-right .right-serach-box .serach-input {
        width: 155px;
    }

    footer .foot-main {
        width: 100%;
    }

    footer .foot-main .main-right {
        display: none;
    }

    footer .foot-main .main-nav {
        display: flex;
        justify-content: space-around;
        width: 100%;
        height: auto;
    }

    footer .foot-main .main-nav .nav-item {
        width: 1.3rem;
        text-align: center;
    }

    footer .foot-main .main-nav .nav-item .item-title {
        font-size: 14px;
    }

    footer .foot-main .main-nav .nav-item .item-cent {
        width: 100%;
        height: auto;
        margin-top: .1rem;
    }

    footer .foot-main .main-nav .nav-item .item-cent a {
        font-size: 12px;
    }
}

@media screen and (max-width:1120px) {
    nav {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 99
    }

    nav .nav-main {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        z-index: 99;
        background: #000
    }

    nav .nav-main .main-cont {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 0 0 0 .3rem
    }

    nav .nav-main .main-cont .main-logo {
        width: 150px;
        height: auto
    }

    nav .nav-main .main-cont .main-logo img {
        /* width: 100%; */
        height: 40px;
    }

    nav .nav-main .main-cont .main-nav,
    nav .nav-main .main-cont .main-right {
        display: none
    }

    nav .nav-main .main-cont .main-web-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: auto;
        height: 100%
    }

    nav .nav-main .main-cont .main-web-right .right-lang {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 1rem;
        height: 100%;
        border-left: solid 1px rgba(255, 255, 255, 0.1);
        cursor: pointer
    }

    nav .nav-main .main-cont .main-web-right .right-lang .lang-cont {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%
    }

    nav .nav-main .main-cont .main-web-right .right-lang .lang-cont .cont-icon {
        position: relative;
        width: 20px;
        height: 20px
    }

    nav .nav-main .main-cont .main-web-right .right-lang .lang-cont .cont-icon img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main .main-cont .main-web-right .right-lang .lang-cont .cont-icon .img2 {
        opacity: 0
    }

    nav .nav-main .main-cont .main-web-right .right-lang .lang-subnav {
        display: flex;
        justify-content: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        flex-direction: column;
        position: absolute;
        top: 1.2rem;
        left: 50%;
        width: 2.5rem;
        height: auto;
        padding: .2rem;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.21);
        opacity: 0;
        visibility: hidden;
        z-index: 59;
        transform: translate(-50%, .2rem);
        -o-transform: translate(-50%, .2rem);
        -moz-transform: translate(-50%, .2rem);
        -webkit-transform: translate(-50%, .2rem);
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main .main-cont .main-web-right .right-lang .lang-subnav::after {
        content: '';
        position: absolute;
        top: -24px;
        left: 50%;
        width: 44px;
        height: 37px;
        background: url(../images/common/icon-nav-arrow.png) no-repeat center;
        background-size: 100%;
        transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%)
    }

    nav .nav-main .main-cont .main-web-right .right-lang .lang-subnav .subnav-link {
        width: 100%;
        height: auto;
        font-size: .28rem;
        line-height: .46rem;
        text-align: center;
        color: #1c1d21;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main .main-cont .main-web-right .right-lang .lang-subnav .subnav-link:hover {
        color: #074C9C
    }

    nav .nav-main .main-cont .main-web-right .right-lang:hover .lang-cont .cont-arrow img {
        transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg)
    }

    nav .nav-main .main-cont .main-web-right .right-lang:hover .lang-subnav {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0)
    }

    nav .nav-main .main-cont .main-web-right .box-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 1rem;
        height: 100%;
        cursor: pointer
    }

    nav .nav-main .main-cont .main-web-right .box-menu img {
        width: 32px;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main:hover {
        background: #000
    }

    nav .nav-main:hover .main-cont .main-logo {
        border-right: none
    }

    nav .nav-main:hover .main-cont .main-logo .img1 {
        opacity: 1
    }

    nav .nav-main:hover .main-cont .main-logo .img2 {
        opacity: 0
    }

    nav .nav-main-active {
        background: #000
    }

    nav .nav-main-active .main-cont .main-logo {
        border-right: none
    }

    nav .nav-main-active .main-cont .main-logo .img1 {
        opacity: 1
    }

    nav .nav-main-active .main-cont .main-logo .img2 {
        opacity: 0
    }

    nav .nav-main-active2 {
        background: #000
    }

    nav .nav-main-active2 .main-cont .main-logo {
        border-right: none
    }

    nav .nav-main-active2 .main-cont .main-logo .img1 {
        opacity: 1
    }

    nav .nav-main-active2 .main-cont .main-logo .img2 {
        opacity: 0
    }

    nav .nav-main2 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 1.2rem;
        background: #fff;
        z-index: 59;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main2 .main-cont {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
        margin: 0 auto;
        padding: 0 .3rem
    }

    nav .nav-main2 .main-cont .main-logo {
        position: relative;
        width: 3.2rem;
        height: 100%
    }

    nav .nav-main2 .main-cont .main-logo img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 2.74rem;
        transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main2 .main-cont .main-nav {
        display: none;
        justify-content: flex-end;
        width: auto;
        height: 100%
    }

    nav .nav-main2 .main-cont .main-nav .nav-li {
        position: relative;
        display: inline-block;
        width: auto;
        height: 100%;
        padding: 0 .25rem
    }

    nav .nav-main2 .main-cont .main-nav .nav-li .li-link {
        position: relative;
        display: inline-block;
        width: 100%;
        height: 100%;
        font-size: 15px;
        line-height: 90px;
        color: #333
    }

    nav .nav-main2 .main-cont .main-nav .nav-li .li-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #074C9C;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main2 .main-cont .main-nav .nav-li .li-link-active {
        font-weight: bold
    }

    nav .nav-main2 .main-cont .main-nav .nav-li .li-link-active::after {
        width: 100%
    }

    nav .nav-main2 .main-cont .main-nav .nav-li:hover .li-link {
        font-weight: bold;
        color: #074C9C !important
    }

    nav .nav-main2 .main-cont .main-nav .nav-li:hover .li-link::after {
        width: 100%
    }

    nav .nav-main2 .main-cont .main-nav .nav-li:hover .li-list {
        opacity: .96;
        visibility: visible;
        transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0)
    }

    nav .nav-main2 .main-cont .main-nav .nav-li-active .li-link {
        color: #074C9C
    }

    nav .nav-main2 .main-cont .main-nav .nav-li-active .li-link::after {
        width: 100%
    }

    nav .nav-main2 .main-cont .main-web-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: auto;
        height: 100%
    }

    nav .nav-main2 .main-cont .main-web-right .right-lang {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 1rem;
        height: 100%;
        border-left: solid 1px rgba(255, 255, 255, 0.1);
        cursor: pointer
    }

    nav .nav-main2 .main-cont .main-web-right .right-lang .lang-cont {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%
    }

    nav .nav-main2 .main-cont .main-web-right .right-lang .lang-cont .cont-icon {
        position: relative;
        width: 20px;
        height: 20px
    }

    nav .nav-main2 .main-cont .main-web-right .right-lang .lang-cont .cont-icon img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main2 .main-cont .main-web-right .right-lang .lang-cont .cont-icon .img2 {
        opacity: 0
    }

    nav .nav-main2 .main-cont .main-web-right .right-lang .lang-subnav {
        display: flex;
        justify-content: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        flex-direction: column;
        position: absolute;
        top: 1.2rem;
        left: 50%;
        width: 2.5rem;
        height: auto;
        padding: .2rem;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.21);
        opacity: 0;
        visibility: hidden;
        z-index: 59;
        transform: translate(-50%, .2rem);
        -o-transform: translate(-50%, .2rem);
        -moz-transform: translate(-50%, .2rem);
        -webkit-transform: translate(-50%, .2rem);
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main2 .main-cont .main-web-right .right-lang .lang-subnav::after {
        content: '';
        position: absolute;
        top: -24px;
        left: 50%;
        width: 44px;
        height: 37px;
        background: url(../images/common/icon-nav-arrow.png) no-repeat center;
        background-size: 100%;
        transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%)
    }

    nav .nav-main2 .main-cont .main-web-right .right-lang .lang-subnav .subnav-link {
        width: 100%;
        height: auto;
        font-size: .28rem;
        line-height: .46rem;
        text-align: center;
        color: #1c1d21;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main2 .main-cont .main-web-right .right-lang .lang-subnav .subnav-link:hover {
        color: #074C9C
    }

    nav .nav-main2 .main-cont .main-web-right .right-lang:hover .lang-cont .cont-arrow img {
        transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg)
    }

    nav .nav-main2 .main-cont .main-web-right .right-lang:hover .lang-subnav {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0)
    }

    nav .nav-main2 .main-cont .main-web-right .box-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 1rem;
        height: 100%;
        cursor: pointer
    }

    nav .nav-main2 .main-cont .main-web-right .box-menu img {
        width: .45rem;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main2 .main-cont .main-popup-suosou {
        position: absolute;
        top: 106px;
        left: 50%;
        display: none;
        width: 100%;
        height: auto;
        padding: .9rem 0 1.2rem;
        background: #fff;
        border-top: solid 1px #eee;
        z-index: 59;
        transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-items: center;
        width: 15.36rem;
        height: .75rem;
        margin: 0 auto;
        border-bottom: solid 1px #074C9C
    }

    nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box a {
        width: 16px;
        height: auto
    }

    nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box a img {
        width: 100%
    }

    nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box input {
        flex: 1;
        height: .75rem;
        padding: 0 .5rem;
        font-size: 16px;
        color: #333;
        background: none
    }

    nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box input::placeholder {
        font-size: 16px;
        color: #999
    }

    nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box .box-hidden {
        width: 22px;
        height: auto;
        cursor: pointer
    }

    nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box .box-hidden img {
        width: 100%;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .nav-main2 .main-cont .main-popup-suosou .sousuo-box .box-hidden:hover img {
        transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg)
    }

    nav .nav-main2:hover {
        background: #fff
    }

    nav .nav-main2:hover .main-cont .main-logo {
        border-right: solid 1px #ededed
    }

    nav .nav-main2:hover .main-cont .main-logo .img1 {
        opacity: 0
    }

    nav .nav-main2:hover .main-cont .main-logo .img2 {
        opacity: 1
    }

    nav .nav-main2:hover .main-cont .main-nav .nav-li .li-link {
        color: #333
    }

    nav .nav-main2:hover .main-cont .main-right .right-lang {
        border-left: solid 1px #ededed
    }

    nav .nav-main2:hover .main-cont .main-right .right-lang .lang-cont .cont-icon .img1 {
        opacity: 0
    }

    nav .nav-main2:hover .main-cont .main-right .right-lang .lang-cont .cont-icon .img2 {
        opacity: 1
    }

    nav .nav-main2:hover .main-cont .main-right .right-serach,
    nav .nav-main2:hover .main-cont .main-right .right-menu {
        border-left: solid 1px #ededed
    }

    nav .nav-main2:hover .main-cont .main-right .right-serach .img1,
    nav .nav-main2:hover .main-cont .main-right .right-menu .img1 {
        opacity: 0
    }

    nav .nav-main2:hover .main-cont .main-right .right-serach .img2,
    nav .nav-main2:hover .main-cont .main-right .right-menu .img2 {
        opacity: 1
    }

    nav .nav-cont2 {
        display: none
    }

    nav .Whead-search {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: #074C9C;
        z-index: 999;
        overflow: hidden;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .Whead-search .hide-pic {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 24px;
    }

    nav .Whead-search .search-input {
        position: absolute;
        bottom: .6rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 20px
    }

    nav .Whead-search .search-input .input-box {
        flex: 1;
        background: #ffffff;
    }

    nav .Whead-search .search-input .input-box input {
        width: 100%;
        height: 50px;
        padding: 8px 0;
        font-family: 'Arial';
        font-size: 16px;
        color: #333333;
        text-indent: 5px;
        background: rgba(255, 255, 255, 0);
        /* border-bottom: 1px solid #fff */
    }

    nav .Whead-search .search-input .input-box input::-webkit-input-placeholder {
        font-family: 'Arial';
        color: #999999
    }

    nav .Whead-search .search-input .input-box input:-moz-placeholder {
        font-family: 'Arial';
        color: #999999
    }

    nav .Whead-search .search-input .input-box input:-ms-input-placeholder {
        font-family: 'Arial';
        color: #999999
    }

    nav .Whead-search .search-input .input-icon {
        width: 70px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #1162bb;
        border-radius: 5px;
    }

    nav .sidebar-mask {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 119;
        opacity: 0;
        visibility: hidden;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .Whead-sidebar {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 0;
        background: #fff;
        overflow: scroll;
        z-index: 399;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .Whead-sidebar .sidebar-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%;
        height: 90px;
        padding: 0 15px;
        line-height: 90px;
        text-align: right;
        background: #fff;
        border-bottom: solid 1px #eee
    }

    nav .Whead-sidebar .sidebar-top .top-logo {
        width: 185px;
        height: auto
    }

    nav .Whead-sidebar .sidebar-top .top-logo img {
        width: 100%
    }

    nav .Whead-sidebar .sidebar-top .top-right {
        display: flex;
        justify-content: flex-end;
        width: auto;
        height: auto
    }

    nav .Whead-sidebar .sidebar-top .top-right .right-suosou {
        position: relative;
        width: 45px;
        height: 45px;
        margin-right: .4rem;
        border-radius: 50%;
        border: solid 2px #d2d2d2;
        cursor: pointer;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .Whead-sidebar .sidebar-top .top-right .right-suosou img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .Whead-sidebar .sidebar-top .top-right .right-hide {
        position: relative;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #074C9C;
        cursor: pointer;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .Whead-sidebar .sidebar-top .top-right .right-hide img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .Whead-sidebar .sidebar-top .top-icon2 {
        width: .4rem
    }

    nav .Whead-sidebar .sidebar-top .top-icon2 img {
        width: 100%
    }

    nav .Whead-sidebar .sidebar-top .box-lang {
        width: .6rem;
        height: .6rem;
        font-size: .26rem;
        text-align: center;
        line-height: .55rem;
        color: #1c1d21;
        border-radius: 50%;
        border: solid 1px #1c1d21
    }

    nav .Whead-sidebar .sidebar-nav {
        width: 100%;
        height: calc(100% - 1.3rem);
        padding: 0 .15rem;
        overflow-y: overlay
    }

    nav .Whead-sidebar .sidebar-nav::-webkit-scrollbar {
        width: 4px
    }

    nav .Whead-sidebar .sidebar-nav::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.12)
    }

    nav .Whead-sidebar .sidebar-nav .nav-item {
        width: 100%;
        height: auto;
        border-bottom: solid 1px #e3e3e3
    }

    nav .Whead-sidebar .sidebar-nav .nav-item .item-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 15px 0;
    }

    nav .Whead-sidebar .sidebar-nav .nav-item .item-top .top-title {
        flex: 1;
        font-size: 16px;
        font-weight: bold;
        color: #333;
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .Whead-sidebar .sidebar-nav .nav-item .item-top .top-icon {
        position: relative;
        width: 16px;
        height: 16px
    }

    nav .Whead-sidebar .sidebar-nav .nav-item .item-top .top-icon img {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translatey(-50%);
        -o-transform: translatey(-50%);
        -moz-transform: translatey(-50%);
        -webkit-transform: translatey(-50%);
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    nav .Whead-sidebar .sidebar-nav .nav-item .item-top .top-icon .img2 {
        opacity: 0
    }

    nav .Whead-sidebar .sidebar-nav .nav-item .item-top-active {
        border-bottom: solid 1px #e3e3e3
    }

    nav .Whead-sidebar .sidebar-nav .nav-item .item-top-active .top-title {
        color: #074C9C
    }

    nav .Whead-sidebar .sidebar-nav .nav-item .item-top-active .top-icon .img1 {
        opacity: 0
    }

    nav .Whead-sidebar .sidebar-nav .nav-item .item-top-active .top-icon .img2 {
        opacity: 1
    }

    nav .Whead-sidebar .sidebar-nav .nav-item .item-subnav {
        display: none;
        width: 100%;
        height: auto;
        padding-bottom: 25px;
    }

    nav .Whead-sidebar .sidebar-nav .nav-item .item-subnav .subnav-link {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        width: 100%;
        height: auto;
        padding: 15px;
        font-size: 14px;
        color: #666
    }

    header .banner {
        margin-top: 80px;
    }


    footer {
        width: 100%;
        height: auto;
        background: #242424
    }

    footer .foot-main {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin: 0 auto;
        /* padding: 0.8rem 0.3rem 0.3rem; */
        padding: 80px 30px 30px;
    }

    footer .foot-main .main-nav {
        display: none;
        justify-content: flex-start;
        width: auto;
        height: auto
    }

    footer .foot-main .main-nav .nav-item {
        width: 1.48rem;
        height: auto
    }

    footer .foot-main .main-nav .nav-item .item-title {
        display: block;
        font-size: 16px;
        font-weight: bold;
        color: #fff
    }

    footer .foot-main .main-nav .nav-item .item-cent {
        width: 100%;
        height: auto;
        margin-top: .4rem
    }

    footer .foot-main .main-nav .nav-item .item-cent a {
        display: block;
        font-size: 14px;
        line-height: 36px;
        color: #999
    }

    footer .foot-main .main-nav .nav-item .item-cent a:hover {
        color: #fff
    }

    footer .foot-main .main-right {
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
        width: 100%;
        height: auto
    }

    footer .foot-main .main-right .right-ewm {
        width: 130px;
        height: auto;
        align-self: center;
    }

    footer .foot-main .main-right .right-ewm img {
        width: 100%
    }

    footer .foot-main .main-right .right-ewm .ewm-title {
        margin-top: .1rem;
        font-size: 14px;
        text-align: center;
        color: #fff
    }

    footer .foot-main .main-right .right-intel {
        width: 40%;
        height: auto;
        margin-top: 0;
        text-align: left;
        color: #ffffff;
    }

    footer .foot-main .main-right .right-intel .foot-contact {
        color: #ffffff;
        display: block;
    }
    footer .foot-main .main-right .right-intel .foot-contact-pc{
        display: none;
    }

    footer .foot-main .main-right .right-intel .foot-margin {
        margin-bottom: 20px;
    }

    footer .foot-box {
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: .55rem .3rem;
        border-bottom: solid 1px #3a3a3a
    }

    footer .foot-box .box-link {
        font-size: .26rem;
        text-align: center
    }

    footer .foot-box .box-link span {
        display: none;
        color: rgba(255, 255, 255, 0.3)
    }

    footer .foot-box .box-link a {
        margin: 0 .1rem;
        color: #999
    }

    footer .foot-box .box-link a:hover {
        color: #fff
    }

    footer .foor-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 0 30px;
    }

    footer .foor-bottom .bottom-zizhi {
        font-size: 12px;
        line-height: .46rem;
        text-align: center;
        color: #999;
    }

    footer .foor-bottom .bottom-zizhi a {
        margin-left: .1rem;
        color: #999
    }

    footer .foor-bottom .bottom-zizhi a:hover {
        color: #fff
    }

    footer .foor-bottom .bottom-cont {
        display: none;
        width: auto;
        height: auto
    }

    footer .foor-bottom .bottom-cont a {
        margin-left: .3rem;
        color: #999
    }

    footer .foor-bottom .bottom-cont a:hover {
        color: #fff
    }

    footer .foot-main2 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: .75rem .3rem .8rem
    }

    footer .foot-main2 .main-left {
        width: 100%;
        height: auto
    }

    footer .foot-main2 .main-left .left-logo {
        width: 3.2rem;
        height: auto;
        margin: 0 auto
    }

    footer .foot-main2 .main-left .left-logo img {
        width: 100%
    }

    footer .foot-main2 .main-left .left-link {
        display: none;
        width: 100%;
        height: auto;
        margin-top: .4rem
    }

    footer .foot-main2 .main-left .left-link a {
        font-size: .26rem;
        color: #fff
    }

    footer .foot-main2 .main-left .left-link a:hover {
        color: #074C9C
    }

    footer .foot-main2 .main-left .left-link span {
        margin: 0 .2rem;
        font-size: .26rem;
        color: #fff
    }

    footer .foot-main2 .main-left .left-zizhi {
        display: none;
        margin-top: .3rem;
        font-size: 14px;
        color: #999
    }

    footer .foot-main2 .main-left .left-zizhi a {
        margin-left: .25rem;
        color: #999
    }

    footer .foot-main2 .main-left .left-zizhi a:hover {
        color: #fff
    }

    footer .foot-main2 .main-right {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        margin-top: .4rem
    }

    footer .foot-main2 .main-right .right-cent {
        width: 100%;
        height: auto
    }

    footer .foot-main2 .main-right .right-cent .cent-title {
        font-size: .26rem;
        text-align: center;
        color: #666
    }

    footer .foot-main2 .main-right .right-cent .cent-tel {
        margin-top: .1rem;
        
        font-size: .45rem;
        text-align: center;
        color: #fff
    }

    footer .foot-main2 .main-right .right-cent .cent-bottom {
        display: flex;
        justify-content: center;
        width: 100%;
        height: auto;
        margin-top: .2rem
    }

    footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item {
        position: relative;
        width: 43px;
        height: 43px;
        margin-right: .28rem;
        border-radius: 50%;
        background: #fff
    }

    footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item:last-of-type {
        margin-right: 0
    }

    footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 21px;
        transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item .img2 {
        opacity: 0
    }

    footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item:hover {
        background: #4d4948
    }

    footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item:hover .img1 {
        opacity: 0
    }

    footer .foot-main2 .main-right .right-cent .cent-bottom .bottom-item:hover .img2 {
        opacity: 1
    }

    footer .foot-main2 .main-right .right-ewm {
        width: 2.5rem;
        height: 2.5rem;
        margin-left: 0;
        margin-top: .3rem
    }

    footer .foot-main2 .main-right .right-ewm img {
        width: 100%
    }

    footer .foot-main2 .main-zizhi {
        display: block;
        margin-top: .3rem;
        font-size: .26rem;
        text-align: center;
        color: #999
    }

    footer .foot-main2 .main-zizhi a {
        margin-left: .25rem;
        color: #999
    }

    footer .foot-main2 .main-zizhi a:hover {
        color: #fff
    }



    .page-float {
        position: fixed;
        bottom: 0;
        right: 5px;
        width: 50px;
        height: auto;
        z-index: 29;
        opacity: 0;
        visibility: hidden;
        transform: translatey(-50%);
        -o-transform: translatey(-50%);
        -moz-transform: translatey(-50%);
        -webkit-transform: translatey(-50%);
        transition: opacity 0.5s,visibility 0.5s;
        -o-transition: opacity 0.5s,visibility 0.5s;
        -moz-transition: opacity 0.5s,visibility 0.5s;
        -webkit-transition: opacity 0.5s,visibility 0.5s;
    }

    .page-float .float-list {		
		display: flex;
		flex-direction: column;
		justify-content: center;
		position: relative;
		width: 100%;
        height: 50px;
		margin-bottom: 1px;
		background: rgba(0, 0, 0, 0.6);
    }

    .page-float .float-list .list-pic {
        width: 100%;
        height: auto;
        padding-top: 0;
        line-height: 50px;
        text-align: center;
        cursor: pointer
    }

    .page-float .float-list .list-pic img {
        width: 21px
    }

    .page-float .float-list .list-title {
        display: none;
        margin-top: .1rem;
        font-size: 14px;
        text-align: center;
        color: #fff
    }

    .page-float .float-list .list-cent {
        position: absolute;
        top: 0;
        left: -3.5rem;
        width: 3.5rem;
        height: auto;
        padding-right: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translatey(30px);
        -o-transform: translatey(30px);
        -moz-transform: translatey(30px);
        -webkit-transform: translatey(30px)
    }

    .page-float .float-list .list-cent .cent-title {
        position: relative;
        width: 100%;
        height: .6rem;
        font-size: .26rem;
        text-align: center;
        line-height: .6rem;
        color: #fff;
        background: #074C9C
    }

    .page-float .float-list .list-cent .cent-title::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 16px;
        height: 12px;
        margin-right: -16px;
        background: url(../images/common/icon-page-sanjiao.png) no-repeat left center;
        transform: translatey(-50%);
        -o-transform: translatey(-50%);
        -moz-transform: translatey(-50%);
        -webkit-transform: translatey(-50%)
    }

    .page-float .float-list .list-cent .cent-cont {
        padding: .2rem;
        font-size: .26rem;
        text-align: center;
        color: #333;
        background: #fff;
        box-shadow: 4px 10px 10px rgba(38, 93, 63, 0.2)
    }

    .page-float .float-list .list-cent .cent-cont img {
        width: 80%
    }

    .page-float .float-list:hover {
        /* background: #074C9C */
        background: rgba(0, 0, 0, 0.6);
    }

    .page-float .float-list:hover .list-pic {
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }

    .page-float .float-list:hover .list-cent {
        opacity: 1;
        visibility: visible;
        transform: translatey(0);
        -o-transform: translatey(0);
        -moz-transform: translatey(0);
        -webkit-transform: translatey(0);
        transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s
    }


    
    .pagination{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 40px auto 0;
    }
    .pagination a{
        margin: 0 5px;
        display: block;
        border: 1px solid #666666;
        text-align: center;
        color: #666666;
        background-color: #ffffff;
        width: 30px;
        height: 30px;
        font-size: 14px;
        border-radius: 50%;
        line-height: 30px;
    }

    .mr {
        margin-top: 1.2rem
    }

    header .head-strip {
        display: none;
    }

    header .head-Wnav {
        display: block
    }

    header .banner .banner_img {
        display: none;
    }

    header .banner .m_banner_img {
        display: block;
    }

    header .head-Wnav {
        position: relative;
        display: block;
        width: 100%;
        height: 50px;
        line-height: 50px;
        background: #074C9C;
        z-index: 69
    }

    header .head-Wnav .Wnav-top {
        
        font-size: 16px;
        text-transform: uppercase;
        color: #fff;
        background: url(../images/common/icon-web-xiasanjiao.png) no-repeat 96% center;
        background-size: 12px;
        padding: 0 .2rem
    }

    header .head-Wnav .top-on {
        background: url(../images/common/icon-web-shangsanjiao.png) no-repeat 96% center !important;
        background-size: 12px !important
    }

    header .head-Wnav .Wnav-ul {
        position: relative;
        width: 100%;
        height: auto;
        background: #fff;
        overflow: hidden;
        z-index: 99;
        transition: all .6s;
        -o-transition: all .6s;
        -moz-transition: all .6s;
        -webkit-transition: all .6s;
        padding-bottom: 15px;
    }

    header .head-Wnav .Wnav-ul .Wnav-li {
        width: 100%;
        height: 40px;
        line-height: 40px;
        padding: 0 .2rem;
        
        font-size: 14px;
        text-transform: uppercase;
        color: #000;
        border-bottom: solid 1px #ccc
    }

    header .head-strip {
        display: none
    }


    .big-title .title-content h2 {
        font-size: 32px;
    }

}


/* ie hack */

.ie.ie7 .clearfix {
    clear: both
}

.ie.ie7 .colChild {
    margin-left: 15px;
    margin-right: 15px
}

.ie.ie7 .container,
.ie.ie8 .container {
    width: 960px;
    margin: 0 auto
}

.ie.ie7 .container,
.ie.ie7 .container-fluid {
    padding: 0
}

.ie.ie7 .row {
    padding: 0;
    margin: 0
}

.ie.ie7 .col-md-1,
.ie.ie8 .col-md-1 {
    width: 8.2%;
    float: left
}

.ie.ie7 .col-md-2,
.ie.ie8 .col-md-2 {
    width: 16.5%;
    float: left
}

.ie.ie7 .col-md-3,
.ie.ie8 .col-md-3 {
    width: 25%;
    float: left
}

.ie.ie7 .col-md-4,
.ie.ie8 .col-md-4 {
    width: 33.2%;
    float: left
}

.ie.ie7 .col-md-5,
.ie.ie8 .col-md-5 {
    width: 41.5%;
    float: left
}

.ie.ie7 .col-md-6,
.ie.ie8 .col-md-6 {
    width: 50%;
    float: left
}

.ie.ie7 .col-md-7,
.ie.ie8 .col-md-7 {
    width: 58.2%;
    float: left
}

.ie.ie7 .col-md-8,
.ie.ie8 .col-md-8 {
    width: 66.5%;
    float: left
}

.ie.ie7 .col-md-9,
.ie.ie8 .col-md-9 {
    width: 75%;
    float: left
}

.ie.ie7 .col-md-10,
.ie.ie8 .col-md-10 {
    width: 83.2%;
    float: left
}

.ie.ie7 .col-md-11,
.ie.ie8 .col-md-11 {
    width: 91.5%;
    float: left
}

.ie.ie7 .col-md-12,
.ie.ie8 .col-md-12 {
    width: 100%;
    float: left
}

.ie.ie7 .col-md-1,
.ie.ie7 .col-md-2,
.ie.ie7 .col-md-3,
.ie.ie7 .col-md-4,
.ie.ie7 .col-md-5,
.ie.ie7 .col-md-6,
.ie.ie7 .col-md-7,
.ie.ie7 .col-md-8,
.ie.ie7 .col-md-9,
.ie.ie7 .col-md-10,
.ie.ie7 .col-md-11,
.ie.ie7 .col-md-12 {
    padding: 0
}

.ie.ie8 .navbar-collapse.collapse,
.ie.ie7 .navbar-collapse.collapse {
    float: left;
    display: block;
    visibility: visible;
    border: none;
    border-width: 0;
    border-color: transparent
}

.ie.ie8 .navbar-header,
.ie.ie7 .navbar-header {
    display: block;
    float: left
}

.ie.ie8 .navbar-header>.navbar-toggle,
.ie.ie7 .navbar-header>.navbar-toggle {
    display: none;
    visibility: hidden
}

.ie.ie8 .navbar-header>.navbar-brand,
.ie.ie7 .navbar-header>.navbar-brand {
    height: auto
}

.ie.ie8 .nav.navbar-nav,
.ie.ie7 .nav.navbar-nav {
    margin: 0
}

.ie.ie8 .nav.navbar-nav>li,
.ie.ie7 .nav.navbar-nav>li {
    float: left
}

.ie.ie7 .media .media-left,
.ie.ie7 .media .media-body {
    float: left
}

.ie.ie7 .media .media-body:after {
    content: " ";
    display: block;
    clear: both
}

.ie.ie7 .media .media-left {
    margin-right: 10px
}

.ie.ie8 .navbar-nav>li>a,
.ie.ie7 .navbar-nav>li>a {
    padding-top: 17px;
    padding-bottom: 17px;
    line-height: 16px
}

.ie.ie7 .list-group {
    border-top: 1px solid #ddd
}