

:root {
    --max: 1400px;
    --size14: 14px;
    --size16: 16px;
    --size18: 18px;
    --size20: 20px;
    --size24: 24px;
    --size30: 30px;
    --size36: 36px;
    --size40: 40px;
    --size46: 46px;
    --size50: 50px;
    --size56: 56px;
    --size60: 60px;

    --top20: 20px;
    --top30: 30px;
    --top50: 50px;
    --top60: 60px;
    --top80: 80px;
    --top100: 100px;
    --top120: 120px;
}

@font-face {
    font-family: "siyuanheiti";
    src: url("../fonts/siyuanheiti.otf") format("truetype");
}

@font-face {
    font-family: "bold";
    src: url("../fonts/Bold.otf") format("truetype");
}

body {
    font-family: "siyuanheiti";
}

.hertre {
    width: 100%;
    z-index: 999;
    height: 80px;
    position: absolute;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.hertre_cen {
    width: var(--max);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.logo {
    width: 180px;
    overflow: hidden;

}

.logo img {
    width: 100%;
    height: auto;
}

.nav {
    width: max-content;
    margin-left: auto;
}

.nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav ul li {
    font-size: var(--size18);
    color: #ffffff;
    text-align: center;
    line-height: 80px;
    position: relative;
    margin-right: 3vw;
}

.nav ul li svg {
    width: 16px;
    height: 16px;
    fill: #030000;
    display: none;
}

/* 
.nav ul li.nav_cen {
    color: #ffffff
}

.nav ul li:hover {
    color: #ffffff;
} */

.nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: #ffffff;
    position: absolute;
    bottom: 0px;
    left: 0%;
    transition: all 0.3s;
    border-radius: 3px;
}

.nav ul li.nav_cen::after {
    width: 100%;
}

.nav ul li:hover::after {
    width: 100%;
}

.nav_ul {
    min-width: 100%;
    width: max-content;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(105, 2, 8, 0.8);
    z-index: 999;
    padding: 20px;
    display: none;
    transition: auto;
}

.nav_ul a {
    display: block;
    font-size: var(--size14);
    line-height: 2.5;
    color: #ffffff;
    cursor: pointer;
}

.login {
    width: 130px;
    overflow: hidden;
    border: 2px solid rgb(105, 2, 8);
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.login a {
    width: 50%;
    line-height: 42px;
    background: rgb(105, 2, 8);
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    text-align: center;
    display: block;
}

.login a:nth-child(2) {
    background: #ffffff;
    color: rgb(51, 51, 51);
}

.an {
    width: 60px;
    height: 60px;
    display: none;
    position: absolute;
    right: 0%;
    top: 0;
    transition: all 0.5s;
    z-index: 99;
}

.container {
    cursor: pointer;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.5s;
}

.container svg {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.active svg {
    transform: rotate(90deg);
}

.container path {
    stroke: #ffffff;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.container path:nth-child(1) {
    transform-origin: 36% 40%;
}

.container path:nth-child(2) {
    stroke-dasharray: 29 299;
}

.container path:nth-child(3) {
    transform-origin: 35% 63%;
}

.container path:nth-child(4) {
    stroke-dasharray: 29 299;
}

.container path:nth-child(5) {
    transform-origin: 61% 52%;
}

.container path:nth-child(6) {
    transform-origin: 62% 52%;
}

.active path:nth-child(1) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}

.active path:nth-child(2) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}

.active path:nth-child(3) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(4) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}

.active path:nth-child(5) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(6) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}

.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner>img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
}

.banner .swiper-pagination {
    bottom: 30px !important;
}

.mySwiper {
    width: 100%;
    height: 100vh;
}

.mySwiper .swiper-slide {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;

}

.mySwiper_max {
    width: var(--max);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.mySwiper_l {
    width: calc(100% - 650px);
    overflow: hidden;
}

.mySwiper_l h2 {
    font-size: var(--size36);
    color: rgb(247, 247, 247);
}

.mySwiper_l p {
    font-size: var(--size56);
    color: rgb(247, 247, 247);
    margin-top: 15px;
}

.mySwiper_l a {
    display: block;
    width: max-content;
    line-height: 40px;
    border: 1px solid rgb(255, 255, 255);
    font-size: var(--size16);
    color: rgb(247, 247, 247);
    padding: 0 10px;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mySwiper .swiper-button-next {
    right: 4%;
}

.mySwiper .swiper-button-prev {
    left: 4%;
}

.mySwiper .swiper-button-next:after,
.mySwiper .swiper-button-prev:after {
    display: none;
}

.mySwiper .swiper-button-next svg,
.mySwiper .swiper-button-prev svg {
    width: 14px;
    height: auto;
}

.mySwiper_l a svg {
    width: 12px;
    height: auto;
    margin-left: 10px;
}

.mySwiper_max>img {
    width: 550px;
    height: auto;
}

.banner_text {
    width: var(--max);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--size40);
    color: rgb(255, 255, 255);
    font-family: 'bold';
    margin-top: 40px;
}

.banner_text::after {
    content: "";
    width: 50px;
    height: 6px;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    display: block;
    margin-top: var(--top20);
}

.peijian {
    width: var(--max);
    overflow: hidden;
    margin: var(--top80) auto;
}

.peijian ul {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
}

.peijian ul li {
    width: 100%;
    overflow: hidden;
}

.peijian_img {
    width: 100%;
    aspect-ratio: 4 / 4;
    border: 1px solid rgb(231, 236, 240);
    display: flex;
    justify-content: center;
    align-items: center;
}

.peijian_img img {
    max-width: 80%;
    max-height: 80%;
}

.peijian ul li:hover .peijian_img img {
    transform: scale(1.1);
}

.peijian ul li h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    margin-top: 20px;
    line-height: 1;
}

.peijian ul li p {
    text-align: center;
    font-size: var(--size14);
    color: rgb(32, 32, 32);
    margin-top: 15px;
    line-height: 1;
}

.peijian>p {
    font-size: var(--size16);
    color: rgb(50, 50, 50);
    text-align: center;
    margin-top: var(--top80);
}


.footer {
    width: 100%;
    overflow: hidden;
    background: rgb(28, 32, 40);
    background-image: url(../images/yuan.png);
    background-size: 780px 780px;
    background-repeat: no-repeat;
    background-position: top -50px center;
}

.footer_max {
    width: var(--max);
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer_l {
    width: 400px;
    overflow: hidden;
}

.footer_logo {
    width: 280px;
    overflow: hidden;
}

.footer_logo img {
    width: 100%;
    height: auto;
}

.footer_l ul {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top60);
}

.footer_l ul li {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.footer_l ul li img {
    width: 30px;
    height: auto;
}

.footer_l ul li p {
    width: calc(100% - 50px);
    font-size: var(--size14);
    color: #FFFFFF;
}

.footer_r {
    width: 700px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: flex-end;
}

.footer_top {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer_top ul {
    width: max-content;
    overflow: hidden;
}

.footer_top ul h1 {
    font-size: var(--size18);
    color: #FFFFFF;
    text-align: center;
}

.footer_top ul li {
    font-size: var(--size16);
    color: #737984;
    text-align: center;
    margin-top: 15px;
}

.footer_bott {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer_bott p {
    font-size: 16px;
    color: #737984;
}

.footer_bott ul {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer_bott ul li {
    width: max-content;
    height: 20px;
    position: relative;
    margin-left: var(--top30);
}

.footer_bott ul li>img {
    width: auto;
    height: 100%;
}

.foorot_img {
    width: 120px;
    background: #fff;
    padding: 5px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    filter: drop-shadow(0px 0px 5px #00000050);
    transform: scale(0) translateX(-50%);
    transform-origin: bottom left;
}

.foorot_img img {
    width: 100%;
    height: auto;
}

.foorot_img::after {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 7px solid #ffffff;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.footer_bott ul li:hover .foorot_img {
    transform: scale(1) translateX(-50%);
}

.beian {
    width: 100%;
    overflow: hidden;
    background: #101318;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.beian p {
    font-size: var(--size14);
    color: #FFFFFF;
    margin: 0 10px;
}

.app {
    width: 100%;
    overflow: hidden;
}

.app ul {
    width: 100%;
    overflow: hidden;
}

.app ul li {
    width: 100%;
    overflow: hidden;
}

.app ul li:nth-child(2n) {
    background: rgb(158, 172, 198, 0.2);
}

.app_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top100) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.app ul li:nth-child(2n+1) .app_max {
    flex-direction: row-reverse;
}

.app_l {
    width: 45%;
    overflow: hidden;
}

.app_l h2 {
    font-size: var(--size36);
    color: rgb(51, 51, 51);
    font-family: 'bold';
}

.app_l p {
    font-size: var(--size18);
    color: rgb(51, 51, 51);
    line-height: 2;
    margin-top: var(--top50);
}

.app_l a {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: var(--top50);
    border: 1px solid rgb(105, 2, 8);
    border-radius: 40px;
    line-height: 40px;
    padding: 0 var(--top20);
    font-size: var(--size16);
    color: rgb(105, 2, 8);
    ;
}

.app_l a img {
    width: 16px;
    height: auto;
    margin-right: 10px;
}

.app_r {
    width: 45%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app_r img,
.app_r video{
    max-width: 100%;
    max-height: 100%;
}

.jianjie {
    width: var(--max);
    overflow: hidden;
    margin: var(--top80) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.jianjie_l {
    width: 48%;
    overflow: hidden;
}

.about {
    font-size: 70px;
    color: rgb(225, 225, 225, 0.2);
    font-family: 'bold';
    line-height: 1;
    text-transform: uppercase;
}

.jianjie_l h2 {
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    line-height: 1;
    font-family: 'bold';
    margin-top: -30px;
}

.jianjie_l span {
    display: block;
    font-size: var(--size24);
    color: rgb(105, 2, 8);
    line-height: 1;
    margin-top: var(--top50);
}

.jianjie_text {
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    line-height: 2;
    margin-top: var(--top30);
}

.jianjie_r {
    width: 48%;
    overflow: hidden;
}

.jianjie_r img {
    width: 100%;
    height: auto;
}

.zizhi {
    width: 100%;
    overflow: hidden;
    background-image: url(../images/beijing.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.zizhi_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
}

.zizhi_max>h1 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    line-height: 1;
    font-family: 'bold';
}

.zizhi_max>h1::after {
    content: "";
    width: 47px;
    height: 6px;
    background: rgb(105, 2, 8);
    display: block;
    margin: auto;
    margin-top: 10px;
}

.zizhi_tui {
    width: 100%;
    overflow: hidden;
    background-image: url(../images/lujing.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 90% auto;
    padding-bottom: 20px;
    margin-top: var(--top60);
}

.zizhi_tui ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.zizhi_tui ul li {
    width: 25%;
    overflow: hidden;
    margin: 0 10px;
}

.zizhi_tui ul li img {
    width: 100%;
    height: auto;
}

.zizhi_tui ul li p {
    text-align: center;
    font-size: var(--size16);
    color: rgb(98, 98, 98);
    margin-top: 20px;
}

.zizhi_bot {
    width: 100%;
    overflow: hidden;
    background-image: url(../images/lujing.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-bottom: 20px;
    margin-top: var(--top80);
}

.zizhi_bot ul {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.zizhi_bot ul li {
    width: 100%;
    overflow: hidden;
}

.zizhi_bot ul li img {
    width: 100%;
    height: auto;
}

.zizhi_bot ul li p {
    text-align: center;
    font-size: var(--size16);
    color: rgb(98, 98, 98);
    margin-top: 20px;
}

.lianxi {
    width: calc(100% - 30px);
    margin: var(--top80) auto;
}

.lianxi>h1 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(51, 51, 51);
    line-height: 1;
    font-family: 'bold';
}

.lianxi>h1::after {
    content: "";
    width: 47px;
    height: 6px;
    background: rgb(105, 2, 8);
    display: block;
    margin: auto;
    margin-top: 10px;
}

.lianxi ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
    margin-top: var(--top60);
}

.lianxi ul li {
    width: 100%;
    overflow: hidden;
    box-shadow: 1px 1px 20px 0px rgba(112, 123, 148, 0.15);
    padding: var(--top60) var(--top20)
}

.lianxi ul li img {
    width: max-content;
    height: 54px;
    margin: auto;
}

.lianxi ul li h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgb(32, 32, 32);
    margin-top: var(--top20);
}

.lianxi ul li p {
    text-align: center;
    font-size: var(--size14);
    color: rgb(32, 32, 32, 0.7);
    margin-top: var(--top20);
}

.shubiao {
    width: 14px;
    overflow: hidden;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.shubiao img {
    width: 100%;
    height: auto;
}


.hidden {
    display: none;
}

.loading {
    width: 100%;
    overflow: hidden;
}

.loading ul {
    width: 100%;
    overflow: hidden;
}

.loading ul li {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.loading_max {
    width: var(--max);
    overflow: hidden;
    margin: 7vw auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.loading ul li:nth-child(2n) .loading_max {
    flex-direction: row-reverse;
}

.loading_max img {
    width: 45%;
    height: auto;
}

.loading_r {
    width: 45%;
    overflow: hidden;
}

.loading_r h2 {
    font-size: var(--size36);
    color: rgb(255, 255, 255);
}

.loading_p {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}

.loading_p p {
    font-size: var(--size18);
    color: rgb(255, 255, 255);
    line-height: 1.8;
    margin-top: var(--top20);
}

.loading_r a {
    display: block;
    width: max-content;
    line-height: 42px;
    border-radius: 42px;
    border: 1px solid rgb(255, 255, 255);
    font-size: var(--size16);
    color: rgb(247, 247, 247);
    padding: 0 var(--top30);
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.loading_r a svg {
    width: 18px;
    height: auto;
    margin-left: 10px;
}

.loading .loadmore {
    width: max-content;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 42px;
    border: 1px solid rgb(51, 51, 51);
    border-radius: 42px;
    padding: 0 var(--top30);
    font-size: var(--size16);
    color: #000000;
    cursor: pointer;
}

.loading .loadmore img {
    width: 20px;
    height: auto;
    margin-left: 20px;
}

.more {
    display: none;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

.more svg {
    width: 20px;
    height: auto;
    animation: more 1s steps(12, end) infinite;
}

@-webkit-keyframes more {
    0% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    100% {
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

.hezuo {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/hezuo.png)
}

.hezuo_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
}

.hezuo_max>h1 {
    text-align: center;
    font-size: var(--size30);
    color: #fff;
    line-height: 1;
    font-family: 'bold';
}

.hezuo_max>h1::after {
    content: "";
    width: 47px;
    height: 6px;
    background: #fff;
    display: block;
    margin: auto;
    margin-top: 10px;
}

.hezuo_max img {
    width: 100%;
    height: auto;
    margin-top: var(--top60);
}

.index_lianxi {
    margin: 20px auto;
}

.index_lianxi ul {
    margin-top: 0px;
}

.show {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.show_max {
    width: var(--max);
    overflow: hidden;
    margin: 180px auto 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.show_max h1 {
    width: calc(100% - 550px);
    font-size: var(--size40);
    color: rgb(255, 255, 255);
    font-family: 'bold';
}

.show_max h1::after {
    content: "";
    width: 50px;
    height: 6px;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    display: block;
    margin-top: var(--top20);
}

.show_max img {
    width: 480px;
    height: auto;
}

.chanpin_show {
    width: var(--max);
    overflow: hidden;
    margin: var(--top80) auto;
}

.chanpin_top {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.chanpin_img {
    width: 50%;
    overflow: hidden;
    border: 1px solid rgb(225, 225, 225);
    border-radius: 8px;
    padding: var(--top50);
}

.chanpin_img img {
    width: 100%;
    height: auto;
}

.chanpin_r {
    width: 45%;
    overflow: hidden;
}

.chanpin_r ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top30);
}

.chanpin_r ul li {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-items: flex-start;
}

.chanpin_r ul li h2 {
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    width: 100px;
    text-align: right;
}

.chanpin_r ul li p {
    font-size: var(--size20);
    color: rgb(51, 51, 51);
    width: calc(100% -- 100px);
}

.chanpin_r a {
    width: max-content;
    line-height: 40px;
    border-radius: 40px;
    border: 1px solid rgb(105, 2, 8);
    font-size: var(--size14);
    color: rgb(105, 2, 8);
    padding: 0 var(--top30);
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.chanpin_r a img {
    width: 16px;
    height: auto;
    margin-right: 10px;
}

.chanpin_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top60);
    font-size: var(--size16);
    line-height: 2;
    color: rgb(50, 50, 50);
}

.chanpin_text table {
    width: 100% !important;
    border: none;
}

.chanpin_text table td,
.chanpin_text table tr {
    border: none;
}

.chanpin_show>p {
    font-size: var(--size16);
    color: rgb(105, 2, 8);
    margin-top: var(--top60);
    text-align: center;
}

.lon {
    width: 100%;
    height: calc(100vh - 60px);
    background: rgb(42, 45, 62);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lon>img {
    width: calc(100% - 680px);
    height: 100%;
    object-fit: cover;
}

.lon_r {
    width: 680px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    padding: var(--top50) var(--top100);
}

.lon_logo {
    width: 180px;
    max-width: 100%;
}

.lon_logo img {
    width: 100%;
    height: auto;
}

.lon_r>img {
    width: 240px;
    max-width: 100%;
    height: auto;
    margin-top: var(--top20);
}

.lon_r form {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
}

.lon_r form input {
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.38);
    border: 0.8px solid rgb(255, 255, 255);
    border-radius: 8px;
    box-sizing: border-box;
    font-size: var(--size16);
    color: rgb(255, 255, 255, 0.5);
    padding: 0 25px;
    margin-top: var(--top30);
}

.lon_r form input.saubmit {
    background: rgb(105, 2, 8);
    border: none;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
    font-family: 'bold';
    padding: 0;
    cursor: pointer;
    margin-top: var(--top60);
}

.lon_r form label {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: rgba(255, 255, 255, 0.77);
    cursor: pointer;
}

.lon_r form label input {
    width: 16px;
    height: 16px;
    margin: 0;
    margin-right: 10px;
}

.layui-layer {
    transition: auto;
}

.lon_r>p {
    text-align: center;
    font-size: var(--size14);
    color: rgb(255, 255, 255);
    margin-top: var(--top30);
}

.lon_r>p a {
    color: rgb(105, 2, 8);
}

.zhangti {
    width: max-content;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.zhangti_img {
    width: 38px;
    overflow: hidden;
    background: #ffffff;
    padding: 2px;
    border-radius: 50%;
}

.zhangti_img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 4;
    border-radius: 50%;
}

.zhangti h2 {
    font-size: var(--size16);
    color: #FFFFFF;
    margin: 0 10px;
}

.zhangti i {
    width: 14px;
    overflow: hidden;
}

.zhangti i img {
    width: 100%;
    height: auto;
}

.zhangti_xia {
    width: 100%;
    position: absolute;
    top: 40px;
    background: #ffffff;
    padding: 10px;
    filter: drop-shadow(0px -2px 6px rgba(62, 64, 69, 0.2));
    transform: scale(0);
    transform-origin: top center;
}

.zhangti_xia::after {
    content: "";
    width: 0px;
    height: 0px;
    border-bottom: 10px solid #ffffff;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    top: -10px;
    right: 30%;
}

.zhangti_xia a {
    font-size: var(--size14);
    color: #333333;
    line-height: 30px;
    display: block;
}

.zhangti_xia a:hover {
    color: rgb(105, 2, 8);
}

.zhangti:hover .zhangti_xia {
    transform: scale(1);
}

.footer_hui {
    width: 100%;
    overflow: hidden;
    background: #2A2D34;
}

.footer_hui_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top50) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer_hui_l {
    width: max-content;
    overflow: hidden;
}

.footer_hui_l ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer_hui_l ul li {
    font-size: var(--size18);
    color: #757575;
    margin-right: 3vw;
}

.banquan {
    width: 850px;
    font-size: var(--size16);
    color: #757575;
    margin-top: var(--top50);
    line-height: 2;
}

.tel {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tel p {
    font-size: var(--size16);
    color: #757575;
    margin-right: var(--top30);
}

.footer_hui_max>ul {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.footer_hui_max>ul li {
    width: 120px;
    overflow: hidden;
    margin-left: 2.5vw;
}

.footer_hui_max>ul li img {
    width: 100%;
    height: auto;
    background: #ffffff;
    padding: 7px;
}

.footer_hui_max>ul li p {
    font-size: var(--size16);
    color: #757575;
    margin-top: 10px;
    text-align: center;
}

.hertre_lon {
    background: rgb(42, 45, 62);
    position: relative;
}

.zhongxin {
    width: var(--max);
    margin: var(--top50) auto;
}

.zhongxin_a {
    width: 100%;
    overflow: hidden;
}

.zhongxin_a a {
    width: 100px;
    line-height: 40px;
    border: 1px solid rgb(105, 2, 8);
    display: block;
    margin-top: var(--top30);
    text-align: center;
    font-size: var(--size16);
    color: rgb(105, 2, 8);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.zhongxin_a a i {
    display: block;
    margin-left: 5px;
}

.zhongxin_max {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.zhongxin_l {
    width: 300px;
    overflow: hidden;
    box-shadow: 0px 0px 14px 0px rgba(137, 146, 156, 0.1);
}

.zhongxin_title {
    width: 100%;
    overflow: hidden;
    padding: 20px 40px;
}

.zhongxin_title h1 {
    font-size: var(--size30);
    color: #333333;
    font-family: 'bold';
}

.zhongxin_title p {
    font-size: var(--size24);
    color: #ECECEC;
    font-family: 'bold';
}

.zhongxin_l ul {
    width: 100%;
    overflow: hidden;
}

.zhongxin_l ul li {
    width: 100%;
    overflow: hidden;
    padding: 0 var(--top30);
}

.zhongxin_l ul li a {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgb(243, 243, 243);
    padding: 20px 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.zhongxin_l ul li a i {
    width: 20px;
    display: block;
    overflow: hidden;
}

.zhongxin_l ul li a i img {
    width: 100%;
    height: auto;
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    overflow: hidden;
    filter: drop-shadow(20px 0px 0 #333333);
    position: relative;
    right: 0;
    transition: auto;
}

.zhongxin_l ul li a p {
    font-size: var(--size20);
    color: #333333;
    margin-left: 20px;
}

.zhongxin_l ul li.zhongxin_nav {
    background: rgb(105, 2, 8);
}

.zhongxin_l ul li.zhongxin_nav a {
    border: none;
}

.zhongxin_l ul li.zhongxin_nav a p {
    color: rgb(255, 255, 255);
}

.zhongxin_l ul li.zhongxin_nav a i img {
    right: 20px;
    filter: drop-shadow(20px 0px 0 #ffffff);
}

.zhongxin_l ul li:hover {
    background: rgb(105, 2, 8);
}

.zhongxin_l ul li:hover a {
    border: none;
}

.zhongxin_l ul li:hover a p {
    color: #ffffff;
}

.zhongxin_l ul li:hover a i img {
    right: 20px;
    filter: drop-shadow(20px 0px 0 #ffffff);
}

.zhongxin_r {
    width: calc(100% - 330px);
    overflow: hidden;
    box-shadow: 0px 0px 14px 0px rgba(137, 146, 156, 0.1);
}

.zhongxin_r>h2 {
    font-size: var(--size18);
    color: #333333;
    padding: 25px var(--top30);
    border-bottom: 1px solid rgb(243, 243, 243);
}

.zhongxin_r form {
    width: 700px;
    max-width: 96%;
    display: block;
    overflow: hidden;
    margin: var(--top100) auto;
}

.touxi {
    width: 115px;
    overflow: hidden;
    border-radius: 50%;
    margin: auto;
    background: rgb(0, 170, 255, 0.3);
    padding: 5px;
    margin-bottom: var(--top50);
    position: relative;
}

.touxi img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    border-radius: 50%;
}

.file {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
}

.touxi p {
    font-size: var(--size16);
    color: #FFFFFF;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 15px;
    left: 0;
    font-family: "微软雅黑";
    font-weight: 400;
}

.lae {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--top30);
}

.lae p {
    width: 80px;
    overflow: hidden;
    font-size: var(--size18);
    color: #333333;
    text-align: right;
}

.lae input {
    width: calc(100% - 90px);
    height: 44px;
    background: rgb(255, 255, 255);
    border: 1.5px solid rgb(230, 230, 230);
    border-radius: 4px;
    font-size: var(--size18);
    color: #666666;
    padding: 0 var(--top30);
}

.ban,
.zhongxin_r form a {
    width: 210px;
    line-height: 48px;
    display: block;
    background: rgb(105, 2, 8);
    border-radius: 8px;
    margin: auto;
    margin-top: var(--top80);
    font-size: var(--size20);
    color: #ffffff;
    text-align: center;
    border: transparent;
    cursor: pointer;
}

.liebiao {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgb(243, 243, 243);
}

.liebiao ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.liebiao ul li {
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    padding: 25px var(--top30);
    cursor: pointer;
}

.liebiao ul li.liebiao_nax {
    font-family: 'bold';
    color: #000000;
}

.xiehuan {
    width: 100%;
    overflow: hidden;
}

.lmum {
    width: 100%;
    overflow: hidden;
    padding: 0 var(--top30);
    transition: auto;
}

.lmum ul {
    width: 100%;
    overflow: hidden;
}

.lmum ul li {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgb(243, 243, 243);
    padding: var(--top30) 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.lmum_q {
    width: 28px;
    height: 28px;
    border-radius: 2px;
    background: rgb(105, 2, 8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lmum_q img {
    max-width: 80%;
    max-height: 60%;
}

.lmum_r {
    width: calc(100% - 45px);
    overflow: hidden;
}

.lmum_top {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.lmum_top h2 {
    width: calc(100% - 150px);
    font-size: var(--size20);
    color: rgb(51, 51, 51);
}

.lmum_top label {
    width: 150px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    font-size: var(--size14);
    color: rgb(51, 51, 51);
}

.lmum_top label input {
    width: 16px;
    height: 16px;
    margin-left: 10px;
}

.lmum_text {
    width: 100%;
    overflow: hidden;
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    line-height: 1.8;
    margin-top: 15px;
}



.lmum form {
    width: 100%;
    overflow: hidden;
    margin: var(--top80) auto;
}

.lmum_foem {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid rgb(229, 229, 229);
    margin-bottom: var(--top30);
}

.lmum_foem_img {
    width: 70px;
    height: 70px;
    border-right: 1px solid rgb(229, 229, 229);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lmum_foem_img img {
    max-width: 50%;
    max-height: 50%;
}

.lmum_foem input {
    width: calc(100% - 70px);
    height: 70px;
    font-size: var(--size18);
    color: rgb(173, 173, 173);
    padding: 0 20px;
    font-family: "siyuanheiti";
}

.lmum_foem textarea {
    width: calc(100% - 70px);
    height: 270px;
    font-size: var(--size18);
    color: rgb(173, 173, 173);
    padding: 0 20px;
    border: transparent;
    line-height: 70px;
    font-family: "siyuanheiti";
}

.lmum_foem:nth-child(2) .lmum_foem_img {
    border: none;
}

.pingtai {
    width: var(--max);
    margin: var(--top80) auto;
}

.pingtai .lmum_top h2 {
    width: 100%;
}

.pingtai form {
    width: 100%;
    overflow: hidden;
}

.pingtai form textarea {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    border: 1px solid rgb(206, 205, 205);
    font-size: var(--size16);
    color: rgb(206, 205, 205);
    padding: var(--top20);
    resize: none;
    font-family: "siyuanheiti";
}

.buttom {
    width: 90px;
    height: 40px;
    background: rgb(105, 2, 8);
    border: transparent;
    font-size: var(--size14);
    color: rgb(255, 255, 255);
    display: block;
    margin-top: var(--top30);
    float: right;
    border-radius: 8px;
    cursor: pointer;
}








.shwoaa {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
}

.shwoaa>h2 {
    font-size: var(--size24);
    color: #222222;
}

.shwoaa>p {
    font-size: var(--size14);
    color: #888888;
    margin-top: var(--top30);
}

.shwoaa_text {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: var(--top30) 0;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: #222222;
    line-height: 2;
}

.shwoaa_text img {
    max-width: 100%;
    height: auto;
    margin: auto;
}
.dialog_com {
    border-radius: 10px !important;
    font-size: 2.14rem;
}

.dialog_com .layui-form-label {
    white-space: nowrap;
    color: #333;
    font-weight: bold;
}

.dialog_com .layui-layer-content {
    padding: 2.5rem 4rem;
}
.dialog_com .layui-layer-setwin .layui-layer-close2 {
    background-position: 1px -40px;
    cursor: pointer;
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    width: 16px;
    height: 16px;
}

.dialog_com .layui-layer-setwin .layui-layer-close2:hover {
    background-position: 1px -40px;
}
.dialog_com .layui-btn+.layui-btn {
    margin-left: 0.2rem;
}