: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;
}

@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";
}
.hand-cursor{
    cursor: pointer;
}
.Hertre {
    width: 100%;
    z-index: 999;
    height: 100px;
    position: fixed;
    top: 0;
    background: linear-gradient(#000000, #00000000);
}

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

.Logo {
    width: 80px;
    overflow: hidden;

}

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

.Nav {
    width: max-content;
}

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

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

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

.Nav ul li.Nav_cen {
    color:#1062ec
}

.Nav ul li:hover {
    color:#1062ec
}
.Nav_ul {
    width: max-content;
    display: none;
    background: #ffffff;
    position: absolute;
    overflow: hidden;
    top: 100%;
    transition: auto;
    padding: 20px 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 10px 5px #00000010;
    border-radius: 5px;
}

.Nav_ul a {
    color: #000000;
    display: block;
    line-height: 2.5;
    font-size: var(--size14);
}

.Nav_ul a:hover {
    color: #1062ec;
}

.Nav_ul a.Nav_ul_Nav {
    color: #1062ec;
}
/* .Nav ul li.Nav_cen {
    color: #ec078d
}

.Nav ul li:hover {
    color: #ec078d;
}

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

.Nav ul li.Nav_cen::after {
    width: 100%;
}

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

.Hertre_cen form {
    width: 200px;
    position: relative;
}

.Hertre_cen form input {
    width: 100%;
    height: 36px;
    background: #ffffff;
    border-radius: 36px;
    padding: 0 50px 0 10px;
    font-size: 12px;
    color:#000000;
}

.Hertre_cen form button {
    width: 20px;
    height: 20px;
    background: transparent;
    border: transparent;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}

.Hertre_cen form button svg {
    width: 100%;
    height: 100%;

}

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

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

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: #fff;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu_button .line1 {
    stroke-dasharray: 60 207;
}

.menu_button .line2 {
    stroke-dasharray: 60 60;
}

.menu_button .line3 {
    stroke-dasharray: 60 207;
}

.menu_button.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.menu_button.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.menu_button.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.Banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

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

.Banner_text h2 {
    text-align: center;
    font-size: var(--size50);
    color: rgb(255, 255, 255);
}

.Banner_text p {
    text-align: center;
    font-size: var(--size20);
    color: rgb(255, 255, 255);
    margin-top: var(--top20)
}

.Banner_text form {
    width: 550px;
    max-width: 100%;
    position: relative;
    margin: auto;
    margin-top: var(--top30)
}

.Banner_text form input {
    width: 100%;
    height: 50px;
    background: #ffffff;
    border-radius: 36px;
    padding: 0 50px 0 15px;
    font-size: 12px;
    color:#000000;
}

.Banner_text form button {
    width: 20px;
    height: 20px;
    background: transparent;
    border: transparent;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}

.Banner_text form button svg {
    width: 100%;
    height: 100%;

}

.zhenshangyin-pager-bullets-bullet {
    background: rgb(255, 255, 255);
}

.zhenshangyin-pager-bullets-bullet.active {
    background: #1062ec;
}

.Lianxi {
    width: var(--max);
    margin: calc(var(--top60) + 100px) auto var(--top60);
}

.Lianxi>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(0, 0, 0);
    line-height: 1.5;
}

.Lianxi>h2::after {
    content: "";
    width: 90px;
    height: 3px;
    background: #1062ec;
    display: block;
    margin: auto;
    margin-top: 10px;
}

.Lianxi>p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: var(--top30);
}

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

.Lianxi>ul li {
    flex: 1;
    border-radius: var(--top20);
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
    background: rgb(255, 255, 255);
    padding: var(--top20);
    padding-top: var(--top30);
}

.Lianxi_title {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.Lianxi_title svg {
    width: 25px;
    height: auto;
}

.Lianxi_title p {
    width: max-content;
    max-width: calc(100% - 35px);
    font-size: var(--size16);
    color: rgb(0, 0, 0);
}

.Lianxi_centnt {
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    margin-top: var(--top20);
    padding: var(--top20);
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    line-height: 2;
}

.Lianxi>ul li:hover {
    background: #1062ec;
}

.Lianxi>ul li:hover .Lianxi_title p {
    color: #ffffff;
}

.Lianxi>ul li:hover .Lianxi_title svg path {
    fill: rgb(255, 255, 255);
}

.Fangshi {
    width: 100%;
    overflow: hidden;
    margin: var(--top50) auto;
}

.Fangshi h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
}

.Fangshi p {
    font-size: var(--size16);
    color: rgb(71, 71, 71);
    line-height: 2;
    margin-top: 10px;
}

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

.Faq>h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
    text-align: center;
}

.Faq ul {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.Faq ul li {
    width: 100%;
    overflow: hidden;
}

.Faq_question {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(125, 125, 125);
    padding-bottom: 10px;
    cursor: pointer;
}

.Faq_question p {
    flex: 1;
    font-size: var(--size20);
    color: rgb(0, 0, 0);
}

.Faq_question span {
    font-size: var(--size24);
    color: rgb(0, 0, 0);
}

.Faq_answer {
    width: 100%;
    overflow: hidden;
    font-size: var(--size16);
    color: rgb(69, 69, 69);
    line-height: 2;
    display: none;
    transition: auto;
    padding: 0 var(--top20);
    padding-top: 10px;
}


.Jishu {
    width: var(--max);
    overflow: hidden;
    margin: calc(var(--top60) + 100px) auto var(--top60);
}

.Jishu ul {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top50);
}

.Jishu ul li {
    width: 100%;
    overflow: hidden;
}

.Jishu ul li>h2 {
    font-size: 5vw;
    color: #1062ec;
    line-height: 1;
    font-family: 'bold';
    padding: 0 var(--top50);
}

.Jishu ul li:nth-child(2n)>h2 {
    text-align: right;
}

.Jishu_max {
    width: 100%;
    overflow: hidden;
    background: rgb(243, 243, 243);
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Jishu_max img {
    width: 50%;
    object-fit: cover;
}

.Jishu_text {
    width: 50%;
    padding: var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Jishu_text h2 {
    font-size: var(--size30);
    color: rgb(0, 0, 0);
}

.Jishu_text h2::after {
    content: "";
    width: 50px;
    height: 1px;
    background: rgb(0, 0, 0);
    display: block;
    margin-top: var(--top20);
}

.Jishu_text p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    line-height: 2;
    margin-top: var(--top20);
}

.Jishu ul li:nth-child(2n+1) .Jishu_max {
    flex-direction: row-reverse;
}

.Xinwen {
    width: var(--max);
    overflow: hidden;
    margin: calc(var(--top60) + 100px) auto var(--top60);
}

.Mianbao {
    width: 100%;
    overflow: hidden;
    background: rgb(229, 229, 229);
    padding: 10px var(--top20);
    font-size: var(--size16);
    color: rgb(0, 0, 0);
}

.Xinwen ul {
    width: 100%;
    overflow: hidden;
}

.Xinwen ul li {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgb(204, 204, 204);
    padding: 10px var(--top20);
}

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

.Xinwen ul li h2 {
    flex: 1;
    font-size: var(--size16);
    color: rgb(81, 81, 81);
}

.Xinwen ul li p {
    width: max-content;
    font-size: var(--size16);
    color: rgb(81, 81, 81);
}

.Show {
    width: var(--max);
    overflow: hidden;
    margin: calc(var(--top60) + 100px) auto var(--top60);
}

.Show>h2 {
    font-size: var(--size24);
    color: #222222;
}

.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;
}

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

.page .active,
.page .total {
    font-size: 12px;
    padding: 8px 10px;
    color: #757575;
    border: 1px solid #757575;
    line-height: 1;
    background: #fff;
}

.page .active {
    background: #1062ec;
    border: 1px solid #1062ec;
    color: #fff;
}

.page .active:nth-child(1),
.page .total:nth-child(1),
.page .active:last-child,
.page .total:last-child {
    color: #757575;
    border: 1px solid #757575;
    background: #fff;
}

.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;
}

.Chanpin {
    width: var(--max);
    margin: calc(var(--top60) + 100px) auto var(--top60);
}

.Chanpin ul {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: var(--top20);
    margin-top: var(--top50);
}

.Chanpin ul li {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgb(136, 136, 136);
    position: relative;
    border-radius: var(--top30);
}

.Chanpin_img {
    width: 100%;
    aspect-ratio: 4 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgb(136, 136, 136);
}

.Chanpin_img img {
    max-width: 60%;
    max-height: 60%;
}

.Chanpin_text {
    width: 100%;
    overflow: hidden;
    padding: 15px;
}

.Chanpin_text h2 {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Chanpin_text p {
    font-size: 12px;
    color: rgb(0, 0, 0);
    line-height: 1.7;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Chanpin_Tan {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
}

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

.Chanpin_Tan::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0.00deg, rgb(0, 0, 0) 0.233%, rgba(255, 255, 255, 0) 99.766%);
    opacity: 0.7;
}

.Chanpin_Tan_text {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: var(--top20) 15px;
    z-index: 6;
}

.Chanpin_Tan_text h2 {
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Chanpin_Tan_text p {
    font-size: 12px;
    color: rgb(255, 255, 255);
    line-height: 1.7;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Chanpin ul li:hover .Chanpin_Tan {
    top: 0;
}

.Chanpin_show {
    width: 100%;
    margin: var(--top50) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 var(--top60);
}

.Chanpin_left {
    width: 35%;
    overflow: hidden;
}

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

.Chanpin_right {
    flex: 1;
}

.Chanpin_right>h2 {
    font-size: var(--size24);
    color: rgb(106, 106, 106);
}

.Chanpin_right_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    border-top: 1px solid rgb(204, 204, 204);
}

.Chanpin_right_text p {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgb(204, 204, 204);
    padding: 10px 0;
    font-size: var(--size16);
    color: rgb(106, 106, 106);
}

.Chanpin_bottom {
    width: 100%;
    margin-top: var(--top20);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top30);
}

.Baojia {
    width: max-content;
    position: relative;
    margin-right: auto;
}

.Baojia p {
    width: max-content;
    background: #1062ec;
    line-height: 50px;
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    padding: 0 50px;
}

.Baojia_text {
    width: max-content;
    background: #ffffff;
    overflow: hidden;
    border: 1px solid rgb(0, 168, 243);
    padding: var(--top20);
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    line-height: 2.5;
    display: none;
    transition: auto;
    position: absolute;
    top: 100%;
    left: 0;
}

.b{
    width: max-content;
    display: grid;
    grid-auto-columns: 1fr;
    gap: 10px;
}

.Chanpin_list {
    width: 100%;
    line-height: 30px;
    border: 1px solid rgb(125, 125, 125);
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    padding: 0 var(--top20);
    text-align: center;
}

.Chanpin_contcen {
    width: 100%;
    overflow: hidden;
    margin: var(--top50) auto;
}

.Chanpin_contcen_title {
    width: 100%;
    overflow: hidden;
    background: rgb(232, 241, 248);
}

.Chanpin_contcen_title p {
    width: max-content;
    background: #1062ec;
    line-height: 40px;
    font-size: var(--size14);
    color: rgb(255, 255, 255);
    padding: 0 var(--top30);
}

.Chanpin_contcen_text {
    width: 100%;
    overflow: hidden;
    font-size: var(--size14);
    color: rgb(142, 142, 142);
    line-height: 2;
}

.Chanpin_contcen_text table {
    border: 1px solid rgb(204, 204, 204);
}

.Chanpin_contcen_text table td {
    padding: 10px;
}

.Chanpin_contcen_text img {
    max-width: 100%;
}

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

.Xiangguan .Chanpin {
    width: 100%;
    margin: 0;
    margin-top: var(--top30);
}

.Xiangguan .Chanpin ul {
    margin-top: 0px;
}



.About {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto ;
}

.About>h2 {
    font-size: var(--size30);
    color: rgb(35, 35, 35);
    line-height: 1;
}

.About>h2::after {
    content: "";
    width: 50px;
    height: 2px;
    background: rgb(0, 0, 0);
    display: block;
    margin: var(--top20) 0;
}

.About>p {
    font-size: var(--size60);
    color: rgb(35, 35, 35);
    line-height: 1;
    font-family: 'bold';
}

.About_max {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-top: var(--top50);
}

.About_max_left {
    width: 40%;
}

.About_max_left video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.About_max_right {
    width: calc(60% - 5vw);
}

.About_max_right h2 {
    font-size: var(--size20);
    color: rgb(35, 35, 35);
}

.About_max_right p {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    line-height: 2;
    margin-top: var(--top30);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.About_max_right>a {
    width: max-content;
    display: block;
    line-height: 50px;
    border-radius: 50px;
    border: 1px solid rgb(0, 0, 0);
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    padding: 0 var(--top60);
    margin-top: var(--top30);
}

.About_max_right>a:hover {
    background: #1062ec;
    border: 1px solid #1062ec;
    color: rgb(255, 255, 255);
}

.About_list {
    width: var(--max);
    overflow: hidden;
    margin: calc(var(--top60) + 100px) auto var(--top60);
}

.About_list>p {
    font-size: var(--size60);
    color: rgb(0, 0, 0);
    line-height: 1;
    font-family: 'bold';
    text-align: center;
}

.About_list>h2 {
    font-size: var(--size30);
    color: rgb(35, 35, 35);
    line-height: 1;
    margin-top: var(--top20);
    text-align: center;
}

.About_list>h2::after {
    content: "";
    width: 80px;
    height: 2px;
    background: rgb(0, 0, 0);
    display: block;
    margin: var(--top20) auto;
}

.About_list_text {
    font-size: var(--size20);
    color: rgb(0, 0, 0);
    line-height: 2;
    margin-top: var(--top40);
    text-align: center;
}

.About_list_content {
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    line-height: 2;
    margin-top: var(--top40);
}


.Hezuo {
    width: var(--max);
    margin: auto;
    padding: var(--top30) 0 15vw;
    background: url(../images/beijing1.png ) no-repeat bottom center / 100% auto;
}

.Hezuo>h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgb(0, 0, 0);
}

.Hezuo>h2::after {
    content: "";
    width: 60px;
    height: 5px;
    background: rgb(0, 109, 232);
    display: block;
    margin: auto;
    margin-top: 10px;
}

.Hezuo>p {
    font-size: var(--size16);
    color: rgb(102, 102, 102);
    text-align: center;
    margin-top: var(--top30);
}

.Hezuo ul {
    width: 800px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.Hezuo ul li {
    width: calc(25% - 12px);
    border-radius: var(--top20);
    box-shadow: -1.87px 4.64px 4px 0px rgba(8, 1, 3, 0.38);
    background: rgb(0, 109, 232);
    padding: 16px;
    font-size: 12px;
    color: rgb(255, 255, 255);
    line-height: 2;
    text-align: center;
}

.Hezuo ul li:nth-child(7n+1),
.Hezuo ul li:nth-child(7n+2),
.Hezuo ul li:nth-child(7n+2) {
    width: calc(25% - 10px);
}

.Chanpinin {
    width: 100%;
    overflow: hidden;
    background: rgb(238, 238, 239);
}

.Chanpinin_max {
    width: var(--max);
    margin: var(--top60) auto ;
    position: relative;
}

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

.Chanpinin_swiper li {
    width: 100%;
    overflow: hidden;
}

.Chanpinin_swiper_img {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--top30);
}

.Chanpinin_swiper_img::after {
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0.00deg, rgb(0, 0, 0) 0.233%, rgba(255, 255, 255, 0) 99.766%);
    opacity: 0.7;
}

.Chanpinin_swiper_img img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.Chanpinin_swiper_img h2 {
    width: 100%;
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    line-height: 1.5;
    padding: var(--top20) var(--top30);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.Chanpinin_max ul li p {
    padding: 0 var(--top30);
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Chanpinin_max ul li a {
    width: 80%;
    text-align: center;
    display: block;
    line-height: 50px;
    border-radius: 50px;
    border: 1px solid #1062ec;
    font-size: var(--size16);
    color: #1062ec;
    margin: auto;
    margin-top: var(--top20);
    margin-bottom: 1px;
}

.Chanpinin_max ul li a:hover {
    background: #1062ec;
    color: rgb(255, 255, 255);
}
.prev,
.next{
    width: 30px;
    height: auto;
    background: transparent;
}

.prev{
    left: -45px;
}

.next{
    right: -45px;
}

.next svg{
    transform: rotate(180deg);
}

.Jiazhiguan{
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto ;
}
.Jiazhiguan h2{
    font-size: var(--size24);
    text-align: center;
    color: rgb(0, 0, 0);
    line-height: 1;
}

.Jiazhiguan p{
    font-size: var(--size30);
    color: rgb(0, 0, 0);
    text-align: center;
    margin: var(--top30) 0;
    font-family: monospace;
    font-weight: 700;
}
.Jiazhiguan ul{
    width: 800px;
    margin: auto;
    max-width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: var(--top30);
    margin-top: var(--top30);
}
.Jiazhiguan ul li{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.Jiazhiguan ul li img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.Jiazhiguan ul li h2{
    font-size: var(--size16);
    color: rgb(255, 255, 255);
    line-height: 1;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0;
    left: 0;
    z-index: 5;
    padding: var(--top20) 10px;
}

.Xuanze{
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.Xuanze_max{
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto ;
}
.Xuanze_max h2{
    text-align: center;
    font-size: var(--size36);
    color: rgb(255, 255, 255);
}

.Xuanze_max ul{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--top40);
    gap: var(--top30);
}
.Xuanze_max ul li{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.Xuanze_max ul li img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.Xuanze_max ul li p{
    font-size: var(--size18);
    color: rgb(255, 255, 255);
}

.Footer {
    width: 100%;
    overflow: hidden;
    background: rgb(244, 244, 244);
}

.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_ul {
    width: max-content;
    max-width: 250px;
    overflow: hidden;
}
.Footer_ul>img{
    width: 90px;
    height: auto;
    margin-bottom: var(--top30);
}
.Footer_top {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Footer_top h2 {
    font-size: var(--size16);
    color: rgb(0, 0, 0);
    font-family: 'bold';
}

.Footer_top svg {
    width: 14px;
    height: auto;
    display: none;
}

.Footer_ul ul {
    width: 100%;
    overflow: hidden;
}

.Footer_ul ul li {
    font-size: var(--size14);
    color: rgb(0, 0, 0);
    line-height: 2;
    margin-top: 10px;
}
.Erweima{
    width: 120px;
    overflow: hidden;
}
.Erweima img{
    width: 100%;
    height: auto;
}
.Beian {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #00000020;
}

.Beian_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top20) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.Beian_max p {
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    margin: 0 5px;
}

.Click{
    cursor: pointer;
}

.cebianlan{
    width: 55px;
    position: fixed;
    bottom: 20%;
    right: 20px;
    z-index: 999;
}

.cebianlan ul{
    width: 100%;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 5px;
}

.cebianlan ul li{
    width: 100%;
    height: 55px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
}
.cebianlan ul li img{
    width: 100%;
    height: 100%;
}
.mixnuiu{
    width: max-content;
    overflow: hidden;
    background: #ffffff;
    position: absolute;
    top: 50%;
    right: 120%;
    box-shadow: 0px 4px 10px 0px #00000020;
    transform: translateY(-50%) scale(0);
    padding: 15px;
    font-size: 14px;
    color: #000000;
    border-radius: 10px;
    transform-origin: right center;

}
.mixnuiu img{
    width: 120px;
    height: auto;
}
.cebianlan ul li:hover .mixnuiu{
    transform: translateY(-50%) scale(1);
}
    .Footer_ul ul li:hover{color: #1062ec}