html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: Arial;
}

html.menu_open,
body.menu_open {
    overflow: hidden;
}

.go_top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: url(../images/gotop.png) center no-repeat #006f68;
    border-radius: 50%;
    background-size: 50% auto;
    cursor: pointer;
    display: none;
    z-index: 10;
}

.code_box {
    position: relative;
    z-index: 11;
    cursor: pointer;
}

.code_box::before {
    content: "";
    height: 20px;
    width: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    /* background: url(../images/header02_ico3.svg) left center no-repeat; */
    background-size: auto 100%;
}

.code_box .code {
    position: absolute;
    top: -30px;
    right: 100%;
    padding: 8px;
    display: none;
    white-space: nowrap;
    z-index: 10;
}

.code_box .code .box {
    display: inline-block;
    vertical-align: top;
    background: #fff;
    width: 90px;
}

.code_box .code span {
    display: block;
    padding: 6px 4px 6px;
    min-height: 32px;
    line-height: 16px;
    color: #4f5050;
    white-space: normal;
    text-align: center;
    font-size: 12px;
}

.code_box .code img {
    display: block;
    width: 100%;
}

.code_box:hover .code {
    display: block;
}

@media screen and (max-width: 1480px) {
    .go_top {
        /* width: 32px; */
        /* height: 32px; */
    }
}


/* common search input */

.search_btn {
    height: 50px;
    z-index: 600;
    width: 50px;
    position: relative;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    margin: 0 0 0 10px;
    background: url(../images/search_btn.png) center no-repeat;
    z-index: 999;
}

.search_box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
}

.search_box.on {
    display: block;
}

.search_box .close {
    background: url(../images/close.png) center no-repeat;
    background-size: 60%;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 50px;
    top: 50px;
    cursor: pointer;
}

.ser {
    height: 45px;
    width: 500px;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.ser .search {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.ser .search input.notxt {
    width: calc(100% - 150px);
    padding: 0 0 0 20px;
}

.ser .search input.notxt1 {
    width: 120px;
    font-size: 0;
    bottom: 0;
    background: url(../images/search.png) center no-repeat #2663d0;
}

.subNavs {
    min-width: 220px;
    position: absolute;
    left: 50%;
    top: 56px;
    display: none;
    padding: 5px 16px;
    box-sizing: border-box;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.subNavs dd {
    padding: 10px 0;
    background: #f6f9ff;
    box-sizing: border-box;
    margin-bottom: 1px;
}

.subNavs dd:hover a {
    color: #006f68;
    opacity: 0.8;
}


/* .subNavs::before {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #2663d0;
	position: absolute;
	left: 0;
	top: 0;
} */

.subNavs a {
    display: block;
    font-size: 17px;
    line-height: 20px;
    color: #292929;
    word-break: break-word;
}

.subNav a:hover {
    color: #7cbe2c;
}

.nav li:hover .subNavs {
    /* -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
    animation-duration: 0.6s;
    -webkit-animation-duration: 0.6s; */
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    display: block;
}

@keyframes fadeInUpSmall {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}


/* common top menu */

.menu_box {
    position: fixed;
    transform: translate(100%, 0);
    transition: all 1s ease-in-out;
    display: none;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
    z-index: 9999;
    overflow: hidden;
    background: #082623;
    background: -webkit-linear-gradient(14deg, #4cbfa8, #082623);
    background: -o-linear-gradient(14deg, #4cbfa8, #082623);
    background: -moz-linear-gradient(14deg, #4cbfa8, #082623);
    background: linear-gradient(14deg, #4cbfa8, #082623);
}

.menu_open .menu_box {
    transform: translate(0%, 0);
    height: 100vh;
    display: block;
}

.menu_box::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/navbbg02.jpg);
    background-size: cover;
}

.menu_box .line {
    clear: both;
    background: rgba(255, 255, 255, 0.3);
    height: 1px;
    position: relative;
    z-index: 2;
}

.menu_box .top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    margin: 0 auto;
    padding: 10px 0 10px;
    position: relative;
    z-index: 3;
    margin-bottom: 3rem;
}

.menu_box .top .logo {
    display: inline-block;
}

.menu_box .top .rt {
    float: right;
    padding: 30px 0px 0 0;
}

.menu_box .top .code_box,
.menu_box .top .close {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    /* padding: 0 0 0 28px; */
    /* margin: 0 0 0 10px; */
    line-height: 28px;
}

.menu_box .top .rt a {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 10px;
}

.menu_box .top .rt a::before {
    content: "";
    display: block;
    height: 13px;
    width: 1px;
    background: #e0e0e0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.menu_box .top .rt a:first-child:before {
    display: none;
}

.header1 .top_links a:hover {
    color: #fff;
}

.menu_box .top .rt a.gp-serBtn2 {
    display: inline-block;
    width: 110px;
    line-height: 20px;
    margin-right: 10px;
    height: 22px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    text-align: left;
    border-radius: 20px;
    display: inline-block;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.menu_box .top .rt a.gp-serBtn2 span {
    margin-right: 10px;
}

.menu_box .top .rt a.gp-serBtn2::before {
    display: none;
}

.menu_box .top .close {
    /*width: 32px;
     height: 32px;
     */
    /*background: url(../images/cl.png) no-repeat;
     border-radius: 50%;
     */
    width: 30px;
    height: 28px;
    line-height: 28px;
    background: #fff;
    padding: 0;
    color: #175967;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.menu_box .top .close span {
    line-height: 28px;
}

.menu_box .nav {
    position: relative;
    z-index: 2;
    height: calc(100vh - 150px);
    overflow: auto;
}


/* .menu_box .nav::-webkit-scrollbar{width: 4px;} */

.menu_open .header1 .logo {
    background: none;
    width: 42%;
}

.menu_box .nav ul {
    font-size: 0;
    text-align: justify;
    text-justify: inter-ideograph;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    /* width: 92.18vw; */
}

.menu_box .nav ul::after {
    content: "";
    width: 100%;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    height: 0;
}

.menu_box .nav ul>li {
    position: relative;
    max-width: 14%;
    /* text-align: center; */
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
}

.menu_box .nav ul li>a {
    font-size: 2rem;
    display: block;
    position: relative;
    color: #fff;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 40px;
}

.menu_box .subNav {
    width: 100%;
    white-space: normal;
}

.menu_box .subNav dd {
    margin-bottom: 30px;
}

.menu_box .subNav a {
    /* padding: 5px 0; */
    display: block;
    line-height: 24px;
    font-size: 1.6rem;
    text-align: left;
    color: #fff;
    opacity: 0.8;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
}

.menu_box .subNav dd a:hover {
    opacity: 1;
}

@media screen and (max-width: 1240px) {
    .menu_box .top {
        max-width: 96vw;
    }
    /* .menu_box .top .logo {
        width: 300px;
        height: 55px !important;
    } */
    .menu_box .top .rt {
        padding-right: 0;
        padding-top: 10px;
    }
    .menu_box .top .rt a,
    .menu_box .top .code_box,
    .menu_box .top .close {
        /* margin: 0 0 0 24px; */
    }
    .menu_box .nav {}
    .menu_box .nav ul {
        /* margin: 0 15px; */
        /* width: calc(100% - 30px); */
    }
    .menu_box .nav ul li {
        /* width: 100px; */
        /* padding: 0 20px 0 0; */
    }
    .menu_box .nav ul li>a {
        font-size: 16px;
        line-height: 1.5;
        /* height: 50px; */
    }
    .menu_box .subNav {
        max-height: calc(100vh - 180px);
    }
    .menu_box .subNav a {
        line-height: 1.5;
        font-size: 14px;
    }
}

@media screen and (max-width: 1040px) {
    .go_top {
        /* bottom: 300px; */
    }
    /* .menu_box .top .logo {
        width: 240px;
        height: 42px !important;
    } */
    .menu_box .top .rt {
        padding: 0;
    }
    .menu_box .top .rt a,
    .menu_box .top .code_box,
    .menu_box .top .close {
        /* margin: 0 0 0 16px; */
    }
    .menu_box .nav ul li {
        width: auto;
        position: relative;
        padding: 0;
        display: block;
    }
    .menu_box .nav ul li .arrow {
        position: absolute;
        right: 0px;
        height: 50px;
        top: 0;
        width: 50px;
    }
    .menu_box .subNav {
        display: none;
        padding: 0 0 0 20px;
    }
    .code_box .code {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        top: 100%;
    }
}

@media screen and (max-width: 768px) {
    .ser {
        width: calc(100% - 40px);
    }
    .ser .search input.notxt1 {
        width: 60px;
    }
    .ser .search input.notxt {
        width: calc(100% - 100px);
    }
    .search_box .close {
        width: 50px;
        height: 50px;
        right: 30px;
    }
    .menu_box .top {
        padding: 10px 0;
        margin-bottom: 20px;
    }
    .menu_box .top .rt {
        width: auto;
        float: none;
        position: relative;
        padding: 0 0 10px;
    }
    /* .menu_box .top .rt a,
    .menu_box .top .code_box,
    .menu_box .top .close {
        margin: 0 16px 0 0;
    } */
    .menu_box .top .close {
        margin: 0;
        position: absolute;
        right: 0;
        top: 0;
    }
}

@media screen and (max-width: 480px) {
    .code_box .code {
        left: 0;
        transform: none;
    }
}

@media screen and (max-width: 413px) {
    /* .menu_box .top .logo {
        width: 190px;
        height: 31px !important;
    } */
    .menu_box .menu_btn,
    .menu_box .ser_btn,
    .menu_box .code_box {
        margin: 0 0 0 0px;
    }
    .menu_box .top .rt a,
    .menu_box .top .code_box {
        /* padding: 0; */
        /* background-image: none; */
        /* margin: 0 10px 0 0; */
    }
    .code_box::before {
        display: none;
    }
    /* .menu_box .top .rt a i,
    .menu_box .top .code_box i {
        display: none;
    } */
    .menu_box .top .rt a.ser_btn i {
        display: block;
    }
}

.fnav {
    align-items: stretch;
}


/* home header */

.header1 {
    width: 100%;
    position: relative;
}

.header1::after {
    content: "";
    display: block;
    height: 46px;
    width: 100%;
    background: rgb(0, 76, 64, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    /* 
    top: 50%;
    transform: translateY(-50%); */
}


/* .header1 .logo {
	display: block;
	width: 445px;
	position: relative;
	z-index: 10;
	left: 25px;
} 

.header1 .row {
  max-width: calc(100% - 10vw);
}
*/

.header2 .row {
    max-width: 1400px !important;
}

.logolist,
.logolist ul {
    display: inline-block;
    width: 373px;
    height: 78px;
    z-index: 2;
    position: relative;
}

.header1 .logo {
    display: inline-block;
    width: 757px;
    position: relative;
    z-index: 999;
}

.header1 .scrolllogo {
    display: none;
}

.header1 .h1 {
    padding: 90px 0 40px;
    position: relative;
    background: url(../images/topbgs.jpg) no-repeat;
    background-size: 100% 100%;
}

.header1 .h1::before {
    content: "";
    display: block;
    width: 100%;
    height: 46px;
    background: rgb(000, 000, 000, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
}

.header1 .h3 {
    position: relative;
}

.header1 .h3::before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: #2663d0;
    position: absolute;
    left: 0;
    top: 0;
}

.header2 .h3 .row {
    max-width: 1400px;
}

.header1 .hlist {
    padding: 30px 0;
}

.header1 .hlist .row {
    max-width: 1400px;
}

.header1 .h1 .rt {
    text-align: right;
    top: -90px;
    right: 0px;
    z-index: 10;
}
.h0{
    min-width:200px;
  position: absolute;
  top: -80px;
  left: 0;
  z-index: 10;
}
.h0 .lt{
    color: #fff;
     opacity: 0.8;
}
.header1 .top_links {
    font-size: 0;
}

.header1 .top_links a {
    line-height: 24px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 10px;
    opacity: 0.8;
}

.header1 .top_links a::after {
    content: "";
    display: block;
    height: 13px;
    width: 1px;
    background: #e0e0e0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header2 .top_links a::after {
    background: #2663d0;
}

.header1 .top_links a:nth-child(1)::after,
.header1 .top_links a:first-child:before {
    display: none;
}

.header1 .top_links a:hover {
    opacity: 1;
}

.header1 .h1 .top_links a.back {
    width: 133px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    margin-right: 10px;
    padding-left: 40px;
    box-sizing: border-box;
    text-align: left;
    color: #2663d0;
    color: #2663d0;
    background: #d4b96a;
}

.header2 .h1 .top_links a.back {
    background: none;
    color: #2663d0;
    border: 1px solid #2663d0;
}

.header1 .h1 .top_links a.back::before {
    content: "";
    display: block;
    width: 16px;
    height: 13px;
    background: url(../images/back.png) no-repeat;
    position: absolute;
    background-size: 15px;
    left: 14px;
    top: 50%;
    margin-top: -6.5px;
}

.header1 .h3 .top_links a.back {
    color: #2663d0;
    border: 1px solid #2663d0;
}

.header1 .top_links a:nth-child(2)::before {
    display: none;
}

.gp-search4 {
    height: 0;
    border: none;
    width: 100% !important;
    overflow: hidden;
    position: fixed !important;
    top: 50%;
    z-index: 802;
    left: 0;
    margin: 0;
    display: inline-block;
}

.header1 .top_links a.gp-serBtn2 {
    width: 110px;
    line-height: 22px;
    height: 22px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    text-align: left;
    border-radius: 20px;
    display: inline-block;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.header1 .top_links a.gp-serBtn2 span {
    margin-right: 10px;
}

.header1 .top_links a.gp-serBtn2::after {
    display: none;
}

.gp-overlay,
.gp-overlay2 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 800;
    background: #006f68;
    opacity: 0.8;
    filter: alpha(opacity=80);
    display: none;
    left: 0;
}

.gp-search4 .gp-ser {
    display: none;
    border: none;
    width: 80%;
    max-width: 800px;
    height: 100%;
    z-index: 9999994;
    margin: 0 auto;
    position: relative;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .03);
}

.gp-search4 input,
.gp-search4 button {
    position: absolute;
    height: 100%;
    line-height: 100%;
    border: none;
    background: none;
    top: 0px;
    overflow: hidden;
}

.gp-search input.notxt {
    color: rgba(0, 0, 0, 0.3);
    width: 75%;
    left: 0;
    padding: 0 5%;
    border: none;
    background: none;
    top: 0px;
    overflow: hidden;
    box-sizing: border-box;
    outline: none;
    position: absolute;
}

.gp-search4 .notxt1 {
    background: #006f68 no-repeat center;
    position: absolute;
    background-size: 20px;
    width: 25% !important;
    height: 100% !important;
    right: 0;
    font-size: 16px;
    cursor: pointer;
    color: #fff !important;
        border: 1px solid #fff;
}

.gp-search4.active .gp-ser {
    display: block;
}

.gp-search4.active {
    height: 50px;
}

.header1 .h1 .ser_btn {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2663d0;
    margin: 0 0 0 37px;
    line-height: 28px;
    text-align: center;
    color: #fff;
}

.header1 .h1 .menu_btn {
    display: inline-block;
    vertical-align: middle;
    width: 46px;
    height: 46px;
    margin: 0 0 0 0;
    /* background: #2663d0; */
    text-align: center;
    color: #fff;
    cursor: pointer;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.header1 .h1 .menu_btn span {
    width: 16px;
    height: 2px;
    background-color: #fff;
    display: block;
    border-radius: 0px;
    top: 19px;
    left: calc(50% - 8px);
    position: absolute;
}

.header1 .h1 .menu_btn span:nth-child(1) {}

.header1 .h1 .menu_btn span:nth-child(2) {
    transform: translateY(4px) rotate(0deg);
}

.header1 .h1 .menu_btn span:nth-child(3) {
    transform: translateY(8px) rotate(0deg);
}

.header1 .h2 {
    position: relative;
    background: #f1f7f0;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

.header2 .h2 {
    width: 65%;
}

.header1 .h3 .h2 .subNavs {
    background: #f2f7f7;
}

.header1 .h2 .nav {
    font-size: 0;
    text-align: justify;
    text-justify: inter-ideograph;
    overflow: visible !important;
    width: calc(100% - 0px);
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 0px;
    transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

.header1 .h2 .nav::after {
    content: '';
    width: 100%;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}

.header1 .h2 .nav>li {
    text-align: center;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    transform: perspective(5000px);
    -moz-transform: perspective(5000px);
    -o-transform: perspective(5000px);
    -webkit-transform: perspective(5000px);
}

.header1 .h2 .nav>li>a {
    font-size: 20px;
    display: block;
    position: relative;
    color: #485452;
    line-height: 56px;
    height: 56px;
}

.header2 .h2 .nav>li>a {
    color: #333;
}

.header1 .toplogo02 {
    display: none;
}


/* .nav>li>a::before {
    content: "";
    width: 0;
    height: 4px;
    background-color: #7cbe2c;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transition: all 0.35s ease-out;
    border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
}

.nav>li:hover>a::before,
.nav>li.on>a::before {
    width: 70px;
} */

@media screen and (min-width: 1040px) {
    .header1.scroll {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        box-shadow: 0 4px 4px rgb(0, 51, 52, .5);
    }
    .header1.scroll::after {
        display: none;
    }
    .header1 .h1::before {
        display: none;
    }
    .header1.scroll .h1 .rt,
    .header1.scroll .h1 {
        display: none;
    }
    .header1.scroll .h1 .row {
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header1.scroll .logo,
    .header1.scroll .logolist {
        display: none;
        width: 180px;
        height: 74px !important;
    }
    .header1.scroll .scrolllogo {
        display: block;
    }
    .header1 .logo img.toplogo01 {
        width: 1190px;
    }
    /* .header1 .logo img.toplogo02 {
    width: 18.4rem;
  } */
    .header1.scroll .h2 {
        background: #006f68;
    }
    .header1.scroll .h2 .nav>li>a {
        font-size: 17px;
        color: #fff;
        font-weight: normal;
        height: 74px;
        line-height: 74px;
    }
    .header1.scroll .h2 .nav .subNavs {
        top: 60px;
    }
    .header1::before {
        /* background: rgba(12, 24, 32, .3); */
        background: -o-linear-gradient( bottom, rgba(12, 24, 32, 0.3), rgba(12, 24, 32, 0));
        background: -moz-linear-gradient( bottom, rgba(12, 24, 32, 0.3), rgba(12, 24, 32, 0));
        background: -webkit-linear-gradient( bottom, rgba(12, 24, 32, 0.3), rgba(12, 24, 32, 0));
        background: linear-gradient( to bottom, rgba(12, 24, 32, 0.3), rgba(12, 24, 32, 0));
    }
}

@media screen and (max-width: 1560px) {
    .header1 .h2 .nav>li>a {
        font-size: 18px;
    }
    .subNavs a {
        font-size: 15px;
    }
    .header1 .logo {
        width: 610px;
    }
    .header1 .h1 {
        padding: 70px 0 30px;
    }
    .header1 .h1 .rt {
        top: -70px;
    }
    .h0{
        top: -60px;
    }
}

@media screen and (max-width: 1480px) {
    .header1 .logo {
        width: 470px;
    }
    .header1 .h2 .nav>li>a {
        font-size: 16px;
    }
    .subNavs a {
        font-size: 12px;
    }
	.header1::after{
		height:42px;
	}
}

.header1 .top_links a:nth-child(1) {
    font-size: 14px;
}

@media screen and (max-width: 1680px) {
    .header1 .h1 .row {
        max-width: calc(100vw - 220px);
    }
}

@media screen and (max-width: 1460px) {
    .header1 .h1 .row {
        max-width: calc(100vw - 120px);
    }
}

@media screen and (max-width: 1240px) {
    .header1 .h1 .row {
        max-width: calc(100vw - 120px);
        padding: 0 !important;
    }
}

@media screen and (max-width: 1200px) {
    .header1 .h2 .nav>li>a {
        font-size: 16px;
    }
    .subNavs a {
        font-size: 14px;
    }
    .bah {
        display: block;
        margin: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width: 1100px) {
    .header1 .h1 .row {
        max-width: calc(100vw - 20px);
    }
    .header1 .h2 .nav>li>a {
        font-size: 16px;
    }
    .subNavs a {
        font-size: 14px;
    }
    .go_top {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

@media screen and (max-width: 768px) {
    .header1 .toplogo02 {
        display: block;
    }
    .header1 .toplogo01 {
        display: none;
    }
    /* .header1::before {
    padding-bottom: calc(521% / 19.2);
  } */
}

@media screen and (max-width: 479px) {}


/* 二级页nav position */

.header2 {
    position: relative;
}

.header2 .h1::before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: #2663d0;
    position: absolute;
    left: 0;
    top: 0;
}

.header2 .h1 .top_links a {
    color: #2663d0;
}

.header2 .h1.top_links a::before {
    background: #2663d0;
}


/* link */

.linkFoot {
    flex-wrap: wrap;
    justify-content: flex-start;
    /* align-items:stretch;
    justify-content:flex-start;
    padding-bottom: 50px; */
}

.linkFoot li {
    flex: 0 0 auto;
    width: 25%;
    margin-bottom: 20px;
}


/* footer */

.footerins {
    padding-top: 40px;
    padding-bottom: 1.6rem;
    align-items: stretch;
}

.indexfootLK .footerins {
    padding-top: 11rem;
}

footer {
    position: relative;
    background: #006f68;
    color: #fff;
    padding: 50px 0;
}


/* .fnav {
    align-items: stretch;
}

.footerins .flex {
    display: flex;
    flex-wrap: wrap;
} */


/* .footerLis li:last-child{
 min-width: 22.2rem;
} */

.footerLis li {
    margin-bottom: 10px;
}


/* .footerLis li dl:first-child {
    height: 28rem;
} */

.ftop dl dt {
    margin-bottom: 2.2rem;
}

.footerLis li:nth-child(3) dl {
    max-width: 37rem;
}

.footerLis li:nth-child(3) dd {
    float: left;
    width: 46%;
    padding-right: 4%;
}

.footerLis li:nth-child(4) dl {
    max-width: 22rem;
}

.footerLis li:nth-child(5) dl {
    width: 35rem;
}

.footerLis li:nth-child(6) dl {}

.footerLis li:nth-child(7) dl {
    width: 21rem;
}

.footerLis li:last-child dl {
    width: 22rem;
}

.ftop dl dt a {
    color: #fff;
}

.ftop dl dd {
    transition: 0.3s;
    opacity: 0.5;
    position: relative;
    line-height: 1.5;
    margin-bottom: 10px;
}

.ftop dl dd a {
    font-size: 15px;
    color: #b8d6f3;
}

.ftop dl dd:hover {
    opacity: 1;
}

.ftop dl dd:hover a {
    color: #fff;
}

.footer01 {
    background: #7bbd2c;
    padding: 20px 0;
}

.footer01 p {
    color: #fff;
}

.footerLis {
    /* flex: 0 0 auto; */
    width: 70%;
    float: left;
}

.footerLogor {
    justify-content: flex-start;
    /* 主轴上的项目从左侧开始排列 */
}

.fotimgr {
    flex: 0 0 auto;
    width: 35%;
}

.footer01_in {
    flex: 1 1 auto;
    margin-left: 40px;
    padding-left: 83px;
    position: relative;
}

#_ideConac {
    position: absolute;
    left: 0;
    top: 0;
}

.footer01_in p {
    position: relative;
    color: #fff;
    display: inline-block;
    margin-top: 14px;
}
.footer01_in p span{
    margin-right: 4px;
}
.footer01_in p .cyicon {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    width: 24px;
    height: 24px;
    line-height: 21px;
    font-size: 14px;
    border-radius: 50%;
    border: 1px solid #fff;
    padding: 1px;
    text-align: center;
}

.footbom {
    padding: 1.4rem 0;
    background-color: #7bbd2c;
}

.footbom p {
    color: #fff;
    opacity: 0.9;
}

.footbom p span {
    display: inline-block;
    margin-left: 10px;
}

@media screen and (max-width: 1024px) {
    .list::before {
        width: 100% !important;
    }
    .listline::before,
    .listline::after {
        display: none !important;
    }
    .header1 .h2,
    .header1 .top_links a,
    .header1 .h1 .rt2 {
        display: none;
    }
    .menu_box .nav ul li a {
        color: #fff;
        font-weight: bold !important;
        font-size: 26px;
        font-weight: normal;
        /* height: 60px; */
        /* line-height: 60px; */
    }
    .nav ul li,
    .subNav dd a {
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: returnToNormal;
        animation-name: returnToNormal;
    }
    .menu_box .subNav a {
        height: 30px !important;
        line-height: 30px !important;
        font-size: 20px !important;
    }
    @-webkit-keyframes returnToNormal {
        from {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }
        to {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }
    @keyframes returnToNormal {
        from {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }
        to {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }
    .menu_box .nav ul li .arrow {
        position: absolute;
        right: 0px;
        height: 60px;
        top: 0;
        width: 20px;
        transition: all 0.3s ease-in-out;
    }
    .menu_box .nav ul li .arrow::before {
        content: "";
        display: block;
        border-top: 6px solid #fff;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        position: absolute;
    }
    .menu_box .nav ul li.on .arrow {
        transform: rotate(-180deg);
    }
    .menu_box .subNav {
        display: none;
        padding-left: 20px;
        box-sizing: border-box;
    }
    .header1 .logo {
        width: 90%;
    }
    .header1 .h1 .menu_btn {
        width: 36px;
        height: 36px;
        margin-left: 5px;
    }
    .header1 .h1 .menu_btn span {
        top: 14px;
    }
    .menu_box .nav ul li {
        width: auto;
        position: relative;
        padding: 0;
        display: block;
    }
    .header1 .h1 .menu_btn {
        width: 50px;
        height: 50px;
        margin: 0;
        padding: 0;
    }
    .header1 .h1 .rt .menu_btn span {
        width: 24px;
        height: 3px;
        left: calc(50% - 12px);
        top: 11px;
    }
    .header1 .h1 .rt .menu_btn i {
        position: static;
    }
    .header1 .rt .top_links a.gp-serBtn2 {
        width: 28px;
        height: 28px;
        background: url(../images/serbtn2.png) no-repeat center;
        background-size: 28px 28px;
    }
    .header1 .h1 .rt .menu_btn span:nth-child(1) {
        animation-duration: 0.5s;
        animation-fill-mode: both;
        animation-name: outfirst2;
    }
    .header1 .h1 .rt .menu_btn span:nth-child(2) {
        animation-duration: 0.5s;
        animation-fill-mode: both;
        animation-name: outsecond2;
    }
    .header1 .h1 .rt .menu_btn span:nth-child(3) {
        animation-duration: 0.5s;
        animation-fill-mode: both;
        animation-name: outthird2;
    }
    @keyframes outfirst2 {
        0% {
            transform: translateY(0) rotate(-45deg);
        }
        100% {
            transform: translateY(6px) rotate(0deg);
        }
    }
    @keyframes outsecond2 {
        0% {
            transform: translateY(0) rotate(45deg);
        }
        100% {
            transform: translateY(0px) rotate(0deg);
        }
    }
    @keyframes outthird2 {
        0% {
            transform: translateY(0) rotate(90deg);
        }
        100% {
            transform: translateY(12px) rotate(0deg);
        }
    }
    .menu_open .h1 .rt .menu_btn span:nth-child(1) {
        animation-duration: 0.5s;
        animation-fill-mode: both;
        animation-name: clicksecond;
    }
    .menu_open .h1 .rt .menu_btn span:nth-child(2) {
        animation-duration: 0.5s;
        animation-fill-mode: both;
        animation-name: clickthird;
    }
    .menu_open .h1 .rt .menu_btn span:nth-child(3) {
        animation-duration: 0.5s;
        animation-fill-mode: both;
        animation-name: clickfirst;
    }
    @keyframes clickfirst {
        0% {
            transform: translateY(0px) rotate(0deg);
        }
        100% {
            transform: translateY(12px) rotate(45deg);
        }
    }
    @keyframes clicksecond {
        0% {
            transform: translateY(0px) rotate(0deg);
        }
        100% {
            transform: translateY(11px) rotate(-45deg);
        }
    }
    @keyframes clickthird {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 0;
        }
    }
    .menu_box .nav ul li {
        width: auto;
        max-width: 100%;
        position: relative;
        padding: 0;
        display: block;
    }
    .menu_box .nav ul li>a {
        height: auto;
    }
    .menu_box .top {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    .header1 .top_links a {
        padding: 0;
        margin-top: 0px !important;
        display: none !important;
    }
    .header1 .top_links a:nth-child(1) {
        display: inline-block;
        font-size: 24px;
    }
    .header1 .top_links a::before {
        display: none;
    }
    .menu_box .nav {
        height: auto;
    }
    .menu_box .nav ul li:last-child a {
        border: none;
    }
}

@media screen and (max-width: 768px) {
    /* .header1 .h1 {
        padding: 0;
    }
    .header1 .logo {
        width: 170px;
    } */
    .header1 .top_links a {
        padding: 0 5px !important;
        margin-top: 0px !important;
        font-size: 16px !important;
    }
    .header1 .h1 .menu_btn {
        margin-top: 0;
        height: 17px;
        margin-left: 5px;
    }
    .menu_box {
        height: auto;
        margin-top: 0;
    }
    .menu_box .nav ul li a {
        font-size: 20px !important;
    }
    .menu_box .nav ul li .subNav a {
        font-size: 18px !important;
    }
    .f2 .text {
        float: none;
        text-align: center;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1240px) {
    .header2 .h1 a {
        /* margin: 0 0 0 30px; */
    }
    .header2 .h2 .rt a,
    .header2 .h2 .code_box {
        margin: 0 0 0 16px;
    }
    /* .header2 .h2 .menu_btn,.header2 .h2 .ser_btn,.header2 .h2 .code_box{margin: 0 0 0 20px;} */
    .header2 .h2 .logo {
        width: 360px;
    }
    .header2 .h2 .rt {
        padding: 8px 0 0;
    }
}

@media screen and (max-width: 997px) {
    .header2 .h2 .rt a,
    .header2 .h2 .code_box {
        display: none;
    }
    .menu_box .nav ul li .arrow {
        height: 24px;
    }
    .mode62 {
        flex-wrap: wrap !important;
    }
    .mode62 li {
        width: 33.33% !important;
        margin-bottom: 25px !important;
    }
    .menu_box .nav ul li a {
        font-size: 18px !important;
        /* height: 50px; */
        /* line-height: 50px; */
        margin-bottom: 10px;
    }
    .menu_box .nav ul li .subNav a {
        font-size: 16px !important;
    }
    .header2 .h2 {
        padding: 25px 0;
    }
    .header2 .h2 .menu_btn .sub_03_menu .only_mob {
        text-align: center;
    }
    .header2 .h2 .menu_btn .sub_03_menu .only_mob a {
        display: inline-block;
        vertical-align: middle;
        background: left center no-repeat;
        margin: 0 10px;
        font-size: 12px;
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    /* .header2 .h2 .logo {
        width: 75%;
    } */
    .header2 .h2 .rt {
        padding: 0;
    }
    .menu_box .nav ul li a {
        font-size: 16px !important;
    }
    .menu_box .nav ul li .subNav a {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 413px) {
    .header2 .h2 {
        padding: 16px 0;
    }
    /* .header2 .h2 .logo{width: 190px;} */
    .header2 .h2 .rt {
        margin: -5px 0 0;
    }
    .header2 .h2 .menu_btn,
    .header2 .h2 .ser_btn,
    .header2 .h2 .code_box {
        margin: 0 0 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .footerLogor {
        display: block;
    }
    .fotimgr {
        width: 100%;
    }
    .header1 .h1 .menu_btn {
        width: 35px;
        height: 35px;
        /* margin-top: -10px; */
        /* margin-right: -19px; */
    }
    .header1 .h1 .rt .menu_btn span {
        width: 20px;
        left: calc(50% - 10px);
    }
    @keyframes clickfirst {
        0% {
            transform: translateY(0px) rotate(0deg);
        }
        100% {
            transform: translateY(6px) rotate(45deg);
        }
    }
    @keyframes clicksecond {
        0% {
            transform: translateY(0px) rotate(0deg);
        }
        100% {
            transform: translateY(6px) rotate(-45deg);
        }
    }
    @keyframes clickthird {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 0;
        }
    }
    @keyframes outfirst2 {
        0% {
            transform: translateY(0) rotate(-45deg);
        }
        100% {
            transform: translateY(6px) rotate(0deg);
        }
    }
    @keyframes outthird2 {
        0% {
            transform: translateY(0) rotate(90deg);
        }
        100% {
            transform: translateY(12px) rotate(0deg);
        }
    }
}


/* nav end */


/* shareBox */

.share_box {
    line-height: 7px;
    text-align: center;
    color: rgb(1, 88, 156);
    font-size: 0px;
    z-index: 100;
    margin: 34px 0 0 38px;
    clear: both;
    position: relative;
}

.share_box .share_title {
    display: block;
    text-align: center;
    color: rgb(51, 51, 51);
    font-size: 14px;
    margin: 0 0 10px;
    line-height: 20px;
    position: relative;
    overflow: hidden;
}

.share_box .share_title::before {
    content: "";
    display: block;
    border-top: 1px dashed #e5e5e5;
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 0;
}

.share_box .share_title span {
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 10px;
    color: #ccc;
}

.share_box .share_btn,
.share_box .share_btn.share_more::after {
    line-height: 20px;
    margin: 0px auto 10px;
    position: relative;
    width: 30px;
    height: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
    display: block;
    border-radius: 50%;
}

.share_box .share_btn i {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    z-index: 2;
    color: #fff;
}

.share_box .share_btn.share_wechat {
    background-image: url("../images/share_wechat.png");
    background: #7dd43c;
}

.share_box .share_btn.share_sina {
    background-image: url("../images/share_sina.png");
    background: #ff5e4d;
}

.share_box .share_btn.share_qzone {
    background-image: url("../images/share_qzone.png");
    background: #fece00;
}


/* .share_box .share_btn.share_copy { background-image: url("../images/share_copy.png"); background: #7dd43c;} */

.share_box .share_btn.share_more::after {
    content: "";
    background-image: url("../images/share_more.png");
    background: #a3bfd9;
    position: absolute;
    border: 0px;
    left: 0px;
    margin: 0px;
}

.share_box .share_btn.share_twitter {
    background-image: url("../images/share_twitter.png");
    background: #6babe8;
}

.share_box .share_btn.share_facebook {
    background-image: url("../images/share_facebook.png");
    background: #415a94;
}

.share_box .share_btn.share_linkedin {
    background-image: url("../images/shareto_linkedin.png");
    background: #3d84c2;
}

.share_box .share_btn:last-child {}

.share_box .share_btn .alert_box {
    position: absolute;
    top: 100%;
    left: 0%;
    padding: 6px;
    display: none;
    z-index: 2;
    padding: 1px;
    z-index: 10;
}

.share_box canvas {
    display: block;
    margin: 0 auto;
    width: 160px;
}

.share_box .share_btn .alert_box.on {
    display: block;
}

.share_box .share_more .share_btn {
    margin: 10px 0 0;
    border: 0px;
    /* border-radius: 0px; */
}

.share_box .share_btn:hover .alert_box {
    display: block;
}

.share_box .share_btn.share_wechat .alert_box {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 10px;
    border: 1px solid #d8d8d8;
    background: #fff;
    width: 210px;
    bottom: auto;
}

.share_box .share_btn.share_wechat .alert_box.on {
    display: block;
}

.share_box .share_btn.share_wechat .close {
    width: 24px;
    height: 24px;
    line-height: 24px;
    display: block;
    float: right;
    font-size: 16px;
    color: #333;
}

.share_box .share_btn.share_wechat .close::before {
    content: "x";
}

.share_box .share_btn.share_wechat .title {
    line-height: 24px;
    font-weight: bold;
    font-size: 14px;
    text-align: left;
    margin: 0 0 10px;
    color: #333;
}

.share_box .share_btn.share_wechat .bottom {
    color: #666;
    line-height: 22px;
    text-align: left;
    font-size: 12px;
    margin: 10px 0 0;
}


/* select_link */

.index_links {
    float: left;
    width: 22rem;
}

.linksIns {
    position: absolute;
    width: 100%;
    top: -6.4rem;
    z-index: 10;
    line-height: 12.8rem;
    background-color: #7bbd2c;
    border-radius: 42px 0 42px 0;
    -webkit-border-radius: 42px 0 42px 0;
    -moz-border-radius: 42px 0 42px 0;
    -ms-border-radius: 42px 0 42px 0;
    -o-border-radius: 42px 0 42px 0;
}

.linksIns .footer_linkss {
    margin-left: 24rem;
    /* background-color: #7bbd2c; */
    padding: 3.3rem 3rem;
}

.index_links h2 {
    text-align: center;
    color: #076e39;
}

.linksIns .select_link {
    width: 31%;
    line-height: 40px;
    position: relative;
}

.linksIns .select_link p {
    text-align: left;
    padding: 14px 30px;
    color: #474747;
    border-right: none;
    width: auto;
    border: 2px solid #238136;
    line-height: 24px;
    background: #c9e4a8;
    position: relative;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}


/* .linksIns .select_link::before {
    content: '';
    display: block;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #d4b96a;
} */

.linksIns .select_link .arrows {
    position: absolute;
    right: 30px;
    bottom: 0px;
    cursor: pointer;
    z-index: 200;
}

.linksIns .select_link .arrows i {
    font-weight: normal;
    color: #949b9b;
}

.linksIns .select_link .arrows.on {}

.linksIns .select_link .alert_box {
    height: 0px;
    position: absolute;
    left: 0;
    top: calc(100% +0px);
    background: #c9e4a8;
    right: 0;
    border-radius: 20px 20px 0 20px;
    overflow: hidden;
    border: 0px;
    opacity: 0;
    transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    max-height: 220px;
    overflow: auto;
    -webkit-border-radius: 20px 20px 0 20px;
    -moz-border-radius: 20px 20px 0 20px;
    -ms-border-radius: 20px 20px 0 20px;
    -o-border-radius: 20px 20px 0 20px;
    z-index: 9999;
}

.linksIns .select_link .alert_box::-webkit-scrollbar {
    width: 6px;
}

.linksIns .select_link .alert_box::-webkit-scrollbar-thumb {
    background: #7bbd2c;
    border-radius: 5px;
}

.linksIns .select_link .alert_box.on {
    opacity: 1;
    height: auto;
}

.linksIns .select_link .alert_box a {
    font-size: 16px;
    line-height: 1.8;
    padding: 8px 20px;
    display: block;
    text-align: center;
}

.linksIns .select_link .alert_box a:hover {
    background: #7bbd2c;
    color: #fff;
}

.linksIns .select_link.on {
    border-radius: 20px;
    background: #7bbd2c;
    border-color: #238136;
}

.linksIns .select_link.on p,
.linksIns .select_link.on a {
    background: #c9e4a8;
    border-color: #238136;
}


/* .linksIns .select_link.on::before {
    height: 6px;
} */


/* select */


/* page */

.gp-page {
    padding: 40px 0 50px;
    font-size: 0;
    text-align: center;
}

.gp-page:after,
.gp-page:before {
    content: " ";
    display: table;
}

.gp-page>a,
.gp-page>span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 34px;
    height: 32px;
    line-height: 32px;
    position: relative;
    text-align: center;
    vertical-align: top;
    font-size: 16px;
    transition: all 0.35s ease-in-out;
    margin-bottom: 5px;
    cursor: pointer;
    text-align: center;
    border-left: none;
    border: 1px solid #d0eadf;
    margin: 0 2px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    background: #fff;
}

.gp-page>span {
    border: none;
}

.gp-page .gp-page-start,
.gp-page .gp-page-end,
.gp-page>span,
.gp-page .gp-page-prev,
.gp-page .gp-page-next {
    width: auto;
    padding: 0 20px;
}

.gp-page>a:hover,
.gp-page>a.on_pages {
    color: #fff;
    background-color: #2663d0;
}

.gp-page .gp-page-prev:hover,
.gp-page .gp-page-next:hover {
    color: #fff;
    background-color: #2663d0;
}

.gp-page .gp-page-start,
.gp-page .gp-page-end {
    width: auto;
    padding: 0 10px;
    border: 1px solid #5182d9;
    font-size: 16px;
}


/* .gp-page .gp-page-start {
  border-radius: 25px 0 0 25px;
}

.gp-page .gp-page-end {
  border-radius: 0 25px 25px 0;
} */

.gp-page .gp-page-start:hover,
.gp-page .gp-page-end:hover {
    background-color: #5182d9;
    color: #fff;
}

.gp-page .gp-page-prev,
.gp-page .gp-page-next {
    font-size: 18px;
    color: #999;
}


/* erbanner */

.stylebanner img {
    width: 100%;
}


/* padding-bottom: calc(560% / 19.2);
    height: 0;
    overflow: hidden;
    position: relative;
    background: no-repeat center;
    background-size: cover; */


/* page */

@media screen and (max-width: 992px) {
    .menu_box .top .rt a.gp-serBtn2 {
        width: 82px;
    }
    .header1 .h1 {
        padding: 20px 0 20px;
    }
    .header1 .h1 .rt {
        top: 0;
        right: -10px;
    }
    .header1 .h1::before,
    .header1::after {
        display: none;
    }
    .gp-page .gp-page-start,
    .gp-page .gp-page-end {
        padding: 0 10px;
        font-size: 14px;
    }
    .gp-page>a,
    .gp-page>span {
        font-size: 14px;
    }
    .indexfootLK .linksIns {
        display: block;
    }
    .index_links {
        float: none;
    }
    .header1::before {
        height: 0;
    }
    .share_box {
        position: fixed;
        right: 10px;
        bottom: 40px;
        top: initial;
    }
    .share_box .share_title {
        margin: 0px 0px 6px;
        display: none;
    }
    .share_box .share_btn,
    .share_box .share_btn.share_more::after {
        width: 40px;
        height: 40px;
    }
    .share_box>.share_btn {
        display: none;
    }
    .share_box .share_btn.share_more {
        display: block;
    }
    .share_box .share_btn .alert_box {
        left: 0px;
        top: auto;
        bottom: 100%;
    }
    .share_box .share_more .share_btn {
        margin: 0 0 10px;
    }
    .menu_box .nav ul li a {
        font-size: 24px;
    }
    .footbom {
        padding: 1rem 0;
    }
    /* .stylebanner{
    display: block;overflow: hidden;
    width: 100%;height: 0;
    padding-bottom: 56.25%;background-size: cover;background-position: center;
    background-repeat: no-repeat;position: relative;
 }   
.stylebanner img{
    width: 100%;display: block;transition: all linear .35s;-ms-transition: all linear .35s;-moz-transition: all linear .35s;-webkit-transition: all linear .35s;-o-transition: all linear .35s;
} */
    .stylebanner img {
        height: 140px;
        min-height: 22vh;
    }
}

@media screen and (max-width: 1760px) {
    /* .menu_open .header1 .logo {
        height: 90px !important;
    } */
}

@media screen and (max-height: 700px) {}

@media screen and (max-width: 992px) {}

@media screen and (max-width: 1640px) {
    .gp-page {
    padding: 40px 0 40px;
}
    .ftop dl dd a {
        font-size: 13px;
    }
    .ftop dl dt {
        margin-bottom: 2rem;
    }
    /* .footerLis li dl:first-child {
        height: 23rem;
    } */
    .ftop dl dd {
        line-height: 1.1;
    }
    .footbom p {
        font-size: 13px;
    }
    /* .header1 .h2 {
    width: 63%;
    margin-top: 23px;
  } */
    .header1 .h1 .menu_btn {
        width: 36px;
        height: 36px;
        margin-left: 0px;
    }
    .header1 .h1 .menu_btn span {
        top: 14px;
    }
    .menu_box .nav ul li>a {
        font-size: 1.6rem;
        height: 60px;
        /* margin-bottom: 20px; */
    }
    .menu_box .subNav dd {
        margin-bottom: 10px;
    }
    .menu_box .subNav a {
        font-size: 1.4rem;
    }
    .linksIns .footer_linkss {
        padding: 2.6rem 2.6rem;
    }
    .linksIns {
        line-height: 11rem;
    }
    .footerLis li:nth-child(5) dl {
        width: 24rem;
    }
    .footerLis li:nth-child(7) dl {
        width: 17.2rem;
    }
    .indexfootLK .footerins {
        padding-top: 7rem;
    }
    .header1.scroll .h2 .nav>li>a {
        font-size: 17px;
    }
}

@media screen and (max-width: 1560px) {
    /* .header1 .h2 {
        width: 68%;
        margin-top: 28px;
    } */
}

@media screen and (max-width: 1380px) {
    .linkFoot li {
        padding-right: 40px;
    }
    .gp-page {
        padding: 30px 0 50px;
        font-size: 0;
        text-align: center;
    }
    /* .header1 .logo {
        width: 220px;
        height: 134px !important;
    }
    .header1 .logo img.toplogo01 {
        top: 6px;
        width: 10.2rem;
    }
    .header1 .logo img.toplogo02 {
        width: 14rem;
    }
    .header1 .logo img.toplogo02 {
        top: 6.8rem;
    } */
    .menu_box .nav ul li>a {
        font-size: 1.4rem;
        height: auto;
        margin-bottom: 20px;
    }
    .menu_box .subNav a {
        line-height: 20px;
        font-size: 1.2rem;
    }
    .ftop dl dt {
        font-size: 14px;
    }
    .ftop dl dd a {
        font-size: 12px;
    }
    .footer01_in p {
        font-size: 11px;
        margin-bottom: 1rem;
    }
    .menu_box .top .rt {
        padding: 20px 0px 0 0;
    }
    .linksIns {
        line-height: 9rem;
    }
    .index_links {
        line-height: 9rem;
        width: 17rem;
    }
    .linksIns .select_link p {
        padding: 10px 20px;
    }
    .linksIns .select_link {
        line-height: 40px;
    }
    .linksIns .footer_linkss {
        margin-left: 18rem;
    }
    .footerins {
        padding-top: 24px;
    }
    .linksIns .footer_linkss {
        padding: 2rem 2rem;
    }
    .footerLis li:nth-child(3) dl {
        max-width: 31rem;
    }
    .footerLis li:nth-child(4) dl {
        max-width: 18rem;
    }
    .footerLis li:last-child {
        min-width: 16rem;
    }
    .ftop dl dt {
        margin-bottom: 1rem;
    }
    .linksIns .select_link .alert_box a {
        font-size: 15px;
    }
    .footerLis li:last-child dl {
        width: 18rem;
    }
    .footerLis li:nth-child(5) dl {
        width: 20.4rem;
    }
    .footerLis li:nth-child(7) dl {
        width: 13.8rem;
    }
    .footer01_in p .cyicon {
        width: 22px;
        height: 22px;
        line-height: 19px;
        font-size: 12px;
    }
    .indexfootLK .footerins {
        padding-top: 5rem;
    }
}

@media screen and (max-width: 1300px) {
    .logolist,
    .logolist ul {
        width: 255px;
        height: 54px;
    }
}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 992px) {
    .linkFoot li {
        width: 50%;
    }
    .gp-page {
        padding: 20px 0 20px;
    }
    /* .header1 .logo {
        width: 180px;
        height: 106px !important;
    }
    .header1 .logo img.toplogo01 {
        top: 6px;
        width: 7rem;
    }
    .header1 .logo img.toplogo02 {
        width: 12rem;
    }
    .header1 .logo img.toplogo02 {
        top: 5rem;
    } */
    .menu_open .header1 .logo {
        width: 100%;
        margin-bottom: 0;
        margin-top: 40px;
    }
    .menu_box .nav ul li>a {
        height: auto;
    }
    .menu_box .top .rt {
        width: 100%;
        padding: 0px 40px 0 0;
        top: 0;
        position: absolute;
    }
    .menu_box .top .rt a:first-child{
        padding-left: 0;
    }
    .menu_box .nav ul li>a{
        margin-bottom: 14px;
    }
        .menu_box .subNav dd {
        margin-bottom: 4px;
    }
    .footerins .flex {
        display: block;
    }
    .footerins .fnav {
        display: none;
    }
    .footerLis li {
        width: 49%;
        display: inline-block;
    }
    .ftop dl dd {
        display: none;
    }
    .footerLis {
        display: none;
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    .footerLogor {
        max-width: 100%;
        float: none;
        padding-left: 0;
    }
    .ftop dl dt {
        margin-bottom: 1rem;
    }
    .footerLis li {
        margin-bottom: 4px;
    }
    #_ideConac {
        top: -8px;
        width: 60px;
    }
    .footer01_in {
        padding-left: 74px;
    }
    footer {
        padding: 20px 0;
    }
    .footer01_in {
        margin-left: 0;
    }
    .footer01_in p {
        display: block;
    }
    .footbom p {
        font-size: 11px;
        line-height: 20px;
    }
    .index_links {
        line-height: 40px;
        width: 100%;
    }
    .index_links h2 {
        font-size: 20px;
        padding-left: 16px;
        text-align: left;
        margin-top: 10px;
        margin-left: 10px;
    }
    .linksIns .footer_linkss {
        display: block;
        margin-left: 0;
        padding: 1rem 2rem;
    }
    .linksIns .select_link {
        width: 100%;
        margin-bottom: 10px;
    }
    .footerins {
        padding-top: 2rem;
    }
    .linksIns {
        top: -8rem;
    }
    .indexfootLK .footerins {
        padding-top: 17rem;
    }
}

@media screen and (max-width: 479px) {
    .gp-search4.active {
        height: 35px;
    }
}

@media screen and (max-width: 414px) {
    .logolist,
    .logolist ul {
        width: 198px;
        height: 36px !important;
    }
}