:root {
    --max: 1200px;
    --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: 1200px;
    max-width: 100%;
    z-index: 999;
    height: 80px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 1);
}

.Hertre_cen {
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.Logo {
    width: 145px;
    overflow: hidden;
    margin-left: 20px;

}

.Logo img {
    width: 100%;
    height: auto;
}

.Nav {
    width: max-content;
    margin-left: auto;
}

.Nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.Nav ul li {
    font-size: var(--size18);
    color: rgba(33, 33, 33, 1);
    text-align: center;
    line-height: 80px;
    position: relative;
    margin-right:10px;
padding: 0 15px;
}

.Nav ul li svg {
    width: 16px;
    height: 16px;
    fill: #030000;
    display: none;
}


.Nav ul li.active {
    color: rgba(220, 38, 34, 1)
}

.Nav ul li:hover {
    color: rgba(220, 38, 34, 1);
}

.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(220, 38, 34, 1);
}

.Nav_item a.active {
    color: rgba(220, 38, 34, 1);
}


.Sousuo {
    width: max-content;
    height: 100%;
    background: rgba(220, 38, 34, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 var(--top20);
    gap: var(--top40);
}

.Sousuo a {
    width: 20px;
    cursor: pointer;
}

.Sousuo a img {
    width: 100%;
}


.suosouaa {
    width: 700px;
    max-width: 96%;
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 15px 3px #00000020;
    z-index: 99999;
}

.suosouaa form {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.suosouaa_s {
    width: calc(100% - 100px);
    height: 50px;
    border: 1px solid rgba(220, 38, 34, 1);
    font-size: var(--size14);
    color: rgba(220, 38, 34, 1);
    padding: 0 20px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.suosouaa_t {
    width: 100px;
    height: 50px;
    border: transparent;
    background: rgba(220, 38, 34, 1);
    color: #ffffff;
    font-size: var(--size14);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}


.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(220, 38, 34, 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%;
    min-height: 200px;
    object-fit: cover;
    height: auto;
}


.Max {
    width: var(--max);
    margin: var(--top60) auto;
}

.Max_title {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
    align-content: flex-end;
    gap: 5vw;
min-width: min-content;
}

.Title {
    width: max-content;
}

.Title h1 {
    font-size: var(--size30);
    color: rgba(90, 90, 90, 1);
    font-weight: 600;
    line-height: 1;
}

.Title p {
    font-size: var(--size16);
    color: rgba(90, 90, 90, 1);
    font-weight: 100;
    margin-top: 10px;
}

.Max_title ul {
    flex: 1;
    display: flex;
    gap: 4vw;
    flex-wrap: nowrap;
flex-shrink: 1;
}

.Max_title ul li {
    font-size: var(--size20);
    color: rgba(129,206,232,1);
    font-weight: 600;
    white-space: nowrap;
}

.Max_title ul li.active {
    color: rgba(62, 175, 219, 1);
}

.Mianbao {
    width: max-content;
    font-size: var(--size16);
    color: rgba(52, 52, 52, 1);
    flex-shrink: 0;
    white-space: nowrap;
}

.Xiwang {
    width: 100%;
    margin-top: var(--top50);
}

.Xiwang>h2 {
    font-size: var(--size24);
    color: rgba(38, 38, 38, 1);
    font-weight: 600;
    text-align: center;
}

.Xiwang>p {
    width: max-content;
    max-width: 100%;
    margin: auto;
    margin-top: 15px;
    font-size: var(--size16);
    color: rgba(92, 92, 92, 1);
    line-height: 1.5;
}

.Xiwang>p span {
    color: rgba(220, 38, 34, 1);
}

.Xiwang ul {
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top30);
}

.Xiwang ul li {
    width: 100%;
    position: relative;
}

.Xiwang ul li img {
    width: 100%;
    height: auto;
}

.Xiwang_text {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(62, 175, 219, 0.5);
    padding: 15px var(--top30);
}

.Xiwang_text h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Xiwang_text p {
    width: 100%;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: 15px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.Xiwang ul li:hover .Xiwang_text p {
    -webkit-line-clamp: initial;
}

.Zhaopin {
    width: 100%;
    margin-top: var(--top50);
}

.Zhaopin>h2 {
    font-size: var(--size24);
    color: rgba(38, 38, 38, 1);
    font-weight: 600;
    text-align: center;
}

.Zhaopin>p {
    width: max-content;
    max-width: 100%;
    margin: auto;
    margin-top: 15px;
    font-size: var(--size16);
    color: rgba(92, 92, 92, 1);
    line-height: 1.5;
}

.Zhaopin>p span {
    color: rgba(220, 38, 34, 1);
}

.Zhaopin ul {
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.Zhaopin ul li {
    width: 100%;
    border-radius: 4px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(232, 232, 232, 1);
    padding: 15px var(--top20);
}

.Zhaopin ul li:hover {
    border: 1px solid rgba(220, 38, 34, 1);
    box-shadow: 2.83px 2.83px 2px rgba(195, 31, 28, 0.29);
}

.Zhaopin_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.Zhaopin_title h2 {
    flex: 1;
    font-size: var(--size20);
    color: rgba(32, 32, 32, 1);
    font-weight: 600;
}

.Zhaopin_title p {
    width: max-content;
    font-size: var(--size14);
    color: rgba(32, 32, 32, 1);
}

.Zhaopin_biaoqian {
    width: 100%;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.Zhaopin_biaoqian p {
    width: max-content;
    line-height: 30px;
    border-radius: 2px;
    background: rgba(248, 248, 248, 1);
    font-size: var(--size14);
    color: rgba(32, 32, 32, 1);
    padding: 0 15px;
}

.Zhaopin_zhize {
    width: 100%;
}

.Zhaopin_zhize h2 {
    font-size: var(--size16);
    color: rgba(32, 32, 32, 1);
    font-weight: 600;
}

.Zhaopin_zhize p {
    font-size: var(--size14);
    color: rgba(32, 32, 32, 1);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 5px;
}

.pagination {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--top50);
    gap: var(--top20);
}

.pagination .page-item {
    font-size: 12px;
    line-height: 28px;
    padding: 0 11px;
    color: rgba(57, 57, 57, 1);
    border: 1px solid rgba(157, 157, 157, 1);
    border-radius: 28px;
}

.pagination .page-item a,
.pagination .page-item span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-item svg {
    width: 15px;
}

.pagination .page-item:nth-child(1),
.pagination .page-item:last-child {
    padding: 0 var(--top30);
}

.pagination .page-item:hover,
.pagination .page-item.active {
    background: rgba(220, 38, 34, 1);
    border: 1px solid rgba(220, 38, 34, 1);
    color: #fff;
}

.pagination .page-item:hover svg path {
    stroke: #fff;
}

.Zhaopin_show>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    margin-top: var(--top50);
}

.Zhaopin_content {
    width: 100%;
    background: rgba(247, 248, 255, 1);
    padding: var(--top30);
    margin-top: var(--top30);
}

.Zhaopin_content h2 {
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
}

.Zhaopin_content>p {
    font-size: var(--size16);
    color: rgba(56, 56, 56, 1);
    line-height: 1.7;
    margin-top: var(--top20);
}

.Zhaopin_text {
    width: 100%;
    margin-top: var(--top20);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top20);
}

.Zhaopin_text p {
    font-size: var(--size16);
    color: rgba(56, 56, 56, 1);
}

.Zhaopin_show>p {
    font-size: var(--size20);
    color: rgba(220, 38, 34, 1);
    line-height: 1.7;
    margin-top: var(--top30);
    padding: 0 var(--top30);
    font-weight: 600;
}

.Xinwen>ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top30);
    margin-top: var(--top50);
}

.Xinwen>ul li {
    width: 100%;
    border-bottom: 1px solid rgba(230, 230, 230, 1);
    padding-bottom: var(--top30);
}

.Xinwen>ul li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: var(--top50);
}

.Xinwen>ul li img {
    width: 350px;
    object-fit: cover;
}

.Xinwen_text {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Xinwen_text h2 {
    width: 100%;
    font-size: var(--size18);
    color: rgba(18, 18, 18, 1);
    font-weight: 600;
}

.Xinwen_text p {
    width: 100%;
    font-size: var(--size16);
    color: rgba(65, 65, 65, 1);
    line-height: 1.7;
    margin-top: var(--top20);
}

.Xinwen_span {
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: var(--top20);
}

.Xinwen_span span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size14);
    color: rgba(77, 77, 77, 1);
    gap: 10px;
}

.Xinwen_span span svg {
    width: 20px;
}

.Xinwen>ul li:hover .Xinwen_text h2 {
    color: rgba(220, 38, 34, 1);
}

.Show>h2 {
    font-size: var(--size24);
    color: rgba(38, 38, 38, 1);
    text-align: center;
    margin-top: var(--top50);
    font-weight: 600;
}

.Show_tame {
    width: 100%;
    margin-top: var(--top20);
    border-top: 1px solid rgba(210, 210, 210, 1);
    border-bottom: 1px solid rgba(210, 210, 210, 1);
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--top20);
}

.Show_tame>p {
    font-size: var(--size16);
    color: rgba(122, 122, 122, 1);
}

.Show_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    font-size: var(--size16);
    color: rgba(54, 54, 54, 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;
    justify-content: space-between;
    gap: 10px;
}

.Prev a {
    width: max-content;
    max-width: 48%;
    display: block;
    font-size: var(--size14);
    color: #000000;
}

.Hezuo>ul {
    width: 100%;
    margin-top: var(--top50);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top20);
}

.Hezuo>ul li {
    width: 100%;
    aspect-ratio: 280 / 100;
    border: 1px solid rgba(206, 206, 206, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.Hezuo>ul li img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.Hezuo>ul li:hover {
    border: 1px solid rgba(220, 38, 34, 1);
    box-shadow: 2.83px 2.83px 2px rgba(195, 31, 28, 0.29);
}

.Hezuo_img {
    width: 100%;
    overflow: hidden;
}

.Hezuo_img img {
    width: 100%;
    height: auto;
}

.Licheng>ul {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.Licheng>ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top50);
}

.Licheng>ul li:nth-child(even) {
    flex-direction: row-reverse;
}

.Licheng>ul li img {
    width: 43%;
    object-fit: cover;
}

.Licheng_text {
    flex: 1;
}

.Licheng_text h2 {
    width: 100%;
    font-size: var(--size30);
    color: rgba(220, 38, 34, 1);
    font-weight: 600;
}

.Licheng>ul li:nth-child(even) .Licheng_text h2 {
    text-align: right;
}

.Licheng_text_box {
    width: 100%;
    margin-top: var(--top20);
    position: relative;
    padding: var(--top30) 0;
}

.Licheng_text_box::after {
    content: "";
    width: 2px;
    height: 100%;
    background: rgba(233, 236, 255, 1);
    position: absolute;
    left: 9px;
    top: 0;
}

.Licheng_text_p {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top40);
}

.Licheng_text_p p {
    padding-left: 5vw;
    font-size: var(--size20);
    color: rgba(39, 45, 88, 1);
    position: relative;
}

.Licheng_text_p p::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
    border-radius: 50%;
    background: rgba(39, 45, 88, 1);
    z-index: 5;
}

.Licheng_text_p p::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 50%;
    border: 2px solid rgba(39, 45, 88, 1);
    z-index: 5;
}

.Licheng>ul li:nth-child(even) .Licheng_text_box::after {
    left: auto;
    right: 9px;
}

.Licheng>ul li:nth-child(even) .Licheng_text_p p {
    padding-left: 0;
    padding-right: 5vw;
}

.Licheng>ul li:nth-child(even) .Licheng_text_p p::after {
    left: auto;
    right: 5px;
}

.Licheng>ul li:nth-child(even) .Licheng_text_p p::before {
    left: auto;
    right: 0;
}

.Max_title ul.Wap {
    display: none;
}

.Rongyu>ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top40) var(--top20);
    margin-top: var(--top50);
}

.Rongyu>ul li {
    width: 100%;
    cursor: pointer;
}

.Rongyu_img {
    width: 100%;
    aspect-ratio: 390 / 300;
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(245, 245, 245, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--top30);
}

.Rongyu_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Rongyu ul li h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(72, 72, 72, 1);
    font-weight: 600;
    margin-top: var(--top20);
}

.Rongyu>ul li:hover .Rongyu_img {
    border: 1px solid rgba(220, 38, 34, 1);
    box-shadow: 0.55px 1.92px 6px rgba(126, 126, 126, 0.32);
}

.Rongyu>ul li:hover h2 {
    color: rgba(220, 38, 34, 1);
}

.Jianjie {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top60);
}

.Jianjie_text {
    flex: 1;
}

.Jianjie_text>h2 {
    font-size: var(--size30);
    color: rgba(90, 90, 90, 1);
}

.Jianjie_text>p {
    font-size: var(--size16);
    color: rgba(85, 85, 85, 1);
    line-height: 1.6;
    margin-top: var(--top30);
}

.Jianjie_text ul {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Jianjie_text ul li {
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.Jianjie_text ul li img {
    width: 40px;
    height: auto;
}

.Jianjie_con {
    flex: 1;
}

.Jianjie_con p {
    font-size: var(--size14);
    color: rgba(39, 45, 88, 1);
}

.Jianjie_con p span {
    font-size: var(--size20);
    font-weight: 600;
}

.Jianjie_con h2 {
    font-size: var(--size16);
    color: rgba(39, 45, 88, 1);
}

.Jianjie>img {
    width: 50%;
    object-fit: cover;
}

.Nengli {
    width: 100%;
    margin-top: var(--top50);
}

.Nengli>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
}
.Fuwu>h2{
    text-align: center;
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
}


.Nengli>p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(39, 45, 88, 1);
    margin-top: 15px;
}

.Nengli_max {
    width: 100%;
    margin-top: var(--top50);
    position: relative;
}

.Nengli_swiper {
    width: 100%;
}

.Nengli_swiper ul {
    padding: 5px;
}

.Nengli_swiper li {
    width: 100%;
    box-shadow: 0.55px 1.92px 2px rgba(126, 126, 126, 0.26);
}

.Nengli_swiper img {
    width: 100%;
    aspect-ratio: 380 / 250;
    object-fit: cover;
}

.Nengli_swiper li h2 {
    font-size: var(--size18);
    color: rgba(46, 46, 46, 1);
    text-align: center;
    padding: 15px 10px;
}

.prev,
.next {
    width: max-content;
    height: max-content;
    background: transparent;
}

.prev svg,
.next svg {
    width: 20px;
}

.prev {
    left: -40px;
}

.next {
    right: -40px;
}

.Yanfa {
    width: 100%;
    margin-top: var(--top50);
    position: relative;
}

.Yanfa_swiper {
    width: 100%;
}

.Yanfa_swiper li {
    width: 60%;
}

.Yanfa_swiper li::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(39, 45, 88, 0.6);
    position: absolute;
    top: 0;
    left: 0;
}

.Yanfa_swiper li.zhenshangyin-slide-active::after {
    display: none;
}

.Yanfa_swiper li img {
    width: 100%;
    aspect-ratio: 790 / 560;
    object-fit: cover;
}

.Yanfa_swiper li h2 {
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: var(--size20);
    color: rgba(46, 46, 46, 1);
    padding: var(--top20) 0;
}

.Hezuao {
    width: 100%;
    margin: var(--top60) 0;
}

.scroll_item img {
    width: 500px;
    cursor: pointer;
}

.Chanpin {
    width: 100%;
    margin-top: var(--top50);
    position: relative;
}

.Chanpin_swiper {
    width: 100%;
}

.Chanpin_max {
    width: 100%;
}

.Chanpin_swiper ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr ;
    gap: var(--top20);
}

.Chanpin_swiper li {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.Chanpin_swiper li img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
}

.Chanpin_text {
    width: 100%;
    height: 100%;
    background: rgba(62, 175, 219, 0.8);
    position: absolute;
    top: 70%;
    left: 0;
    padding: 15px var(--top20);
}

.Chanpin_text h2 {
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Chanpin_text h2 span {
    font-size: var(--size14);
}

.Chanpin_text p {
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.Chanpin_swiper li:hover .Chanpin_text {
    top: 0%;
}

.Chanpin_swiper li:hover .Chanpin_text p {
    -webkit-line-clamp: initial;
}

.Chanpin_show {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6vw;
}

.Chanpin_zutu {
    width: 40%;
}

.Chanpin_zutu_top {
    width: 100%;
}

.Chanpin_zutu_top li {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Chanpin_zutu_top li img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.Chanpin_zutu_bottom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top30);
}

.pre4,
.next4 {
    position: relative;
    inset: 0;
    transform: translate(0%, 0%);
    cursor: pointer;
}

.pre4 svg,
.next4 svg {
    width: 10px;
}

.Chanpin_zutu_bottom_left {
    flex: 1;
}

.Chanpin_zutu_bottom_left li {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #00000010;
    cursor: pointer;
}

.Chanpin_zutu_bottom_left li.zhenshangyin-slide-active {
    border: 1px solid rgba(220, 38, 34, 1)
}

.Chanpin_zutu_bottom_left li img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.Chanpin_right {
    flex: 1;
}

.Chanpin_right h2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top20);
    font-size: var(--size20);
    color: rgba(220, 38, 34, 1);
}

.Chanpin_right h2 span {
    font-size: var(--size16);
}

.Chanpin_right P {
    font-size: var(--size16);
    color: rgba(74, 74, 74, 1);
    line-height: 1.8;
    margin-top: 15px;
}

.Chanpin_right a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    line-height: 50px;
    border-radius: 4px;
    background: rgba(62, 175, 219, 1);
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top40);
    margin-top: var(--top50);
}

.Chanpin_right a img {
    width: 18px;
    height: auto;
}

.Chanpin_Zujian {
    width: 100%;
    background: rgba(129, 206, 232, 1);
    margin-top: var(--top50);
    position: sticky;
    top: 0;
}

.Chanpin_Zujian ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.Chanpin_Zujian ul li {
    flex: 1;
    padding: var(--top20) 0;
    cursor: pointer;
}

.Chanpin_Zujian ul li img {
    width: 30px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
    margin: auto;
}

.Chanpin_Zujian ul li h3 {
    text-align: center;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: 8px;
}

.Chanpin_Zujian ul li.active {
    background: rgba(62, 175, 219, 1);
}

.Chanpin_con {
    width: 100%;
    margin-top: var(--top50);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top50);
}

.Chanpin_list {
    width: 100%;
}

.Chanpin_list h3 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(39, 45, 88, 1);
}

.Chanpin_list img {
    width: 100%;
    height: auto;
    margin-top: var(--top20);
}

.Molu {
    width: 100%;
    margin: var(--top50) auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: var(--top100) 0;
}


.Molu a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    line-height: 70px;
    border-radius: 4px;
    background: rgba(62, 175, 219, 1);
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top50);
}

.Molu a img {
    width: 18px;
    height: auto;
}

.Pinzhi {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top50);
}
.Pinzhi_left{
    flex: 1;
    overflow: auto;
    direction: rtl;
    padding-left: 15px;
}

.Pinzhi_left::-webkit-scrollbar {
    width: 4px;
}

.Pinzhi_left::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(108, 114, 156, 1);
}

.Pinzhi_left::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(246, 246, 246, 1);
}
.Pinzhi_left ul{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
    overflow: visible;
    direction: ltr;
}


.Pinzhi_left ul li{
    width: 100%;
    background: rgba(249, 250, 255, 1);
    border-radius: 10px;
    padding: var(--top20) var(--top30);
    direction: ltr;
}

.Pinzhi_left ul li h2{
    font-size: var(--size20);
    color: rgba(21, 21, 21, 1);
    font-weight: 600;
}

.Pinzhi_left ul li p{
    font-size: var(--size16);
    color: rgba(78, 78, 78, 1);
    margin-top: 5px;
}
.Pinzhi_left ul li.active{
    background: rgba(62, 175, 219, 1);
}
.Pinzhi_left ul li.active *{
    color: #ffffff;
}
.Pinzhi_right {
    width: 58%;
    background: rgba(250, 254, 255, 1);
    box-shadow: 0px 6px 8px rgba(152, 152, 152, 0.24);
}

.Pinzhi_img {
    width: 100%;
    aspect-ratio: 5 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Pinzhi_img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.Pinzhi_text {
    width: 100%;
    border-radius: 0px 0px, 14px, 14px;
    background: rgba(205, 240, 254, 1);
    box-shadow: 0px 6px 8px rgba(152, 152, 152, 0.24);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px var(--top30);
}

.Pinzhi_text_left {
    flex: 1;
}

.Pinzhi_text_left h2 {
    font-size: var(--size20);
    color: rgba(43, 47, 93, 1);
    line-height: 1;
}

.Pinzhi_text_left p {
    font-size: var(--size16);
    color: rgba(43, 47, 93, 1);
    margin-top: 10px;
}

.Pinzhi_text a {
    width: max-content;
}

.Pinzhi_text a img {
    width: 25px;
    height: auto;
    margin: auto;
}

.Pinzhi_text a p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(43, 47, 93, 1);
    margin-top: 5px;
}

.Fuwu{
    width: 100%;
    overflow: hidden;
    background: rgba(249, 250, 255, 1);
}

.Fuwu ul{
    width: var(--max);
    margin: var(--top80) auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top30);
}

.Fuwu ul li{
    width: 100%;
}

.Fuwu ul li img{
    width: var(--size50);
    aspect-ratio: 4 / 4;
    object-fit: contain;
    margin: auto;
}

.Fuwu ul li h2{
    text-align: center;
    font-size: var(--size20);
    color: rgba(39, 39, 39, 1);
    margin-top: 15px;
}
.Fuwu ul li p{
    font-size: var(--size16);
    color: rgba(39, 39, 39, 1);
    line-height: 1.7;
    margin-top: 15px;    
}

.Footer {
    width: 100%;
    overflow: hidden;
    background: rgba(248, 248, 248, 1);
}

.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_left{
    width: max-content;
}

.Footer_left>h2{
    font-size: var(--size20);
    color: rgba(90, 90, 90, 1);
    padding-bottom: var(--top20);
    border-bottom: 1px solid rgba(90, 90, 90, 0.4);
}

.Footer_left ul{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top30) var(--top40);
    margin-top: var(--top20);
}

.Footer_left ul li{
    font-size: var(--size16);
    color: rgba(90, 90, 90, 1);
}
.Footer_right{
    width: max-content;
}

.Footer_right>h2{
    font-size: var(--size20);
    color: rgba(90, 90, 90, 1);
    padding-bottom: var(--top20);
    border-bottom: 1px solid rgba(90, 90, 90, 0.4);
}

.Footer_right ul{
    width: 100%;
    margin-top: var(--top20);
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.Footer_right ul li{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 15px;
}
.Footer_right ul li img{
    width: 24px;
    aspect-ratio:  4 / 4;
    object-fit: contain;
    margin-top: 2px;
}

.Footer_right ul li p{
    flex: 1;
    font-size: var(--size16);
    color: rgba(90, 90, 90, 1);
    white-space: pre-wrap;
    line-height: 1.7;
}


.Beian {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(90, 90, 90, 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: 12px;
    color: rgba(90, 90, 90, 1);
}

.Video{
    width: 100%;
    position: relative;
}
.Video video{
    width: 100%;
    display: block;
    height: auto;
}
.Chanpinin{
    width: 100%;
}

.Chanpinin ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.Chanpinin ul li{
    flex: 1;
    position: relative;
}

.Chanpinin ul li>a{
    width: 100%;
    padding: var(--top40) var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(237,237,237,0.5);
    border: 1px #ffffff solid ;
}

.Chanpinin_text{
    flex: 1;
}

.Chanpinin_text h2{
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
}
.Chanpinin_text p{
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 5px;
}



.Chanpinin_svg{
    width: 30px;
    height: 30px;
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Chanpinin_svg svg{
    width: 50%;
    height: auto;
    display: block;
}

.Chanpinin ul li:hover{
    background: rgba(106, 106, 106, .7);
}
.Chanpinin ul li:hover>a{
    display: none;
}

.Chanpinin ul li:hover>a*{
    color: #ffffff;
}

.Chanpinin ul li:hover .Chanpinin_svg{
    border: 1px solid #ffffff;
}
.Chanpinin ul li:hover path{
    stroke: #ffffff;
}
.Chanpinin_tan{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    padding: var(--top30);
    z-index: 99;
    background: rgba(237, 237, 237, 0.5);
}
.Chanpinin ul li:hover .Chanpinin_tan{
    opacity: 1;
}
.Chanpinin_tan h2{
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}
.Chanpinin_tan p{
    font-size: var(--size16);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}
.Chanpinin_tan_text{
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top30);
}

.Jingzheng{
    width: var(--max);
    margin: var(--top80) auto;
}

.Jingzheng>p{
    text-align: center;
    font-size: var(--size30);
    color: rgba(52, 52, 52, 1);
}
.Jingzheng>h2{
    text-align: center;
    font-size: var(--size30);
    color: rgba(52, 52, 52, 1);
    display: none;
}

.Jingzheng ul{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top30);
    margin-top: var(--top40);
}

.Jingzheng ul li{
    width: 100%;
}
.Jingzheng_img{
    width: 80px;
    aspect-ratio: 4 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(241, 241, 241, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: auto;
}
.Jingzheng_img img{
    width: 50%;
    height: 50%;
    object-fit: contain;
    margin: auto;
}

.Jingzheng ul li h2{
    text-align: center;
    font-size: var(--size20);
    color: rgba(39, 39, 39, 1);
    margin-top: 15px;
}
.Jingzheng ul li p{
    font-size: var(--size16);
    color: rgba(39, 39, 39, 1);
    line-height: 1.7;
    margin-top: var(--top20); 
text-align: center;   
}

.Guanyuin{
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(1, 85, 175, 0.5) 0%, rgba(190, 230, 255, 1) 100%);
}
.Guanyuin_max{
    width: var(--max);
    margin: var(--top80) auto;
}
.Guanyuin_max>p{
    text-align: center;
    font-size: var(--size30);
    color: rgba(52, 52, 52, 1);
}
.Guanyuin_max>h2{
    text-align: center;
    font-size: var(--size30);
    color: rgba(52, 52, 52, 1);
    display: none;
}
.Guanyuin_top{
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.Guanyuin_top img{
    width: 50%;
    object-fit: cover;
}

.Guanyuin_top_text{
    flex: 1;
    background: rgba(255, 255, 255, 1);
    padding: var(--top40) var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Guanyuin_top_text h2{
    width: 100%;
    text-align: center;
    font-size: var(--size20);
    color: rgba(21, 21, 21, 1);
}

.Guanyuin_top_text p{
    width: 100%;
    font-size: var(--size16);
    color: rgba(70, 70, 70, 1);
    line-height: 1.7;
    margin-top: var(--top20);
}

.Guanyuin_bottom{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.Guanyuin_bottom img{
    width: 50%;
    object-fit: cover;
}

.Guanyuin_bottom_text{
    flex: 1;
    background: rgba(205, 31, 31, 1);
    padding: var(--top40) var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Guanyuin_bottom_text h2{
    width: 100%;
    text-align: center;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Guanyuin_bottom_p{
    width: 100%;
    margin-top: var(--top20);
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}
.Guanyuin_bottom_p p{
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 1.7;
    background: url(../images/quan.svg) no-repeat left top 10px / 10px auto;
    padding-left: 20px;
}


.Rongyuin{
    width: var(--max);
    margin: var(--top80) auto;
}
.Rongyuin>p{
    text-align: center;
    font-size: var(--size30);
    color: rgba(52, 52, 52, 1);
}
.Rongyuin>h2{
    text-align: center;
    font-size: var(--size30);
    color: rgba(52, 52, 52, 1);
    display: none;
}
.Rongyuin_max {
    width: 100%;
    margin-top: var(--top50);
    position: relative;
}

.Rongyuin_swiper {
    width: 100%;
}

.Rongyuin_swiper li {
    width: 35%;
}

.Rongyuin_swiper li img {
    width: 100%;
    height: auto;
}

.Hezuoin{
    width: var(--max);
    margin: var(--top80) auto;
}
.Hezuoin>p{
    text-align: center;
    font-size: var(--size30);
    color: rgba(52, 52, 52, 1);
}
.Hezuoin>h2{
    text-align: center;
    font-size: var(--size30);
    color: rgba(52, 52, 52, 1);
    display: none;
}
.Hezuoin>ul {
    width: 100%;
    margin-top: var(--top50);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top20);
}

.Hezuoin>ul li {
    width: 100%;
    aspect-ratio: 280 / 100;
    border: 1px solid rgba(206, 206, 206, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.Hezuoin>ul li img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.Hezuoin>ul li:hover {
    border: 1px solid rgba(220, 38, 34, 1);
    box-shadow: 2.83px 2.83px 2px rgba(195, 31, 28, 0.29);
}

.Xinwenin{
    width: var(--max);
    margin: var(--top80) auto;
}
.Xinwenin>p{
    text-align: center;
    font-size: var(--size30);
    color: rgba(52, 52, 52, 1);
}
.Xinwenin>h2{
    text-align: center;
    font-size: var(--size30);
    color: rgba(52, 52, 52, 1);
    display: none;
}
.Xinwenin_max {
    width: 100%;
    margin-top: var(--top50);
    position: relative;
}

.Xinwenin_swiper {
    width: 100%;
}

.Xinwenin_swiper li{
    width: 100%;
}

.Xinwenin_tame{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.Xinwenin_tame h2{
    font-size: var(--size24);
    color: rgba(39, 39, 39, 1);
    line-height: 1;
}
.Xinwenin_tame p{
    font-size: var(--size24);
    color: rgba(39, 39, 39, 1);
    line-height: 1;
}
.Xinwenin_swiper li a>h2{
    font-size: var(--size18);
    color: rgba(39, 39, 39, 1);
    border-top: 1px solid rgba(206, 206, 206, 1);
    margin-top: 15px;
    padding-top: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.Xinwenin_swiper li a>p{
    font-size: var(--size16);
    color: rgba(95, 95, 95, 1);
    margin-top: var(--top20);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.Xinwenin_swiper li a>img{
    width: 100%;
    aspect-ratio: 380 / 240;
    object-fit: cover;
    margin-top: var(--top20);
}
.Xinwenin_swiper li a>span{
    display: block;
    width: max-content;
    line-height: 28px;
    background: rgba(240, 240, 240, 1);
    font-size: 14px;
    color: rgba(95, 95, 95, 1);
    padding: 0 10px;
    margin-top: var(--top20);
}
.Xinwenin_swiper li:hover *{
    color: rgba(220, 38, 34, 1);
}


.Suosou>ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top30) var(--top20);
    margin-top: var(--top50);
}

.Suosou>ul li {
    width: 100%;
    cursor: pointer;
}

.Suosou ul li img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.Suosou ul li h2 {
    text-align: center;
    font-size: var(--size16);
    color: rgba(72, 72, 72, 1);
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.Fazhanin{
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing1.png) no-repeat center center / cover;
}
.Fazhanin_max{
    width: var(--max);
    margin: var(--top80) auto;
}
.Fazhanin_max>p{
    text-align: center;
    font-size: var(--size30);
    color: rgb(255, 255, 255);
}
.Fazhanin_max>h2{
    text-align: center;
    font-size: var(--size30);
    color: rgb(255, 255, 255);
    display: none;
}

.Fazhanin_cen {
    width: 100%;
    margin-top: var(--top50);
    position: relative;
}

.Fazhanin_swiper {
    width: 100%;
}
.Fazhanin_swiper::after{
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(180deg, rgba(1, 85, 175, 1) 0%, rgba(190, 230, 255, 1) 100%);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0.7;
}
.Fazhanin_swiper li{
    width: 100%;
    position: relative;
    z-index: 5;
}

.Fazhanin_swiper ul li h2{
    width: 100%;
    height: 226px;
    font-size: var(--size36);
    color: rgba(255, 255, 255, 1);
    font-weight: 900;
    line-height: 1;
    text-align: center;
}
.Fazhanin_swiper ul li img{
    width: 50px;
    height: auto;
    margin: 25px auto;
}
.Fazhanin_swiper ul li p{
    width: 100%;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 1.7;
}
.Fazhanin_swiper li:nth-child(2n+1) h2{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: center;
}

.Fazhanin_swiper ul li:nth-child(2n){
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.Video_max{
    width: max-content;
    position: absolute;
    bottom: var(--top50);
    right: var(--top50);
}
.Video_text{
    display: flex;
    flex-wrap: wrap;
    gap: var(--top30);
}

.Video_text img{
    width: 100px;
}
.Video_text ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top30);
}

.Video_text ul li {
    width: max-content;
}


.Video_text ul li p {
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
}

.Video_text ul li p span {
    font-weight: 600;
}

.Video_text ul li h2 {
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Video_max>img{
    width: 100%;
    margin-top: 20px;
}