:root {
    --max: 1500px;
    --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;
    --top40: 40px;
    --top50: 50px;
    --top60: 60px;
    --top80: 80px;
    --top100: 100px;
    --top120: 120px;
}

@font-face {
    font-family: "m";
    src: url("../fonts/m.otf") format("truetype");
}

@font-face {
    font-family: "bold";
    src: url("../fonts/bold.otf") format("truetype");
}

@font-face {
    font-family: "s";
    src: url("../fonts/Actor.ttf") format("truetype");
}

body {
    font-family: "m";
}

.Hertre {
    width: 100%;
    z-index: 999;
    position: relative;
    background: #fff;
}

.Hertre_cen {
    width: CALC(100% - 5vw);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.Logo {
    width: 280px;
    overflow: hidden;

}

.Logo img {
    width: 100%;
    height: auto;
}

.Nav {
    width: max-content;
    margin: auto;
}

.Nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--top80);
}

.Nav ul li {
    font-size: var(--size16);
    color: rgb(82, 82, 82);
    font-family: 'bold';
    text-align: center;
    line-height: 80px;
    position: relative;
}

.Nav ul li svg {
    width: 16px;
    height: 16px;
    fill: #030000;
    display: none;
}


.Nav ul li.Nav_cen {
    color: rgb(188, 10, 87)
}

.Nav ul li:hover {
    color: rgb(188, 10, 87);
}

.Nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: rgb(188, 10, 87);
    position: absolute;
    top: 25px;
    left: 0%;
    transition: all 0.3s;
}

.Nav ul li.Nav_cen::after {
    width: 100%;
}

.Nav ul li:hover::after {
    width: 100%;
}

.Nav_ul {
    width: max-content;
    display: none;
    background: #ffffff;
    position: absolute;
    overflow: hidden;
    top: 100%;
    transition: auto;
    padding: 20px 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 10px 5px #00000010;
    border-radius: 5px;
}

.Nav_ul a {
    color: #000000;
    display: block;
    line-height: 2.5;
    font-size: var(--size14);
}

.Nav_ul a:hover {
    color: rgb(188, 10, 87);
}

.Nav_ul a.Nav_ul_Nav {
    color: rgb(188, 10, 87);
}

.En {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-right: var(--top50);
}

.En p {
    font-size: var(--size16);
    color: rgb(82, 82, 82);
}

.En_img {
    width: max-content;
    background: url(../images/xia.png) no-repeat right center / 8px auto;
    padding-right: 20px;
    position: relative;
}

.En_img img {
    width: 20px;
    height: auto;
}

.En_img_div {
    width: max-content;
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    box-shadow: 0px 0px 10px 5px #00000010;
    border-radius: 5px;
    padding: 10px 20px;
    display: none;
    transition: auto;
}

.En_img_div img {
    width: 20px;
    height: auto;
    margin: 10px 0;
}

.Tel {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Tel img {
    width: 16px;
}

.Tel p {
    font-size: var(--size20);
    color: rgb(82, 82, 82);
    font-family: fantasy;
}

.An {
    width: 30px;
    display: none;
}

.menu_button {
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: #000;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu_button .line1 {
    stroke-dasharray: 60 207;
}

.menu_button .line2 {
    stroke-dasharray: 60 60;
}

.menu_button .line3 {
    stroke-dasharray: 60 207;
}

.menu_button.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.menu_button.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.menu_button.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.Banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.Banner img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
}

.Banner_text {
    width: var(--max);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Banner_text h2 {
    text-align: center;
    font-size: var(--size60);
    color: rgb(0, 0, 0);
    font-family: 'bold';
    line-height: 1;
}

.Mianbao {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: var(--top50);
    font-size: var(--size16);
    color: rgb(0, 0, 0);
}

.Hezuo {
    width: var(--max);
    margin: var(--top80) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top80);
}

.Hezuo_left {
    width: 45%;
}

.Hezuo_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top30);
}

.Hezuo_img {
    width: 160px;
}

.Hezuo_img img {
    width: 100%;
    height: auto;
}

.Hezuo_img p {
    text-align: center;
    font-size: var(--size16);
    color: rgb(82, 82, 82);
    margin-top: var(--top20);
}

.Hezuo_top ul {
    flex: 1;
    margin-top: 10px;
}

.Hezuo_top ul li {
    width: 100%;
    font-size: var(--size16);
    color: rgb(82, 82, 82);
    line-height: 1.8;
}

.Hezuo_left form {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.Hezuo_left form label {
    width: 100%;
}

.Hezuo_left form label p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
}

.Hezuo_left form label input {
    width: 100%;
    height: 62px;
    border: 1px solid rgb(0, 0, 0);
    margin-top: 10px;
    font-size: var(--size14);
    color: rgb(82, 82, 82);
    padding: 0 15px;
}

.Hezuo_left form label textarea {
    width: 100%;
    height: 170px;
    border: 1px solid rgb(0, 0, 0);
    margin-top: 10px;
    font-size: var(--size14);
    color: rgb(82, 82, 82);
    padding: 15px;
    resize: none;
    font-family: 'm';
    background: transparent;
}

.Hezuo_left form button {
    width: 250px;
    height: 68px;
    background: rgb(188, 10, 87);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    font-size: var(--size18);
    color: rgb(255, 255, 255);
    cursor: pointer;
    border: transparent;
}

.Hezuo_left form button svg {
    width: 40px;
    height: auto;
}

#allmap {
    flex: 1;
    height: 630px;
}

#allmap div,
#allmap img {
    transition: auto;
}

.anchorBL {
    display: none;
}

.BMap_bubble_content p {
    font-size: 12px;
    line-height: 24px;
}

.Xinwen {
    width: var(--max);
    margin: var(--top80) auto;
}

.Xinwen ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top50);
}

.Xinwen ul li {
    width: 100%;
}
.Xinwen ul li:hover{
    /*transform: translateY(-5px);*/
}
.a{
    overflow: hidden;
}
.Xinwen ul li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top40);
}

.Tame {
    width: 130px;
    aspect-ratio: 4 / 4;
    background: url(../images/Illustration.png) no-repeat center center / 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--size24);
    color: rgb(0, 0, 0);
    padding-top: 20px;
    font-family: fantasy;
}

.Xinwen_right {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top40);
}

.Xinwen_right img {
    width: 300px;
    height: auto;
}
.Xinwen ul li:hover .Xinwen_right img{
    
		transform: scale(1.1);
}
.Xinwen_text {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Xinwen_text h2 {
    width: 100%;
    font-size: var(--size24);
    color: rgb(0, 0, 0);
}

.Xinwen_text p {
    width: 100%;
    font-size: var(--size14);
    color: rgb(82, 82, 82);
    line-height: 1.8;
    margin-top: 10px;
}

.Xinwen_text span {
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: var(--size18);
    color: rgb(188, 10, 87);
    cursor: pointer;
    margin-top: var(--top30);
}

.Xinwen_text span svg {
    width: 40px;
    height: auto;
}

.Xinwen_text span:hover {
    gap: 30px;
}

.Xinwen ul li:hover .Xinwen_text h2 {
    color: rgb(188, 10, 87);
}

.Show {
    width: var(--max);
    overflow: hidden;
    margin: var(--top80) auto;
}

.Show>h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Show>p {
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    margin-top: 10px;
}

.Show_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: #222222;
    line-height: 2;
}

.Show_text img {
    max-width: 100%;
    height: auto;
    margin: auto;
}

.Prev {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.Prev a {
    width: 100%;
    display: block;
    font-size: var(--size14);
    color: #000000;
}

.page {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--top60);
    gap: 5px;
}

.page .active,
.page .total {
    font-size: 12px;
    padding: 8px 10px;
    color: #d9d9d9;
    border: 1px solid #d9d9d9;
    line-height: 1;
    background: #fff;
}

.page .active {
    background: rgb(188, 10, 87);
    ;
    border: 1px solid rgb(188, 10, 87);
    ;
    color: #fff;
}

.page .active:nth-child(1),
.page .active:nth-child(2),
.page .total:nth-child(1),
.page .total:nth-child(2),
.page .active:last-child,
.page .total:last-child {
    color: #d9d9d9;
    border: 1px solid #d9d9d9;
    background: #fff;
}

.Kongjian {
    width: var(--max);
    margin: var(--top80) auto;
}

.Kongjian_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid rgb(178, 178, 178);
}

.Kongjian_item {
    width: max-content;
    font-size: var(--size30);
    color: rgb(178, 178, 178);
    line-height: 70px;
    padding: 0 var(--top40);
    font-family: 'bold';
    cursor: pointer;
    transform: translateY(1px);
    position: relative;
}

.Kongjian_item.active {
    border: 1px solid rgb(178, 178, 178);
    border-bottom: 1px solid rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.Kongjian_item.active::after {
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(255, 255, 255);
    position: absolute;
    bottom: -1px;
    left: 0;
}

.Kongjian_content {
    width: 100%;
    margin-top: var(--top50);
}

.Kongjian_content_item {
    width: 100%;
    transition: auto;
}

.Kongjian_content_item ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30) var(--top50);
}

.Kongjian_content_item ul li {
    width: 100%;
}

.Kongjian_content_item ul li img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.Kongjian_content_item ul li:hover img {
    box-shadow: 0px 0px 10px 5px #00000020;
    transform: translateY(-2px)  scale(1.2);
}

.Kongjian_content_item ul li h2 {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    margin-top: 10px;
}

.Kongjian_content_item ul li:hover h2 {
    color: rgb(188, 10, 87);
}

.Kongjian_content_item>a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 0 35px;
    line-height: 50px;
    border: 1px solid rgb(0, 0, 0);
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    gap: var(--top40);
    margin-top: var(--top50);
}

.Kongjian_content_item>a svg {
    width: 40px;
}

.Kongjian_content_item>a:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.Kongjian_content_item>a:hover svg path {
    stroke: rgb(255, 255, 255);
}

.Kongjian_max {
    width: var(--max);
    margin: var(--top80) auto;
}

.Kongjian_max>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(82, 82, 82);
    font-family: 'bold';
    margin-bottom: var(--top50);
}

.Show_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top60);
    margin-bottom: var(--top50);
}

.Show_top_img {
    width: 45%;
    overflow: hidden;
}

.Show_top_img img {
    width: 100%;
    height: auto;
}

.Show_top_text {
    flex: 1;
}

.Show_top_text h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Show_top_text p {
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    margin-top: var(--top30);
    margin-bottom: var(--top50);
}

.Fenbu {
    width: var(--max);
    margin: var(--top80) auto;
}

.Fenbu>h2 {
    font-size: var(--size36);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Fenbu_max {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top60);
    margin-top: var(--top30);
}

.Fenbu_max_item {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top40);
}

.Fenbu_max_item>p {
    width: 100%;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
}

.Fenbu_max_item ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top30);
}

.Fenbu_max_item ul li {
    width: 100%;
}

.Fenbu_max_item ul li h2 {
    font-size: var(--size24);
    color: rgb(188, 10, 87);
    font-family: 'bold';
}

.Fenbu_max_item ul li p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    line-height: 1.8;
    margin-top: 10px;
}

.Fenbu_max_item ul li span {
    font-size: 12px;
    color: rgb(82, 82, 82);
    margin-top: 10px;
}

.Fenbu_max_img {
    flex: 1;
}

.Fenbu_max_img img {
    width: 100%;
    height: auto;
}

.Wenhua .Fenbu_max_item {
    width: 60%;
}

.Pinpai {
    width: var(--max);
    margin: var(--top80) auto;
}

.Pinpai>h2 {
    font-size: var(--size36);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Pinpai_max {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top100);
    margin-top: var(--top30);
}

.Pinpai_max_item {
    width: 58%;
}

.Pinpai_max_item ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top40);
}

.Pinpai_max_item ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30);
}

.Pinpai_max_item ul li>p {
    width: max-content;
    font-size: var(--size40);
    color: rgb(188, 10, 87);
    line-height: 0.5;
    font-family: 's';
}

.Pinpai_text {
    flex: 1;
}

.Pinpai_text h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
    line-height: 1;
    font-family: 'bold';
}

.Pinpai_text p {
    font-size: var(--size16);
    color: rgb(82, 82, 82);
    line-height: 1.8;
    margin-top: 10px;
}

.Pinpai_max_right {
    flex: 1;
}

.Swiper {
    width: 100%;
}

.Swiper img {
    width: 100%;
}

.pager1 {
    gap: var(--top60);
}

.zhenshangyin-pager-bullets-bullet {
    opacity: 1;
    background: #ffffff;
}

.zhenshangyin-pager-bullets-bullet.active {
    background: rgb(188, 10, 87);
}

.Swiper_Max {
    width: var(--max);
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Swiper_Max_item {
    width: 550px;
    max-width: 100%;
}

.Swiper_Max_item h2 {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
}

.Swiper_Max_item ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: var(--top20);
    gap: var(--top60);
}

.Swiper_Max_item ul li {
    flex: 1;
    aspect-ratio: 4 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Swiper_Max_item ul li img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.Swiper_Max_item a {
    width: 220px;
    height: 68px;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    font-size: var(--size18);
    color: rgb(0, 0, 0);
    cursor: pointer;
    border: transparent;
    margin-top: var(--top30);
}

.Swiper_Max_item a svg {
    width: 40px;
    height: auto;
}

.Swiper_block {
    width: var(--max);
    margin: 20px auto;
    display: none;
    position: static;
    transform: translate(0%, 0%);
}

.Swiper_block .Swiper_Max_item>a {
    background: rgb(188, 10, 87);
    color: #ffffff;
}

.Guanyu {
    width: 100%;
    overflow: hidden;
    margin: var(--top80) auto;
    padding: var(--top60) 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
}

.Guanyu::after {
    content: "";
    width: calc((100% - var(--max)) / 2 / 2);
    height: 100%;
    background: rgb(188, 10, 87);
    position: absolute;
    top: 0;
    left: 0;
}

.Guanyu_max {
    width: calc((100% - var(--max)) / 2 + var(--max));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top80);
}

.Guanyu_text {
    flex: 1;
}

.Guanyu_text img {
    width: 60%;
    height: auto;
}

.Guanyu_text>p {
    width: 100%;
    font-size: var(--size14);
    color: rgb(82, 82, 82);
    line-height: 1.7;
    margin-top: var(--top30);
}

.Guanyu_text ul {
    width: 100%;
    margin-top: var(--top20);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top20) 0;
}

.Guanyu_text ul li {
    width: 40%;
}

.Guanyu_text ul li p {
    text-align: center;
    font-size: var(--size50);
    color: rgb(188, 10, 87);
    font-family: 's';
}

.Guanyu_text ul li h2 {
    text-align: center;
    font-size: var(--size14);
    color: rgb(82, 82, 82);
    margin-top: 10px;
}

.Fuwu {
    width: 100%;
    overflow: hidden;
    background: rgb(249, 249, 249);
}

.Fuwu ul {
    width: var(--max);
    margin: var(--top60) auto;
    display: flex;
    justify-content: space-between;
    gap: 6vw;
}

.Fuwu ul li {
    flex: 1;
}

.Fuwu_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top20);
}

.Fuwu_item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.Fuwu_item h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Fuwu ul li p {
    width: 100%;
    font-size: var(--size14);
    color: rgb(82, 82, 82);
    line-height: 1.8;
    margin-top: var(--top30);
}

.Gushi {
    width: 100%;
    overflow: hidden;
    padding: var(--top80) 0;
}

.Gushi>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Gushi ul {
    width: 100%;
    display: grid;
    display: flex;
    justify-content: space-between;
    border-right: 1px solid #ffffff;
    margin-top: var(--top50);
}

.Gushi ul li {
    width: 100%;
    border-left: 1px solid #ffffff;
    transition: all 0.2s;
}
.Gushi ul li:hover{
    transform: scale(1.15);

    position: relative;
    z-index: 9;
}
.Gushi ul li img {
    width: 100%;
    height: auto;
}

.Gushi ul li h2 {
    width: 100%;
    background: rgb(82, 82, 82);
    border-top: 1px solid #ffffff;
    font-size: var(--size30);
    color: rgb(255, 255, 255);
    line-height: 100px;
    padding: 0 var(--top50);
}

.Zixun {
    width: var(--max);
    margin: var(--top80) auto;
}

.Zixun>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Zixun_max {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top80);
    margin-top: var(--top50);
}

.Zixun_left {
    width: 45%;
    overflow: hidden;
    position: relative;
}

.Zixun_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Zixun_left:hover img{
    
		transform: scale(1.2);
}
.Zixun_text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    padding: var(--top30);
}

.Zixun_text h2 {
    font-size: var(--size24);
    color: rgb(255, 255, 255);
    font-family: 'bold';
}

.Zixun_text p {
    font-size: 12px;
    color: rgb(255, 255, 255);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 10px;
}


.Zixun_max ul {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
}

.Zixun_max ul li {
    width: 100%;
}

.Zixun_max ul li h2 {
    font-size: var(--size24);
    color: rgb(0, 0, 0);
}

.Zixun_max ul li p {
    font-size: var(--size14);
    color: rgb(82, 82, 82);
    line-height: 1.8;
    margin-top: 10px;
}

.Zixun_max ul>a {
    width: 250px;
    height: 68px;
    background: rgb(188, 10, 87);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    font-size: var(--size18);
    color: rgb(255, 255, 255);
    cursor: pointer;
    border: transparent;
    margin-top: 20px;
}
.Zixun_max ul>a:hover{
    width: 300px;
}
.Zixun_max ul>a svg {
    width: 40px;
    height: auto;
}

.Guanyu_img {
    width: 52%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.Guanyu_img::after {
    content: "";
    width: 90%;
    height: 200%;
    background: rgb(188, 10, 87);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.Guanyu_img img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
}
.Guanyu_img:hover img{
    transform: scale(1.1);
}
.Lianxi{
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.Lianxi_max{
    width: var(--max);
    overflow: hidden;
    margin: var(--top80) auto;
}
.Lianxi_max h2{
    font-size: var(--size36);
    color: rgb(188, 10, 87);
    font-family: 'bold';
    text-align: center;
}
.Lianxi_max a {
    width: 220px;
    height: 60px;
    border: 1px solid rgb(188, 10, 87);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    font-size: var(--size16);
    color: rgb(188, 10, 87);
    cursor: pointer;
    margin: auto;
    margin-top: var(--top50);
}
.Lianxi_max a:hover{
    width: 270px;
}
.Lianxi_max a svg {
    width: 40px;
    height: auto;
}
.Lianxi_max a:hover{
    background: rgb(188, 10, 87);
    color: rgb(255, 255, 255);
}
.Lianxi_max a:hover svg path{
    stroke: rgb(255, 255, 255);
}


.Footer {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #00000020;
}

.Footer_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top80);
}
.Footer_left{
   flex: 1;
}
.Footer_max>ul{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top80);
}
.Footer_max>ul li{
    width: max-content;
    font-size: var(--size16);
    color: #525252;
    line-height: 2;
}
.Footer_ul{
    width: max-content;
}
.Footer_ul a{
    width: max-content;
    display: block;
    font-size: var(--size16);
    color: #525252;
    line-height: 2;
}
.Beian {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #00000020;
}

.Beian_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top20) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.Beian_max p {
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    margin: 0 5px;
}

.animation-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: #fff;
    z-index: 9999;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animation-container.hide {
    transform: translateX(100%);
}

.animation-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: transparent;
    z-index: 100;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: width;
}

.animation-container.hide::after {
    width: 100%;
}

.animation-container.exit {
    opacity: 0;
    pointer-events: none;
}

.progress-block {
    height: 80%;
    width: 0;
    background-color: #fff2e6;
    transition: width 0.01s linear;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    will-change: width, left;
}

.progress-block.shrink {
    width: 0 !important;
    left: 100%;
    transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1), left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.number {
    position: absolute;
    right: -30px;
    bottom: 40px;
    font-size: 40px;
    font-family: Arial, sans-serif;
    height: 40px;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.7s ease;
    will-change: opacity;
}

.number.fade {
    opacity: 0;
}

.number-wrapper {
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.number-item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    z-index: 10;
    will-change: opacity;
}

.logo-wrapper.show {
    opacity: 1;
}

.logo-image-container {
    overflow: hidden;
    margin-bottom: 20px;
    width: 150px;
}

.logo-image-container img {
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.logo-wrapper.show .logo-image-container img {
    transform: translateY(0);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.text-line-container {
    overflow: hidden;
    height: 24px;
}

.text-line-container p {
    margin: 0;
    font-size: 18px;
    font-family: Arial, sans-serif;
    color: #333;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    line-height: 24px;
    will-change: transform;
}

.logo-wrapper.show .text-line-container:nth-child(1) p {
    transition-delay: 0.1s;
    transform: translateY(0);
}

.logo-wrapper.show .text-line-container:nth-child(2) p {
    transition-delay: 0.2s;
    transform: translateY(0);
}

.logo-wrapper.hide .logo-image-container img {
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-wrapper.hide .text-line-container:nth-child(1) p {
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.05s;
}

.logo-wrapper.hide .text-line-container:nth-child(2) p {
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.1s;
}
