* {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-family: "微软雅黑", sans-serif;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    font-size: 100%;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

input {
    outline: none;
}

 ::-webkit-scrollbar {
    width: 6px;
}

 ::-webkit-scrollbar-track {
    background: #fff;
}

 ::-webkit-scrollbar-thumb {
    background: #025F33;
    border-radius: 6px;
}

.center {
    width: 1200px;
    margin: 0 auto
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

header {
    background: #025F33;
    height: 90px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 0 40px;
}

.top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

header nav ul {
    display: flex;
}

.tools {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
}

.tools a {
    color: #fff;
    font-size: 12px;
}

.tools a.EN {
    width: 24px;
    height: 24px;
    border-radius: 2px;
    border: 1px solid #fff;
    font-size: 12px;
    text-align: center;
    line-height: 24px;
    display: inline-block;
}

.tools button {
    background: url(../images/index/icon-sea.png) no-repeat center;
    width: 23px;
    height: 23px;
    outline: none;
    border: none;
    cursor: pointer;
}

.searchBox {
    position: absolute;
    right: 20px;
    border-radius: 20px;
    border: 1px solid #fff;
    background: #025F33;
    font-size: 16px;
    color: #fff;
    width: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: width 0.5s;
    z-index: 88;
}

.seaWid {
    width: 220px;
    visibility: visible;
    transition: width 0.5s;
}

.searchBox input {
    outline: none;
    background: transparent;
    border: none;
    color: #fff;
}

.searchBox input::placeholder {
    color: #fff;
}

.searchBox input[type="submit"] {
    width: 23px;
    height: 23px;
    display: inline-block;
    background: url(../images/index/icon-sea.png) no-repeat center;
    flex-shrink: 0;
    cursor: pointer;
}

.searchBox input[type="text"] {
    width: calc(100% - 23px);
    padding: 10px 0;
}

.close {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    cursor: pointer;
    visibility: hidden;
}

nav {
    flex: 1;
    background: url(../images/index/navBg.png) right center no-repeat;
    height: 100%;
    background-size: 100% 100%;
}

nav ul {
    padding: 0 10%;
    height: 100%;
}

nav ul li {
    flex: 1;
}

nav ul li>a {
    color: #fff;
    height: 100%;
    display: block;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 90px;
}

nav ul li>a::after {
    content: "";
    display: block;
    background: #fff;
    border-radius: 5px;
    width: 0%;
    margin: 0 auto;
    height: 5px;
    margin-top: -5px;
    transition: width 0.5s;
}

nav ul li>a:hover::after,
nav ul li.on>a::after {
    width: 60%;
    transition: width 0.5s;
}

nav ul li dl {
    background: rgba(2, 95, 51, 0.8);
    display: none;
    position: relative;
    z-index: 99;
}

nav ul li dl a {
    color: #fff;
    font-size: 16px;
    text-align: center;
    display: block;
    width: 100%;
    padding: 15px 0;
}

nav ul li dl a:hover {
    background: #fff;
    color: #025F33;
    transition: all 0.5s;
}

.footerTop {
    background: url(../images/index/footerBg.png) no-repeat center;
    background-size: 100% 100%;
    padding: 30px 0;
}

.footerCenter {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footerCenter .lxwm,
.footerCenter .code {
    flex: 1;
}

.footerCenter .lxwm {
    display: flex;
    justify-content: space-between;
}

.footerCenter .lxwm h6 {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    background: url(../images/index/lxwmBg.png) no-repeat left top;
    padding-top: 10px;
    padding-left: 10px;
    margin-bottom: 10px;
}

.footerCenter .lxwm dl dd {
    font-size: 16px;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: flex-start;
}

.footerCenter .lxwm dl dd span {
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    margin-right: 10px;
}

.footerCenter .lxwm dl dd span img {
    margin-right: 10px;
    vertical-align: middle;
}

.footerCenter .code {
    display: flex;
    justify-content: flex-end;
    gap: 58px;
}

.footerCenter .code p {
    color: #fff;
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
}

.footerCenter .lxwm::after {
    content: "";
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: block;
}

.copyRight {
    background: #002D14;
    padding: 10px 0;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

@media screen and (max-width:1440px) {
    .footerCenter {
        width: 100%;
        padding: 40px;
    }
}

@media screen and (max-width:1200px) {
    header {
        padding: 0 20px;
    }
    nav ul {
        padding: 0 20px;
    }
    .tools {
        gap: 15px;
    }
}


/*手机端导航*/

.mobile {
    width: 100%;
    height: auto;
    line-height: 40px;
    position: absolute;
    display: block;
    top: 0px;
    right: 0;
    z-index: 99991
}

.mobile_title {
    width: 100%;
    float: left;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
}

.mobile_title a {
    float: left;
    margin-left: 10px;
    color: #fff;
    line-height: 31px;
    height: 31px;
}

.mobile-inner-header {
    width: 100%;
    height: 42px;
    position: absolute;
    top: 0px;
    right: 20px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 40px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 40px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    opacity: 0.8;
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 3);
    width: 25px;
    height: 2px;
    background-color: rgba(255, 255, 255, 1);
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

.mobile-inner-header-icon {
    color: #fff;
    height: 31px;
    float: right;
    width: 32px;
    position: relative;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    margin-top: 33px;
    background: #fff;
    z-index: 9999;
}

.mobile-inner-header-icon-out span {
    width: 24px;
    height: 2px;
    background-color: #025F33;
    display: block;
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outthird;
}

.mobile-inner-header-icon-click {
    background: none;
    margin-top: 33px;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(3) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

.mobile-inner-header-icon-click span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickthird;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

@keyframes clickthird {
    0% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

.mobile-inner-header-icon-out span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outthird;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

@keyframes outthird {
    0% {
        transform: translateY(0) rotate(90deg);
    }
    100% {
        transform: translateY(12px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(28, 28, 28, 0.85);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0px;
    padding-top: 60px;
    padding-bottom: 25px;
    display: none;
    z-index: 999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 45px;
    text-decoration: none;
    width: 100%;
    font-size: 1.1em;
    border-bottom: solid 1px #646360;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mobile-inner-nav li {
    position: relative;
    padding: 0 20px;
}

.mobile-inner-nav li a {
    text-indent: 0;
}

.mobile-inner-nav li strong {
    color: #fff;
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 2.5em;
    cursor: pointer;
    width: 40px;
    height: 45px;
    text-align: center;
    line-height: 40px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mobile-inner-nav 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;
    color: #fff;
}

@-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;
    }
}

.mobile_subNav {
    display: none;
    padding-left: 10px;
}

.mobile-inner-nav dd a {
    height: 35px;
    line-height: 35px;
    border-bottom: dotted 1px rgb(105, 106, 106);
    font-size: 1em;
}

.mobile_search {
    clear: both;
    position: relative;
    height: 36px;
    margin: 10px 30px 0;
    border: 1px solid #747474;
    border-radius: 30px;
    overflow: hidden;
}

.mobile_search input.notxt {
    width: 90%;
    color: #d9d9d9;
    margin-left: 45px;
    border: none;
    height: 34px;
    background: none;
    margin-top: -2px;
}

.mobile_search input.notxt1 {
    width: 45px;
    background-color: #fff;
    right: auto;
    position: absolute;
    top: 7px;
    left: 0;
    background: url(../images/sea.png) no-repeat center center;
    border: none;
}

.mobile-links {
    width: auto;
    overflow: hidden;
    border-bottom: solid 1px #747474;
    padding: 6px 0;
    text-align: center;
}

.mobile-links span {
    padding: 0 30px;
    display: inline-block;
}

.mobile-links span:first-child {
    display: none;
}

.mobile-links span a {
    border: none;
    line-height: 25px;
    padding: 4px 0;
}

@keyframes rotate {
    from {
        transform: rotateX(90deg) translateY(0%);
        top: 43px;
    }
    to {
        transform: rotateX(0deg) translateY(0%);
        top: 43px;
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotateX(90deg) translateY(0%);
        top: 43px;
    }
    to {
        -moz-transform: rotateX(0deg) translateY(0%);
        top: 43px;
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotateX(90deg) translateY(0%);
        top: 43px;
    }
    to {
        -webkit-transform: rotateX(0deg) translateY(0%);
        top: 43px;
    }
}

.moblieTop {
    background: #025F33;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
    display: none;
}

.MinsearchBox {
    width: 300px;
    border: 1px solid #fff;
    border-radius: 20px;
    margin: 20px auto;
    padding: 10px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.MinsearchBox input[type='text'] {
    background: #fff;
    height: 20px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    flex: 1;
}

.MinsearchBox input[type="submit"] {
    width: 20px;
    height: 20px;
    background: url(../images/index/icon-sea.png) no-repeat center;
    outline: none;
    border: none;
    flex-shrink: 0;
}

@media screen and (max-width:1024px) {
    header {
        display: none;
    }
    .moblieTop {
        display: flex;
    }
}

@media screen and (max-width:960px) {
    .footerCenter {
        flex-direction: column;
        gap: 10px;
    }
    .footerCenter .code {
        gap: 0;
        justify-content: space-between;
    }
    .codeItem {
        width: 30%;
    }
    .codeItem img {
        width: 100%;
    }
    .footerCenter .code p,
    .footerCenter .lxwm dl dd {
        font-size: 14px;
    }
}

@media screen and (max-width:664px) {
    .footerCenter {
        padding: 0px 20px;
    }
    .codeItem {
        width: 45%;
    }
    .moblieTop .logo img{width:200px}
}

