: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;
}

@font-face {
    font-family: "Medium";
    src: url("../fonts/Medium.otf") format("truetype");
}

@font-face {
    font-family: "Bold";
    src: url("../fonts/Bold.otf") format("truetype");
}

body {
    font-family: "Medium";
}

.Hertre {
    width: 100%;
    z-index: 999;
    height: 100px;
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(5, 5, 5, 0.1);
}

.Hertre_cen {
    width: var(--max);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.Logo {
    width: 220px;
    overflow: hidden;

}

.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(--top50);
}

.Nav ul li {
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    text-align: center;
    line-height: 100px;
    position: relative;
}

.Nav ul li svg {
    width: 16px;
    height: 16px;
    fill: #030000;
    display: none;
}


.Nav ul li.active {
    color: rgba(181, 130, 53, 1)
}

.Nav ul li:hover {
    color: rgba(181, 130, 53, 1);
}

.Nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    border-radius: 3px;
    background: rgba(181, 130, 53, 1);
    position: absolute;
    bottom: 25px;
    left: 0%;
    transition: all 0.3s;
}

.Nav ul li.active::after {
    width: 100%;
}

.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 {
    color: rgba(181, 130, 53, 1);
}

.Nav_item a.active {
    color: rgba(181, 130, 53, 1);
}

.En {
    width: max-content;
}

.En ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.En ul li {
    width: 50px;
    aspect-ratio: 4 / 4;
    background: rgba(207, 41, 39, 1);
    border-radius: 50%;
    position: relative;
}

.En ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.En ul li a>img {
    max-width: 40%;
    max-height: 40%;
    object-fit: contain;
}

.En_img {
    width: 130px;
    padding: 10px;
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(255, 255, 255, 1);
    filter: drop-shadow(0px 0px 10px #00000030);
    transform-origin: top center;
}

.En ul li:hover .En_img {
    transform: translateX(-50%) scale(1);
}

.En_img::after {
    content: "";
    width: 0px;
    height: 0px;
    border-bottom: 8px solid rgba(255, 255, 255, 1);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.En_img img {
    width: 100%;
}

.An {
    width: 30px;
    display: none;
}

.menu_button {
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: rgba(181, 130, 53, 1);
    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;
}

.Banner_text {
    width: var(--max);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--size50);
    color: rgba(0, 0, 0, 1);
    padding-left: 10vw;
    font-family: 'Bold';
}


.Max {
    width: var(--max);
    margin: var(--top80) auto;
}

.Lianxi {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top20);
}

.Lianxi_left {
    flex: 1;
}

.Lianxi_left ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: var(--top30);
    height: 100%;
}

.Lianxi_left ul li {
    flex: 1;
    height: 100%;
    border: 4px solid rgba(181, 130, 53, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    padding: var(--top20);
}

.Lianxi_img {
    width: 60px;
    aspect-ratio: 4 / 4;
    background: rgba(181, 130, 53, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.Lianxi_img img {
    max-width: 40%;
    max-height: 40%;
    object-fit: contain;
}

.Lianxi_left ul li h3 {
    width: 100%;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
    text-align: center;
    margin-top: 10px;
}

.Lianxi_left ul li p {
    width: 100%;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
    text-align: center;
    margin-top: 10px;
}


.Lianxi_right {
    width: 30%;
    border: 4px solid rgba(181, 130, 53, 1);
}

.Lianxi_right ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: var(--top30);
    gap: var(--top30);
}

.Lianxi_right ul li {
    flex: 1;
}

.Lianxi_right ul li img {
    width: 100%;
    height: auto;
}

.Lianxi_right ul li h3 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    margin-top: 5px;
    font-family: 'Bold';
}

.Map {
    width: 100%;
    margin-top: var(--top50);
}

.Map img {
    width: 100%;
    height: auto;
}

.Form {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(49, 34, 2, 0.1);
    margin-top: var(--top50);
    padding: var(--top50);
}

.Form h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
}

.Form form {
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
}

.Form form input {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 1);
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    padding: 0 var(--top30);
    border: 1px solid rgba(204, 204, 204, 1);
    font-family: 'Medium';
}

.Form_textarea {
    width: 100%;
    grid-column: 1 / -1;
    border: 1px solid rgba(204, 204, 204, 1);
    padding: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Form_textarea textarea {
    width: 100%;
    height: 200px;
    font-family: 'Medium';
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    resize: none;
}

.Form_textarea button {
    width: 205px;
    height: 50px;
    border-radius: 25px;
    background: rgba(163, 40, 42, 1);
    border: transparent;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    margin-top: var(--top20);
}

.Jiaru ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top30);
}

.Jiaru ul li {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(49, 34, 2, 0.1);
    padding: var(--top40) var(--top50);
}

.Jiaru_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    padding-bottom: var(--top30);
    gap: var(--top30);
}

.Jiaru_top h2 {
    flex: 1;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
}


.Jiaru_top a {
    width: max-content;
    line-height: 46px;
    border-radius: 25px;
    background: rgba(163, 40, 42, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top50);
}

.Jiaru ul li p {
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 1.8;
    margin-top: var(--top30);
}

.Jiaru ul li:hover {
    box-shadow: 0px 0px 20px rgba(49, 34, 2, 0.2);
    transform: translateY(-5px);
}

.Show {
    width: var(--max);
    overflow: hidden;
    margin: var(--top80) auto;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(5, 5, 5, 0.1);
    padding: var(--top50);
}

.Show>h2 {
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    text-align: center;
    font-family: 'Bold';
}

.Show>p {
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    text-align: center;
    margin-top: 10px;
}

.Show_text {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(221, 221, 221, 1);
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    padding: var(--top30) 0;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    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: 10px;
}

.page .active,
.page .total {
    font-size: 12px;
    padding: 10px 12px;
    color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 1);
    line-height: 1;
    border-radius: 10px;
}

.page .active {
    border: 1px solid rgba(181, 130, 53, 1);
    color: rgba(181, 130, 53, 1);
}

.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: rgba(0, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 1);
}

.Fenlei {
    width: var(--max);
    margin: var(--top40) auto;
}

.Fenlei ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--top40);
}

.Fenlei ul li {
    width: max-content;
    line-height: 60px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    padding: 0 5vw;
    font-size: var(--size20);
    color: rgba(181, 130, 53, 1);
    position: relative;
}

.Fenlei ul li::after {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 0px solid rgba(163, 40, 42, 1);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Fenlei ul li.active,
.Fenlei ul li:hover {
    background: rgba(163, 40, 42, 1);
    color: rgba(255, 255, 255, 1);
}

.Fenlei ul li.active::after,
.Fenlei ul li:hover::after {
    border-top: 10px solid rgba(163, 40, 42, 1);
}

.Xinwen {
    width: var(--max);
    margin: var(--top60) auto var(--top80);
}

.Xinwen ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top40) var(--top60);
}

.Xinwen ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    padding-bottom: 15px;
}

.Xinwen ul li img {
    width: 100%;
    aspect-ratio: 430 / 300;
    object-fit: cover;
}

.Xinwen ul li h2 {
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    line-height: 1.6;
    font-family: 'Bold';
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Xinwen ul li p {
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    line-height: 1.6;
    margin-top: 10px;
}

.Xinwen ul li:hover {
    transform: translateY(-5px);
}

.Xinwen ul li:hover h2 {
    color: rgba(163, 40, 42, 1);
}

.Chanpin_fenlei {
    width: var(--max);
    margin: var(--top40) auto;
}

.Chanpin_fenlei ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top40);
}

.Chanpin_fenlei ul li {
    width: 100%;
    line-height: 60px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    text-align: center;
    font-size: var(--size20);
    color: rgba(181, 130, 53, 1);
    position: relative;
    cursor: pointer;
}

.Chanpin_fenlei ul li::after {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 0px solid rgba(163, 40, 42, 1);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Chanpin_fenlei ul li.active,
.Chanpin_fenlei ul li:hover {
    background: rgba(163, 40, 42, 1);
    color: rgba(255, 255, 255, 1);
}

.Chanpin_fenlei ul li.active::after,
.Chanpin_fenlei ul li:hover::after {
    border-top: 10px solid rgba(163, 40, 42, 1);
}

.Chanpin {
    width: var(--max);
    margin: var(--top60) auto var(--top80);
}

.Chanpin ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top40);
}

.Chanpin ul li {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(49, 34, 2, 0.1);
    padding: var(--top30);
}

.Chanpin ul li img {
    width: 100%;
    aspect-ratio: 320 / 280;
    object-fit: contain;
}

.Chanpin ul li h2 {
    width: 100%;
    text-align: center;
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
    border-top: 1px solid rgba(221, 221, 221, 1);
    padding-top: var(--top20);
    margin-top: var(--top20);
}

.Chanpin ul li:hover {
    transform: translateY(-5px);
}

.Chanpin ul li:hover h2 {
    color: rgba(163, 40, 42, 1);
}

.Chanpin_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5vw;
}

.Chanpin_swiper {
    width: 52%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.Chanpin_swiper_top {
    flex: 1;
    height: 600px;
    background: rgba(243, 243, 245, 1);
}

.Chanpin_swiper_top ul li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Chanpin_swiper_top img {
    max-height: 70%;
    max-height: 70%;
    object-fit: contain;
}

.Chanpin_swiper_bottom {
    width: 130px;
    height: 600px !important;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
}

.Chanpin_swiper_num {
    width: 100%;
    height: calc(100% - 70px) !important;
}

.Chanpin_swiper_num li {
    width: 100%;
    height: 100%;
    background: rgba(243, 243, 245, 1);
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.Chanpin_swiper_num ul li img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.Chanpin_swiper_num ul li.zhenshangyin-slide-active {
    border: 2px solid rgba(163, 40, 42, 1);
}

.prev,
.next {
    width: max-content;
    height: max-content;
    position: static;
    inset: 0;
    transform: translate(0%, 0%) rotate(90deg);
    background: transparent;
}

.Chanpin_right {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.Chanpin_right_text {
    width: 100%;
}

.Chanpin_right_text h2 {
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    padding-bottom: var(--top20);
}

.Chanpin_right_text p {
    font-size: var(--size18);
    line-height: 2;
    margin-top: var(--top20);
}


.Chanpin_right a {
    width: max-content;
    line-height: 60px;
    border-radius: 20px;
    background: rgba(163, 40, 42, 1);
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top30);
}

.Chanpin_right a img {
    width: 15px;
    height: auto;
}

.Chanpin_show_bottom {
    width: 100%;
    margin-top: var(--top60);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(49, 34, 2, 0.1);
}

.Chanpin_show_title {
    width: 100%;
    line-height: 80px;
    text-align: center;
    background: rgba(163, 40, 42, 1);
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
}

.Chanpin_show_text {
    width: 100%;
    padding: var(--top30);
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
}

.Chanpin_show_text img {
    max-width: 100%;
    height: auto;
    margin: auto;
}

.Tuijian ul {
    width: 100%;
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: var(--top40) var(--top60);
}

.Tuijian ul li {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(49, 34, 2, 0.1);
    display: flex;
    justify-content: space-between;
}

.Tuijian_img {
    flex: 1;
}

.Tuijian_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Tuijian_text {
    width: 40%;
    padding: var(--top30);
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.Tuijian_text_top {
    width: 100%;
}

.Tuijian_text_img {
    width: 170px;
    max-width: 70%;
    aspect-ratio: 4 / 4;
    background: rgba(248, 246, 247, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.Tuijian_text_img img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.Tuijian_text_top h2 {
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
    margin-top: var(--top20);
    text-align: center;
}

.Tuijian_text a {
    width: 100%;
    text-align: center;
    line-height: 50px;
    border-radius: 25px;
    background: rgba(163, 40, 42, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: 15px;
}

.Tuijian ul li:hover {
    transform: translateY(-5px);
}

.Tuijian ul li:hover .Tuijian_text_top h2 {
    color: rgba(163, 40, 42, 1);
}

.Tuijian_show {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4vw;
}

.Tuijian_show_img {
    width: 45%;
}

.Tuijian_show_img img {
    width: 100%;
    height: auto;
}

.Tuijian_show_text {
    flex: 1;
}

.Tuijian_show_text>h2 {
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    padding-bottom: var(--top20);
}

.Tuijian_content {
    width: 100%;
    font-size: var(--size18);
    line-height: 2;
    margin-top: var(--top20);
}

.Tuijian_show_text ul {
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.Tuijian_show_text ul li {
    width: 100%;
    background: rgba(248, 246, 247, 1);
    padding: var(--top20) var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top20);
}

.Tuijian_show_text ul li img {
    width: 50px;
    height: 100px;
    object-fit: contain;
}

.Tuijian_show_text ul li h3 {
    flex: 1;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
}

.Tuijian_show_text ul li a {
    width: max-content;
    padding: 0 var(--top50);
    text-align: center;
    line-height: 50px;
    border-radius: 25px;
    background: rgba(163, 40, 42, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
}

.Bai {
    color: rgba(255, 255, 255, 1);
}

.Jieshao {
    width: 100%;
    overflow: hidden;
    background: url(../images/heijing2.png) no-repeat left center / cover;
}

.Jieshao_max {
    width: var(--max);
    margin: var(--top100) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5vw;
}

.Jieshao_left {
    width: max-content;
}

.Jieshao_left h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Jieshao_left h2::before {
    content: "";
    width: 8px;
    height: 8px;
    opacity: 1;
    background: rgba(163, 40, 42, 1);
    display: block;
    border-radius: 50%;
}

.Jieshao_left p {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-family: 'Bold';
    margin-top: 15px;
}

.Jieshao_left p span {
    color: rgba(163, 40, 42, 1);
}

.Jieshao_right {
    flex: 1;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
}

.Jieshao_right img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.Wenhua>h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.Wenhua>h2::before {
    content: "";
    width: 8px;
    height: 8px;
    opacity: 1;
    background: rgba(163, 40, 42, 1);
    display: block;
    border-radius: 50%;
}

.Wenhua>p {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-family: 'Bold';
    margin-top: 15px;
    text-align: center;
}

.Wenhua>p span {
    color: rgba(163, 40, 42, 1);
}

.Wenhua ul {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    justify-content: space-between;
}

.Wenhua ul li {
    flex: 1;
    height: 500px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.Wenhua ul li>h2 {
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: center;
    line-height: 1;
}

.Wenhua_text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    padding: var(--top30);
    transform: translateY(100%);
}

.Wenhua_text_img {
    width: 80px;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Wenhua_text_img img {
    width: 40%;
    height: 40%;
    object-fit: contain;
}

.Wenhua_text h3 {
    width: 100%;
    text-align: center;
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
}

.Wenhua_text p {
    width: 100%;
    text-align: center;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Wenhua ul li:hover {
    flex: 2;
}

.Wenhua ul li:hover h2 {
    opacity: 0;
}

.Wenhua ul li:hover .Wenhua_text {
    transform: translateY(0);
}


.Yewu {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing3.png) no-repeat center center / cover;
}

.Yewu_max>h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.Yewu_max>h2::before {
    content: "";
    width: 8px;
    height: 8px;
    opacity: 1;
    background: rgba(163, 40, 42, 1);
    display: block;
    border-radius: 50%;
}

.Yewu_max>p {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-family: 'Bold';
    margin-top: 15px;
    text-align: center;
}

.Yewu_max>p span {
    color: rgba(163, 40, 42, 1);
}

.Yewu_text {
    width: 100%;
    margin-top: var(--top50);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Yewu_text img {
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}


.Yewu_text p {
    width: 50%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: var(--top50);
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
    margin: var(--top80) 0;
    position: relative;
    z-index: 5;
}


.Footer {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing4.png) no-repeat center center / cover;
}

.Footer_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.Footer_logo {
    width: 130px;
}

.Footer_logo img {
    width: 100%;
    height: auto;
}

.Footer_ul {
    width: max-content;
    overflow: hidden;
}

.Footer_top {
    width: 140px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    padding-bottom: 15px;
}

.Footer_top h2 {
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
}

.Footer_top svg {
    width: 14px;
    height: auto;
    display: none;
}

.Footer_ul ul {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
    margin-top: var(--top20);
}

.Footer_ul ul li {
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
}

.Erweima {
    width: max-content;
}

.Erweima img {
    width: 110px;
    height: auto;
    margin: auto;
}

.Erweima p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}

.Beian {
    width: var(--max);
    margin: auto;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 1);
}

.Beian_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top20) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.Beian_max p {
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
}

.Swiper {
    width: 100%;
}


.Swiper img {
    width: 100%;
    height: auto;
}

.zhenshangyin-pager-bullets-bullet {
    width: 50px;
    height: 4px;
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0px;
}

.zhenshangyin-pager-bullets-bullet.active {
    background: rgba(200, 160, 100, 1);
}

.Pinpai {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 7.5vw;
}

.Pinpai>img {
    width: 48%;
    height: auto;
}

.Pinpai_text {
    flex: 1;
    padding-top: var(--top50);
}

.Pinpai_text h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Pinpai_text h2::before {
    content: "";
    width: 8px;
    height: 8px;
    opacity: 1;
    background: rgba(163, 40, 42, 1);
    display: block;
    border-radius: 50%;
}

.Pinpai_text p {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-family: 'Bold';
    margin-top: 15px;
}

.Pinpai_text p span {
    color: rgba(163, 40, 42, 1);
}

.Pinpai_text ul {
    width: 100%;
    margin-top: var(--top80);
    display: flex;
    justify-content: space-around;
}

.Pinpai_text ul li {
    flex: 1;
}

.Pinpai_icon {
    width: 80px;
    aspect-ratio: 4 / 4;
    border: 1px solid rgba(51, 51, 51, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: auto;
}

.Pinpai_icon svg {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.Pinpai_text ul li h3 {
    text-align: center;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
}

.Pinpai_text ul li:hover {
    transform: translateY(-5px);
}

.Pinpai_text ul li:hover h3 {
    color: rgba(163, 40, 42, 1);
}

.Pinpai_text ul li:hover .Pinpai_icon {
    border: 1px solid rgba(163, 40, 42, 1);
}

.Pinpai_text ul li:hover .Pinpai_icon svg path {
    fill: rgba(163, 40, 42, 1);
}

.Pinpai_content {
    width: 100%;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    line-height: 1.6;
    margin-top: var(--top40);
}

.Pinpai_text>img {
    width: 100%;
    height: auto;
    margin-top: var(--top50);
}


.Mianfei {
    width: 100%;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.Mianfei_max {
    width: var(--max);
    margin: 8vw auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Mianfei_max a {
    width: max-content;
    text-align: center;
    line-height: 50px;
    border-radius: 25px;
    background: rgba(163, 40, 42, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top60);
}

.ChanpinIn {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing5.png) no-repeat center center / cover;
}


.ChanpinIn_max>h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.ChanpinIn_max>h2::before {
    content: "";
    width: 8px;
    height: 8px;
    opacity: 1;
    background: rgba(163, 40, 42, 1);
    display: block;
    border-radius: 50%;
}

.ChanpinIn_max>p {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-family: 'Bold';
    margin-top: 15px;
    text-align: center;
}

.ChanpinIn_max>p span {
    color: rgba(163, 40, 42, 1);
}


.ChanpinIn_content {
    width: 100%;
    margin-top: var(--top50);
}

.ChanpinIn_list {
    width: 100%;
    display: none;
    transition: auto;
}

.ChanpinIn_list:nth-child(1) {
    display: block;
}

.ChanpinIn_ltem {
    width: 100%;
    position: relative;
}

.ChanpinIn_swiper {
    width: 100%;
}

.ChanpinIn_swiper ul li {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(149, 106, 16, 0.1);
    padding: var(--top30);
}

.ChanpinIn_swiper ul li img {
    width: 100%;
    aspect-ratio: 320 / 280;
    object-fit: contain;
}

.ChanpinIn_swiper ul li h2 {
    width: 100%;
    text-align: center;
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
    border-top: 1px solid rgba(221, 221, 221, 1);
    padding-top: var(--top20);
    margin-top: var(--top20);
}

.ChanpinIn_swiper ul li:hover h2 {
    color: rgba(163, 40, 42, 1);
}

.prev1 {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    left: -100px;
    ;
}

.next1 {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    right: -100px;
    ;
}

.prev1:hover,
.next1:hover {
    background: rgba(163, 40, 42, 1);
}

.prev1:hover svg path,
.next1:hover svg path {
    fill: rgba(255, 255, 255, 1);
}

.ChanpinIn_list>a {
    width: max-content;
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    background: rgba(163, 40, 42, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 6vw;
    display: block;
    margin: auto;
    margin-top: var(--top40);
}

.ChanpinIn_list>a:hover {
    padding: 0 10vw;
}

.ChanpinIn .Chanpin_fenlei {
    width: 100%;
    margin: 0;
    margin-top: var(--top40);
}

.Beijing {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing6.png) no-repeat center center / 100% auto;
}

.XInwenIn>h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.XInwenIn>h2::before {
    content: "";
    width: 8px;
    height: 8px;
    opacity: 1;
    background: rgba(163, 40, 42, 1);
    display: block;
    border-radius: 50%;
}

.XInwenIn>p {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-family: 'Bold';
    margin-top: 15px;
    text-align: center;
}

.XInwenIn>p span {
    color: rgba(163, 40, 42, 1);
}

.XInwenIn .Xinwen {
    width: 100%;
    margin-top: var(--top40);
}

.XInwenIn .Xinwen ul li {
    border: transparent;
    padding: 0;
}

.Suyuan {
    width: var(--max);
    margin: 11.5vw auto 6.5vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 13vw;
}

.Suyuan_left {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--top30);
}

.Suyuan_left>h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: center;
}

.Suyuan_left>h2::before {
    content: "";
    width: 8px;
    height: 8px;
    opacity: 1;
    background: rgba(163, 40, 42, 1);
    display: block;
    border-radius: 50%;
}

.Suyuan_left>p {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-family: 'Bold';
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: center;
}

.Suyuan_left>p span {
    color: rgba(163, 40, 42, 1);
}

.Suyuan_right {
    flex: 1;
}

.Suyuan_right h3 {
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    line-height: 1.5;
    font-family: 'Bold';
}

.Suyuan_right p {
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    line-height: 2;
    margin-top: var(--top80);
}

.Suyuan_right a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top20);
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top80);
}

.Suyuan_right a img {
    width: 50px;
    height: auto;
}

.Suyuan_right a:hover {
    gap: var(--top40);
    color: rgba(163, 40, 42, 1);
}

.Tuijian{
    width: var(--max);
    margin: 6.5vw auto var(--top80);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}


.Tuijian_lift>h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Tuijian_lift>h2::before {
    content: "";
    width: 8px;
    height: 8px;
    opacity: 1;
    background: rgba(163, 40, 42, 1);
    display: block;
    border-radius: 50%;
}

.Tuijian_lift>p {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-family: 'Bold';
    margin-top: 15px;
}

.Tuijian_lift>p span {
    color: rgba(163, 40, 42, 1);
}

.Tuijian_img{
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: var(--top40);
}
.Tuijian_img img{
    width: 100%;
    height: auto;
}
.Tuijian_img a{
    width: max-content;
    text-align: center;
    line-height: 50px;
    border-radius: 25px;
    background: rgba(163, 40, 42, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: var(--top20);
    right: var(--top20);
    padding: 0 var(--top30);
}
.Tuijian_img a img{
    width: 10px;
    height: auto;
}

.Tuijian_img:hover img{
    transform: scale(1.05);
}
.Tuijian_img a:hover{
    gap: var(--top30);
}