@font-face {
    font-family: Poppins;
    src: url("../fonts/POPPINS-LIGHT.TTF");
}

@font-face {
    font-family: Poppins B;
    src: url("../fonts/POPPINS-BOLD.TTF");
}

@font-face {
    font-family: Poppins M;
    src: url("../fonts/POPPINS-MEDIUM.TTF");
}

@font-face {
    font-family: Poppins R;
    src: url("../fonts/POPPINS-REGULAR.TTF");
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
    font-family: Poppins, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
    width: 100%;
    overflow-x: hidden;
    font-family: Poppins, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --color: #00BD56;
}

*, *::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 0px 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: 112px;
    padding: 0 60px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .6s ease;
}

.header .logo {
    width: 218px;
    filter: brightness(0) invert(1);
    transition: 0.6s;
}

.header .nav {
    display: flex;
    align-items: center;
    gap: 0 60px;
    height: 100%;
}

.header .nav li {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.header .nav li > a {
    display: block;
    font-family: Poppins R;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
    position: relative;
    transition: 0.6s;
    z-index: 3;
}

.header .nav li > a:after {
    content: "";
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: 0.6s;
}

.header .nav li > a:hover, .header .nav li > a.on {
    color: white;
}

.header .nav li > a:hover:after, .header .nav li > a.on:after {
    transform: translateX(-50%) scale(1);
}

.header .nav li .second {
    position: absolute;
    padding: 89px 0 0;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0px);
    pointer-events: none;
}

.header .nav li .second .second_box {
    width: 360px;
    background: #0C2527;
    border-radius: 12px;
    padding: 20px 40px 32px;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.6s;
}

.header .nav li .second .second_box .second_item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 6px;
    position: relative;
}

.header .nav li .second .second_box .second_item .icon {
    width: 16px;
    position: absolute;
    top: 15px;
    right: 0;
    transform: rotate(90deg);
    filter: brightness(0) invert(1);
    transition: 0.6s;
}

.header .nav li .second .second_box .second_item .icon img {
    display: block;
}

.header .nav li .second .second_box .second_item > a {
    display: block;
    margin: 0 auto;
    font-family: Poppins R;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 53px;
    white-space: nowrap;
    transition: 0.6s;
}

.header .nav li .second .second_box .second_item > a:hover {
    color: #00BD56;
}

.header .nav li .second .second_box .second_item .third {
    padding: 0 0 15px;
}

.header .nav li .second .second_box .second_item .third a {
    display: block;
    font-weight: 300;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 28px;
    opacity: 0.5;
    transition: 0.6s;
}

.header .nav li .second .second_box .second_item .third a:hover {
    color: #00BD56;
    opacity: 1;
}

.header .nav li .second .second_box .second_item:hover .icon {
    filter: brightness(1) invert(0);
}

.header .nav li:not(:nth-child(3)) .second .second_box {
    width: 300px;
}

.header .nav li:hover .second {
    pointer-events: auto;
}

.header .nav li:hover .second .second_box {
    opacity: 1;
    transform: translateY(0);
}

.header .lan {
    width: 218px;
}

.header .lan .lan_box {
    width: fit-content;
    height: 49px;
    border-radius: 24px;
    border: 1px solid #FFFFFD;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 auto;
    padding: 0 24px;
}

.header .lan .lan_box a, .header .lan .lan_box span {
    display: block;
    font-family: Poppins R;
    font-weight: 400;
    font-size: 16px;
    color: #808080;
    transition: 0.6s;
}

.header .lan .lan_box a:hover, .header .lan .lan_box a.on {
    color: #FFFFFF;
}

.header .lan .lan_box span {
    margin: 0 5px;
}

.header.on {
    background: #000000;
    height: 80px;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0 30px;
    width: 1600px;
    margin: 0 auto;
}

.footer .wrap .l {
    display: flex;
    align-items: center;
}

.footer .wrap .l p {
    font-family: Poppins R;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 22px;
    opacity: 0.3;
    margin-right: 20px;
}

.footer .wrap .l a {
    display: block;
    font-family: Poppins R;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 22px;
    opacity: 0.5;
    transition: 0.6s;
}

.footer .wrap .l a:hover {
    opacity: 1;
}

.footer .wrap .r {
    display: flex;
    align-items: center;
    gap: 0 9px;
}

.footer .wrap .r a, .footer .wrap .r div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.footer .wrap .r a img, .footer .wrap .r div img {
    display: block;
    filter: brightness(0) invert(1);
    height: 16px;
    position: relative;
    z-index: 3;
}

.footer .wrap .r a:nth-last-child(2) img, .footer .wrap .r div:nth-last-child(2) img {
    height: 18px;
}

.footer .wrap .r a:nth-last-child(1), .footer .wrap .r div:nth-last-child(1) {
    margin-left: 11px;
}

.footer .wrap .r a:nth-last-child(1) img, .footer .wrap .r div:nth-last-child(1) img {
    height: 20px;
}

.footer .wrap .r a:after, .footer .wrap .r div:after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.6s;
    opacity: 0;
}

.footer .wrap .r a:hover:after, .footer .wrap .r div:hover:after {
    opacity: 1;
}

.common_footer {
    margin-bottom: 152px;
}

.common_footer .wrap {
    width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.common_footer .wrap .l {
    width: 500px;
    height: 640px;
    position: relative;
    border-radius: 20px;
    padding: 70px 30px 0;
    display: flex;
    align-content: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.common_footer .wrap .l .title {
    font-family: Poppins;
    font-weight: 600;
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 62px;
    width: 100%;
}

.common_footer .wrap .l input {
    height: 36px;
    width: 210px;
    font-family: Poppins R;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: unset;
    padding: 0 10px;
    margin-bottom: 43px;
}

.common_footer .wrap .l input.big {
    width: 100%;
}

.common_footer .wrap .l input::placeholder {
    color: #FFFFFF;
}

.common_footer .wrap .l .select {
    width: 100%;
    margin-bottom: 43px;
}

.common_footer .wrap .l select {
    width: 100%;
}

.common_footer .wrap .l .select2-selection--single {
    width: 100%;
    height: 36px;
    background: unset;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
}

.common_footer .wrap .l .select2-selection--single .select2-selection__rendered {
    color: #FFFFFF;
}

.common_footer .wrap .l .select2-selection--single .select2-selection__arrow {
    display: block;
    width: unset;
    height: unset;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.common_footer .wrap .l .select2-selection--single .select2-selection__arrow .iconfont {
    font-size: 12px;
    transform: rotate(180deg);
}

.common_footer .wrap .l .btn {
    width: 100%;
    margin: 12px 0 0;
}

.common_footer .wrap .l .btn button {
    width: fit-content;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 25px;
    padding: 0 44px;
    transition: 0.6s;
    margin: 0 auto;
    position: relative;
}

.common_footer .wrap .l .btn button:after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    border-radius: 25px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    transition: 0.6s;
    opacity: 0;
}

.common_footer .wrap .l .btn button p {
    font-family: Poppins R;
    font-weight: 500;
    font-size: 16px;
    color: #2B9AC8;
    margin-right: 10px;
    transition: 0.6s;
    position: relative;
    z-index: 2;
}

.common_footer .wrap .l .btn button img {
    display: block;
    width: 16px;
    transform: rotate(-45deg);
    transition: 0.6s;
    position: relative;
    z-index: 2;
}

.common_footer .wrap .l .btn button:hover {
    background: rgba(0, 0, 0, 0);
}

.common_footer .wrap .l .btn button:hover:after {
    opacity: 1;
}

.common_footer .wrap .l .btn button:hover p {
    color: #FFFFFF;
}

.common_footer .wrap .l .btn button:hover img {
    filter: brightness(0) invert(1);
}

.common_footer .wrap .r {
    width: 1080px;
    height: 640px;
    background: rgba(12, 37, 39, 0.5);
    box-shadow: 0px -1px 1px 0px rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 60px 60px 0 51px;
    position: relative;
    overflow: hidden;
}

.common_footer .wrap .r .bg1 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    pointer-events: none;
}

.common_footer .wrap .r .bg1 img {
    display: block;
    width: 100%;
}

.common_footer .wrap .r .bg2 {
    top: unset;
    bottom: 0;
    transform: translate(-50%, 50%);
}

.common_footer .wrap .r .r_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.common_footer .wrap .r .r_top .title {
    font-family: Poppins;
    font-weight: 600;
    font-size: 40px;
    color: #FFFFFF;
    line-height: 52px;
}

.common_footer .wrap .r .r_top .logo {
    width: 218px;
    filter: brightness(0) invert(1);
}

.common_footer .wrap .r .r_info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 440px;
    gap: 40px 0;
}

.common_footer .wrap .r .r_info .item {
    width: fit-content;
}

.common_footer .wrap .r .r_info .item h5 {
    font-family: Poppins M;
    font-weight: 500;
    font-size: 16px;
    color: #4C515A;
    margin-bottom: 12px;
}

.common_footer .wrap .r .r_info .item p {
    font-family: Poppins R;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
}

.common_footer .wrap .r .r_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 50px 0 0;
    padding: 50px 0 0;
}

.common_footer .wrap .r .r_bottom .control {
    display: flex;
    align-items: center;
    gap: 0 100px;
}

.common_footer .wrap .r .r_bottom .control .item {
    font-family: Poppins R;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 22px;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.6s;
}

.common_footer .wrap .r .r_bottom .control .item:hover, .common_footer .wrap .r .r_bottom .control .item.on {
    opacity: 1;
}

.common_footer .wrap .r .r_bottom .r_bottom_box {
    margin: 42px 0 0;
    position: relative;
}

.common_footer .wrap .r .r_bottom .r_bottom_box .position {
    display: flex;
    align-items: center;
    gap: 0 27px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.common_footer .wrap .r .r_bottom .r_bottom_box .position.on {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: 0.6s;
}

.common_footer .wrap .r .r_bottom .r_bottom_box .position:not(:nth-child(1)) {
    position: absolute;
    top: 0;
}

.common_footer .wrap .r .r_bottom .r_bottom_box .position a {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
    opacity: 0.5;
    transition: 0.6s;
}

.common_footer .wrap .r .r_bottom .r_bottom_box .position a:hover, .common_footer .wrap .r .r_bottom .r_bottom_box .position a.on {
    opacity: 1;
}

.home {
    position: relative;
}

.home .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.home .bg img {
    width: 100%;
    height: unset;
    max-height: unset;
}

.color_box {
    position: relative;
    box-shadow: 0px -1px 1px 0px rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.color_box .bg1 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    pointer-events: none;
}

.color_box .bg1 img {
    display: block;
    width: 100%;
}

.color_box .bg2 {
    top: unset;
    bottom: 0;
    transform: translate(-50%, 50%);
}

.w-1600 {
    width: 1600px;
    margin: 0 auto;
}

.w-1200 {
    width: 1200px;
    margin: 0 auto;
}

.title_color {
    font-family: Poppins M;
    font-weight: 500;
    font-size: 48px;
    color: #FFFFFF;
    line-height: 60px;
    width: fit-content;
    text-transform: capitalize;
    position: relative;
    background: linear-gradient(95deg, #FFFFFF 0%, #FFFFFF 55.2734375%, #7BCFA8 91.845703125%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title_color .highlightText {
    font-family: Poppins M;
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    -webkit-background-clip: text;
    white-space: nowrap;
    background-clip: text !important;
    pointer-events: none;
    font-family: 'Poppins m', sans-serif;
    transition: background 1s ease;
    opacity: 0.6;
    display: none;
}

.case_section {
    padding: 158px 0;
}

.case_section .wrap .title_color {
    margin-bottom: 60px;
}

.case_section .wrap .title {
    font-family: Poppins M;
    font-weight: 500;
    font-size: 36px;
    color: #FFFFFF;
    text-transform: capitalize;
    margin-bottom: 60px;
}

.case_section .wrap .swiper {
    padding: 2px 0 0;
}

.case_section .wrap .swiper .swiper-pagination {
    position: relative;
    top: unset;
    left: unset;
    margin: 60px 0 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.case_section .wrap .swiper .swiper-pagination .swiper-pagination-progressbar-fill {
    height: 4px;
    background: linear-gradient(90deg, #00BD56, #3392D7);
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box {
    width: 100%;
    /*height: 360px;*/
    background: rgba(12, 37, 39, 0.5);
    border-radius: 16px;
    padding: 50px 31px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .slide_box_text h5 {
    font-family: Poppins M;
    font-weight: 500;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 50px;
    transition: 0.6s;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .slide_box_text p {
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    padding: 0 40px 0 0;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 45px;
    height: 45px;
    background: #FFFFFF;
    border-radius: 26px;
    position: relative;
    transition: 1s;
    padding: 0 15px 0 0;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 26px;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 1s;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more p {
    white-space: nowrap;
    position: absolute;
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    left: 18px;
    opacity: 0;
    transition: 0.4s;
    z-index: 2;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more p div {
    min-width: 5px;
    opacity: 0;
    transform: translateX(10px);
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more img {
    display: block;
    width: 16px;
    transform: rotate(-45deg);
    transition: 0.6s;
    position: relative;
    z-index: 2;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover {
    width: 140px;
    background: transparent;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover:after {
    opacity: 1;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover p {
    opacity: 1;
    transition: 0s;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover p div {
    opacity: 1;
    transform: translateX(0px);
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover p div:nth-child(2) {
    transition: 0.4s 80ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover p div:nth-child(3) {
    transition: 0.4s 160ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover p div:nth-child(4) {
    transition: 0.4s 240ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover p div:nth-child(5) {
    transition: 0.4s 320ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover p div:nth-child(6) {
    transition: 0.4s 400ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover p div:nth-child(7) {
    transition: 0.4s 480ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover p div:nth-child(8) {
    transition: 0.4s 560ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover p div:nth-child(9) {
    transition: 0.4s 640ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover img {
    filter: brightness(0) invert(1);
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .slide_box_text h5 {
    color: #00BD56;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more {
    width: 140px;
    background: transparent;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more:after {
    opacity: 1;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more p {
    opacity: 1;
    transition: 0s;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more p div {
    opacity: 1;
    transform: translateX(0px);
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more p div:nth-child(2) {
    transition: 0.4s 80ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more p div:nth-child(3) {
    transition: 0.4s 160ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more p div:nth-child(4) {
    transition: 0.4s 240ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more p div:nth-child(5) {
    transition: 0.4s 320ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more p div:nth-child(6) {
    transition: 0.4s 400ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more p div:nth-child(7) {
    transition: 0.4s 480ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more p div:nth-child(8) {
    transition: 0.4s 560ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more p div:nth-child(9) {
    transition: 0.4s 640ms !important;
}

.case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more img {
    filter: brightness(0) invert(1);
}

.suitable_section {
    padding: 100px 0 0;
}

.suitable_section .wrap .title {
    font-family: Poppins M;
    font-weight: 500;
    font-size: 36px;
    color: #FFFFFF;
    text-transform: capitalize;
    margin: 0 0 20px;
}

.suitable_section .wrap .content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.suitable_section .wrap .content .item {
    display: flex;
    align-items: center;
    width: 780px;
    height: 124px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.suitable_section .wrap .content .item:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -1px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, #00BD56, #3392D7);
    transition: 1s;
}

.suitable_section .wrap .content .item .icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.suitable_section .wrap .content .item .icon img {
    display: block;
    width: 40px;
    filter: brightness(0) invert(1);
}

.suitable_section .wrap .content .item p {
    width: 550px;
    font-weight: 300;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 26px;
}

.suitable_section .wrap .content .item:hover:after {
    transform: scaleX(1);
}

.color_btn {
    width: fit-content;
    padding: 0 18px;
    height: 45px;
    background: #FFFFFF;
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.6s;
}

.color_btn:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 23px;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 1s;
}

.color_btn p {
    font-weight: 300;
    font-size: 16px;
    color: #1A3638;
    margin-right: 6px;
    position: relative;
    z-index: 2;
    transition: 0.6s;
    text-transform: capitalize;
}

.color_btn img {
    display: block;
    width: 16px;
    transform: rotate(-45deg);
    transition: 0.6s;
    position: relative;
    z-index: 2;
}

.color_btn:hover {
    background: transparent;
}

.color_btn:hover:after {
    opacity: 1;
}

.color_btn:hover p {
    color: #FFFFFF;
}

.color_btn:hover img {
    filter: brightness(0) invert(1);
}

.color_btn.text_effect {
    background: transparent;
}

.color_btn.text_effect:after {
    opacity: 1;
}

.color_btn.text_effect p {
    color: #FFFFFF;
}

.color_btn.text_effect img {
    filter: brightness(0) invert(1);
}

.technical_section {
    padding: 201px 0 0;
}

.technical_section .wrap .sec2_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.technical_section .wrap .sec2_top .more a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    border-radius: 28px;
    width: fit-content;
    padding: 0 24px;
}

.technical_section .wrap .sec2_top .more a p {
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    text-transform: capitalize;
    margin-right: 10px;
}

.technical_section .wrap .sec2_top .more a .icon {
    width: 16px;
    filter: brightness(0) invert(1);
    transform: rotate(-45deg);
    position: relative;
    overflow: hidden;
}

.technical_section .wrap .sec2_top .more a .icon img {
    display: block;
    width: 100%;
    transition: 0.6s;
}

.technical_section .wrap .sec2_top .more a .icon img:nth-child(2) {
    position: absolute;
    transform: translateX(-100%);
    top: 0;
    left: 0;
}

.technical_section .wrap .sec2_top .more a:hover .icon img {
    transform: translateX(100%);
}

.technical_section .wrap .sec2_top .more a:hover .icon img:nth-child(2) {
    transform: translateX(0%);
}

.technical_section .wrap .content {
    position: relative;
}

.technical_section .wrap .content .line {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 0;
    left: 400px;
    z-index: -1;
}

.technical_section .wrap .content .line .l {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    transform-origin: top;
    transform: scaleY(0);
}

.technical_section .wrap .content .item {
    display: flex;
    align-items: center;
}

.technical_section .wrap .content .item:not(:nth-last-child(2)) {
    margin-bottom: 80px;
}

.technical_section .wrap .content .item .item_text {
    position: relative;
    max-width: 1050px;
}

.technical_section .wrap .content .item .item_text .dian {
    width: 19px;
    height: 19px;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    border-radius: 50%;
    position: absolute;
    left: -109px;
    top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technical_section .wrap .content .item .item_text .dian:after {
    content: "";
    width: 9px;
    height: 9px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
}

.technical_section .wrap .content .item .item_text .num {
    font-family: Poppins M;
    font-weight: 500;
    font-size: 52px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.technical_section .wrap .content .item .item_text h5 {
    font-family: Poppins M;
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.technical_section .wrap .content .item .item_text ul li {
    font-weight: 300;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 34px;
    padding: 0 0 0 15px;
    position: relative;
}
.technical_section .wrap .content .item .item_text .more {
    margin: 40px 0 0;
}
.technical_section .wrap .content .item .item_text ul li:after {
    content: "";
    width: 5px;
    height: 5px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 0;
}

.technical_section .wrap .content .item .img {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 200px;
}

.technical_section .wrap .content .item .img img {
    display: block;
    width: 100%;
    height: 100%;
    transition: 3s;
}

.technical_section .wrap .content .item .img:hover img {
    transform: scale(1.1);
}

.key_section {
    padding: 106px 0 0;
}

.key_section .wrap .title {
    font-family: Poppins M;
    font-weight: 500;
    font-size: 36px;
    color: #FFFFFF;
    text-transform: capitalize;
    margin-bottom: 50px;
}

.key_section .wrap .content {
    display: flex;
    justify-content: space-between;
}

.key_section .wrap .content .item {
    width: 516px;
    min-height: 300px;
    background: rgba(15, 54, 60, 0.5);
    border-radius: 16px;
    padding: 0 30px 50px;
}

.key_section .wrap .content .item .item_title {
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.key_section .wrap .content .item .item_title .icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.key_section .wrap .content .item .item_title .icon img {
    width: 38px;
    display: block;
    filter: brightness(0) invert(1);
}

.key_section .wrap .content .item .item_title p {
    width: 370px;
    font-family: Poppins R;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    text-transform: capitalize;
}

.key_section .wrap .content .item .item_text {
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 26px;
    opacity: 0.8;
}

.cookie {
    width: 1080px;
    background: linear-gradient(0deg, #041E10, #0C2333);
    box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 27px;
    z-index: 9999;
    padding: 30px;
    transition: all 1s;
    pointer-events: none;
    opacity: 0;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cookie.active {
    pointer-events: auto;
    opacity: 1;
}

.cookie .bg1 {
    opacity: 0.1;
}

.cookie .l {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    opacity: 0.7;
    width: 730px;
}

.cookie .r {
    display: flex;
    align-items: center;
    gap: 0 18px;
}

.cookie .r .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 47px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.6s;
}

.cookie .r .button p {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    font-family: Poppins M;
}

.cookie .r .button.button1 {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.cookie .r .button.button1 p {
    color: #050A11;
}

.cookie .r .button:hover {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.cookie .r .button:hover p {
    color: #050A11;
}

.page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
}

.page a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins M;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    position: relative;
    transition: 0.6s;
}

.page a:after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: 0.6s;
}

.page a:hover, .page a.on {
    color: #FFFFFF !important;
}

.page a:hover:after, .page a.on:after {
    opacity: 1 !important;
}

.page a:nth-child(1), .page a:nth-last-child(1) {
    border: 1px solid #00BD56;
    color: #00BD56;
}

.page a:nth-child(1):hover, .page a:nth-last-child(1):hover {
    border: 1px solid rgba(0, 189, 86, 0);
}

.page a:nth-last-child(1) {
    transform: rotate(180deg);
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: 0.6s;
}

.fixed.show {
    opacity: 1;
    pointer-events: auto;
}

.fixed .fixed_shadow {
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.8;
    position: absolute;
}

.fixed .fixed_box {
    width: 780px;
    background: #0C2527;
    box-shadow: 0px 1px -1px 0px rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 51px 30px 45px;
}

.fixed .fixed_box .title {
    font-family: Poppins R;
    font-weight: 400;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 42px;
}

.fixed .fixed_box form {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
}

.fixed .fixed_box form input {
    width: 350px;
    height: 75px;
    background: #10383B;
    border-radius: 8px;
    border: none;
    padding: 0 20px;
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
}

.fixed .fixed_box form input::placeholder {
    color: #FFFFFF;
    opacity: 0.6;
}

.fixed .fixed_box form select {
    width: 100%;
}

.fixed .fixed_box form .select2-selection--single {
    width: 100%;
    height: 75px;
    background: #10383B;
    border-radius: 8px;
    border: none;
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 60px;
    padding: 0 40px 0 20px;
    display: flex;
    align-items: center;
}

.fixed .fixed_box form .select2-selection--single .select2-selection__rendered {
    color: #FFFFFF;
    opacity: 0.6;
}

.fixed .fixed_box form .select2-selection--single .select2-selection__arrow {
    display: block;
    width: unset;
    height: unset;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

.fixed .fixed_box form .select2-selection--single .select2-selection__arrow .iconfont {
    font-size: 12px;
    transform: rotate(180deg);
}

.fixed .fixed_box form button {
    width: 100%;
    height: 75px;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed .fixed_box form button p {
    font-family: Poppins R;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.select2-dropdown {
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: #00BD56;
    border-bottom: 1px solid #00BD56;
    background: unset;
}

.select2-container--default .select2-results__option--selected {
    color: #00BD56;
    border-bottom: 1px solid #00BD56;
    background: unset;
}

.select2-results__option {
    padding: 10px 0;
    color: rgba(11, 31, 32, 0.6);
    line-height: 60px;
    border-bottom: 1px solid rgba(13, 30, 30, 0.1);
    margin: 0 10px;
    transition: 0.6s;
}

.message {
    width: 55px;
    height: 55px;
    background: linear-gradient(180deg, #00BD56, #3392D7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    right: 70px;
    z-index: 30;
    bottom: 10vh;
}

.message img {
    display: block;
    width: 25px;
}

/*# sourceMappingURL=style.css.map */
@media screen and (max-width: 1919px) {
    [data-lenis-prevent]::-webkit-scrollbar{
        width: 0.2083333333vw;
    }
    ._scroll_y{
        right: 0.15625vw;
        width: 0.3125vw;
        border-radius: 0.5208333333vw;
    }
    ._scroll_y div{
        border-radius: 0.5208333333vw;
    }
    [data-wheel]::-webkit-scrollbar{
        width: 0.3645833333vw;
    }
    .header{
        height: 5.8333333333vw;
        padding: 0px 3.125vw;
    }
    .header .logo{
        width: 11.3541666667vw;
    }
    .header .nav{
        gap: 0px 3.125vw;
    }
    .header .nav li > a{
        font-size: 0.9375vw;
    }
    .header .nav li > a::after{
        width: 0.4166666667vw;
        height: 0.4166666667vw;
        bottom: -0.8333333333vw;
    }
    .header .nav li .second{
        padding: 4.6354166667vw 0px 0px;
    }
    .header .nav li .second .second_box{
        width: 18.75vw;
        border-radius: 0.625vw;
        padding: 1.0416666667vw 2.0833333333vw 1.6666666667vw;
        transform: translateY(1.0416666667vw);
    }
    .header .nav li .second .second_box .second_item{
        margin-bottom: 0.3125vw;
    }
    .header .nav li .second .second_box .second_item .icon{
        width: 0.8333333333vw;
        top: 0.78125vw;
    }
    .header .nav li .second .second_box .second_item > a{
        font-size: 0.8333333333vw;
        line-height: 2.7604166667vw;
    }
    .header .nav li .second .second_box .second_item .third{
        padding: 0px 0px 0.78125vw;
    }
    .header .nav li .second .second_box .second_item .third a{
        font-size: 0.7291666667vw;
        line-height: 1.4583333333vw;
    }
    .header .nav li:not(:nth-child(3)) .second .second_box{
        width: 15.625vw;
    }
    .header .lan{
        width: 11.3541666667vw;
    }
    .header .lan .lan_box{
        height: 2.5520833333vw;
        border-radius: 1.25vw;
        padding: 0px 1.25vw;
    }
    .header .lan .lan_box a, .header .lan .lan_box span{
        font-size: 0.8333333333vw;
    }
    .header .lan .lan_box span{
        margin: 0px 0.2604166667vw;
    }
    .header.on{
        height: 4.1666666667vw;
    }
    .footer .wrap{
        padding: 1.3541666667vw 0px 1.5625vw;
        width: 83.3333333333vw;
    }
    .footer .wrap .l p{
        font-size: 0.7291666667vw;
        line-height: 1.1458333333vw;
        margin-right: 1.0416666667vw;
    }
    .footer .wrap .l a{
        font-size: 0.7291666667vw;
        line-height: 1.1458333333vw;
    }
    .footer .wrap .r{
        gap: 0px 0.46875vw;
    }
    .footer .wrap .r a, .footer .wrap .r div{
        width: 1.875vw;
        height: 1.875vw;
        border-radius: 0.2083333333vw;
    }
    .footer .wrap .r a img, .footer .wrap .r div img{
        height: 0.8333333333vw;
    }
    .footer .wrap .r a:nth-last-child(2) img, .footer .wrap .r div:nth-last-child(2) img{
        height: 0.9375vw;
    }
    .footer .wrap .r a:nth-last-child(1), .footer .wrap .r div:nth-last-child(1){
        margin-left: 0.5729166667vw;
    }
    .footer .wrap .r a:nth-last-child(1) img, .footer .wrap .r div:nth-last-child(1) img{
        height: 1.0416666667vw;
    }
    .footer .wrap .r a::after, .footer .wrap .r div::after{
        border-radius: 0.2083333333vw;
    }
    .common_footer{
        margin-bottom: 7.9166666667vw;
    }
    .common_footer .wrap{
        width: 83.3333333333vw;
    }
    .common_footer .wrap .l{
        width: 26.0416666667vw;
        height: 33.3333333333vw;
        border-radius: 1.0416666667vw;
        padding: 3.6458333333vw 1.5625vw 0px;
    }
    .common_footer .wrap .l .title{
        font-size: 2.0833333333vw;
        margin-bottom: 3.2291666667vw;
    }
    .common_footer .wrap .l input{
        height: 1.875vw;
        width: 10.9375vw;
        font-size: 0.8333333333vw;
        padding: 0px 0.5208333333vw;
        margin-bottom: 2.2395833333vw;
    }
    .common_footer .wrap .l .select{
        margin-bottom: 2.2395833333vw;
    }
    .common_footer .wrap .l .select2-selection--single{
        height: 1.875vw;
        font-size: 0.8333333333vw;
        line-height: 1.875vw;
    }
    .common_footer .wrap .l .select2-selection--single .select2-selection__arrow{
        right: 1.0416666667vw;
    }
    .common_footer .wrap .l .select2-selection--single .select2-selection__arrow .iconfont{
        font-size: 0.625vw;
    }
    .common_footer .wrap .l .btn{
        margin: 0.625vw 0px 0px;
    }
    .common_footer .wrap .l .btn button{
        height: 2.5520833333vw;
        border-radius: 1.3020833333vw;
        padding: 0px 2.2916666667vw;
    }
    .common_footer .wrap .l .btn button::after{
        border-radius: 1.3020833333vw;
    }
    .common_footer .wrap .l .btn button p{
        font-size: 0.8333333333vw;
        margin-right: 0.5208333333vw;
    }
    .common_footer .wrap .l .btn button img{
        width: 0.8333333333vw;
    }
    .common_footer .wrap .r{
        width: 56.25vw;
        height: 33.3333333333vw;
        border-radius: 1.0416666667vw;
        padding: 3.125vw 3.125vw 0px 2.65625vw;
    }
    .common_footer .wrap .r .r_top{
        margin-bottom: 3.125vw;
    }
    .common_footer .wrap .r .r_top .title{
        font-size: 2.0833333333vw;
        line-height: 2.7083333333vw;
    }
    .common_footer .wrap .r .r_top .logo{
        width: 11.3541666667vw;
    }
    .common_footer .wrap .r .r_info{
        width: 22.9166666667vw;
        gap: 2.0833333333vw 0px;
    }
    .common_footer .wrap .r .r_info .item h5{
        font-size: 0.8333333333vw;
        margin-bottom: 0.625vw;
    }
    .common_footer .wrap .r .r_info .item p{
        font-size: 0.8333333333vw;
        line-height: 1.1458333333vw;
    }
    .common_footer .wrap .r .r_bottom{
        margin: 2.6041666667vw 0px 0px;
        padding: 2.6041666667vw 0px 0px;
    }
    .common_footer .wrap .r .r_bottom .control{
        gap: 0px 5.2083333333vw;
    }
    .common_footer .wrap .r .r_bottom .control .item{
        font-size: 1.0416666667vw;
        line-height: 1.1458333333vw;
    }
    .common_footer .wrap .r .r_bottom .r_bottom_box{
        margin: 2.1875vw 0px 0px;
    }
    .common_footer .wrap .r .r_bottom .r_bottom_box .position{
        gap: 0px 1.40625vw;
        transform: translateY(1.0416666667vw);
    }
    .common_footer .wrap .r .r_bottom .r_bottom_box .position a{
        font-size: 0.8333333333vw;
        line-height: 1.1458333333vw;
    }
    .w-1600{
        width: 83.3333333333vw;
    }
    .w-1200{
        width: 62.5vw;
    }
    .title_color{
        font-size: 2.5vw;
        line-height: 3.125vw;
    }
    .case_section{
        padding: 8.2291666667vw 0px;
    }
    .case_section .wrap .title_color{
        margin-bottom: 3.125vw;
    }
    .case_section .wrap .title{
        font-size: 1.875vw;
        margin-bottom: 3.125vw;
    }
    .case_section .wrap .swiper{
        padding: 0.1041666667vw 0px 0px;
    }
    .case_section .wrap .swiper .swiper-pagination{
        margin: 3.125vw 0px 0px;
        height: 0.1041666667vw;
    }
    .case_section .wrap .swiper .swiper-pagination .swiper-pagination-progressbar-fill{
        height: 0.2083333333vw;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box{
        border-radius: 0.8333333333vw;
        padding: 2.6041666667vw 1.6145833333vw;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .slide_box_text h5{
        font-size: 1.4583333333vw;
        margin-bottom: 2.6041666667vw;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .slide_box_text p{
        font-size: 0.8333333333vw;
        line-height: 1.25vw;
        padding: 0px 2.0833333333vw 0px 0px;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more{
        width: 2.34375vw;
        height: 2.34375vw;
        border-radius: 1.3541666667vw;
        padding: 0px 0.78125vw 0px 0px;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more::after{
        border-radius: 1.3541666667vw;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more p{
        font-size: 0.8333333333vw;
        left: 0.9375vw;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more p div{
        min-width: 0.2604166667vw;
        transform: translateX(0.5208333333vw);
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more img{
        width: 0.8333333333vw;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover{
        width: 7.2916666667vw;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more{
        width: 7.2916666667vw;
    }
    .suitable_section{
        padding: 5.2083333333vw 0px 0px;
    }
    .suitable_section .wrap .title{
        font-size: 1.875vw;
        margin: 0px 0px 1.0416666667vw;
    }
    .suitable_section .wrap .content .item{
        width: 40.625vw;
        height: 6.4583333333vw;
    }
    .suitable_section .wrap .content .item .icon{
        width: 3.3333333333vw;
        height: 3.3333333333vw;
        border-radius: 0.625vw;
        margin-right: 1.0416666667vw;
    }
    .suitable_section .wrap .content .item .icon img{
        width: 2.0833333333vw;
    }
    .suitable_section .wrap .content .item p{
        width: 28.6458333333vw;
        font-size: 0.9375vw;
        line-height: 1.3541666667vw;
    }
    .color_btn{
        padding: 0px 0.9375vw;
        height: 2.34375vw;
        border-radius: 1.1979166667vw;
    }
    .color_btn::after{
        border-radius: 1.1979166667vw;
    }
    .color_btn p{
        font-size: 0.8333333333vw;
        margin-right: 0.3125vw;
    }
    .color_btn img{
        width: 0.8333333333vw;
    }
    .technical_section{
        padding: 10.46875vw 0px 0px;
    }
    .technical_section .wrap .sec2_top{
        margin-bottom: 4.1666666667vw;
    }
    .technical_section .wrap .sec2_top .more a{
        height: 2.8645833333vw;
        border-radius: 1.4583333333vw;
        padding: 0px 1.25vw;
    }
    .technical_section .wrap .sec2_top .more a p{
        font-size: 0.8333333333vw;
        margin-right: 0.5208333333vw;
    }
    .technical_section .wrap .sec2_top .more a .icon{
        width: 0.8333333333vw;
    }
    .technical_section .wrap .content .line{
        left: 20.8333333333vw;
    }
    .technical_section .wrap .content .item:not(:nth-last-child(2)){
        margin-bottom: 4.1666666667vw;
    }
    .technical_section .wrap .content .item .item_text{
        max-width: 54.6875vw;
    }
    .technical_section .wrap .content .item .item_text .dian{
        width: 0.9895833333vw;
        height: 0.9895833333vw;
        left: -5.6770833333vw;
        top: 2.6041666667vw;
    }
    .technical_section .wrap .content .item .item_text .dian::after{
        width: 0.46875vw;
        height: 0.46875vw;
    }
    .technical_section .wrap .content .item .item_text .num{
        font-size: 2.7083333333vw;
        margin-bottom: 0.5208333333vw;
    }
    .technical_section .wrap .content .item .item_text h5{
        font-size: 1.25vw;
        margin-bottom: 1.5625vw;
    }
    .technical_section .wrap .content .item .item_text ul li{
        font-size: 0.9375vw;
        line-height: 1.7708333333vw;
        padding: 0px 0px 0px 0.78125vw;
    }
    .technical_section .wrap .content .item .item_text .more{
        margin: 2.0833333333vw 0px 0px;
    }
    .technical_section .wrap .content .item .item_text ul li::after{
        width: 0.2604166667vw;
        height: 0.2604166667vw;
        top: 0.7291666667vw;
    }
    .technical_section .wrap .content .item .img{
        width: 15.625vw;
        height: 15.625vw;
        border-radius: 0.5208333333vw;
        margin-right: 10.4166666667vw;
    }
    .key_section{
        padding: 5.5208333333vw 0px 0px;
    }
    .key_section .wrap .title{
        font-size: 1.875vw;
        margin-bottom: 2.6041666667vw;
    }
    .key_section .wrap .content .item{
        width: 26.875vw;
        min-height: 15.625vw;
        border-radius: 0.8333333333vw;
        padding: 0px 1.5625vw 2.6041666667vw;
    }
    .key_section .wrap .content .item .item_title{
        padding: 1.5625vw 0px;
        margin-bottom: 1.5625vw;
    }
    .key_section .wrap .content .item .item_title .icon{
        width: 3.3333333333vw;
        height: 3.3333333333vw;
        border-radius: 0.625vw;
        margin-right: 1.0416666667vw;
    }
    .key_section .wrap .content .item .item_title .icon img{
        width: 1.9791666667vw;
    }
    .key_section .wrap .content .item .item_title p{
        width: 19.2708333333vw;
        font-size: 1.0416666667vw;
    }
    .key_section .wrap .content .item .item_text{
        font-size: 0.8333333333vw;
        line-height: 1.3541666667vw;
    }
    .cookie{
        width: 56.25vw;
        border-radius: 0.4166666667vw;
        bottom: 1.40625vw;
        padding: 1.5625vw;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0.5208333333vw;
    }
    .cookie .l{
        font-size: 0.8333333333vw;
        line-height: 1.25vw;
        width: 38.0208333333vw;
    }
    .cookie .r{
        gap: 0px 0.9375vw;
    }
    .cookie .r .button{
        width: 5.625vw;
        height: 2.4479166667vw;
        border-radius: 1.25vw;
    }
    .cookie .r .button p{
        font-size: 0.9375vw;
    }
    .page{
        gap: 0px 1.0416666667vw;
    }
    .page a{
        width: 2.6041666667vw;
        height: 2.6041666667vw;
        font-size: 0.9375vw;
    }
    .page a .iconfont {
        font-size: 0.8333333333vw;
    }
    .fixed .fixed_box{
        width: 40.625vw;
        border-radius: 0.8333333333vw;
        padding: 2.65625vw 1.5625vw 2.34375vw;
    }
    .fixed .fixed_box .title{
        font-size: 1.875vw;
        margin-bottom: 2.1875vw;
    }
    .fixed .fixed_box form{
        gap: 1.5625vw 1.0416666667vw;
    }
    .fixed .fixed_box form input{
        width: 18.2291666667vw;
        height: 3.90625vw;
        border-radius: 0.4166666667vw;
        padding: 0px 1.0416666667vw;
        font-size: 0.8333333333vw;
    }
    .fixed .fixed_box form .select2-selection--single{
        height: 3.90625vw;
        border-radius: 0.4166666667vw;
        font-size: 0.8333333333vw;
        line-height: 3.125vw;
        padding: 0px 2.0833333333vw 0px 1.0416666667vw;
    }
    .fixed .fixed_box form .select2-selection--single .select2-selection__arrow{
        right: 2.0833333333vw;
    }
    .fixed .fixed_box form .select2-selection--single .select2-selection__arrow .iconfont{
        font-size: 0.625vw;
    }
    .fixed .fixed_box form button{
        height: 3.90625vw;
        border-radius: 0.4166666667vw;
    }
    .fixed .fixed_box form button p{
        font-size: 0.8333333333vw;
    }
    .select2-dropdown{
        backdrop-filter: blur(0.5208333333vw);
        border-radius: 0.4166666667vw !important;
    }
    .select2-results__option{
        padding: 0.5208333333vw 0px;
        line-height: 3.125vw;
        margin: 0px 0.5208333333vw;
    }
    .message{
        width: 2.8645833333vw;
        height: 2.8645833333vw;
        right: 3.6458333333vw;
    }
    .message img{
        width: 1.3020833333vw;
    }
}
@media screen and (max-width: 768px) {
    .header {
        height: 60px !important;
        background: #000000;
        padding: 0 5vw;
    }
    .header .logo {
        width: 120px;
    }
    .header .nav {
        position: fixed;
        z-index: -1;
        width: 100vw;
        height: 100vh;
        background: #000000;
        top: 0;
        left: 0;
        display: block;
        padding: 80px 5vw 0;
        clip-path: inset(0 0 100% 0);
        transition: 1s;
    }
    .header .nav.show {
        clip-path: inset(0 0 0% 0);
    }
    .header .nav li {
        display: block;
        height: unset;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }
    .header .nav li > a {
        font-size: 16px;
        line-height: 60px;
        width: 50%;
        display: block;
    }
    .header .nav li:nth-child(1) > a {
        width: 100%;
    }
    .header .nav li > a::after {
        display: none;
    }
    .header .nav li .second {
        width: 100%;
        position: unset;
        transform: unset;
        padding: 0 0 20px;
        display: none;
    }
    .header .nav li .second .second_box {
        width: 100% !important;
        opacity: 1;
        background: unset;
        padding: 0 10px;

    }
    .header .nav li .second .second_box .second_item > a {
        font-size: 15px;
        line-height: 3;
    }
    .header .nav li .second .second_box .second_item {
        margin-bottom: 0;
        border: none;
    }
    .header .nav li .second .second_box .second_item .third {
        padding: 0 0 0 5px;
    }
    .header .nav li .second .second_box .second_item .icon {
        width: 14px;
        top: 15px;
    }
    .header .nav li .second .second_box .second_item .third a {
        font-size: 14px;
        line-height: 2.5;
    }
    .header .nav li .icon1 {
        width: 14px;
        display: block !important;
        position: absolute;
        top: 24px;
        right: 0;
        filter: brightness(0) invert(1);
        transition: 0.6s;
    }
    .header .nav li .icon1 img {
        display: block;
    }
    .header .nav li.item_active .icon1 {
        transform: rotate(90deg);
    }

    .head_click {
        display: block !important;
        position: relative;
        width: 22px;
        height: 16px;
        cursor: pointer;
        margin: 0 0 0 16px;
    }

    .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;
    }

    .head_click .show div:first-child {
        transition-delay: 0.4s;
    }

    .head_click .show div:nth-child(2) {
        transition-delay: 0.5s;
    }

    .head_click .show div:last-child {
        transition-delay: 0.6s;
    }

    .head_click .show div {
        width: 100%;
        height: 2px;
        background: #fff;
        transition: 0.3s;
    }

    .head_click .hide {
        width: 100%;
        height: 24px;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
    }

    .head_click .hide:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 100%;
        height: 2px;
        background: #fff;
        transform: rotate(45deg) scaleX(0);
        transition: .75s cubic-bezier(.19, 1, .22, 1);
    }

    .head_click .hide:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 100%;
        height: 2px;
        background: #fff;
        transform: rotate(-45deg) scaleX(0);
        transition: .75s cubic-bezier(.19, 1, .22, 1);
    }

    .head_click.on .show div {
        transition-delay: unset;
    }

    .head_click.on .show div:first-child {
        width: 0;
    }

    .head_click.on .show div:nth-child(2) {
        width: 0;
        transition-delay: 0.1s;
    }

    .head_click.on .show div:last-child {
        width: 0;
        transition-delay: 0.2s;
    }

    .head_click.on .hide:after {
        transform: rotate(45deg) scaleX(1);
        transition-delay: 0.6s;
    }

    .head_click.on .hide:before {
        transform: rotate(-45deg) scaleX(1);
        transition-delay: 0.6s;
    }
    .header .header_r {
        display: flex;
        align-items: center;
    }
    .header .lan {
        width: unset;
    }
    .header .lan .lan_box {
        height: 33px;
        border-radius: 20px;
        padding: 0 15px;
    }
    .header .lan .lan_box a, .header .lan .lan_box span {
        font-size: 13px;
    }
    .header .lan .lan_box span {
        margin: 0 5px;
    }
    .w-1600 {
        width: 90vw;
    }
    .title_color {
        font-size: 26px;
        line-height: 1.6;
    }
    .home .bg img {
        height: 100%;
    }
    .common_footer .wrap {
        width: 90%;
        display: block;
    }
    .common_footer .wrap .l {
        width: 100%;
        height: unset;
        border-radius: 6px;
        overflow: hidden;
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    .common_footer .wrap .l .title {
        font-size: 20px;
        text-align: left;
        margin-bottom: 20px;
    }
    .common_footer .wrap .l input {
        width: 48%;
        height: 40px;
        font-size: 14px;
        padding: 0 0px;
        margin-bottom: 20px;
    }
    .common_footer .wrap .l .select {
        margin-bottom: 20px;
    }

    .common_footer .wrap .l .select2-selection--single {
        height: 40px;
        border-radius: 0;
    }
    .common_footer .wrap .l .select2-selection--single .select2-selection__rendered {
        font-size: 14px;
        padding: 0;
        line-height: 40px;
    }
    .common_footer .wrap .l .select2-selection--single .select2-selection__arrow .iconfont {
        font-size: 10px;
        top: 43%;
    }
    .select2-results__option {
        padding: 15px 0;
        margin: 0 15px;
    }
    .common_footer .wrap .l .btn button {
        height: 40px;
        padding: 0 15px;
        border-radius: 20px;
    }
    .common_footer .wrap .l .btn button p {
        font-size: 14px;
        margin-right: 6px;
    }
    .common_footer .wrap .l .btn button img {
        width: 14px;
    }
    .common_footer .wrap .r {
        width: 100%;
        height: unset;
        padding: 30px 20px 40px;
        border-radius: 6px;
    }
    .common_footer .wrap .r .r_top .title {
        font-size: 20px;
        line-height: 1.4;
    }
    .common_footer .wrap .r .r_top .logo {
        display: none;
    }
    .common_footer .wrap .r .r_top {
        margin-bottom: 25px;
    }
    .common_footer .wrap .r .r_info {
        width: 100%;
        gap: 20px 0;
    }
    .common_footer .wrap .r .r_info .item h5 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .common_footer .wrap .r .r_info .item p {
        font-size: 14px;
        line-height: 1.6;
    }
    .common_footer .wrap .r .r_bottom {
        margin: 30px 0 0;
        padding: 20px 0 0;
        display: none;
    }
    .common_footer .wrap .r .r_bottom .control .item {
        font-size: 16px;
        line-height: 2;
    }
    .common_footer .wrap .r .r_bottom .r_bottom_box .position a {
        font-size: 14px;
        line-height: 1.8;
    }
    .common_footer .wrap .r .r_bottom .r_bottom_box .position {
        flex-wrap: wrap;
        gap: 8px 15px;
    }
    .footer .wrap {
        flex-direction: column-reverse;
        padding: 30px 0 15px;
    }
    .footer .wrap .r a, .footer .wrap .r div {
        width: 36px;
        height: 36px;
        border-radius: 4px;
    }
    .footer .wrap .l {
        margin: 25px 0 0;
        display: block;
    }
    .footer .wrap .l p,.footer .wrap .l a {
        width: 100%;
        font-size: 14px;
        line-height: 1.6;
        display: inline-block;
        text-align: center;
    }
    .footer .wrap .r a img, .footer .wrap .r div img {
        height: 16px !important;
    }
    .footer .wrap .r a:nth-last-child(1) img, .footer .wrap .r div:nth-last-child(1) img {
        height: 20px !important;
    }
    .footer .wrap .r {
        gap: 0 9px;
    }
    .message {
        width: 40px;
        height: 40px;
        right: 2vw;
    }
    .message img {
        width: 16px;
    }
    .title_color .highlightText {
        display: none;
    }
    .case_section {
        padding: 60px 0 60px;
    }
    .case_section .wrap .title_color {
        margin-bottom: 30px;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box {
        border-radius: 6px;
        padding: 30px 25px;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .slide_box_text h5 {
        font-size: 22px;
        margin-bottom: 40px;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 0px 12px 0px 0px;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more img {
        width: 16px;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box:hover .more {
        width: 120px;
        border-radius: 20px;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more:hover {
        width: 120px;
        border-radius: 20px;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more p {
        font-size: 14px;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more::after {
        border-radius: 20px;
    }
    .case_section .wrap .swiper .swiper-wrapper .swiper-slide .slide_box .more p {
        left: 10px;
    }
    .case_section .wrap .swiper .swiper-pagination {
        margin: 30px 0 0;
    }
    .case_section .wrap .swiper .swiper-pagination .swiper-pagination-progressbar-fill {
        height: 2px;
    }
    .case_section .wrap .swiper .swiper-pagination {
        height: 2px;
    }
    .select2-dropdown {
        border-radius: 4px;
    }
    .select2-results__option {
        line-height: 30px;
    }
    .color_btn {
        height: 35px;
        padding: 0 20px;
        border-radius: 35px;
    }
    .color_btn p {
        font-size: 14px;
        margin-right: 8px;
    }
    .color_btn img {
        width: 12px;
    }
    .key_section {
        padding: 60px 0 0;
    }
    .key_section .wrap .title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .key_section .wrap .content {
        display: block;
    }
    .key_section .wrap .content .item {
        width: 100%;
        padding: 30px 20px 30px;
        margin-bottom: 30px;
    }
    .key_section .wrap .content .item .item_title .icon {
        width: 50px;
        height: 50px;
        border-radius: 4px;
        margin-bottom: 15px;

    }
    .key_section .wrap .content .item .item_title p {
        width: 100%;
    }
    .key_section .wrap .content .item .item_title p {
        font-size: 18px;
    }
    .key_section .wrap .content .item .item_text {
        font-size: 14px;
        line-height: 1.8;
    }
    .key_section .wrap .content .item .item_title .icon img {
        width: 30px;
    }
    .key_section .wrap .content .item .item_title {
        margin-bottom: 20px;
        padding: 0 0 15px;
        display: block;
    }
    .case_section .wrap .title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .case_section .wrap .swiper {
        padding: 2px;
    }
    .technical_section .wrap .sec2_top .title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .technical_section .wrap .content .item {
        display: block;
        padding: 0 0 0 20px;
    }
    .technical_section .wrap .content .line {
        left: 0;
    }
    .technical_section .wrap .content .item .img {
        width: 200px;
        height: 200px;
        border-radius: 6px;
        margin-bottom: 20px;
    }
    .technical_section .wrap .content .item .item_text .dian {
        width: 14px;
        height: 14px;
        left: -27px;
        top: 5px;
    }
    .technical_section .wrap .content .item .item_text .num {
        font-size: 26px;
        line-height: 1;
        margin-bottom: 20px;
    }
    .technical_section .wrap .content .item .item_text h5 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .technical_section .wrap .content .item .item_text ul li::after {
        width: 5px;
        height: 5px;
        top: 12px;
    }
    .technical_section .wrap .content .item .item_text ul li {
        font-size: 14px;
        line-height: 2;
        padding: 0 0 0 15px;
        margin-bottom: 5px;
    }
    .technical_section .wrap .content .item .item_text .dian::after {
        width: 6px;
        height: 6px;
    }
    .technical_section .wrap .content .item:not(:nth-last-child(2)) {
        margin-bottom: 65px;
    }
    .technical_section .wrap .content .item .item_text .more {
        margin: 30px 0 0;
    }
    .technical_section .wrap .content .item .item_text {
        max-width: 100% ;
    }
    .color_btn::after {
        border-radius: 24px;
    }
    .w-1200 {
        width: 90vw;
    }
    .page {
        gap: 0 5px;
    }
    .page a .iconfont {
        font-size: 12px;
    }
    .page a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .technical_section .wrap .sec2_top {
        display: block;
    }
    .technical_section .wrap .sec2_top {
        margin-bottom: 40px;
    }
    .technical_section .wrap .sec2_top .more {
        margin: 15px 0 0;
    }
    .technical_section .wrap .sec2_top .more a p {
        font-size: 14px;
        margin-right: 8px;
    }
    .technical_section .wrap .sec2_top .more a {
        height: 40px;
        border-radius: 20px;
        padding: 0 20px;
    }
    .technical_section .wrap .sec2_top .more a .icon {
        width: 14px;
    }
    .fixed .fixed_box {
        width: 90vw;
        border-radius: 6px;
        padding: 30px 20px;
    }
    .fixed .fixed_box .title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .fixed .fixed_box form input {
        width: 100%;
        height: 50px;
        padding: 0 15px;
        border-radius: 4px;
        font-size: 14px;
    }
    .fixed .fixed_box form {
        gap: 25px 0;
    }
    .fixed .fixed_box form .select2-selection--single {
        height: 50px;
        border-radius: 4px;
        padding: 0;
    }
    .fixed .fixed_box form .select2-selection--single .select2-selection__arrow .iconfont {
        font-size: 8px;
    }
    .fixed .fixed_box form .select2-selection--single .select2-selection__arrow {
        right: 15px;
    }
    .fixed .fixed_box form button {
        height: 50px;
        border-radius: 4px;
    }
    .fixed .fixed_box form button p {
        font-size: 14px;
    }
    .fixed .fixed_box form .select2-selection--single .select2-selection__rendered {
        padding: 0 0 0 15px;
        font-size: 14px;
    }
    .cookie {
        width: 90%;
        padding: 30px 20px;
        border-radius: 6px;
        display: block;
        bottom: 20px;
    }
    .cookie .r .button {
        width: 98px;
        height: 40px;
        border-radius: 24px;
    }
    .cookie .r .button p {
        font-size: 14px;
    }
    .cookie .l {
        width: 100%;
        font-size: 16px;
        line-height: 2;
    }
    .cookie .r {
        gap: 0 10px;
        margin: 30px 0 0;
    }
    .common_footer .wrap .l .btn button {
        margin: 20px 0 0;
        padding: 0 21px;
    }
}
