: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;
    --top40: 40px;
    --top50: 50px;
    --top60: 60px;
    --top80: 80px;
    --top100: 100px;
    --top120: 120px;
}

.Hertre {
    width: 100%;
    z-index: 999;
    height: 100px;
    position: fixed;
    background: rgba(47, 47, 47, 0.5);
}

.Hertre_cen {
    width: calc((100% - var(--max)) / 2 + var(--max));
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.Logo {
    width: 180px;
    overflow: hidden;
    transform: translateX(5vw);

}

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

.Nav {
    width: max-content;
}

.Nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--top60);
}

.Nav ul li {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 100px;
    position: relative;
}

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


.Nav ul li.active,
.Nav ul li:hover {
    color: rgba(132, 0, 35, 1);
}

/* .Nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: #ec078d;
    position: absolute;
    bottom: 0px;
    left: 0%;
    transition: all 0.3s;
}

.Nav ul li.active::after,
.Nav ul li:hover::after {
    width: 100%;
} */

.Nav_item {
    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_item a {
    color: #000000;
    display: block;
    line-height: 2.5;
    font-size: var(--size14);
}

.Nav_item a:hover,
.Nav_item a.active {
    color: rgba(132, 0, 35, 1);
}

.An {
    width: 30px;
    display: none;
}

.menu_button {
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: #fff;
    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%;
    min-height: 200px;
    object-fit: cover;
    height: auto;
}

.Banner_text {
    width: var(--max);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 50px;
}

.Banner_text h1 {
    text-align: center;
    font-size: var(--size50);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
}

.Banner_text p {
    text-align: center;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    margin-top: 15px;
}

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

.title {
    width: 100%;
}

.title h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgba(132, 0, 35, 1);
    line-height: 1;
    font-weight: 600;
}

.title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    background: rgba(132, 0, 35, 0.8);
    display: block;
    margin: 10px auto;
}

.title p {
    text-align: center;
    font-size: var(--size20);
    color: rgba(132, 0, 35, 0.3);
    line-height: 1;
}

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

.Lianxi_text {
    width: 45%;
    background: url(../images/beijing.png) no-repeat center center / cover;
    padding: var(--top50) var(--top60);
}

.Lianxi_text h3 {
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
}

.Lianxi_text h3::after {
    content: "";
    width: 40px;
    height: 2px;
    opacity: 0.8;
    background: rgba(255, 255, 255, 1);
    display: block;
    margin-top: 10px;
}

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

.Lianxi_text ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top20);
}

.Lianxi_text_img {
    width: 50px;
    aspect-ratio: 4 / 4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.45);
}

.Lianxi_text_img img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.Lianxi_text_text {
    flex: 1;
}

.Lianxi_text_text h4 {
    font-size: var(--size16);
    color: rgba(230, 230, 230, 1);
}

.Lianxi_text_text p {
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Lianxi_form {
    flex: 1;
}

.Lianxi_form .title h2{
    font-size: var(--size30);
}

.Lianxi_form form {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top20) 0;
}

.Lianxi_form_item {
    width: calc(50% - 10px);
}

.Lianxi_form_item p {
    font-size: var(--size20);
    color: rgba(52, 57, 67, 1);
}

.Lianxi_form_item p span {
    color: rgba(255, 0, 0, 1);
}

.Lianxi_form_item input {
    width: 100%;
    height: 60px;
    border-radius: 2px;
    background: rgba(245, 242, 243, 1);
    border: 1px solid rgba(229, 229, 229, 1);
    margin-top: 15px;
    font-size: var(--size16);
    color: rgba(204, 200, 201, 1);
    padding: 0 10px;
}

.Lianxi_form_item:nth-child(3) {
    width: 100%;
}

.Lianxi_form_item textarea {
    width: 100%;
    height: 120px;
    border-radius: 2px;
    background: rgba(245, 242, 243, 1);
    border: 1px solid rgba(229, 229, 229, 1);
    margin-top: 15px;
    font-size: var(--size16);
    color: rgba(204, 200, 201, 1);
    padding: 10px;
    resize: none;
}

.Lianxi_form form button {
    width: 170px;
    height: 60px;
    background: rgba(132, 0, 35, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
}

.Ditu {
    width: 100%;
}

#amapContainer{
    width: 100%;
    height: 700px;
}

#amapContainer *{
    transition: auto;
}

.amap-info-content img{
    width: 150px !important;
}

.amap-info-content{
    backdrop-filter: blur(10px);
}

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

.RIchang ul li {
    width: 100%;
    background: rgba(132, 0, 35, 1);
}

.RIchang_img {
    width: 100%;
    position: relative;
}

.RIchang_img img {
    width: 100%;
    aspect-ratio: 580 / 400;
    object-fit: cover;
}

.RIchang_img::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.RIchang_img svg {
    width: 50px;
    height: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
}

.RIchang_img svg:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.RIchang_text {
    width: 100%;
    background: rgba(132, 0, 35, 1);
    padding: var(--top20) var(--top30);
}

.RIchang_text h3 {
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.RIchang_text h3::after {
    content: "";
    width: 100px;
    height: 2px;
    opacity: 0.8;
    background: rgba(255, 255, 255, 1);
    display: block;
    margin-top: 5px;
}

.pagination {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--top50);
    gap: 10px;
}

.pagination .page-item {
    font-size: 12px;
    padding: 8px 12px;
    color: rgba(51, 51, 51, 1);
    border: 1px solid rgba(225, 226, 228, 1);
    line-height: 1;
    border-radius: 5px;
}

.pagination .page-item.active {
    background: rgba(132, 0, 35, 1);
    border: 1px solid rgba(132, 0, 35, 1);
    color: #fff;
}

.video_modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video_modal_content {
    width: 90%;
    max-width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video_modal_close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
}

.video_modal_close:hover {
    transform: rotate(90deg);
}

#modalVideo {
    width: 100%;
    height: auto;
    max-height: 70vh;
    display: block;
}

.Tiandui {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top60);
}

.Tiandui_img {
    width: 48%;
    border: 1px solid rgba(204, 204, 204, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    contain: size;
}

.Tiandui_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.Tiandui_text {
    flex: 1;
    padding: var(--top30) 0;
}

.Tiandui_text h3 {
    font-size: var(--size30);
    color: rgba(132, 0, 35, 1);
    font-weight: 600;
}

.Tiandui_text h3::after {
    content: "";
    width: 100px;
    height: 2px;
    opacity: 0.8;
    background: rgba(132, 0, 35, 0.8);
    display: block;
    margin: 5px 0;
}

.Tiandui_text>span {
    display: block;
    font-size: var(--size16);
    color: rgba(132, 0, 35, 0.3);
}

.Tiandui_text p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top30);
    line-height: 2;
}

.Tiandui_text p span {
    color: rgba(132, 0, 35, 1);
}

.Zhuanye h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgba(132, 0, 35, 1);
    font-weight: 600;
}

.Zhuanye h2::after {
    content: "";
    width: 76px;
    height: 12px;
    border-radius: 9px 0px 9px 0px;
    background: rgba(132, 0, 35, 1);
    display: block;
    margin: auto;
    margin-top: 10px;
}

.Zhuanye>span{
    display: block;
        text-align: center;
    font-size: var(--size20);
    color: rgba(132, 0, 35, 0.3);
    line-height: 1;
    margin-top: 10px;
}
.Zhuanye>p {
    width: 100%;
    margin-top: var(--top50);
    font-size: var(--size16);
    color: rgba(77, 77, 77, 1);
    line-height: 1.8;
}

.Zhuanye ul {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    gap: var(--top40);
}

.Zhuanye ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top50);
}

.Zhuanye ul li:nth-child(even) {
    flex-direction: row-reverse;
}

.Zhuanye ul li img {
    width: 30%;
    object-fit: cover;
}

.Zhuanye_text {
    flex: 1;
}

.Zhuanye_text h3 {
    font-size: var(--size24);
    color: rgba(132, 0, 35, 1);
    font-weight: 600;
}

.Zhuanye_text h3::after {
    content: "";
    width: 100px;
    height: 2px;
    opacity: 0.8;
    background: rgba(132, 0, 35, 0.8);
    display: block;
    margin: 5px 0;
}

.Zhuanye_text>span {
    display: block;
    font-size: var(--size16);
    color: rgba(132, 0, 35, 0.3);
}

.Zhuanye_text p {
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top20);
    line-height: 2;
}

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

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

.Tixi_max {
    width: 100%;
    margin: var(--top80) auto;
}

.Tixi_max ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.Tixi_max ul li {
    width: 100%;
    border-radius: 0px var(--top30) var(--top30) 0px;
    border: 2px solid rgba(132, 0, 35, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.Tixi_max ul li:nth-child(even) {
    flex-direction: row-reverse;
    border-radius: var(--top30) 0px 0px var(--top30);
}

.Tixi_max_img {
    width: 30%;
    position: relative;
}

.Tixi_max_img::after {
    content: "";
    width: 40%;
    height: 10px;
    opacity: 1;
    background: rgba(132, 0, 35, 1);
    position: absolute;
    top: 0;
    right: 0;
}

.Tixi_max_img::before {
    content: "";
    width: 40%;
    height: 10px;
    opacity: 1;
    background: rgba(132, 0, 35, 1);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.Tixi_max_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Tixi_max_text {
    flex: 1;
    padding: var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Tixi_max_text h3 {
    width: 100%;
    font-size: var(--size30);
    color: rgba(132, 0, 35, 1);
    font-weight: 600;
}

.Tixi_max_text h3::after {
    content: "";
    width: 100px;
    height: 2px;
    opacity: 0.8;
    background: rgba(132, 0, 35, 0.8);
    display: block;
    margin: 5px 0;
}

.Tixi_max_text span{
    display: block;
        font-size: var(--size16);
    color: rgba(132, 0, 35, 0.3);
}
.Tixi_max_text p {
    width: 100%;
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top20);
    line-height: 2;
}

.Tixi_max_text a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(132, 0, 35, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top40);
    margin-top: var(--top30);
}

.Guanyu {
    width: 100%;
    overflow: hidden;
    border-radius: 0px 0px var(--top30) 0px;
    border: 2px solid rgba(132, 0, 35, 0.17);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Guanyu_img{
    width: 50%;
    position: relative;
}

.Guanyu_img::after{
    content: "";
    width: 280px;
    height: 10px;
    opacity: 1;
    background: rgba(132, 0, 35, 1);
    position: absolute;
    top: var(--top30);
    right: -100px;
}
.Guanyu_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Guanyu_title{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    padding: 50px calc((100% - var(--max)) / 2) 50px 8vw;
}

.Guanyu_title h3 {
    width: 100%;
    font-size: var(--size30);
    color: rgba(132, 0, 35, 1);
    font-weight: 600;
}

.Guanyu_title h3::after {
    content: "";
    width: 100px;
    height: 2px;
    opacity: 0.8;
    background: rgba(132, 0, 35, 0.8);
    display: block;
    margin-top: 5px;
}
.Guanyu_title>span {
    width: 100%;
    display: block;
    font-size: var(--size16);
    color: rgba(132, 0, 35, 0.3);
}

.Guanyu_title p {
    width: 100%;
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top30);
    line-height: 2;
}

.Guanyu_title a {
    width: max-content;
    display: block;
    line-height: 50px;
    background: rgba(132, 0, 35, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top40);
    margin-top: var(--top30);
}

.Swiper{
    width: 100%;
}

.Swiper img{
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    max-height: 70vh;
}

.Swiper_text{
    width: var(--max);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.Swiper_text h2{
    text-align: center;
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
}
.Swiper_text h3{
    text-align: center;
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
}
.Swiper_text>span{
    text-align: center;
    font-size: var(--size40);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top20);
    display: block;
}
.Swiper_text p{
    text-align: center;
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
}
.Ricang{
    width: 100%;
    overflow: hidden;
    background: rgb(247 243 244);
}
.Ricang_max .title *{
    text-align: left;
}

.Ricang_max .title h2::after{
    margin: 10px 0;
}
.Inlianxi{
    width: calc((100% - var(--max)) / 2 + var(--max));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 7vw;
}

.Inlianxi_img{
    width: 60%;
}

.Inlianxi_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Inlianxi .Lianxi_form{
    padding: var(--top50) 0;
}

.Ruhe{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--top30);
}

.Ruhe_left h2 {
    font-size: var(--size36);
    color: rgba(0, 48, 99, 1);
    line-height: 1;
    font-weight: 600;
}

.Ruhe_left h2::after {
    content: "";
    width: 120px;
    height: 1px;
    background: rgba(0, 48, 99, 0.8);
    display: block;
    margin: 10px 0;
}

.Ruhe_left p {
    font-size: var(--size20);
    color: rgba(0, 48, 99, 0.3);
    line-height: 1;
}
.Ruhe_left span{
    display: block;
    font-size: var(--size20);
    color: rgba(102, 102, 102, 1);
    margin-top: var(--top30);
    text-decoration: underline;
}

.Ruhe_title {
    width: max-content;
}

.Ruhe_title h4 {
    font-size: var(--size20);
    color: rgba(0, 48, 99, 1);
}

.Ruhe_title p {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
}

.Linian{
    width: 100%;
    overflow: hidden;
    background: rgba(132, 0, 35, 1);
}

.Linian_text{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.Linian_text h2{
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
}

.Linian_text p{
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Linian_p{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--top30);
    gap: var(--top30);
}

.Linian_p p{
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Linian_max>p{
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top20);
    text-align: center;
}

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

.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: 25px;
}

.Footer_left{
    width: max-content;
}

.Footer_left h2{
    font-size: var(--size18);
    color: rgba(132, 0, 35, 1);
}

.Footer_left p{
    font-size: var(--size14);
    color: rgba(51, 51, 51, 0.6);
    margin-top: var(--top20);
}
.Footer_max ul{
    width: max-content;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top20) 7vw;
}

.Footer_max li{
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

.Footer_max li:hover{
    color: rgba(132, 0, 35, 1);
}

.Erweima{
    width: 130px;
}

.Erweima img{
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(204, 204, 204, 1);
    height: auto;
}

.Erweima p{
    text-align: center;
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    margin-top: 10px;
}

.Beian {
    width: var(--max);
    overflow: hidden;
    margin: auto;
    border-top: 1px solid rgba(204, 204, 204, 0.3);
}

.Beian_max {
    width: 100%;
    overflow: hidden;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.Beian_max p {
    font-size: var(--size14);
    color: rgba(51, 51, 51, 0.6);
    padding: 0 10px;
    border-left: 1px solid rgba(51, 51, 51, 0.6);
    line-height: 1;
}

.Beian_max p:first-child {
    border-left: none;
}

.Zongshu{
    width: 100%;
    overflow: hidden;
    background: rgb(247 243 244);
}

.Zongshu_max{
    width: var(--max);
    margin: var(--top80) auto;
    position: relative;
}

.Zongshu_left{
    width: 60%;
    position: relative;
    background: rgba(255, 255, 255, 1);
    padding: var(--top50) var(--top60);
    padding-right: 120px;
}


.Zongshu_title>h2 {
    width: 100%;
    font-size: var(--size30);
    color: rgba(132, 0, 35, 1);
    font-weight: 600;
}

.Zongshu_title>h2::after {
    content: "";
    width: 100px;
    height: 2px;
    opacity: 0.8;
    background: rgba(132, 0, 35, 0.8);
    display: block;
    margin-top: 5px;
}
.Zongshu_title>span {
    width: 100%;
    display: block;
    font-size: var(--size16);
    color: rgba(132, 0, 35, 0.3);
}
.Zongshu_left ul{
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top30);
}

.Zongshu_left ul li{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30);
}

.Zongshu_itme{
    width: 80px;
    border: 2px solid rgba(184, 39, 77, 0.6);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Zongshu_itme h2{
    width: 100%;
    text-align: center;
    font-size: 32px;
    color: rgba(157, 51, 79, 1);
    font-weight: 900;
    line-height: 1;
}

.Zongshu_itme p{
    width: 100%;
    font-size: var(--size18);
    color: rgba(233, 182, 195, 1);
    line-height: 1;
    margin-top: 5px;
    text-align: center;
}

.Zongshu_text{
    flex: 1;
}

.Zongshu_text_title{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Zongshu_text_title h3{
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
}

.Zongshu_text_title span{
    font-size: var(--size18);
    color: rgba(153, 153, 153, 1);
}

.Zongshu_text h4{
    font-size: var(--size18);
    color: rgba(102, 102, 102, 1);
    margin-top: var(--top20);
}

.Zongshu_max p{
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
}

.Zongshu_btn{
    width: 300px;
    height: 150px;
    position: absolute;
    top: 0%;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255);
    z-index: 55;
}

.Zongshu_btn .prev1,
.Zongshu_btn .next1{
    width: max-content;
    height: max-content;
    background: transparent;
    position: static;
    inset: 0;
    transform: translate(0,0);
    cursor: pointer;
}
.Zongshu_btn .prev1:hover path,
.Zongshu_btn .next1:hover path{
    fill: rgba(132, 0, 35, 1);
}

.Zongshu_right{
    width: calc(40% + 100px);
    aspect-ratio: 880 / 600;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 5;
}
.Zongshu_right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Zongshu_right .prev1,
.Zongshu_right .next1{
   display: none;
   background: rgba(132, 0, 35, 1);
}

.Mubiao{
    width: 100%;
    overflow: hidden;
    background: rgb(247 243 244);
}

.Mubiao_max{
    width: var(--max);
    margin: var(--top80) auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Mubiao_left{
    width: 60%;
    position: relative;
    background: rgba(255, 255, 255, 1);
    padding: var(--top50) var(--top60);
    padding-left: 200px;
}


.Mubiao_title>h2 {
    width: 100%;
    font-size: var(--size30);
    color: rgba(132, 0, 35, 1);
    font-weight: 600;
    text-align: right;
}

.Mubiao_title>h2::after {
    content: "";
    width: 100px;
    height: 2px;
    opacity: 0.8;
    background: rgba(132, 0, 35, 0.8);
    display: block;
    margin-top: 5px;
    margin-left: auto;
}
.Mubiao_title>span {
    width: 100%;
    display: block;
    font-size: var(--size16);
    color: rgba(132, 0, 35, 0.3);
    text-align: right;
}
.Mubiao_left ul{
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top30);
}

.Mubiao_left ul li{
    width: 100%;
    gap: var(--top30);
}
.Mubiao_left ul li h3{
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: right;
}

.Mubiao_left ul li span{
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    text-align: right;
    display: block;
}
.Mubiao_left ul li p{
    font-size: var(--size18);
    color: rgba(102, 102, 102, 1);
    text-align: right;
    margin-top: 15px;
}

.Mubiao_left ul li:nth-child(even) *{
    text-align: left;
}

.Mubiao_btn{
    width: 300px;
    height: 150px;
    position: absolute;
    top: 0%;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255);
    z-index: 55;
}

.Mubiao_btn .prev2,
.Mubiao_btn .next2{
    width: max-content;
    height: max-content;
    background: transparent;
    position: static;
    inset: 0;
    transform: translate(0,0);
    cursor: pointer;
}
.Mubiao_btn .prev2:hover path,
.Mubiao_btn .next2:hover path{
    fill: rgba(132, 0, 35, 1);
}
.Mubiao_right{
    width: calc(40% + 100px);
    aspect-ratio: 880 / 600;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 5;
}
.Mubiao_right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Mubiao_right .prev2,
.Mubiao_right .next2{
   display: none;
   background: rgba(132, 0, 35, 1);
}

.RIchang_after::after{
    display: none;
}

.Top{
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    
    background: rgba(132, 0, 35, 1);
    right: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    cursor: pointer;
}

.Top svg{
    width: 25px;
    height: auto;
    display: block;
}

.Yingyu {
    width: 100%;
    margin-top: var(--top50);
}

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

.Yingyu_text {
    width: 100%;
    margin-top: var(--top30);
    font-size: var(--size16);
    color: rgba(77, 77, 77, 1);
    line-height: 1.8;
}

.Yanzhen{
    width: 100%;
    margin-top: var(--top50);
}

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

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

.Shipin_video_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--top20);
}

.Shipin_video_player {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.Shipin_video_player video {
    width: 100%;
    height: auto;
    display: block;
}

.Shipin_video_text {
    width: 100%;
}

.Shipin_video_text h3 {
    font-size: var(--size20);
    color: rgba(132, 0, 35, 1);
    font-weight: 600;
    margin-bottom: 10px;
}

.Shipin_video_text h3::after {
    content: "";
    width: 100px;
    height: 2px;
    opacity: 0.8;
    background: rgba(132, 0, 35, 0.8);
    display: block;
    margin: 5px 0;
}

.Shipin_video_text span {
    display: block;
    font-size: var(--size16);
    color: rgba(132, 0, 35, 0.7);
}