@font-face {
    font-family: MiSans;
    src: url("../font/MISANS-SEMIBOLD.TTF");
}

@font-face {
    font-family: BebasNeue;
    src: url("../font/BEBASNEUE-BOLD.TTF");
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
    width: 100%;
    overflow-x: hidden;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

html {
    font-size: 62.5%;
}

*, *::after, *::before {
    box-sizing: border-box;
}

img {
    object-fit: cover;
    vertical-align: middle;
}

img:not(.none) {
    max-width: 100%;
    max-height: 100%;
}

textarea {
    resize: none;
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
}

.bezier .swiper-wrapper, .div_bezier {
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1) !important;
}

table {
    border-collapse: collapse;
}

::-webkit-scrollbar {
    display: none;
    width: 0;
}

[data-lenis-prevent] {
    padding: 0 20px 0 0;
}

[data-lenis-prevent]::-webkit-scrollbar {
    width: 4px;
    display: block;
}

[data-lenis-prevent]::-webkit-scrollbar-thumb {
    background: #666;
}

[data-lenis-prevent]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

._scroll_y {
    position: fixed;
    top: 0;
    right: 3px;
    width: 6px;
    height: 100vh;
    z-index: 9999;
    border-radius: 10px;
}

._scroll_y div {
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: black;
    opacity: 0;
    position: relative;
    transition: opacity 0.3s ease;
    cursor: grab;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.4rem;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

[data-wheel]::-webkit-scrollbar {
    width: 7px;
}

[data-wheel]::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.4rem;
}

[data-wheel]::-webkit-scrollbar-track {
    background-color: transparent;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

section {
    overflow: hidden;
}

section.unset {
    overflow: unset;
}

.common_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 107px;
    padding: 0 160px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .6s ease;
}

.header .logo {
    display: block;
    width: 215px;
    position: relative;
}

.header .logo img {
    display: block;
    width: 100%;
    transition: 0.6s;
}

.header .logo img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.header .nav {
    display: flex;
    overflow: hidden;
    align-items: center;
}

.header .nav li {
    transition: 0.6s;
    transition-delay: 1s;
}

.header .nav li:not(:last-child) {
    margin-right: 55px;
}

.header .nav a {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #1A1A1A;
    transition: 0.6s;
}

.header .nav a:hover, .header .nav a.on {
    color: #007C36 !important;
}

.header .header_r {
    display: flex;
    align-items: center;
}

.header .header_r .head_click {
    display: block !important;
    position: relative;
    width: 30px;
    height: 21px;
    cursor: pointer;
    margin: 0 27px 0 10px;
}

.header .header_r .head_click .show {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header .header_r .head_click .show div {
    width: 100%;
    height: 1px;
    background: #666666;
    transition: 0.3s;
}

.header .header_r .head_click .show div:first-child {
    transition-delay: 0.4s;
}

.header .header_r .head_click .show div:nth-child(2) {
    transition-delay: 0.5s;
}

.header .header_r .head_click .show div:last-child {
    transition-delay: 0.6s;
}

.header .header_r .head_click .hide {
    width: 100%;
    height: 21px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.header .header_r .head_click .hide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background: #666666;
    transform: rotate(45deg) scaleX(0);
    transition: 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.header .header_r .head_click .hide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background: #666666;
    transform: rotate(-45deg) scaleX(0);
    transition: 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.header .header_r .head_click.on .show div {
    transition-delay: unset;
}

.header .header_r .head_click.on .show div:first-child {
    width: 0;
}

.header .header_r .head_click.on .show div:nth-child(2) {
    width: 0;
    transition-delay: 0.1s;
}

.header .header_r .head_click.on .show div:last-child {
    width: 0;
    transition-delay: 0.2s;
}

.header .header_r .head_click.on .hide:after {
    transform: rotate(45deg) scaleX(1);
    transition-delay: 0.6s;
}

.header .header_r .head_click.on .hide:before {
    transform: rotate(-45deg) scaleX(1);
    transition-delay: 0.6s;
}

.header .header_r .header_lan a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #666666;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    transition: 0.6s;
}

.header .header_r .header_lan a:hover {
    background: #007C36 !important;
    border: 1px solid #007C36 !important;
    color: #FFFFFF !important;
}

.header.header_active .logo img:nth-child(1) {
    opacity: 0;
}

.header.header_active .logo img:nth-child(2) {
    opacity: 1;
}

.header.header_active .nav a {
    color: #FFFFFF;
}

.header.header_active .header_r .head_click .show div {
    background: #FFFFFF;
}

.header.header_active .header_r .head_click .hide:after, .header.header_active .header_r .head_click .hide:before {
    background: #FFFFFF;
}

.header.header_active .header_r .header_lan a {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    transition: 0.6s;
}

.header.on {
    background: #FFFFFF;
}

.header.on .logo img:nth-child(1) {
    opacity: 1;
}

.header.on .logo img:nth-child(2) {
    opacity: 0;
}

.header.on .nav a {
    color: #1A1A1A;
}

.header.on .header_r .head_click .show div {
    background: #666666;
}

.header.on .header_r .head_click .hide:after, .header.on .header_r .head_click .hide:before {
    background: #666666;
}

.header.on .header_r .header_lan a {
    border: 1px solid #666666;
    color: #666666;
    transition: 0.6s;
}

.header.active {
    background: unset !important;
}

.header.active .logo img:nth-child(1) {
    opacity: 1;
}

.header.active .logo img:nth-child(2) {
    opacity: 0;
}

.header.active .nav li {
    transition-delay: 0s;
    transform: translateY(100%);
}

.header.active .header_r .head_click .show div {
    background: #007C36;
}

.header.active .header_r .head_click .hide:after, .header.active .header_r .head_click .hide:before {
    background: #007C36;
}

.header.active .header_r .header_lan a {
    background: #007C36;
    border: 1px solid #007C36;
    color: #FFFFFF;
}

.menuList {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #F8F8F8;
    padding: 30vh 0 0;
    transform-origin: top;
    clip-path: inset(0 0 100% 0);
    transition: 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
}

.menuList .cir {
    position: absolute;
    width: 88.54vw;
    height: 88.54vw;
    animation: spin1 30s infinite linear;
    transform-origin: 42% 42%;
    pointer-events: none;
}

.menuList .cir:after {
    content: "";
    display: block;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url("/static/images/bg_gr.png");
    background-size: 100% 100%;
    filter: blur(50px);
    transform: rotate(45deg);
}

.menuList .cir.cir1 {
    right: -50%;
    top: 0;
}

.menuList .cir.cir2 {
    left: 20%;
    right: unset;
    top: unset;
    bottom: -50%;
    animation: spin2 30s infinite linear;
}

.menuList .cir.cir2:after {
    background-image: url("/static/images/bg_or.png");
    opacity: 0.1;
}

.menuList .cir.cir3 {
    top: -60%;
    left: -50%;
    right: unset;
}

.menuList .menu_nav {
    width: 100%;
    padding: 0 160px;
    display: flex;
    justify-content: space-between;
}

.menuList .menu_nav li {
    opacity: 0;
    transform: translateY(10px);
    transition: .6s ease;
}

.menuList .menu_nav li.unset {
    transition-delay: unset !important;
}

.menuList .menu_nav li a {
    display: block;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 42px;
    transition: 0.6s;
}

.menuList .menu_nav li>a {
    font-weight: 500;
    font-size: 24px;
    color: #1A1A1A;
    margin: 0 0 50px;
}

.menuList .menu_nav li a:hover {
    color: #007C36 !important;
}

.menuList .zi {
    font-family: MiSans;
    font-weight: 600;
    font-size: 288px;
    line-height: 0.8;
    color: #007C36;
    opacity: 0.1;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.menuList.on {
    clip-path: inset(0 0 0% 0);
}

.menuList.on .menu_nav li {
    transform: translateY(0);
    opacity: 1;
}

.footer .wrap {
    width: 1600px !important;
    margin: 0 auto;
    display: block !important;
    border-top: 2px solid #007C36;
}

.footer .wrap .footer_top {
    display: flex;
    justify-content: space-between;
    padding: 100px 0 134px;
}

.footer .wrap .footer_top .footer_nav {
    display: flex;
}

.footer .wrap .footer_top .footer_nav li:not(:nth-last-child(1)) {
    margin-right: 90px;
}

.footer .wrap .footer_top .footer_nav a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 42px;
    transition: 0.6s;
}

.footer .wrap .footer_top .footer_nav a:nth-child(1) {
    font-weight: bold;
    font-size: 18px;
    color: #1A1A1A;
}

.footer .wrap .footer_top .footer_nav a:hover {
    color: #007C36 !important;
}

.footer .wrap .footer_top .footer_contact h5 {
    font-weight: 800;
    font-size: 30px;
    color: #333333;
    margin: 0 0 20px;
}

.footer .wrap .footer_top .footer_contact p {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin: 0 0 10px;
}

.footer .wrap .footer_top .footer_contact .ewm {
    width: 120px;
    margin: 60px 0 0;
}

.footer .wrap .footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E4E4E4;
    padding: 33px 0;
}

.footer .wrap .footer_bottom p {
    font-weight: 400;
    font-size: 16px;
    color: #888888;
}

.footer .wrap .footer_bottom a {
    font-weight: 400;
    font-size: 16px;
    color: #888888;
    transition: 0.6s;
}

.footer .wrap .footer_bottom a:hover {
    color: #111111;
}

.banner {
    padding: 10px;
    height: unset;
    position: relative;
}

.banner .img {
    display: block;
    overflow: hidden;
    width: 100%;
    border-radius: 1.875vw;
}

.banner .img img {
    display: block;
    width: 100%;
    transition: cubic-bezier(0.77, 0, 0.175, 1) 2s;
    transform: scale(1.1);
}

.banner .img.aos-animate img {
    transform: scale(1);
}

.banner .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 350px;
}

.banner .text h1 {
    font-weight: 800;
    font-size: 48px;
    color: #FFFFFF;
}

.home {
    position: relative;
    background: #F8F8F8;
}

.home > div {
    position: relative;
    z-index: 3;
}

.home .bg {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.home .bg .cir {
    position: absolute;
    width: 88.54vw;
    height: 88.54vw;
    animation: spin1 30s infinite linear;
    transform-origin: 42% 42%;
}

.home .bg .cir:after {
    content: "";
    display: block;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url("/static/images/bg_gr.png");
    background-size: 100% 100%;
    filter: blur(50px);
    transform: rotate(45deg);
}

.home .bg .cir:nth-child(1) {
    right: -50%;
    top: -31.25vw;
}

.home .bg .cir:nth-child(2) {
    left: -50%;
    right: unset;
    top: 23.0729166667vw;
    animation: spin2 30s infinite linear;
}

.home .bg .cir:nth-child(2):after {
    background-image: url("/static/images/bg_or.png");
}

.home .bg .cir:nth-child(3) {
    top: 95.83333vw;
    left: -50%;
    right: unset;
}

@keyframes spin1 {
    100% {
        transform: rotate(1turn);
    }
}

@keyframes spin2 {
    100% {
        transform: rotate(-1turn);
    }
}

/*# sourceMappingURL=style.css.map */
@media screen and (max-width: 1919px) {
  .header{
    height: 5.5729166667vw;
    padding: 0px 8.3333333333vw;
  }
  .header .logo{
    width: 11.1979166667vw;
  }
  .header .nav li:not(:last-child){
    margin-right: 2.8645833333vw;
  }
  .header .nav a{
    font-size: 0.8333333333vw;
  }
  .header .header_r .head_click{
    width: 1.5625vw;
    height: 1.09375vw;
    margin: 0px 1.40625vw 0px 0.5208333333vw;
  }
  .header .header_r .head_click .hide{
    height: 1.09375vw;
  }
  .header .header_r .head_click .hide::after{
    height: 0.1041666667vw;
  }
  .header .header_r .head_click .hide::before{
    height: 0.1041666667vw;
  }
  .header .header_r .header_lan a{
    width: 2.34375vw;
    height: 2.34375vw;
    font-size: 0.7291666667vw;
  }
  .menuList .cir::after{
    filter: blur(2.6041666667vw);
  }
  .menuList .menu_nav{
    padding: 0px 8.3333333333vw;
  }
  .menuList .menu_nav li{
    transform: translateY(0.5208333333vw);
  }
  .menuList .menu_nav li a{
    font-size: 0.9375vw;
    line-height: 2.1875vw;
  }
  .menuList .menu_nav li>a {
    font-size: 1.25vw;
    margin: 0px 0px 2.6041666667vw;
  }
  .menuList .zi{
    font-size: 15vw;
  }
  .footer .wrap{
    border-top: 0.1041666667vw solid rgb(0, 124, 54);
    width: 83.3333333333vw !important;
  }
  .footer .wrap .footer_top{
    padding: 5.2083333333vw 0px 6.9791666667vw;
  }
  .footer .wrap .footer_top .footer_nav li:not(:nth-last-child(1)){
    margin-right: 4.6875vw;
  }
  .footer .wrap .footer_top .footer_nav a{
    font-size: 0.8333333333vw;
    line-height: 2.1875vw;
  }
  .footer .wrap .footer_top .footer_nav a:nth-child(1){
    font-size: 0.9375vw;
  }
  .footer .wrap .footer_top .footer_contact h5{
    font-size: 1.5625vw;
    margin: 0px 0px 1.0416666667vw;
  }
  .footer .wrap .footer_top .footer_contact p{
    font-size: 0.8333333333vw;
    margin: 0px 0px 0.5208333333vw;
  }
  .footer .wrap .footer_top .footer_contact .ewm{
    width: 6.25vw;
    margin: 3.125vw 0px 0px;
  }
  .footer .wrap .footer_bottom{
    padding: 1.71875vw 0px;
  }
  .footer .wrap .footer_bottom p{
    font-size: 0.8333333333vw;
  }
  .footer .wrap .footer_bottom a{
    font-size: 0.8333333333vw;
  }
  .banner{
    padding: 0.5208333333vw;
  }
  .banner .text{
    left: 18.2291666667vw;
  }
  .banner .text h1{
    font-size: 2.5vw;
  }
  .home .bg .cir::after{
    filter: blur(2.6041666667vw);
  }
}
@media screen and (max-width: 1024px) {
    body .header {
        padding: 0 5vw;
        height: 60px;
        background: #FFFFFF !important;
        box-shadow: 0 0 10px rgba(0,0,0,0.1) !important;
    }
    body .header.active {
        background: #FFFFFF !important;
    }
    .header .nav {
        display: none;
    }
    .header .logo {
        width: 130px;
    }
    .header .logo img:nth-child(1) {
        opacity: 1 !important;
    }
    .header .logo img:nth-child(2) {
        opacity: 0 !important;
    }
    .header .header_r .head_click {
        width: 26px;
        height: 17px;
        margin: 0 14px 0 10px;
    }
    .header .header_r .header_lan a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .header .header_r .header_lan a {
        border: 1px solid #666 !important;
        color: #333333 !important;
        background: unset !important;
    }
    .header .header_r .head_click .show div {
        background: #666666 !important;
    }
    .menuList .zi {
        display: none;
    }
    .menuList {
        padding: 90px 0 0;
    }
    .menuList .menu_nav {
        padding: 0 5vw;
        display: block;
        position: relative;
        z-index: 3;
    }
    .menuList .menu_nav li {
        position: relative;
    }
    .menuList .menu_nav li .iconfont {
        font-size: 14px;
        color: #1A1A1A;
        position: absolute;
        top: 23px;
        right: 0;
        display: block !important;
        transition: 0.6s;
    }
    .menuList .menu_nav li.item_active .iconfont {
        transform: rotate(90deg);
    }
    .menuList .menu_nav li a {
        font-size: 16px;
        line-height: 2.5;
    }
    .menuList .menu_nav li>a {
        font-size: 18px;
        line-height: 60px;
        margin: 0;
        width: 50%;
    }
    .menuList .menu_nav li {
        border-bottom: 1px solid #c9c3c3;
    }
    .menuList .menu_nav li .none {
        display: none;
        padding: 0 0 20px 10px;
    }
    .banner {
        height: 60vh;
        padding: 0;
    }
    .banner .img {
        height: 100%;
        border-radius: 0;
    }
    .banner .text {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .banner .text h1 {
        font-size: 28px;
    }
    .banner .img img {
        height: 100%;
    }
    .footer .wrap {
        width: 90% !important;
    }
    .footer .wrap .footer_top .footer_nav {
        display: none;
    }
    .footer .wrap .footer_top .footer_contact h5 {
        font-size: 30px;
        margin: 0 0 10px;
    }
    .footer .wrap .footer_top {
        padding: 30px 0;
    }
    .footer .wrap .footer_top .footer_contact .ewm {
        width: 100px;
        margin: 30px auto 0;
    }
    .footer .wrap .footer_bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer .wrap .footer_bottom {
        padding: 10px 0;
    }
    .footer .wrap .footer_bottom a {
        font-size: 14px;
    }
    .footer .wrap .footer_bottom p {
        font-size: 14px;
    }
    .footer .wrap .footer_top .footer_contact {
        text-align: center;
        width: 100%;
    }
    .footer .wrap .footer_top .footer_contact p {
        font-size: 16px;
        margin: 0 0 5px;
    }
}
