@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    list-style: none;
    transition: all 0.3s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

textarea,
select,
option,
input {
    outline: none;
    background: transparent;
    border: transparent;
}


input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: inherit;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: inherit;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: inherit;
    background: transparent;
    border: transparent;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    border: 0;
    display: block;
}

:root {
    --max: 1500px;
    --size14: 14px;
    --size16: 16px;
    --size18: 18px;
    --size20: 20px;
    --size24: 24px;
    --size30: 30px;
    --size36: 36px;
    --size40: 40px;
    --size46: 46px;
    --size50: 50px;
    --size56: 56px;
    --size60: 60px;

    --top20: 20px;
    --top30: 30px;
    --top40: 40px;
    --top50: 50px;
    --top60: 60px;
    --top80: 80px;
    --top100: 100px;
    --top120: 120px;
}

@font-face {
    font-family: "m";
    src: url("../fonts/m.otf") format("truetype");
}

@font-face {
    font-family: "bold";
    src: url("../fonts/bold.otf") format("truetype");
}

body {
    font-family: "m";
    background: #f9f9f9;
}

.Hertre {
    width: 100%;
    z-index: 999;
    position: relative;
    background: rgb(255, 243, 3);
}

.Hertre_top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255, 255, 255);
}

.Hertre_max {
    width: var(--max);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.En {
    width: max-content;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    line-height: 36px;
    font-size: var(--size14);
    color: rgb(0, 0, 0);
}

.En img {
    width: 18px;
    height: auto;
}

.En svg {
    width: 10px;
    height: auto;
}

.En_a {
    width: max-content;
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    transition: auto;
}

.En_max {
    width: 100%;
    padding: 20px;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: 0px 0px 10px 5px #00000010;
}

.En_max a {
    display: block;
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    line-height: 2.5;
}

.Hertre_cen {
    width: var(--max);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.Logo {
    width: 280px;
    overflow: hidden;

}

.Logo img {
    width: 100%;
    height: auto;
}

.Nav {
    width: max-content;
    margin-right: 7.5vw;
}

.Nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--top80);
}

.Nav ul li {
    font-size: var(--size18);
    color: rgb(0, 0, 0);
    text-align: center;
    line-height: 90px;
    position: relative;
    font-family: 'bold';
}

/* 
.Nav ul li.Nav_cen {
    color: #ec078d
}

.Nav ul li:hover {
    color: #ec078d;
}
 */



.Nav ul li::after {
    content: "";
    width: 0px;
    height: 0px;
    background: #000000;
    position: absolute;
    border-radius: 5px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Nav ul li.Nav_cen::after {
    width: 5px;
    height: 5px;
}

.Nav ul li:hover::after {
    width: 5px;
    height: 5px;
}

.Nav_ul {
    display: none;
    background: #ffffff;
    position: absolute;
    overflow: hidden;
    top: 100%;
    transition: auto;
    padding: 20px 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 10px 5px #00000010;
    border-radius: 5px;
}

.Nav_ul a {
    color: #000000;
    display: block;
    line-height: 2.5;
    font-size: var(--size14);
}

.Nav_ul a:hover {
    color: #ec078d;
}

.Nav_ul a.Nav_ul_Nav {
    color: #ec078d;
}

.An {
    width: 30px;
    display: none;
}

.menu_button {
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: #000000;
    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: 560px;
    height: auto;
    object-fit: cover;
}

.Banner_text {
    width: var(--max);
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Banner_text img {
    width: 500px;
    max-width: 70%;
    margin: auto;
}

.Banner_text p {
    font-size: var(--size56);
    text-align: center;
    line-height: 1;
    -webkit-text-stroke: 2px rgb(255, 243, 3);
    color: transparent;
    font-family: 'bold';
    margin-top: var(--top30);
}

.Max {
    width: var(--max);
    margin: var(--top60) auto;
}

.Zilian {
    width: var(--max);
    border-radius: 16px;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1);
    background: rgb(255, 255, 255);
    padding: var(--top80);
    margin: auto;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.Zilian h2 {
    font-size: var(--size40);
    color: rgb(0, 0, 0);
    font-family: 'bold';
    text-align: center;
    line-height: 1;
}

.Zilian_max {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top100);
}

.Zilian_max video {
    width: 48%;
    height: auto;
    display: block;
}

.Zilian_text {
    flex: 1;
}

.Zilian_text>p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    line-height: 1.6;
    font-family: 'bold';
    cursor: pointer;
}

.Zilian_text ul {
    width: 100%;
    margin-top: var(--top40);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30) var(--top80);
}

.Zilian_text ul li {
    width: 100%;
}

.Zilian_text ul li:nth-child(2n) {
    grid-column: span 2;
}

.Zilian_text ul li p {
    font-size: var(--size40);
    color: rgb(0, 0, 0);
    font-family: 'bold';
    line-height: 1;
}

.Zilian_text ul li h2 {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    margin-top: 10px;
    text-align: left;
}

.Kehu>h2 {
    font-size: var(--size40);
    color: rgb(0, 0, 0);
    font-family: 'bold';
    text-align: center;
    line-height: 1;
}

.Kehu ul {
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--top20);
}

.Kehu ul li {
    width: 130px;
    overflow: hidden;
}

.Kehu ul li img {
    width: 100%;
    height: auto;
}

.Kehu ul li p {
    text-align: center;
    font-size: var(--size18);
    color: rgb(0, 0, 0);
    margin-top: 10px;
}

.ReturnTop {
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    transition: auto;
}

.ReturnTop_max {
    width: 720px;
    max-width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    background: rgb(255, 255, 255) url(../images/beijing2.png) no-repeat center center / cover;
    padding: var(--top50);
}

.ReturnTop_max>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(0, 0, 0);
    line-height: 1;
    font-family: 'bold';
}

.ReturnTop_max>p {
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    margin-top: var(--top20);
}

.ReturnTop_max form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top20) 0;
    margin-top: 25px;
}

.label {
    width: calc(50% - 15px);
    overflow: hidden;
}

.label:nth-child(1),
.label:nth-child(6) {
    width: 100%;
}

.label p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.label p span {
    color: rgb(255, 139, 3);
}

.label input {
    width: 100%;
    height: 48px;
    border: 1px solid rgb(229, 229, 229);
    border-radius: 4px;
    font-size: var(--size14);
    color: rgb(153, 153, 153);
    background: rgb(255, 255, 255);
    padding: 0 var(--top20);
    margin-top: 10px;
}

.label textarea {
    width: 100%;
    height: 120px;
    border: 1px solid rgb(229, 229, 229);
    border-radius: 4px;
    font-size: var(--size14);
    color: rgb(153, 153, 153);
    background: rgb(255, 255, 255);
    padding: 15px var(--top20);
    resize: none;
    font-family: 'm';
    margin-top: 10px;
}

.label input:focus,
.label textarea:focus {
    border: 1px solid rgb(255, 139, 3);
    color: rgb(255, 139, 3);
}

.label:nth-child(1) input {
    background: url(../images/sanjian.png) no-repeat right var(--top20) center / 14px auto;
}

#submitAdd,
#submitAdda {
    width: 200px;
    height: 48px;
    margin: auto;
    background: rgb(255, 243, 3);
    border-radius: 48px;
    border: transparent;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    font-family: 'bold';
    cursor: pointer;
}

#submitAdd:hover,
#submitAdda:hover {
    box-shadow: 0px 0px 20px 5px #00000020;
}

.ReturnTop_max_close {
    width: 30px;
    position: absolute;
    top: var(--top30);
    right: var(--top30);
    cursor: pointer;
}

.ReturnTop_max_close svg {
    width: 100%;
    height: auto;
}

.ReturnTop_max_close:hover svg {
    transform: rotate(90deg);
}

.Chanpin_banner {
    width: calc(100% - 30px);
    margin: auto;
    overflow: hidden;
    background: url(../images/beijing1.png) no-repeat center center / cover;
    border-radius: 10px;
}

.Chanpin_banner_max {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top60);
}

.Chanpin_banner_left {
    flex: 1;
}

.Chanpin_banner_left h2 {
    font-size: var(--size36);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Chanpin_banner_left>p {
    font-size: var(--size24);
    color: rgb(0, 0, 0);
    margin-top: 5px;
}

.Chanpin_banner_text {
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.Chanpin_banner_text p {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
}

.Chanpin_banner_text img {
    width: var(--top30);
    height: auto;
}

.Chanpin_banner_left>img {
    width: 50%;
    height: auto;
}

.Chanpin_suo {
    width: var(--max);
    margin: 25px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Chanpin_suo form {
    width: 280px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 40px;
    overflow: hidden;
}

.Chanpin_suo form input {
    flex: 1;
    height: 40px;
    font-size: var(--size14);
    color: rgb(153, 153, 153);
    padding: 0 var(--top20);
}

.Chanpin_suo form input:focus {
    color: rgb(255, 139, 3);
}

.Chanpin_suo form button {
    width: 56px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: transparent;
    background: transparent;
    border-left: 1px solid rgb(0, 0, 0);
    cursor: pointer;
}

.Chanpin_suo form button img {
    width: 16px;
    height: auto;
}

.Chanpin {
    width: 100%;
    overflow: hidden;
    background: #f2f2f2;
    margin-top: var(--top40);
}

.Chanpin_max {
    display: flex;
    flex-wrap: wrap;
    gap: var(--top60);
}

.Chanpin_list {
    width: 100%;
}

.Chanpin_list>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(0, 0, 0);
    line-height: 1;
}

.Chanpin_list_text {
    width: 100%;
    margin-top: 15px;
}

.Chanpin_list_text p {
    font-size: var(--size16);
    color: rgb(153, 153, 153);
}

.Chanpin_list_text h3 {
    font-size: var(--size30);
    color: rgb(1, 1, 1);
}

.Chanpin_list_text::after {
    content: "";
    width: 80px;
    height: 4px;
    background: rgb(255, 243, 3);
    display: block;
}


.Chanpin_categories {
    width: 100%;
    margin-top: var(--top30);
}

.Chanpin_categories li {
    width: 100%;
    gap: 10px;
    cursor: pointer;
}

.Chanpin_categories_max {
    width: 100%;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 15px;
    position: relative;
    margin-bottom: 10px;
}

.Chanpin_categories_max img {
    width: 100%;
    aspect-ratio: 130 / 100;
    object-fit: contain;
}

.Chanpin_categories_max h2 {
    width: 100%;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: 5px;
}

.Chanpin_categories_max::after {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 10px solid rgb(255, 243, 3);
    ;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}


.Chanpin_categories li.active .Chanpin_categories_max {
    background: rgb(255, 243, 3);
}

.Chanpin_categories li.active .Chanpin_categories_max::after {
    opacity: 1;
}


.Chanpin_button {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: var(--top30);
}

.prev,
.next {
    width: 48px;
    height: 48px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    position: static;
    inset: 0;
    transform: translate(0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev svg,
.next svg {
    width: 10px;
    height: auto;
}

.prev svg path,
.next svg path {
    fill: rgb(0, 0, 0);
}

.prev:hover,
.next:hover {
    background: rgb(255, 243, 3);
}

.Chanpin_list_liem {
    width: 100%;
    margin-top: var(--top30);
    overflow: hidden;
}

.Chanpin_list_liem * {
    transition: none;
}

.Chanpin_list_liem ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 15px;
    padding: 10px 0;
    will-change: transform, scroll-position;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
}

.Chanpin_list_liem ul::-webkit-scrollbar {
    height: 6px;
}

.Chanpin_list_liem ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.Chanpin_list_liem ul::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.Chanpin_list_liem ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.Chanpin_list_liem ul.horizontal-scroll {
    cursor: grab;
    touch-action: pan-x;
}

.Chanpin_list_liem ul.horizontal-scroll:active {
    cursor: grabbing;
}

.Chanpin_list_liem ul li {
    width: 300px;
    flex: 0 0 auto;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: var(--top30);
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.Chanpin_list_liem li img {
    width: 100%;
    aspect-ratio: 320 / 300;
    object-fit: contain;
}

.Chanpin_list_liem li h2 {
    width: 100%;
    font-size: var(--size20);
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: var(--top20);
}

.Chanpin_list_liem li a {
    width: 200px;
    max-width: 100%;
    display: block;
    text-align: center;
    line-height: 44px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 44px;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    margin: auto;
    margin-top: 15px;
}

.Chanpin_list_liem li a:hover {
    background: rgb(255, 243, 3);
    color: rgb(0, 0, 0);
    border: 1px solid rgb(255, 243, 3);
}


.Show {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
}

.Show {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top60);
}

.Show_left {
    width: 49%;
    display: flex;
    justify-content: space-between;
}

.Show_left_left {
    width: 130px;
    height: 560px;
}

.Show_left_left li {
    width: 100%;
    background: rgb(238, 238, 238);
    border-radius: 8px;
    border: 2px solid rgb(238, 238, 238);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.Show_left_left li.zhenshangyin-slide-active {
    border: 2px solid rgb(255, 243, 3);
}

.Show_left_left li img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.Show_left_right {
    width: calc(100% - 145px);
    background: rgb(238, 238, 238);
}

.Show_left_right li {
    width: 100%;
    background: rgb(238, 238, 238);
    border-radius: 8px;
    ;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.Show_left_right li img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}


.Show_right {
    flex: 1;
}

.Show_right>h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
}

.Show_right>p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    margin-top: 5px;
}

.Show_right_text {
    width: 100%;
    overflow: hidden;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    line-height: 2;
    margin-top: var(--top20);
    border-top: 1px solid rgb(0, 0, 0);
    padding-top: var(--top20);
}

.Show_right a {
    width: max-content;
    display: block;
    line-height: 60px;
    border-radius: 60px;
    background: rgb(255, 243, 3);
    border-radius: 60px;
    margin-top: var(--top30);
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    padding: 0 var(--top40);
    cursor: pointer;
    border: transparent;
    font-family: 'bold';
}

.Icon {
    width: 100%;
    margin-top: var(--top80);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.Icon img {
    width: 100px;
    height: auto;
}

.Icon ul {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.Icon ul li {
    width: 100%;
    border: 1px solid rgb(0, 0, 0);
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    padding: 10px 15px;
}

.Video h2 {
    font-size: var(--size30);
    ;
    color: rgb(0, 0, 0);
    text-align: center;
    font-family: 'bold';
}

.Video_max {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing3.png) no-repeat center center / cover;
    margin-top: var(--top30);
}

.Video_max video ,
.Video_max img {
    width: 960px;
    height: auto;
    margin: var(--top80) auto;
    display: block;
}

.Show_text {
    margin-top: var(--top30);
}

.Show_text>h2 {
    font-size: var(--size30);
    ;
    color: rgb(0, 0, 0);
    text-align: center;
    font-family: 'bold';
}

.Show_text_max {
    width: 100%;
    font-size: var(--size14);
    color: #222222;
    line-height: 2;
}

.Show_text_max 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;
}


.Oem {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing4.png) no-repeat center center / cover;
}

.Oem_top {
    width: 100%;
}

.Oem_top>h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
    text-align: center;
    font-family: 'bold';
}

.Oem_top ul {
    width: 100%;
    margin-top: var(--top30);
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.Oem_top ul li {
    flex: 1;
    display: flex;
    box-sizing: border-box;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
}

.Oem_img {
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 243, 3, 0.7);
    border-radius: 8px 0px 0px 8px;
    border-right: 2px solid rgb(255, 255, 255);
}

.Oem_img img {
    max-width: 50%;
    max-height: 50%;
}

.Oem_text {
    flex: 1;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    line-height: 1.5;
    padding: 15px 25px;
}

.Oem_cen {
    width: 100%;
    margin-top: var(--top40);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6vw;
}

.Oem_cen_left {
    flex: 1;
}

.Oem_cen_left>h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
    text-align: center;
    font-family: 'bold';
}

.Oem_cen_left ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 15px;
}



.Oem_cen_left ul li {
    flex: 1;
}

.Oem_cen_img {
    width: 100%;
    aspect-ratio: 4 / 4;
    box-sizing: border-box;
    border: 2px solid rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Oem_cen_img img {
    max-width: 50%;
    max-height: 50%;
}

.Oem_cen_left ul li p {
    text-align: center;
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    margin-top: 10px;
}

.Oem_cen_right {
    width: 28%;
}

.Oem_cen_right img {
    width: 100%;
    height: auto;
}

.Oem_cen_right p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    margin-top: 10px;
}


.page {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--top60);
    gap: 5px;
}

.page .active,
.page .total {
    font-size: 12px;
    padding: 8px 10px;
    color: #666666;
    border: 1px solid #e0e0e0;
    line-height: 1;
    background: #fff;
    border-radius: 5px;
}

.page .active {
    background: #fff303;
    border: 1px solid #fff303;
    color: #000;
}

.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: #666666;
    border: 1px solid #e0e0e0;
    background: #fff;
}



.Footer {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 243, 3);
}

.Footer_max {
    width: var(--max);
    margin: var(--top80) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

.Footer_Left {
    width: max-content;
}

.Footer_Left h2 {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Footer_Left p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    line-height: 1.6;
    margin-top: 20px;
}

.Footer_a {
    width: max-content;
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0px 2px 0px 0px rgb(0, 0, 0);
}

.Footer_a a {
    width: max-content;
    box-sizing: border-box;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 22px;
    padding: 10px 20px;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 5;
}

.Footer_a a svg {
    width: 10px;
    height: auto;
    display: block;
}

.Footer_a:hover a {
    color: rgb(255, 243, 3);
}

.Footer_a:hover a svg line,
.Footer_a:hover a svg path {
    stroke: rgb(255, 243, 3);
}

.Footer_i {
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
}

.Footer_cen {
    width: max-content;
}

.Footer_cen h2 {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Footer_cen ul {
    margin-top: 20px;
}

.Footer_cen ul li {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    line-height: 1.6;
}

.Footer_right {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.Footer_right img {
    width: 300px;
    height: auto;
}

.Beian {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
}

.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: rgb(0, 0, 0);
}

.Chaxun {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing5.png) no-repeat center center / cover;
}

.Chaxun_Max {
    width: var(--max);
    margin: var(--top100) auto;
    ;
}

.Chaxun_top {
    width: 100%;
    overflow: hidden;
    background: url(../images/IP.png) no-repeat bottom right / 20% auto;
    padding-bottom: var(--top80);
}

.Chaxun_top>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Chaxun_form {
    width: 800px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top40);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px;
}

.Chaxun_form input:nth-child(1) {
    width: 280px;
    height: 64px;
    border-radius: 64px 0px 0px 64px;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    padding: 0 var(--top30);
    background: rgb(255, 255, 255) url(../images/shixin.png) no-repeat right 20px center / 12px auto;
}

.Chaxun_form input:nth-child(2) {
    flex: 1;
    height: 64px;
    border-radius: 0px 64px 64px 0px;
    font-size: var(--size16);
    color: rgb(153, 153, 153);
    padding: 0 var(--top30);
    background: rgb(255, 255, 255);
}

.Chaxun_form_button {
    width: 100%;
    margin-top: var(--top40);
}

.Chaxun_form_button button {
    width: 280px;
    max-width: 100%;
    height: 64px;
    background: rgb(255, 243, 3);
    border-radius: 64px;
    font-size: var(--size20);
    color: rgb(0, 0, 0);
    cursor: pointer;
    display: block;
    border: transparent;
    margin: auto;
}

.Chaxun_form_button_reset {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: var(--top50);
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    gap: 10px;
}

.Chaxun_form_button_reset svg {
    width: 16px;
    height: auto;
}

.Chaxun_Max ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.Chaxun_Max ul li {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    padding: var(--top50) var(--top40);
}

.Chaxun_img {
    width: 64px;
    aspect-ratio: 4 / 4;
    border: 1px solid rgb(223, 223, 223);
    border-radius: 154px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.Chaxun_img img {
    max-width: 35%;
    max-height: 35%;
    object-fit: contain;
}

.Chaxun_Max ul li>h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgb(0, 0, 0);
    margin-top: 10px;
}

.Chaxun_Max ul li>p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    margin-top: 10px;
    text-align: center;
}

.Chaxun_bottom {
    width: 100%;
    margin-top: var(--top60);
}

.Chaxun_bottom h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgb(0, 0, 0);
}

.Chaxun_bottom p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: var(--top20);
}



.Jieguo {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing6.png) no-repeat center center / cover;
}

.Jieguo_max {
    width: 1028px;
    max-width: calc(100% - 30px);
    margin: var(--top100) auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Jieguo_max input:nth-child(1) {
    width: 280px;
    height: 64px;
    border-radius: 64px 0px 0px 64px;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    padding: 0 var(--top30);
    background: rgb(255, 243, 3) url(../images/shixin.png) no-repeat right 20px center / 12px auto;
}

.Jieguo_max input:nth-child(2) {
    flex: 1;
    height: 64px;
    border-radius: 0px 64px 64px 0px;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    padding: 0 var(--top30);
    background: rgb(255, 255, 255);
    margin-left: 4px;
}

.Jieguo_max button {
    width: 200px;
    height: 64px;
    background: rgb(255, 243, 3);
    border-radius: 64px;
    font-size: var(--size20);
    color: rgb(0, 0, 0);
    cursor: pointer;
    display: block;
    border: transparent;
    margin-left: 25px;
}

.Suo_Jieguo {
    width: var(--max);
    margin: var(--top80) auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top40);
}

.Jieguo_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top30);
}

.Jieguo_list_left {
    width: 80px;
    aspect-ratio: 4 / 4;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    background: url(../images/beijing7.png) no-repeat center center / 100% 100%;
}
.Jieguo_list_left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.Jieguo_list_left h2 {
    width: 100%;
    text-align: center;
    font-size: var(--size18);
    color: rgb(0, 0, 0);
    font-family: 'bold';
    line-height: 1;
}

.Jieguo_list_left p {
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    line-height: 1;
    text-align: center;
    margin-top: 10px;
}

.Jieguo_list_right {
    flex: 1;
}

.Jieguo_list_right_top {
    width: 100%;
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Jieguo_list_right_top>h2 {
    width: 100%;
    font-size: var(--size24);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Jieguo_list_right_top>p {
    width: 100%;
    font-size: var(--size16);
    color: #999999;
    margin-top: 5px;
}

.Jieguo_list_right ul {
    width: 100%;
    border-radius: 15px;
    background: rgb(245, 245, 245);
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
margin-top: 10px
}

.Jieguo_list_right ul li {
    width: max-content;
    line-height: 44px;
    background: rgb(255, 255, 255);
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    padding: 0 25px;
    border-radius: 44px;
}

.Jieguo_list_right ul li:hover {
    background: rgb(255, 243, 3);
}

.WUjieguo {
    width: 1000px;
    max-width: calc(100% - 30px);
    margin: var(--top100) auto;
}

.WUjieguo img {
    width: 250px;
    height: auto;
    margin: auto;
}

.WUjieguo h2 {
    font-size: var(--size24);
    color: rgb(0, 0, 0);
    text-align: center;
    font-family: 'bold';
    margin-top: var(--top30);
}

.WUjieguo p {
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: var(--top20);
}

.Zizhi {
    width: 100%;
}

.Zizhi img {
    width: 100%;
    height: auto;
}


.Auote {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing9.png) no-repeat center center / cover;
}

.Auote .ReturnTop_max {
    position: static;
    transform: translate(0, 0);
    margin: var(--top100) auto;
}

.Auote .ReturnTop_max .label:nth-child(2),
.Auote .ReturnTop_max .label:nth-child(3) {
    width: 100%;
}

.Auote .ReturnTop_max .label:nth-child(1) input {
    background: transparent;
}

.Pinpai {
    width: 100%;
    margin: var(--top80) auto;
}

.Pinpai ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.Pinpai ul li {
    width: 100%;
}

.Pinpai ul li:nth-child(2n) {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Pinpai_max {
    width: calc((100% - var(--max)) / 2 + var(--max));
    background: #FFFFFF;
    padding: var(--top50);
    border-radius: 0px 50vw 50vw 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Pinpai_max_liemt {
    width: calc(var(--max) - var(--top50));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 6vw;
}

.Pinpai ul li:nth-child(2n) .Pinpai_max {
    border-radius: 50vw 0px 0px 50vw;
    justify-content: flex-start;
}

.Pinpai ul li:nth-child(2n) .Pinpai_max_liemt {
    flex-direction: row-reverse;
}

.Pinpai_max_liemt>img {
    width: 30%;
    aspect-ratio: 4 / 4;
    border-radius: 50%;
    object-fit: cover;
}

.Pinpai_left {
    flex: 1;
}

.Pinpai_left_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top40);
}

.Pinpai_left_top h2 {
    font-size: var(--size24);
    color: rgb(0, 0, 0);
    font-family: 'bold';
    font-size: var(--size40);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top20);
}

.Pinpai_left_top h2 svg {
    width: 48px;
    height: auto;
    transform: rotate(90deg);
}

.Pinpai_left_top p {
    font-size: var(--size36);
    color: rgba(191, 191, 191, 1);
    line-height: 1.3;
    font-family: 'bold';
    text-align: left;
    font-style: italic;
}

.Pinpai ul li:nth-child(2n) .Pinpai_left_top {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.Pinpai_left_bottom {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: var(--top40);
    gap: 15px;
}

.Pinpai_list {
    width: 100%;
    border: 2px solid #FFF303;
    padding: var(--top30);
}
.Pinpai_list:hover{
    box-shadow: 0px 0px 10px 5px #FFF30330;
}
.Pinpai_list a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top60);
}

.Pinpai_list h2 {
    width: 140px;
    font-size: var(--size24);
    color: #000000;
    font-family: 'bold';
}
.Pinpai_list:hover h2{
    color: #FFF303;
}
.Pinpai_list p {
    flex: 1;
    font-size: var(--size16);
    color: #000000;
    line-height: 1.5;
}

.Pinpai_Show {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
}

.Pinpai_Show>h2 {
    font-size: var(--size24);
    color: #222222;
}

.Pinpai_Show>p {
    font-size: var(--size14);
    color: #888888;
    margin-top: 10px;
}

.Show_text {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: var(--top30) 0;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: #222222;
    line-height: 2;
}

.Show_text img {
    max-width: 100%;
    height: auto;
    margin: auto;
}

.Bannerin {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing10.png) no-repeat center center / cover;
    padding: 50px 0 100px;
    position: relative;
}

.Bannerin_Swiper {
    width: 870px;
    max-width: 90%;
    margin: auto;
}

.Bannerin_Swiper h2 {
    text-align: center;
    font-size: var(--size40);
    color: #000000;
    text-align: center;
}

.Bannerin_Swiper p {
    text-align: center;
    font-size: var(--size20);
    color: #000000;
    text-align: center;
}

.Bannerin_Swiper a {
    width: 124px;
    line-height: 40px;
    display: block;
    margin: auto;
    background: #FFF303;
    color: #000;
    border-radius: 20px;
    font-size: var(--size16);
    text-align: center;
    margin-top: 10px;
}

.Bannerin_Swiper img {
    width: 100%;
    height: auto;
    margin-top: var(--top30);
}

.prev1,
.next1 {
    width: 48px;
    height: 48px;
    background: #ffffff50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev1:hover,
.next1:hover {
    background: #FFF303;
}

.prev1 svg,
.next1 svg {
    width: 8px;
}

.prev1 {
    left: calc((100% - var(--max)) / 2);
}

.next1 {
    right: calc((100% - var(--max)) / 2);
}

.pager1 .zhenshangyin-pager-bullets-bullet {
    width: 16px;
    height: 3px;
    border-radius: 3px;
    background: #ffffff30;
}

.pager1 .zhenshangyin-pager-bullets-bullet.active {
    background: #FFF303;
}

.Chanpinin {
    width: calc(100% - 30px);
    margin: var(--top60) auto 0px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top60);
}

.Chanpinin_list {
    width: 100%;
}

.Chanpinin_list>h2 {
    text-align: center;
    font-size: var(--size40);
    color: #010101;
}

.Chanpinin_list:nth-child(1) ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: var(--top30);
}

.Chanpinin_list:nth-child(1) ul li {
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(0.00deg, rgba(247, 247, 247, 1), rgba(247, 247, 247, 1) 1%, rgba(238, 238, 238, 1) 100%);
    padding: var(--top40) var(--top40) 0px;
}

.Chanpinin_list:nth-child(1) ul li h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Chanpinin_list:nth-child(1) ul li p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Chanpinin_list:nth-child(1) ul li a {
    width: 124px;
    line-height: 40px;
    display: block;
    margin: auto;
    background: rgba(255, 255, 255, 1);
    color: #000;
    border-radius: 20px;
    font-size: var(--size16);
    text-align: center;
    margin-top: 10px;
}

.Chanpinin_list:nth-child(1) ul li img {
    width: 240px;
    max-width: 80%;
    height: auto;
    margin: auto;
    margin-top: var(--top40);
}

.Chanpinin_list:nth-child(n+2) ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top30);
    padding: 0 calc((100% - var(--max)) / 2);
    margin-top: var(--top30);
    position: relative;
    padding-bottom: var(--top60);
}

.Chanpinin_list:nth-child(n+2) ul::after {
    content: "";
    width: 100%;
    height: 50%;
    background: #F0F0F0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.Chanpinin_list:nth-child(n+2) ul li {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.Chanpinin_list:nth-child(n+2) ul li img {
    width: 200px;
    max-width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: contain;
    margin: auto;
}

.Chanpinin_list:nth-child(n+2) ul li h2 {
    text-align: center;
    font-size: var(--size20);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top20);
}

.Chanpinin_list:nth-child(n+2) ul li a {
    width: 124px;
    line-height: 40px;
    display: block;
    margin: auto;
    background: rgba(255, 255, 255, 1);
    color: #000;
    border-radius: 20px;
    font-size: var(--size16);
    text-align: center;
    margin-top: 10px;
}

.Chanpinin_list ul li a:hover {
    background: #FFF303;
}

.Bai {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}


.Our {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing11.png) no-repeat center center / cover;
}

.Our_max h2 {
    text-align: center;
    font-size: var(--size40);
    color: #010101;
}

.Our_cen {
    width: 1200px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.Our_left {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.Our_left img {
    width: 100%;
}

.Our_right {
    width: 100%;
}

.Our_right img {
    width: 100%;
}

.Gunayuin {
    width: 100%;
    overflow: hidden;
    background: #F0F0F0 url(../images/beijing12.png) no-repeat center center / cover;
    position: relative;
    border-bottom: 10px solid #ffffff;
}

.Gunayuin_max {
    width: var(--max);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top50);
}

.Gunayuin::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/banyuan.png) no-repeat right 7vw center / auto 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.Gunayuin_left {
    flex: 1;
    position: relative;
    z-index: 5;
}

.Gunayuin_left h2 {
    font-size: var(--size40);
    color: #010101;
}

.Gunayuin_left p {
    font-size: var(--size16);
    color: #010101;
    line-height: 1.5;
    margin-top: var(--top30);
}

.Gunayuin_left a {
    width: 124px;
    line-height: 40px;
    display: block;
    background: rgba(255, 255, 255, 1);
    color: #000;
    border-radius: 20px;
    font-size: var(--size16);
    text-align: center;
    margin-top: var(--top30)
}

.Gunayuin_left a:hover {
    background: #FFF303;
}

.Gunayuin_max img {
    width: 40%;
    height: auto;

    position: relative;
    z-index: 5;
}

.Xinwe>h2 {
    font-size: var(--size36);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Xinwe ul {
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

.Xinwe ul li {
    width: 100%;
    border-radius: 10px;
    position: relative;
}

.Xinwe ul li:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 740 / 500;
}

.Xinwe ul li:nth-child(n+2) img {
    width: 100%;
    aspect-ratio: 360 / 280;
    object-fit: cover;
    border-radius: 10px;
}

.Xinwe_text {
    width: 100%;
    padding: var(--top30);
}

.Xinwe_text span {
    display: block;
    font-size: var(--size14);
    color: #000000;
}

.Xinwe_text h2 {
    font-size: var(--size20);
    color: #000000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Xinwe_text p {
    font-size: var(--size16);
    color: #999999;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.Xinwe ul li:nth-child(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.Xinwe_text1 {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(0.00deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: 0;
    padding: var(--top30);
    padding-right: 100px;
}

.Xinwe_text1 span {
    display: block;
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
}

.Xinwe_text1 h2 {
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Xinwen_svg {
    width: 80px;
    aspect-ratio: 4 / 4;
    border-radius: 30px 0px 0px 0px;
    background: #ffffff;
    position: absolute;
    bottom: -1px;
    right: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Xinwen_svg svg{
    max-width: 50%;
}
.Xinwen_svg::after{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: -20px;
    right: -0px;
    transform: rotate(180deg);
    background: radial-gradient(circle at bottom right, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 60%);
}
.Xinwen_svg::before{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 0px;
    left: -20px;
    transform: rotate(180deg);
    background: radial-gradient(circle at bottom right, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 60%);
}

.XinwenList ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.XinwenList ul li{
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 15px;
}
.XinwenList ul li a{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top60);
}

.XinwenList ul li img{
    width: 260px;
    object-fit: cover;
}
.Xinwen_text_box{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top60);
    padding-right: var(--top60);
}
.Xinwen_text{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top40);
}
.Xinwen_left{
    width: max-content;
}
.Xinwen_left p{
    font-size: var(--size24);
    color: #666666;
    text-align: right;
}
.Xinwen_left h2{
    font-size: var(--size16);
    color: #000000;
    text-align: right;
}
.Xinwen_right{
    flex: 1;
}
.Xinwen_right p{
    font-size: var(--size16);
    color: #999999;
    margin-top: 10px;
}
.Xinwen_right h2{
    font-size: var(--size24);
    color: #000000;
}
.Xinwen_svg1{
    width: 56px;
    overflow: hidden;
}
.Xinwen_svg1 svg{
    width: 100%;
    height: auto;
}

.Xinwe>a{
    width: max-content;
    display: block;
    margin: auto;
    margin-top: var(--top40);
    border: 1px solid #000000;
    font-size: var(--size14);
    color: #000000;
    line-height: 3;
    padding: 0 30px;
}
.Xinwe>a:hover{
    
    border: 1px solid #FFF303;
    background: #FFF303;
    color: #000;
}

.Guanyu_text{
    width: 1200px;
    overflow: hidden;
    max-width: calc(100% - 30px);
    position: fixed;
    top: 50%;
    left: 50%;
        transform: translate(-50%, -50%) scale(0);
    background: #ffffff;
    border-radius: 10px;
    z-index: 9999;
    box-shadow: 0px 0px 10px 5px #00000020;
    padding: 50px;
}
.Guanyu_text svg{
    width: 25px;
    height: auto;
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.Guanyu_text_max{
    width: 100%;
    height: 80vh;
    overflow: auto;
}
.Guanyu_text_aa{
    width: 100%;
    height: 100%;
    font-size: var(--size16);
    line-height: 2;
    color: #000000;
}
.Chanpin_suosou{
    width: var(--max);
    margin: var(--top80) auto;
}
.Chanpin_suosou ul{
    width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: var(--top30);
}
.Chanpin_suosou ul li {
    width: 100%;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: var(--top30);
}

.Chanpin_suosou li img {
    width: 100%;
    aspect-ratio: 320 / 300;
    object-fit: contain;
}

.Chanpin_suosou li h2 {
    width: 100%;
    font-size: var(--size20);
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: var(--top20);
}

.Chanpin_suosou li a {
    width: 100%;
    display: block;
    text-align: center;
    line-height: 44px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 44px;
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    margin: auto;
    margin-top: 15px;
}

.Chanpin_suosou li a:hover {
    background: rgb(255, 243, 3);
    color: rgb(0, 0, 0);
    border: 1px solid rgb(255, 243, 3);
}
