* {
    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;
}

*, *::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;
}

.lenis_scroll {
    height: 250px;
    overflow: hidden;
    overflow-y: scroll;
}

.lenis_scroll::-webkit-scrollbar-thumb {
    background: var(--color);
}

.lenis_scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.lenis_scroll::-webkit-scrollbar {
    width: 2px !important;
    display: block;
}

.common_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.common_bg img {
    display: block;
    width: 100%;
    height: 100%;
}

.parallax {
    width: 100%;
    height: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .6s ease;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

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

.header .wrap .logo {
    width: 105px;
    display: block;
}

.header .wrap .logo img {
    display: block;
    width: 100%;
}

.header .wrap .header_r {
    display: flex;
    align-items: center;
  height: 100%;
}

.header .wrap .header_r .nav {
    display: flex;
    align-items: center;
    gap: 0 35px;
    margin-right: 60px;
  height: 100%;
}

.header .wrap .header_r .nav li {
    position: relative;
    height: 100%;
  display: flex;
  align-items: center;
}
.header .wrap .header_r .nav li .second {
  position: absolute;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
  top: 80px;
  background: #fff;
  transition: 0.6s ease;
  clip-path: inset(0 0 100% 0);
  padding: 20px 0;
}
.header.on .wrap .header_r .nav li .second {
  top: 70px;
}
.header .wrap .header_r .nav li:hover .second {
  clip-path: inset(0 0 0 0);
}
.header .wrap .header_r .nav li .second a {
  display: block;
  width: 200px;
  font-size: 16px;
  text-align: center;
  color: #666666;
  line-height: 2;
  transition: all .6s;
}
.header .wrap .header_r .nav li .second a:hover {
  color: #182E70;
}
.header .wrap .header_r .nav li img {
    display: block;
    width: 37px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 19px;
    clip-path: inset(0 100% 0 0);
    transition: 0.6s;
}
.header.on .wrap .header_r .nav li img {
  bottom: 17px;
}
.header .wrap .header_r .nav li>a {
    font-size: 16px;
    color: #111111;
    transition: 0.6s;
}

.header .wrap .header_r .nav li:hover img, .header .wrap .header_r .nav li.on img {
    clip-path: inset(0 0 0 0);
}

.header .wrap .header_r .nav li:hover>a, .header .wrap .header_r .nav li.on>a {
    color: #182E70;
}

.header .wrap .header_r .search {
    display: block;
    font-size: 20px;
    color: #111111;
    transition: 0.6s;
   
}
.header .wrap .header_r .line {
    margin: 0 20px;
    width: 1px;
    height: 15px;
    background: #333;
}
.header .wrap .header_r .search:hover {
    color: #182E70;
}

.header .wrap .header_r .lan {
    display: flex;
    align-items: center;
    gap: 0 8px;
    cursor: pointer;
    position: relative;
}

.header .wrap .header_r .lan:after {
    content: "";
    width: 1px;
    height: 12px;
    background: #111111;
    opacity: 0.1;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.header .wrap .header_r .lan .iconfont {
    font-size: 20px;
    color: #111111;
    transition: 0.6s;
}

.header .wrap .header_r .lan p {
    font-weight: normal;
    font-size: 14px;
    color: #111111;
    transition: 0.6s;
}

.header .wrap .header_r .lan:hover .iconfont, .header .wrap .header_r .lan:hover p {
    color: #182E70;
}

.header.on {
    height: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer {
    background: #F0F1F2;
    padding: 99px 0 102px;
}

.footer .wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer .wrap .backTop {
    position: absolute;
    bottom: 0;
    right: -220px;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    cursor: pointer;
}

.footer .wrap .backTop .iconfont {
    font-size: 26px;
    color: #0F208A;
    transition: 0.6s;
}

.footer .wrap .backTop:hover {
    background: #0F208A;
}

.footer .wrap .backTop:hover .iconfont {
    color: #FFFFFF;
}

.footer .wrap .l .tel {
    font-weight: bold;
    font-size: 40px;
    color: #184392;
    margin-bottom: 6px;
}

.footer .wrap .l .tel_des {
    font-weight: 500;
    font-size: 16px;
    color: #111111;
}

.footer .wrap .l .footer_contact {
    margin: 50px 0 55px;
}

.footer .wrap .l .footer_contact p {
    font-weight: normal;
    font-size: 18px;
    color: #666666;
    line-height: 36px;
}

.footer .wrap .l .ewm {
    width: 124px;
}

.footer .wrap .l .ewm img {
    display: block;
    width: 100%;
}

.footer .wrap .r {
    padding: 15px 0 0;
}

.footer .wrap .r .footer_nav {
    display: flex;
    gap: 0 120px;
    margin-bottom: 126px;
}

.footer .wrap .r .footer_nav ul li a {
    display: block;
    font-weight: normal;
    font-size: 16px;
    color: #111111;
    line-height: 36px;
    transition: 0.6s;
}

.footer .wrap .r .footer_nav ul li a:hover {
    color: #184392 !important;
}

.footer .wrap .r .footer_nav ul li:nth-child(1) a {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 19px;
}

.footer .wrap .r .footer_nav .nav_spec {
    margin: -2px 0 0 20px;
}

.footer .wrap .r .footer_nav .nav_spec a {
    display: block;
    font-weight: bold;
    font-size: 20px;
    color: #111111;
    line-height: 44px;
    transition: 0.6s;
}

.footer .wrap .r .footer_nav .nav_spec a:hover {
    color: #184392 !important;
}

.footer .wrap .r .copyright {
    text-align: right;
}

.footer .wrap .r .copyright p, .footer .wrap .r .copyright a {
    font-weight: normal;
    font-size: 14px;
    color: #111111;
    line-height: 24px;
}

.footer .wrap .r .copyright a {
    transition: 0.6s;
}

.footer .wrap .r .copyright a:hover {
    color: #184392 !important;
}

.w1400 {
    width: 1400px;
    margin: 0 auto;
}

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

.common_banner {
    overflow: hidden;
    position: relative;
}

.common_banner .img {
    width: 100%;
}

.common_banner .img img {
    width: 100%;
    transition: 2s;
    transform: scale(1.1);
}

.common_banner .text {
    font-weight: bold;
    font-size: 48px;
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.common_banner .text span {
    font-weight: bold;
}

.common_banner.on .img img {
    transform: scale(1);
}

.common_links {
    position: sticky;
    top: 70px;
    z-index: 99;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
}

.common_links .wrap {
    display: flex;
    gap: 0 49px;
    height: 60px;
    align-items: center;
}

.common_links .wrap a, .common_links .wrap div {
    font-weight: normal;
    font-size: 16px;
    color: #111111;
    transition: 0.6s;
    cursor: pointer;
}

.common_links .wrap a.on, .common_links .wrap div.on {
    font-weight: bold;
}

.common_links .wrap a:hover, .common_links .wrap a.on, .common_links .wrap div:hover, .common_links .wrap div.on {
    color: #184392;
}

.common_title {
    font-weight: bold;
    font-size: 36px;
    color: #111111;
    line-height: 48px;
}

.page {
    display: flex;
    justify-content: center;
    gap: 0 5px;
}

.page a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: 0.6s;
    font-weight: 400;
    font-size: 19px;
    color: #444444;
    transition: 0.6s;
}

.page a:hover, .page a.on {
    background: #0F208A;
    color: #FFFFFF;
}

.page a:nth-last-child(1) {
    background: #F7F9FA;
    font-weight: 400;
    font-size: 16px;
    color: #444444;
}
.header .wrap .header_r .company_link {
    font-size: 16px;
    color: #111111;
    transition: 0.6s;
}
.header .wrap .header_r .company_link:hover {
    color: #182E70;
}
/*# sourceMappingURL=style.css.map */
@media screen and (max-width: 1919px) {
    [data-lenis-prevent]{
        padding: 0px 1.0416666667vw 0px 0px;
    }
    [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;
    }
    .lenis_scroll{
        height: 13.0208333333vw;
    }
    .lenis_scroll::-webkit-scrollbar{
        width: 0.1041666667vw !important;
    }
    .header{
        height: 4.1666666667vw;
    }
    .header .wrap .logo{
        width: 5.46875vw;
    }
    .header .wrap .header_r .nav{
        gap: 0px 1.8229166667vw;
        margin-right: 3.125vw;
    }
    .header .wrap .header_r .nav li .second{
        width: 10.4166666667vw;
        top: 4.1666666667vw;
        padding: 1.0416666667vw 0px;
    }
    .header.on .wrap .header_r .nav li .second{
        top: 3.6458333333vw;
    }
    .header .wrap .header_r .nav li .second a{
        width: 10.4166666667vw;
        font-size: 0.8333333333vw;
    }
    .header .wrap .header_r .nav li img{
        width: 1.9270833333vw;
        bottom: 0.9895833333vw;
    }
    .header.on .wrap .header_r .nav li img{
        bottom: 0.8854166667vw;
    }
    .header .wrap .header_r .nav li > a{
        font-size: 0.8333333333vw;
    }
    .header .wrap .header_r .search{
        font-size: 1.0416666667vw;
        
    }
    .header .wrap .header_r .line {
        margin: 0 1vw;
    }
    .header .wrap .header_r .lan{
        gap: 0px 0.4166666667vw;
    }
    .header .wrap .header_r .lan::after{
        height: 0.625vw;
        left: -1.0416666667vw;
    }
    .header .wrap .header_r .lan .iconfont{
        font-size: 1.0416666667vw;
    }
    .header .wrap .header_r .lan p{
        font-size: 0.7291666667vw;
    }
    .header.on{
        height: 3.6458333333vw;
    }
    .footer{
        padding: 5.15625vw 0px 5.3125vw;
    }
    .footer .wrap .backTop{
        right: -11.4583333333vw;
        width: 3.125vw;
        height: 3.125vw;
    }
    .footer .wrap .backTop .iconfont{
        font-size: 1.3541666667vw;
    }
    .footer .wrap .l .tel{
        font-size: 2.0833333333vw;
        margin-bottom: 0.3125vw;
    }
    .footer .wrap .l .tel_des{
        font-size: 0.8333333333vw;
    }
    .footer .wrap .l .footer_contact{
        margin: 2.6041666667vw 0px 2.8645833333vw;
    }
    .footer .wrap .l .footer_contact p{
        font-size: 0.9375vw;
        line-height: 1.875vw;
    }
    .footer .wrap .l .ewm{
        width: 6.4583333333vw;
    }
    .footer .wrap .r{
        padding: 0.78125vw 0px 0px;
    }
    .footer .wrap .r .footer_nav{
        gap: 0px 6.25vw;
        margin-bottom: 6.5625vw;
    }
    .footer .wrap .r .footer_nav ul li a{
        font-size: 0.8333333333vw;
        line-height: 1.875vw;
    }
    .footer .wrap .r .footer_nav ul li:nth-child(1) a{
        font-size: 1.0416666667vw;
        margin-bottom: 0.9895833333vw;
    }
    .footer .wrap .r .footer_nav .nav_spec{
        margin: -0.1041666667vw 0px 0px 1.0416666667vw;
    }
    .footer .wrap .r .footer_nav .nav_spec a{
        font-size: 1.0416666667vw;
        line-height: 2.2916666667vw;
    }
    .footer .wrap .r .copyright p, .footer .wrap .r .copyright a{
        font-size: 0.7291666667vw;
        line-height: 1.25vw;
    }
    .w1400{
        width: 72.9166666667vw;
    }
    .w1200{
        width: 62.5vw;
    }
    .common_banner .text{
        font-size: 2.5vw;
    }
    .common_links{
        top: 3.6458333333vw;
    }
    .common_links .wrap{
        gap: 0px 2.5520833333vw;
        height: 3.125vw;
    }
    .common_links .wrap a, .common_links .wrap div{
        font-size: 0.8333333333vw;
    }
    .common_title{
        font-size: 1.875vw;
        line-height: 2.5vw;
    }
    .page{
        gap: 0px 0.2604166667vw;
    }
    .page a{
        width: 2.34375vw;
        height: 2.34375vw;
        font-size: 0.9895833333vw;
    }
    .page a:nth-last-child(1){
        font-size: 0.8333333333vw;
    }
    .header .wrap .header_r .company_link {
        font-size: 0.8333333333vw;
    }
}
@media screen and (max-width: 768px) {
    .w1400 {
        width: 90%;
    }
    .header {
        background: #ffffff;
        height: 60px !important;
    }
    .header .wrap .logo {
        width: 65px;
    }
    .header .wrap .header_r .nav {
        width: 100vw;
        height: 100vh;
        position: fixed;
        z-index: -1;
        background: #ffffff;
        top: 0;
        left: 0;
        padding: 100px 5vw 0;
        display: block;
        clip-path: inset(0 0 100% 0);
        transition: 1s;
    }
    .header .wrap .header_r .nav.on {
        clip-path: inset(0 0 0% 0);
    }
    .header .wrap .header_r .nav li {
        height: unset;
        border-bottom: 1px solid #e6e6e6;
        display: block;
    }
    .header .wrap .header_r .nav li .iconfont {
        display: block !important;
        position: absolute;
        right: 0;
        top: 23px;
        font-size: 14px;
        color: #111111;
        transition: 0.6s;
    }
    .header .wrap .header_r .nav li.item_active .iconfont {
        transform: rotate(90deg);
    }
    .header .wrap .header_r .nav li>a {
        display: block;
        font-size: 15px;
        line-height: 60px;
        width: 50%;
    }
    .header .wrap .header_r .nav li img {
        display: none;
    }
    .header .wrap .header_r .nav li .second {
        position: unset;
        clip-path: unset;
        transition: unset;
        transform: unset;
        padding: 0 0 15px 10px;
        width: 100%;
        display: none;
    }
    .header .wrap .header_r .nav li .second a {
        font-size: 14px;
        width: unset;
        text-align: left;
        line-height: 30px;
    }
    .header .menu {
        display: block !important;
    }

    .header .menu {
        margin: 0 0 0 15px;
        cursor: pointer;
        position: relative;
    }

    .header .menu .show {
        width: 25px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .header .menu .show span {
        width: 100%;
        height: 1px;
        background: #000;
        transition: .3s ease;
        transform-origin: left;
    }

    .header .menu .show span:first-child {
        transition-delay: .6s;
    }

    .header .menu .show span:nth-child(2) {
        transition-delay: .5s;
    }

    .header .menu .show span:nth-child(3) {
        transition-delay: .4s;
    }

    .header .menu .hide {
        position: absolute;
        width: 27px;
        height: 27px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .header .menu .hide:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        background: #000;
        transform: scaleX(0);
        transition: .3s ease;
        transform-origin: left;
    }

    .header .menu .hide:before {
        content: '';
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        background: #000;
        transform: scaleY(0);
        transition: .3s ease;
        transform-origin: top;
    }

    .header .menu.on .show span {
        transform: scaleX(0);
    }

    .header .menu.on .show span:nth-child(1) {
        transition-delay: 0s;
    }

    .header .menu.on .show span:nth-child(2) {
        transition-delay: .1s;
    }

    .header .menu.on .show span:nth-child(3) {
        transition-delay: .2s;
    }

    .header .menu.on .hide:after {
        transform: scaleX(1);
        transition-delay: .4s;
    }

    .header .menu.on .hide:before {
        transform: scaleY(1);
        transition-delay: .3s;
    }
    .header .wrap .header_r .search {
        font-size: 16px;
        margin-right: 30px;
    }
    .header .wrap .header_r .lan .iconfont {
        font-size: 16px;
    }
    .header .wrap .header_r .lan p {
        font-size: 14px;
    }
    .header .wrap .header_r .lan::after {
        height: 10px;
        left: -15px;
    }
    .header .wrap .header_r .lan {
        gap: 0 6px;
    }
    .parallax {
        transform: unset !important;
    }
    .common_banner {
        height: 60vh;
    }
    .common_banner .img {
        height: 100%;
    }
    .common_banner .img img {
        height: 100%;
    }
    .common_links {
        display: none;
    }
    .common_title {
        font-size: 22px;
        line-height: 1.4;
    }
    .footer {
        padding: 40px 0 20px;
    }
    .footer .wrap {
        display: block;
    }
    .footer .wrap .l .tel {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .footer .wrap .l .tel_des {
        font-size: 15px;
    }
    .footer .wrap .l .footer_contact {
        margin: 15px 0;

    }
    .footer .wrap .l .footer_contact p {
        font-size: 15px;
        line-height: 2;
    }
    .footer .wrap .l .ewm {
        width: 100px;
    }
    .footer .wrap .r {
        padding: 25px 0 0;
    }
    .footer .wrap .r .copyright {
        text-align: left;
        border-top: 1px solid #e6e6e6;
        padding: 15px 0 0;
    }
    .footer .wrap .r .copyright p, .footer .wrap .r .copyright a {
        font-size: 14px;
        line-height: 1.6;
    }
    .footer .wrap .r .copyright>a {
        display: block;
        margin: 5px 0 0;
    }
    .footer .wrap .r .footer_nav {
        display: none;
    }
    .footer .wrap .footer_nav_ph {
        display: block !important;
        margin-bottom: 30px;
    }
    .footer .wrap .footer_nav_ph .item .block {
        border-bottom: 1px solid  #ccc;
        display: flex;
        align-items: center;
        justify-content: space-between;

    }
    .footer .wrap .footer_nav_ph .item .block .add {
        position: relative;
        width: 13px;
        height: 13px;
    }
    .footer .wrap .footer_nav_ph .item .block .add:before {
        content: '';
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        background: #000;
        transition: .6s ease;
    }
    .footer .wrap .footer_nav_ph .item.item_active .block .add:before {
        opacity: 0;
    }
    .footer .wrap .footer_nav_ph .item .block .add:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        background: #000;
    }
    .footer .wrap .footer_nav_ph .item .block a {
        display: block;
        line-height: 50px;
        color: #000;
        font-size: 15px;
    }
    .footer .wrap .footer_nav_ph .item .none {
        padding: 15px 0 5px;
        display: none;
    }
    .footer .wrap .footer_nav_ph .item .none a {
        display: block;
        width: 100%;
        font-size: 15px;
        color: #999;
        line-height: 2;
    }
    .footer .wrap .backTop {
        top: 570px;
        right: 0;
        width: 50px;
        height: 50px;
    }
    .footer .wrap .backTop .iconfont {
        font-size: 20px;
    }
    .w1200 {
        width: 90%;
    }
    .page {

        gap: 0 5px;
    }

    .page a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .page a:nth-last-child(1) {
        font-size: 15px;
    }
}