@charset "utf-8";

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@font-face {
    font-family: "CustomFont";
    src: url("../fonts/6729be42a0ce0sj7py70xm7198.ttf") format("truetype");
}


* {
    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,
button {
    outline: none;
    background: transparent;
    border: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input:-moz-placeholder,
textarea:-moz-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder,
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: 73%;
    --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;
}

body{
    padding-top: 80px;
}

.Hertre {
    width: 100%;
    z-index: 999;
    position: fixed;
    top: 0;
    background: #fff;
}

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

.Logo {
    width: 120px;
    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(--top40);
}

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

.Nav ul li svg {
    width: 14px;
    fill: #030000;
    transform: rotate(90deg);
}


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

.Nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: rgba(22, 208, 203, 1);
    position: absolute;
    bottom: 10px;
    left: 0%;
    transition: all 0.3s;
}

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

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

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

.Nav_item a:hover,
.Nav_item a.active {
    color: rgba(22, 208, 203, 1);
}

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

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

.menu_button:focus {
    outline: none;
}

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

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

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

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

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

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

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

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

.Banner img {
    width: 100%;
    height: auto;
    min-height: 150px;
    object-fit: cover;
}

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

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

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

.Guanyu {
    width: var(--max);
    margin: var(--top120) auto;
}

.Guanyu>span {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: var(--size16);
    color: rgba(22, 208, 203, 1);
    line-height: 1;
    gap: 10px;
}

.Guanyu>span::after,
.Guanyu>span::before {
    content: "";
    width: 25px;
    height: 1px;
    background: rgba(22, 208, 203, 1);
    display: block;
}

.Guanyu>h2 {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
    text-align: center;
    margin-top: var(--top30);
}

.Guanyu>h3 {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 1.8;
    text-align: center;
    margin-top: var(--top30);
    font-weight: 400;
}

.Guanyu>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    margin-top: var(--top20);
    text-align: center;
    line-height: 1.8;
}

.Peijian {
    width: var(--max);
    margin: var(--top120) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top80);
}

.Peijian img {
    width: 48%;
    height: auto;
    border-radius: 10px;
}


.Peijian_text {
    flex: 1;
}

.Peijian_text span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size16);
    color: rgba(22, 208, 203, 1);
    line-height: 1;
    gap: 10px;
}

.Peijian_text span::before {
    content: "";
    width: 25px;
    height: 1px;
    background: rgba(22, 208, 203, 1);
    display: block;
}

.Peijian_text h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
    margin-top: var(--top30);
}

.Peijian_text h3 {
    font-size: var(--size20);
    color: rgba(22, 208, 203, 1);
    margin-top: var(--top20);
    font-weight: 400;
}

.Peijian_text p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    margin-top: var(--top30);
    line-height: 1.8;
}

.Zhengji {
    width: 100%;
    overflow: hidden;
    background: rgba(22, 208, 203, 0.08);
}

.Zhengji .Peijian {
    flex-direction: row-reverse;
}

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

.Guanyu ul li {
    width: 100%;
}

.Guanyu_img {
    width: 70px;
    aspect-ratio: 4 / 4;
    background: rgba(22, 208, 203, 0.1);
    border-radius: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Guanyu ul li img {
    max-width: 40%;
    max-height: 40%;
    object-fit: contain;
}

.Guanyu ul li h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top20);
}

.Guanyu ul li span {
    display: block;
    font-size: var(--size16);
    color: rgba(22, 208, 203, 1);
    margin-top: var(--top20);
    text-align: center;
    font-weight: 600;
}

.Guanyu ul li p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    margin-top: var(--top20);
}

.Fuwu {
    width: 100%;
    overflow: hidden;
    background: rgba(22, 208, 203, 1);
}

.Fuwu_max {
    width: var(--max);
    margin: var(--top100) auto;
}

.Fuwu_max h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.Fuwu_max span {
    display: block;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    text-align: center;
    margin-top: var(--top30);
}

.Fuwu_max a {
    width: max-content;
    display: block;
    margin: auto;
    line-height: 50px;
    background: rgba(255, 255, 255, 1);
    padding: 0 var(--top40);
    border-radius: 15px;
    margin-top: var(--top40);
    font-size: var(--size16);
    color: rgba(22, 208, 203, 1);
}

.Fuwu_max a:hover {
    padding: 0 50px;
}

.Lianxi {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

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


.Lianxi_max>h2 {
    font-size: var(--size36);
    color: rgba(30, 30, 30, 1);
    font-weight: 700;
}

.Lianxi_max>span {
    display: block;
    font-size: var(--size18);
    color: rgba(30, 30, 30, 1);
    margin-top: 10px;
}

.Lianxi_max>h3 {
    font-size: var(--size24);
    color: rgba(30, 30, 30, 1);
    font-weight: 700;
    margin-top: var(--top60);
}

.Lianxi_max>p {
    font-size: var(--size16);
    color: rgba(22, 208, 203, 1);
    margin-top: 10px;
}

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

.Lianxi_left {
    flex: 1;
}

.Lianxi_left form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.Lianxi_ltem {
    width: 100%;
}

.Lianxi_ltem:nth-child(-n+4) {
    width: calc(50% - 10px);
}

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

.Lianxi_ltem p span {
    color: rgba(22, 208, 203, 1);
    margin-left: 5px;
}

.Lianxi_ltem input {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    background: rgba(243, 243, 245, 1);
    border: 1px solid rgba(217, 217, 217, 1);
    font-size: var(--size14);
    color: rgba(113, 113, 130, 1);
    padding: 0 15px;
    margin-top: 10px;
}

#fuwu {
    background: rgba(243, 243, 245, 1) url(../images/Vector.png) no-repeat right 15px center / 8px auto;
}

.Lianxi_ltem textarea {
    width: 100%;
    height: 130px;
    border-radius: 8px;
    background: rgba(243, 243, 245, 1);
    border: 1px solid rgba(217, 217, 217, 1);
    font-size: var(--size14);
    color: rgba(113, 113, 130, 1);
    padding: 15px;
    margin-top: 10px;
    resize: none;
}

.Lianxi_left form button {
    width: 100%;
    height: 56px;
    border-radius: 8px;
    background: rgba(22, 208, 203, 1);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
}

.Lianxi_right {
    width: 45%;
    padding-right: 12vw;
}

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

.Lianxi_right ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    border-top: 1px solid rgba(217, 217, 217, 1);
    padding-top: var(--top30);
}

.Lianxi_right ul li:nth-child(1) {
    padding: 0;
    border: transparent
}

.Lianxi_img {
    width: 50px;
    aspect-ratio: 4 / 4;
    background: rgba(22, 208, 203, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Lianxi_img ul li img {
    max-width: 40%;
    max-height: 40%;
    object-fit: contain;
}

.Lianxi_text {
    flex: 1;
}

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

.Lianxi_text p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    line-height: 1.6;
    margin-top: 5px;
}

.Guanyu_in {
    width: 100%;
    overflow: hidden;
    background: rgba(22, 208, 203, 1);
}

.Guanyu_in_max {
    width: var(--max);
    margin: var(--top120) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top60);
}

.Guanyu_left {
    flex: 1;
    padding-left: 10vw;
}

.Guanyu_left span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    gap: 10px;
}

.Guanyu_left span::before {
    content: "";
    width: 25px;
    height: 1px;
    background: rgba(255, 255, 255, 1);
    display: block;
}

.Guanyu_left h2 {
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    margin-top: 10px;
}

.Guanyu_right {
    width: 50%;
    transform: translateX(-80px);
}

.Guanyu_right p {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 1.8;
}

.Guanyu_right a {
    width: 160px;
    display: block;
    line-height: 50px;
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    margin-top: var(--top20);
    font-size: var(--size16);
    color: rgba(30, 30, 30, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.Guanyu_right a:hover {
    gap: 25px;
}

.Hezuo {
    width: 100%;
    overflow: hidden;
    background: url(../images/beijing.png) no-repeat center center / cover;
}

.Hezuo_center {
    width: 100%;
    margin: var(--top100) auto;
}

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

.Hezuo_max>span {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: var(--size16);
    color: rgba(22, 208, 203, 1);
    line-height: 1;
    gap: 10px;
}

.Hezuo_max>span::after,
.Hezuo_max>span::before {
    content: "";
    width: 25px;
    height: 1px;
    background: rgba(22, 208, 203, 1);
    display: block;
}

.Hezuo_max>h2 {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
    text-align: center;
    margin-top: var(--top30);
}

.Hezuo_max>p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 1.8;
    text-align: center;
    margin-top: var(--top30);
    font-weight: 400;
}

.Hezuo_max a {
    width: 160px;
    display: block;
    margin: auto;
    line-height: 50px;
    background: rgba(22, 208, 203, 1);
    border-radius: 15px;
    margin-top: var(--top30);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.Hezuo_max a:hover {
    gap: 25px;
}

.Hezuo_zutu {
    width: 100%;
    margin-top: var(--top60);
    gap: var(--top50);
}

.scroll_item {
    width: 200px;
    aspect-ratio: 200 / 150;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.Footer {
    width: 100%;
    overflow: hidden;
    background: rgba(90, 90, 90, 1);
}

.Footer_max {
    width: var(--max);
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top30);
}

.Footer_left {
    flex: 1;
}

.Footer_left ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.Footer_left ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.Footer_left ul li svg {
    width: 20px;
    height: auto;
}

.Footer_left ul li p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
}

.Footer_right {
    width: max-content;
}

.Footer_right ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: var(--top30);
}

.Footer_right ul li {
    width: 45px;
    height: 45px;
}

.Footer_right ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Footer_right ul li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Beian {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.Beian p {
    font-size: var(--size14);
    color: rgba(183, 183, 183, 1);
}

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

.Xianhuo_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top30);
}

.Xianhuo_title {
    flex: 1;
}

.Xianhuo_title span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size16);
    color: rgba(22, 208, 203, 1);
    line-height: 1;
    gap: 10px;
}

.Xianhuo_title span::before {
    content: "";
    width: 25px;
    height: 1px;
    background: rgba(22, 208, 203, 1);
    display: block;
}

.Xianhuo_title h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
    margin-top: 15px;
}

.Xianhuo_top button {
    width: max-content;
    height: 56px;
    background: rgba(22, 208, 203, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 15px;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

.Xianhuo_top button svg {
    width: 16px;
    height: auto;
}

.Xianhuo_top button span {
    width: 24px;
    height: 24px;
    background: rgba(251, 44, 54, 1);
    border-radius: 50%;
    position: absolute;
    top: -12px;
    right: -12px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 12px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

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

.Xianhuo ul li {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(229, 229, 229, 1)
}

.Xianhuo_img {
    width: 100%;
    aspect-ratio: 340 / 220;
    object-fit: cover;
    position: relative;
}

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

.Xianhuo_tejia {
    width: max-content;
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 28px;
    border-radius: 8px;
    background: rgba(255, 141, 40, 1);
    font-size: 12px;
    color: rgba(255, 255, 255, 1);
    padding: 0 10px;
}

.Xianhuo_kucun {
    width: max-content;
    position: absolute;
    right: 10px;
    bottom: 10px;
    line-height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    font-size: 12px;
    color: rgba(102, 102, 102, 1);
    padding: 0 10px;
    font-size: 600;
}

.Xianhuo_kucun span {
    color: rgba(22, 208, 203, 1);
}

.Xianhuo_text {
    width: 100%;
    padding: 15px;
}

.Xianhuo_text>h2 {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    font-weight: 600;
}

.Xianhuo_text>span {
    display: block;
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    margin-top: var(--top30);
}

.Jine {
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Jine p {
    font-size: var(--size20);
    color: rgba(22, 208, 203, 1);
    font-weight: 700;
    line-height: 1;
}

.Jine span {
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    font-weight: 600;
    text-decoration: line-through;
}

.add_to_quote_btn {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    background: rgba(22, 208, 203, 1);
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    gap: 10px;
}

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

.pagination .page-item {
    padding: 8px 12px;
    font-size: var(--size16);
    color: rgba(30, 30, 30, 1);
    border-radius: 8px;
    line-height: 1;
}

.pagination .page-item a,
.pagination .page-item span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.pagination .page-item.active {
    background: rgba(22, 208, 203, 1);
    color: #fff;
}

.SHuoming {
    width: 100%;
    margin-top: var(--top40);
    border-radius: 15px;
    background: rgba(22, 208, 203, 0.05);
    padding: var(--top40);
}

.SHuoming h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-weight: 600;
}

.SHuoming_max {
    width: 100%;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--top20);
}

.SHuoming_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.SHuoming_item>p {
    width: 24px;
    height: 24px;
    background: rgba(22, 208, 203, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
}

.SHuoming_text {
    flex: 1;
}

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

.SHuoming_text p {
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    margin-top: 5px;
}

.Cebian {
    width: 600px;
    max-width: 95%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -630px;
    background: #ffffff;
    z-index: 99999;
    padding: var(--top40);
    box-shadow: 0px 0px 10px 5px #00000030;
    overflow: auto;
    transition: right 0.3s ease-in-out;
}

.Cebian_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.Cebian_title {
    flex: 1;
}

.Cebian_title h2 {
    font-size: var(--size24);
    color: rgba(10, 10, 10, 1);
    line-height: 1;
}

.Cebian_title p {
    font-size: var(--size14);
    color: rgba(113, 113, 130, 1);
    margin-top: 15px;
    line-height: 1;
}

.Cebian_top button {
    width: 14px;
    cursor: pointer;
}

.Cebian_top button svg {
    width: 100%;
    height: auto;
}

.Cebian_cen {
    width: 100%;
    margin-top: var(--top40);
}

.Cebian_cen h2 {
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
}

.Cebian_cen ul {
    width: 100%;
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.Cebian_cen ul li {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(229, 229, 229, 1);
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.Cebian_cen ul li img {
    width: 80px;
    height: auto;
    border-radius: 5px;
}

.Cebian_cen_text {
    flex: 1;
}

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

.Cebian_cen_text span {
    display: block;
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    margin-top: 10px;
}

.Cebian_cen_text>p {
    font-size: var(--size18);
    color: rgba(22, 208, 203, 1);
    margin-top: 10px;
    font-weight: 700;
}

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

.Cebian_cen_bun button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.Cebian_cen_bun input {
    flex: 1;
    height: 32px;
    border-radius: 8px;
    background: rgba(243, 243, 245, 1);
    font-size: var(--size14);
    color: rgba(10, 10, 10, 1);
    padding: 0 12px;
}

.Cebian_cen_bun p {
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    line-height: 1;
}

.Delete {
    cursor: pointer;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Delete svg {
    width: 16px;
    height: auto;
    display: block;
}

.Yugu {
    width: 100%;
    border-radius: 8px;
    background: rgba(22, 208, 203, 0.1);
    padding: 20px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 15px;
}

.Yugu h2 {
    flex: 1;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.Yugu p {
    font-size: var(--size20);
    color: rgba(22, 208, 203, 1);
    font-weight: 600;
}

.Cebian_butt {
    width: 100%;
    border-top: 1px solid rgba(229, 229, 229, 1);
    padding-top: var(--top30);
    margin-top: var(--top30);
}

.Cebian_butt h2 {
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
}

.Lianxi_left form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.Cebian_butt form {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.Cebian_ltem {
    width: 100%;
}

.Cebian_ltem:nth-child(3),
.Cebian_ltem:nth-child(4) {
    width: calc(50% - 10px);
}

.Cebian_ltem p {
    font-size: var(--size14);
    color: rgba(10, 10, 10, 1);
}

.Cebian_ltem p span {
    color: rgba(251, 44, 54, 1);
    margin-left: 5px;
}

.Cebian_ltem input {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    background: rgba(243, 243, 245, 1);
    font-size: var(--size14);
    color: rgba(113, 113, 130, 1);
    padding: 0 15px;
    margin-top: 10px;
}


.Cebian_ltem textarea {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    background: rgba(243, 243, 245, 1);
    font-size: var(--size14);
    color: rgba(113, 113, 130, 1);
    padding: 15px;
    margin-top: 10px;
}

.Cebian_butt form button {
    width: 100%;
    height: 56px;
    border-radius: 8px;
    background: rgba(22, 208, 203, 1);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
}

.Jiejue {
    width: 100%;
    overflow: hidden;
    background: rgba(22, 208, 203, 1);
}

.Jiejue_max {
    width: var(--max);
    margin: var(--top30) auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top20);
}

.Jiejue_max h2 {
    font-size: var(--size36);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
}

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

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

.Hnagye>span {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: var(--size16);
    color: rgba(22, 208, 203, 1);
    line-height: 1;
    gap: 10px;
}

.Hnagye>span::after,
.Hnagye>span::before {
    content: "";
    width: 25px;
    height: 1px;
    background: rgba(22, 208, 203, 1);
    display: block;
}

.Hnagye>h2 {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
    text-align: center;
    margin-top: var(--top30);
}

.Hnagye>p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 1.8;
    text-align: center;
    margin-top: var(--top30);
    font-weight: 400;
}

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

.Hnagye ul li {
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--top20);
    position: relative;
}

.Hnagye ul li::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.Hnagye ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.Hnagye_text {
    width: 100%;
    margin: var(--top120) auto;
    padding: 0 var(--top20);
}

.Hnagye_text h3 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(255, 255, 255, 1);
}

.Hnagye_text span {
    display: block;
    text-align: center;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin: 10px 0;
}

.Hnagye_text p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 0.9);
}

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

.Hnagye_fan{
    width: max-content;
}

.Hnagye_fan a{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    color: rgba(22, 208, 203, 1);
}

.Hnagye_sanji>h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top30);
}

.Hnagye_sanji>span {
    display: block;
    font-size: var(--size16);
    color: rgba(22, 208, 203, 1);
    margin: 10px 0;
}

.Hnagye_sanji>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

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

.Hnagye_sanji ul li {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(229, 229, 229, 1);
}
.Xianhuo ul li:hover,
.Hnagye ul li:hover,
.Hnagye_sanji ul li:hover{
    transform: translateY(-3px);
    box-shadow: 0px 0px 15px 5px #00000020;
}
.Hnagye_sanji ul li img{
    width: 100%;
    aspect-ratio: 700 / 240;
    object-fit: cover;
}

.Hnagye_sanji_text{
    width: 100%;
    padding: var(--top20);
}
.Hnagye_sanji_text h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
}

.Hnagye_sanji_text span {
    display: block;
    font-size: var(--size16);
    color: rgba(22, 208, 203, 1);
    margin: 10px 0;
}

.Hnagye_sanji_text p {
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
}

.MIanbao{
    width: var(--max);
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.MIanbao a{
    color: rgba(22, 208, 203, 1);
}

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

.Siji_item{
    width: 100%;
    border-radius: 15px;
    border: 1px solid #E5E5E5;
    padding: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top40);
}

.Siji_item>img{
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.Siji_text{
    flex: 1;
}

.Siji_text>h2{
    font-size: var(--size24);
    color: #333333;
    font-weight: 600;
}

.Siji_text>span{
    display: block;
    font-size: var(--size16);
    color: #16D0CB;
    margin: 10px 0;
}

.Siji_text>p{
    font-size: var(--size14);
    color: #999999;
}

.Siji_text>p span{
    font-size: var(--size16);
    color: #333333;
    font-weight: 600;
    margin-left: 10px;
}

.Siji_content{
    width: 100%;
    margin-top: var(--top20);
    font-size: var(--size16);
    color: #666666;
    line-height: 1.8;
}

.Siji_text>a{
    width: max-content;
    line-height: 48px;
    margin-top: var(--top30);
    border-radius: 8px;
    background: #16D0CB;
    font-size: var(--size16);
    color: #FFFFFF;
    padding: 0 var(--top60);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Siji_text>a:hover{
    gap: 15px;
}

.Swiper{
    width: 100%;
}

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

.pager1{
    bottom: var(--top60);
    gap: var(--top20);
}

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

.Swiper_text h2{
    text-align: center;
    font-size: 5vw;
    color: #F5F5F5;
    font-weight: 700;
    font-family: 'CustomFont';
}

.Swiper_text a{
    width: 160px;
    line-height: 48px;
    background: rgb(255, 255, 255,0.9);
    font-size: var(--size16);
    color: rgb(51, 51, 51);
    display: block;
    text-align: center;
    margin: auto;
    margin-top: 5vw;
    border-radius: 8px;
}

.Swiper_text a:hover{
    width: 180px;
}

.Xuanze{
    width: 100%;
    overflow: hidden;
    background: rgba(22, 208, 203, 1);
}


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

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

.Xuanze_text{
    width: 100%;
    margin-top: var(--top50);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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