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

body {
    background: rgba(245, 245, 245, 1);
}

.Hertre {
    width: 100%;
    z-index: 999;
    height: 100px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(38px);
    position: fixed;
    top: 0;
}

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

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

.Nav ul li {
    font-size: var(--size18);
    height: 100px;
    color: #050505;
    text-align: center;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.Nav ul li h2 {
    font-size: var(--size20);
    color: rgba(200, 200, 200, 1);
}

.Nav ul li p {
    font-size: 12px;
    color: rgba(200, 200, 200, 1);
    margin-top: 5px;
}

.Nav ul li svg {
    width: 16px;
    height: 16px;
    fill: rgba(200, 200, 200, 1);
    display: none;
}


.Nav ul li.active * {
    color: rgb(255, 255, 255);
}

.Nav ul li:hover * {
    color: #ffffff;
}

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

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

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

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

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

.Nav_item a:hover {
    color: #ec078d;
}

.Nav_item a.active {
    color: #ec078d;
} */

.Hertre_right {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top50);
}

.Login {
    width: 25px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.Login:hover {
    transform: scale(1.1);
}

.Login svg {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.2s ease;
}

.Login:hover svg {
    filter: brightness(1.2);
}

.Contact {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    position: relative;
}

.Contact svg:nth-child(1) {
    width: 20px;
    height: auto;
    display: block;
}

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

.En a {
    color: #000000;
    display: block;
    line-height: 2;
    font-size: var(--size14);
    text-align: center;
}

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

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

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: rgb(255, 255, 255);
    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: 200px;
    object-fit: cover;
}


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

.Data {
    width: var(--max);
    height: 100px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 37px -11px rgba(0, 0, 0, 0.3);
    margin: auto;
    margin-top: -50px;
    position: relative;
    z-index: 5;
    padding: 0 var(--top40);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 100px;
    z-index: 55;
}

.Data ul {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.Data ul li {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    cursor: pointer;
    position: relative;
    line-height: 1;
    border-left: 1px solid rgba(51, 51, 51, 1);
    padding-left: var(--top20);
}

.Data ul li span {
    display: block;
    position: relative;
}

.Data ul li:first-child {
    border-left: none;
    padding-left: 0;
}

.Data ul li span::after {
    content: "";
    width: 0%;
    height: 5px;
    background: rgba(197, 0, 0, 1);
    position: absolute;
    bottom: -20px;
    left: 0%;
    transition: all 0.3s;
}

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

.Data ul li:hover span,
.Data ul li.active span {
    color: rgba(197, 0, 0, 1);
}

.Mianbao {
    width: max-content;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.Jianjie {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 5vw;
}

.Jianjie_text {
    flex: 1;
    contain: size;
    overflow: auto;
    padding-right: var(--top30);
}

.Jianjie_text::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
}

.Jianjie_text::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(220, 220, 220, 1);
}

.Jianjie_text::-webkit-scrollbar-track {
    border-radius: 5px;
    background: rgba(242, 242, 242, 1);
}

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

.Jianjie_text h3 {
    font-size: var(--size14);
    color: rgba(197, 0, 0, 1);
}

.Jianjie_text p {
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top40);
}

.Jianjie img {
    width: 35%;
    height: auto;
}

.Lingyu h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgba(197, 0, 0, 1);
}

.Lingyu h2::after {
    content: "";
    width: 90px;
    height: 1px;
    background: rgba(197, 0, 0, 1);
    display: block;
    margin: auto;
    margin-top: 15px;
}

.Lingyu p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 15px;
}

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

.Lingyu ul li {
    width: 100%;
}

.Lingyu ul li img {
    width: 100%;
    aspect-ratio: 320 / 430;
    object-fit: cover;
}

.Lingyu ul li h3 {
    width: 100%;
    text-align: center;
    background: rgba(210, 0, 0, 1);
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    padding: var(--top20) 0;
}

.Xingxiang {
    width: 100%;
    margin: var(--top120) 0;
}

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

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

.Xingxiang_max p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
}

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

.Xingxiang_swiper ul {
    padding: 30px 0;
}

.Xingxiang_swiper img {
    width: 100%;
    aspect-ratio: 380 / 430;
    object-fit: cover;
}

.Chanpin h2 {
    font-size: var(--size40);
    color: rgba(51, 51, 51, 1);
    font-weight: 900;
    background: url(../images/xian.png) no-repeat left center / 10px 100%;
    padding-left: 30px;
    line-height: 1;
    font-style: italic;
}

.Chanpin ul {
    width: 100%;
    margin-top: var(--top100);
    display: flex;
    flex-wrap: wrap;
    gap: var(--top120);
    padding-left: var(--top60);
}

.Chanpin ul li {
    width: 100%;
    position: relative;
}

.Chanpin_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top100);
}

.Chanpin_top img {
    width: 350px;
    height: auto;
}

.Chanpin_right {
    flex: 1;
    padding: var(--top60) 0;
}

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

.Chanpin_right span {
    width: max-content;
    display: block;
    background: rgba(210, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
    line-height: 50px;
    padding: 0 var(--top30);
    font-size: var(--size20);
    margin-top: var(--top30);
}

.Chanpin_right p {
    max-width: 500px;
    width: 100%;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 1.8;
    margin-top: var(--top30);
}

.Chanpin_bottom {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(245, 245, 245, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top100);
    opacity: 0;
}

.Chanpin_bottom img {
    width: 350px;
    height: auto;
    position: relative;
    z-index: 5;
}

.Chanpin_table {
    width: 100%;
    margin-top: var(--top30);
    padding: var(--top30) 0;
    position: relative;
}


.Chanpin_table::after {
    content: "";
    width: calc(100% + var(--top100) + 50px);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(197, 0, 0, 1);
    border-radius: var(--top60);
}

.Chanpin_table table {
    position: relative;
    z-index: 5;
    color: #fff;
}

.Chanpin_table table td {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 6px 0;
}

.Chanpin ul li:hover .Chanpin_bottom {
    opacity: 1;
}

.Chanpin_table_blick {
    display: none;
    padding: var(--top30);
}

.Chanpin_table_blick::after {
    width: 100%;
}


.Fuwu h2 {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    background: url(../images/xian.png) no-repeat left center / 10px 100%;
    padding-left: 30px;
    line-height: 1;
}

.Fuwu p {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top20);
}

.Fuwu a {
    display: block;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
}

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

.Fuwu ul li {
    width: 100%;
    aspect-ratio: 450 / 480;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.Caisou h2 {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    background: url(../images/xian.png) no-repeat left center / 10px 100%;
    padding-left: 30px;
    line-height: 1;
}

.Caisou_max {
    width: 100%;
    margin-top: var(--top40);
    display: flex;
    flex-wrap: wrap;
    gap: var(--top60);
}

.Caisou_list {
    width: 100%;
}

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

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

.Caisou_list ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Caisou_img {
    width: 270px;
    aspect-ratio: 380 / 260;
    background: rgba(232, 232, 232, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.Caisou_img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.Caisou_text {
    flex: 1;
}

.Caisou_text p {
    background: rgba(210, 0, 0, 1);
    padding: var(--top30) var(--top50);
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    line-height: 1.8;
}

.Caisou_text a {
    display: block;
    padding: 10px var(--top50);
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
}

.Footer {
    width: 100%;
    background: rgba(38, 38, 38, 1);
    padding: var(--top60) 0;
}

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

.Footer_left {
    flex: 1;
}

.Footer_left img {
    width: 220px;
    height: auto;
}

.Footer_left ul {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top60);
    margin-top: var(--top30);
}

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

.Footer_right {
    width: max-content;
}

.Footer_right ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--top30);
}

.Footer_right ul li {
    width: 25px;
    position: relative;
}

.Footer_right ul li>img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.Footer_tan {
    width: max-content;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(209, 209, 209, 1);
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transform-origin: center bottom;
    padding: 10px;
}

.Footer_tan::after {
    content: "";
    width: 0px;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(255, 255, 255, 1);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.Footer_tan img {
    width: 120px;
    height: auto;
}

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

.Footer_right ul li:hover .Footer_tan {
    transform: translateX(-50%) scale(1);
}

.Beian {
    width: var(--max);
    margin: auto;
    border-top: 2px solid rgba(255, 255, 255, 1);
    margin-top: var(--top30);
    padding-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

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

.Banner_swiper {
    width: 100%;
}

.Banner_swiper img {
    width: 100%;
}

.next,
.prev {
    width: 24px;
    height: auto;
    background: transparent;
}

.next {
    right: calc((100% - var(--max)) / 2);
}

.prev {
    left: calc((100% - var(--max)) / 2);
}


.next svg,
.prev svg {
    width: 100%;
    height: auto;
    display: block;
}

.next svg:hover path,
.prev svg:hover path {
    fill: rgba(255, 255, 255, 1);
}

.pager1 {
    z-index: 55;
}

.pager1 .zhenshangyin-pager-bullets-bullet {
    width: 18px;
    height: 4px;
    opacity: 1;
    border-radius: 2px;
    background: rgba(216, 216, 216, 0.5);
}

.pager1 .zhenshangyin-pager-bullets-bullet.active {
    width: 32px;
    background: rgba(255, 255, 255, 1);
}

.Image_comparison_container {
    width: 100%;
    height: 90vh;
    position: relative;
}

.Image_comparison {
    width: 100%;
    height: 100%;
    position: relative;
}

.Image_before,
.Image_after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.Image_before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
}

.Image_after {
    z-index: 1;
}

.Image_before img,
.Image_after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* .Image_after img.blurred {
    filter: blur(8px);
    transform: scale(1.1);
} */

.Slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    z-index: 4;
    transform: translateX(-50%);
    transition: auto;
}

.Slider::after {
    content: "";
    width: 4px;
    height: 45%;
    background: rgba(255, 255, 255, 1);
    position: absolute;
    top: 0;
    left: 0;
}

.Slider::before {
    content: "";
    width: 4px;
    height: 45%;
    background: rgba(255, 255, 255, 1);
    position: absolute;
    bottom: 0;
    left: 0;
}

.Slider_handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    cursor: grab;
    transition: all 0.2s ease;
    z-index: 5;
}

.Slider_handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.1);
}

.Slider_handle svg {
    width: 100%;
    height: auto;
    display: block;
}

.Image_comparison_text {
    width: var(--max);
    position: absolute;
    bottom: 5vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 55;
}

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

.Image_comparison_text p {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: 15px
}

.Image_comparison_text a {
    width: max-content;
    display: block;
    line-height: 42px;
    border: 1px solid rgba(255, 255, 255, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top30);
    margin-top: var(--top30);
}

.Image_comparison_text a:hover {
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
}

.Fangan_max {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top20);
}

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

.Fangan_item h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: center;
}

.Fangan_item p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 5px;
}


.Fangan_swiper {
    width: 100%;
    aspect-ratio: 450/ 510;
    background: linear-gradient(184.2deg, rgba(255, 255, 255, 1) 0%, rgba(231, 231, 232, 1) 100%);
    margin-top: var(--top20);
}

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

.Fangan_swiper img {
    max-width: 70%;
    max-height: 60%;
    object-fit: contain;
}

.pager3 {
    justify-content: flex-start;
    padding: 0 var(--top20);
}

.pager3 .zhenshangyin-pager-bullets-bullet {
    width: 18px;
    height: 4px;
    opacity: 1;
    border-radius: 2px;
    background: rgba(216, 216, 216, 0.5);
}

.pager3 .zhenshangyin-pager-bullets-bullet.active {
    width: 32px;
    background: rgba(183, 183, 183, 1);
}


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

.Chanpinin p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
}

.Chanpinin_max {
    width: 100%;
    position: relative;
}

.Chanpinin_swiper {
    width: 100%;
    position: relative;
}

.Chanpinin_swiper::after {
    content: "";
    width: 100%;
    height: 25%;
    background: rgba(197, 0, 0, 1);
    position: absolute;
    bottom: 25%;
    left: 0;
    z-index: -1;
}

.Chanpinin_swiper::before {
    content: "";
    width: 30%;
    height: 4px;
    background: rgba(255, 255, 255, 1);
    position: absolute;
    bottom: 30%;
    left: 0;
    z-index: 1;
}
.Chanpinin_swiper ul{
    position: relative;
    z-index: 2;
}
.Chanpinin_swiper li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 6vw;
}

.Chanpinin_swiper li h3 {
    flex: 1;
    font-size: var(--size50);
    color: rgba(51, 51, 51, 1);
    font-weight: 900;
    line-height: 1;
    font-style: italic;
    transform: translateY(30%);
}

.Chanpinin_swiper li img {
    width: 35%;
    height: auto;
}

.next1,
.prev1 {
    width: 24px;
    height: auto;
    background: transparent;
}

.next1 {
    right: -100px;
}

.prev1 {
    left: -100px;
}


.next1 svg,
.prev1 svg {
    width: 100%;
    height: auto;
    display: block;
}

.next1 svg:hover path,
.prev1 svg:hover path {
    fill: rgba(51, 51, 51, 1);
}

.Keji>h2 {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
    text-align: center;
}

.Keji>p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
    text-align: center;
}

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

.Keji ul li {
    width: 100%;
}

.Keji ul li img {
    width: 80px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
    margin: auto;
}

.Keji ul li h3 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top50);
    border-bottom: 1px solid rgba(197, 0, 0, 1);
    padding-bottom: 15px;
    position: relative;
}

.Keji ul li h3::after {
    content: "";
    width: 60px;
    height: 3px;
    background: rgba(51, 51, 51, 1);
    border-radius: 3px;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.Keji ul li p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 15px;
}

.Lianxi>h2 {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
}

.Lianxi>p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
}

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

.Lianxi_max ul {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top50);
}

.Lianxi_max ul li {
    width: 100%;
}

.Lianxi_max ul li h3 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
}

.Lianxi_max ul li p {
    font-size: var(--size20);
    color: rgba(211, 0, 0, 1);
    margin-top: 10px;
}

.Lianxi_max form {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.Lianxi_form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--top20);
}

.Lianxi_form_item {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top20);
}

.Lianxi_form_item p {
    width: max-content;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    line-height: 60px;
}

.Lianxi_form_item input {
    flex: 1;
    height: 60px;
    border-radius: 10px;
    padding: 0 var(--top20);
    border: 1px solid rgba(151, 151, 151, 1);
    font-size: var(--size16);
    color: rgba(170, 170, 170, 1);
}

.Lianxi_form_item input:focus{
    border-color: rgba(210, 0, 0, 1);
    color: rgba(210, 0, 0, 1);
}

.Lianxi_form_item textarea {
    flex: 1;
    height: 120px;
    border-radius: 10px;
    padding: 10px var(--top20);
    border: 1px solid rgba(151, 151, 151, 1);
    font-size: var(--size16);
    color: rgba(170, 170, 170, 1);
    resize: none;
}

.Lianxi_form_item textarea:focus{
    border-color: rgba(210, 0, 0, 1);
    color: rgba(210, 0, 0, 1);
}

.Lianxi_form_submit {
    width: 80px;
}

.Lianxi_form_submit p {
    color: rgba(210, 0, 0, 1);
    font-size: var(--size24);
    font-weight: 900;
    line-height: 60px;
}

.Lianxi_form_submit button {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: rgba(210, 0, 0, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    cursor: pointer;
}
.Lianxi_form_submit button:hover{
    transform: translateY(-5px);
}

.Ditu {
    width: 100%;
    position: relative;
}

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

.Ditu_icon {
    width: 500px;
    max-width: 80%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 12px -6px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: var(--top20);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top30);
}

.Ditu_icon svg {
    width: 40px;
    height: auto;
}

.Ditu_text {
    flex: 1;
}

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

.Ditu_text p {
    font-size: var(--size16);
    color: rgba(119, 119, 119, 1);
    margin-top: 10px;
}

.Login_ {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.Login_.show {
    opacity: 1;
    visibility: visible;
}

.Login_max {
    width: 900px;
    max-width: 90%;
    background: rgba(248, 248, 248, 1);
    border-radius: var(--top20);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    padding: var(--top50) var(--top30);
    transition: transform 0.3s ease;
}

.Login_.show .Login_max {
    transform: translate(-50%, -50%) scale(1);
}

.Login_max>img {
    width: 450px;
    height: auto;
    margin: auto;
    max-width: 50%;
}

.Login_max form {
    width: 450px;
    max-width: 90%;
    margin: auto;
    margin-top: var(--top40);
}

.Login_form_phone {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    font-size: var(--size16);
    color: rgba(119, 119, 119, 1);
    padding: 0 var(--top20);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Login_form_phone p {
    width: max-content;
    line-height: 1;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
}

.Login_form_phone input {
    flex: 1;
    font-size: var(--size16);
    color: rgba(119, 119, 119, 1);
    border: none;
    outline: none;
    background: transparent;
    transition: all 0.2s ease;
}

.Login_form_phone input:focus {
    color: rgba(0, 0, 0, 1);
}

.Login_form_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin: var(--top20) 0;
}

.Login_form_item input {
    width: 60%;
    height: 60px;
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    font-size: var(--size16);
    color: rgba(119, 119, 119, 1);
    padding: 0 var(--top20);
    border: 2px solid transparent;
    outline: none;
    transition: all 0.2s ease;
}

.Login_form_item input:focus {
    border-color: rgba(0, 0, 0, 0.3);
    color: rgba(0, 0, 0, 1);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.Login_form_item button {
    flex: 1;
    height: 60px;
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    font-size: var(--size16);
    color: rgba(119, 119, 119, 1);
    text-align: center;
    border: 1px solid rgba(209, 209, 209, 1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.Login_form_item button:hover {
    background: rgba(240, 240, 240, 1);
    border-color: rgba(180, 180, 180, 1);
    transform: translateY(-1px);
}

#registerBtn {
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    border-radius: 15px;
    transition: all 0.2s ease;
}

#registerBtn:hover {
    background: rgba(30, 30, 30, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.Login_max>p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(191, 191, 191, 1);
    margin-top: var(--top20);
}

.Login_form_icon {
    width: 40px;
    margin: auto;
    cursor: pointer;
    margin-top: var(--top20);
}

.Login_form_icon svg {
    width: 100%;
    height: auto;
}

.Login_max label {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top20);
    cursor: pointer;
}
.Login_max label a{
    color: rgba(210, 0, 0, 1);
    cursor: pointer;
}
.Login_max label input {
    width: 16px;
    height: 16px;
}

.Close {
    width: 26px;
    position: absolute;
    top: var(--top30);
    right: var(--top30);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.Close:hover {
    transform: scale(1.1) rotate(90deg);
    opacity: 0.8;
}

.Close svg {
    width: 100%;
    height: auto;
    display: block;
}

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

.Search form {
    width: 730px;
    max-width: 100%;
    border-radius: 10px;
    margin: auto;
    border: 1px solid rgba(218, 217, 218, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: var(--top20);
}

.Search form input{
    flex: 1;
    font-size: var(--size16);
    color: rgba(189, 189, 191, 1);
}

.Search form button{
    width: 25px;
    cursor: pointer;
}

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



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

.Tuzhi_ce{
    width: max-content;
    position: absolute;
    left: -10%;
    top: 0;
}

.Tuzhi_ce h2{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
}

.Tuzhi_ce h2 svg{
    width: 16px;
    height: auto;
}

.Tuzhi_ce_list{
    padding-left: 26px;
}

.getSelect{
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
    cursor: pointer;
}

.getSelect.active{
    color: rgba(210, 0, 0, 1);
}

.Search ul li{
    width: 100%;
}

.Search ul li:hover{
    transform: translateY(-5px);
}

.Search ul li img{
    width: 100%;
    aspect-ratio: 340 / 240;
    object-fit: cover;
}
.Tuzhi_text{
    width: 100%;
    margin-top: var(--top20);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.Tuzhi_text a{
    width: 24px;
}

.Tuzhi_text a svg{
    width: 100%;
    height: auto;
}

.Search ul li p{
    font-size: var(--size14);
    color: rgba(119, 119, 119, 1);
    margin-top: 10px;
}


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

.pagination .page-item{
    font-size: 12px;
    padding: 8px 12px;
    color: rgb(165, 165, 165);
    border: 1px solid rgb(165, 165, 165);
    line-height: 1;
    border-radius: 8px;
}

.pagination .page-item.active {
    background: rgba(210, 0, 0, 1);
    border: 1px solid rgba(210, 0, 0, 1);
    color: #fff;
}


.Tuzhi_center{
    width: 730px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top30);
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top20);
}

.Tuzhi_center h2{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
}

.Tuzhi_center h2 svg{
    width: 16px;
    height: auto;
}

.Tuzhi_center_list{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.Tuzhi_center_list .getSelect{
    width: max-content;
    margin-top: 0px;
}


.Yinsi{
    width: 1200px;
    max-width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 1001;
    background: rgba(248, 248, 248, 1);
    border-radius: var(--top20);
    padding: var(--top50) var(--top30);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.Yinsi.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.Yinsi_top{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.Yinsi_top svg{
    width: 26px;
    height: auto;
    display: block;
    cursor: pointer;
}

.Yinsi_text{
    width: 100%;
    max-height: 60vh;
    margin-top: var(--top20);
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 1.8;
    overflow: auto;
    padding-right: 15px;
}
.Yinsi_text::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
}

.Yinsi_text::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(220, 220, 220, 1);
}

.Yinsi_text::-webkit-scrollbar-track {
    border-radius: 5px;
    background: rgba(242, 242, 242, 1);
}

.video_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video_modal_content {
    position: relative;
    max-width: 800px;
    width: 80%;
    overflow: hidden;
}

.video_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video_close_btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_close_btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

#adVideo{
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

#adVideo::-webkit-media-controls {
    display: flex !important;
}

#adVideo::-webkit-media-controls-play-button {
    display: none !important;
}

input[pseudo="-internal-media-controls-overflow-button"]
{
    display: none !important;
}

#adVideo::-webkit-media-controls-timeline {
    display: none !important;
}

#adVideo::-webkit-media-controls-current-time-display {
    display: none !important;
}

#adVideo::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

#adVideo::-webkit-media-controls-fullscreen-button {
    display: none !important;
}