: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: "Regular";
    src: url("../fonts/Regular.otf") format("truetype");
}

@font-face {
    font-family: "Medium";
    src: url("../fonts/Medium.otf") format("truetype");
}

@font-face {
    font-family: "Bold";
    src: url("../fonts/Bold.otf") format("truetype");
}

body {
    font-family: "Regular";
}

.Hertre {
    width: 100%;
    z-index: 999;
    height: 100px;
    position: relative;
    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: 230px;
    overflow: hidden;

}

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

.Hertre_cen form {
    width: 370px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #7b7b7b;
    padding: 0 var(--top20);
}

.Hertre_cen form input {
    width: calc(100% - 25px);
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
}

.Hertre_cen form input:focus {
    color: rgba(0, 129, 1, 1);
}

.Hertre_cen form button {
    width: 24px;
    height: 24px;
    background: transparent;
    border: transparent;
    cursor: pointer;
}

.Hertre_cen form button svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Nav {
    width: 100%;
    background: rgba(13, 98, 188, 1);
}

.Nav ul {
    width: var(--max);
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.Nav ul li {
    flex: 1;
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 60px;
    position: relative;
}

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


.Nav ul li.Nav_cen {

    background: rgba(0, 129, 1, 1);
    color: rgba(255, 255, 255, 1);
}

.Nav ul li:hover {

    background: rgba(0, 129, 1, 1);
    color: rgba(255, 255, 255, 1);
}


.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 {
    background: rgba(0, 129, 1, 1);
    color: rgba(255, 255, 255, 1);
}

.Nav_ul a.Nav_ul_Nav {
    background: rgba(0, 129, 1, 1);
    color: rgba(255, 255, 255, 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(0, 129, 1, 1);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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

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

.Banner_text h2 {
    font-size: var(--size30);
    color: rgba(13, 98, 188, 1);
    font-family: 'bold';
}

.Banner_text p {
    font-size: var(--size16);
    color: rgba(13, 98, 188, 1);
    font-family: 'Medium';
    line-height: 2;
    margin-top: 10px;
}

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

.Hover {
    overflow: hidden;
    position: relative;
}

.Hover::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    background: rgba(13, 98, 188, 1);
    z-index: 2;
    transition: 0.3s;
}

.Hover font {
    position: relative;
    z-index: 5;
}

.Hover:hover::after {
    width: 0%;
}

.Hovers {
    overflow: hidden;
    position: relative;
}

.Hovers::after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    background: rgba(13, 98, 188, 1);
    z-index: 2;
    transition: 0.3s;
}

.Hovers font {
    position: relative;
    z-index: 5;
}

.Hovers:hover::after {
    width: 100%;
}


.GuanyuIn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top50);
}

.GuanyuIn_text {
    flex: 1;
}

.GuanyuIn_text span {
    display: block;
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    font-family: 'Light';
}

.GuanyuIn_text h2 {
    font-size: var(--size36);
    color: rgba(0, 0, 0, 1);
    font-family: 'Bold';
}

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

.GuanyuIn_text a {
    width: 140px;
    line-height: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-size: var(--size18);
    border-radius: 30px;
    display: block;
    margin-top: var(--top40);
    border: 1px solid rgba(13, 98, 188, 1);
}

.GuanyuIn_text a:hover {
    color: rgba(13, 98, 188, 1);
}

.GuanyuIn_img {
    width: 40%;
}

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

.ChanpinIn {
    width: 100%;
    overflow: hidden;
    background: rgba(52, 119, 190, 1);
}

.ChanpinIn_max>h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgba(255, 255, 255, 1);
    font-family: 'Bold';
}

.ChanpinIn_max>p {
    text-align: center;
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
}

.ChanpinIn_cen {
    width: 100%;
    margin-top: var(--top50);
    position: relative;
}

.ChanpinIn_swiper {
    width: 100%;
}

.ChanpinIn_swiper li {
    width: 400px !important;
}

.ChanpinIn_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 13px 32px rgba(0, 0, 0, 0.14);
}

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

.ChanpinIn_img:hover img {
    transform: scale(1.1);
}

.ChanpinIn_swiper li h2 {
    width: 90%;
    margin: auto;
    margin-top: var(--top30);
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    padding: 10px;
    text-align: center;
    border-radius: 30px;
    transition: auto;
    border: 1px solid rgba(255, 255, 255, 1);
}

.prev,
.next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
}

.prev {
    left: -80px;
}

.next {
    right: -80px;
}

.prev:hover,
.next:hover {
    background: rgba(13, 98, 188, 1);
    border: 1px solid rgba(13, 98, 188, 1) !important;
}

.prev:hover path,
.next:hover path {
    fill: #ffffff;
}

.Guanyu {
    width: 100%;
    border-bottom: 1px solid rgba(75, 75, 75, 0.2);
}

.Guanyu ul {
    width: var(--max);
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.Guanyu ul li {
    width: max-content;
    position: relative;
    font-size: var(--size20);
    color: rgba(76, 76, 76, 1);
    line-height: 3;
}

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

.Guanyu ul li.active,
.Guanyu ul li:hover {
    color: rgba(0, 129, 1, 1);
}

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

.Guanyu_ul {
    width: 100%;
    border-bottom: 1px solid rgba(75, 75, 75, 0.2);
}

.Guanyu_ul ul {
    width: var(--max);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.Guanyu_ul ul li {
    width: max-content;
    font-size: var(--size18);
    color: rgba(157, 156, 156, 1);
    text-align: center;
    padding:  var(--top30) var(--top40);
    border-left: 1px solid rgba(75, 75, 75, 0.2);
}

.Guanyu_ul ul li:first-child {
    border-left: transparent;
}

.Guanyu_ul ul li a {
    display: block;
}

.Guanyu_ul ul li.active,
.Guanyu_ul ul li:hover {
    color: rgba(0, 129, 1, 1);
}

.Guanyu_zutu {
    border-top: 1px solid rgba(75, 75, 75, 0.5);
    padding-top: var(--top60);
}

.Guanyu_zutu ul {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top30);
}

.Guanyu_zutu ul li {
    width: 100%;
    cursor: pointer;
}

.Guanyu_zutu ul li img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

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

.Jiagou img {
    width: 100%;
    height: auto;
    margin-top: var(--top60);
}

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

.Wenhua ul li {
    width: 100%;
    overflow: hidden;
    background: rgba(231, 230, 230, 1);
}

.Wenhua ul li img {
    width: 100%;
    aspect-ratio: 260 / 210;
    object-fit: cover;
}

.Wenhua_text {
    width: 100%;
    padding: var(--top20);
}

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

.Wenhua_text p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(57, 57, 57, 1);
    margin-top: 10px;
    line-height: 1.5;
}

.Wenhua_img {
    border-top: 1px solid rgba(75, 75, 75, 0.5);
    padding-top: var(--top60);
}

.Wenhua_img img {
    width: 700px;
    max-width: 100%;
    margin: auto;
    height: auto;
}

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

.Rongyu>h2::after {
    content: "";
    width: 50px;
    height: 1px;
    background: rgba(75, 75, 75, 1);
    display: block;
    margin: auto;
    margin-top: 10px;
}

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

.Rongyu ul li {
    width: 100%;
    overflow: hidden;
    background: rgba(246, 246, 246, 1);
}

.Rongyu_img {
    width: 100%;
    aspect-ratio: 260 / 300;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Rongyu_img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    cursor: pointer;
}

.Rongyu ul li h2 {
    width: 100%;
    background: rgba(231, 230, 230, 1);
    text-align: center;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    padding: var(--top20) 10px;
}

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

.Guanli>h2::after {
    content: "";
    width: 50px;
    height: 1px;
    background: rgba(75, 75, 75, 1);
    display: block;
    margin: auto;
    margin-top: 10px;
}

.Guanli>p {
    width: max-content;
    max-width: 100%;
    margin: auto;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top20);
    line-height: 2;
}

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

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

.Guanli ul li img {
    width: 100%;
    height: auto;
}

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

.Tuandui>h2::after {
    content: "";
    width: 50px;
    height: 1px;
    background: rgba(75, 75, 75, 1);
    display: block;
    margin: auto;
    margin-top: 10px;
}

.Tuandui>p {
    width: max-content;
    max-width: 100%;
    margin: auto;
    text-align: center;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top20);
    line-height: 2;
}

.Tuandui_max {
    width: 100%;
    margin-top: var(--top50);
    position: relative;
}

.Tuandui_swiper ul li {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.Tuandui_swiper ul li img {
    width: 100%;
    aspect-ratio: 260 / 240;
    object-fit: cover;
}

.Tuandui_max .prev,
.Tuandui_max .next {
    border: 1px solid #000000;
}

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

.Kehu>h2::after {
    content: "";
    width: 50px;
    height: 1px;
    background: rgba(75, 75, 75, 1);
    display: block;
    margin: auto;
    margin-top: 10px;
}

.Kehu_swiper {
    width: 100%;
    margin-top: var(--top50);
    position: relative;
}

.Kehu_swiper ul li {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.Kehu_img {
    width: 100%;
    aspect-ratio: 260 / 80;
    background: rgba(246, 246, 246, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.Kehu_swiper {
    width: 100%;
}

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

.Zeren>h2::after {
    content: "";
    width: 50px;
    height: 1px;
    background: rgba(75, 75, 75, 1);
    display: block;
    margin: auto;
    margin-top: 10px;
}

.Zeren>p {
    width: max-content;
    max-width: 100%;
    margin: auto;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top20);
    line-height: 2;
    text-align: center;
}

.Zeren ul {
    width: 750px;
    max-width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top30);
    margin-top: var(--top50);
}

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

.Zeren ul li img {
    width: 100%;
    height: auto;
}

.Show {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top20);
}

.Show_left {
    width: 240px;
    border: 1px solid rgba(75, 75, 75, 1);
    padding: 15px;
}

.Show_left ul {
    width: 100%;
}

.Show_left ul li {
    width: 100%;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    padding: 5px 10px;
}

.Show_left ul li.active {
    background: rgba(13, 98, 188, 1);
    color: rgba(255, 255, 255, 1);
}

.Show_right {
    flex: 1;
}

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

.Show_right ul li {
    width: 100%;
    cursor: pointer;

}

.Show_right ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.Chanpin ul {
    width: 100%;
    max-width: 100%;
    margin: auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top20);
}

.Chanpin ul::after {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(215, 215, 215, 1);
    position: absolute;
    top: 100px;
    left: 0;
}

.Chanpin ul li {
    flex: 1;
    position: relative;
}

.Chanpin ul li::after {
    content: "";
    width: 10px;
    height: 10px;
    background: rgba(215, 215, 215, 1);
    position: absolute;
    top: 95px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.Chanpin ul li img {
    width: 70px;
    aspect-ratio: 105 / 115;
    object-fit: contain;
    margin: auto;
}

.Chanpin ul li h2 {
    text-align: center;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: 45px;
}

.Chanpin_item {
    width: 100%;
}

.Chanpin_item ul {
    width: 100%;
}

.Chanpin_item ul li {
    width: 100%;
    overflow: hidden;
}
.Chanpin_item ul li:nth-child(2n+1){
    background: rgba(242, 242, 242, 1);
}
.Chanpin_max {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top60);
}

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

.Chanpin_max img {
    width: 45%;
    object-fit: cover;
}

.Chanpin_text {
    flex: 1;
}

.Chanpin_text h2 {
    font-size: var(--size30);
    color: rgba(76, 76, 76, 1);
    border-left: 10px solid rgba(215, 215, 215, 1);
    padding-left: 10px;
    line-height: 1;
}

.Chanpin_text p {
    font-size: var(--size16);
    color: rgba(76, 76, 76, 1);
    line-height: 1.6;
    margin-top: var(--top40);
}

.Chanpin_text a {
    width: max-content;
    line-height: 36px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(95, 95, 95, 1);
    font-size: var(--size16);
    color: rgba(101, 101, 101, 1);
    padding: 0 10px;
    display: block;
    margin-top: var(--top80);
}
.Chanpin_text a:hover{
    background: rgba(13, 98, 188, 1);
    border: 1px solid rgba(13, 98, 188, 1);
    color: rgba(255, 255, 255, 1);
}


.Chanpin_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top60);
}

.Chanpin_left{
    width: 280px;
    background: rgba(244, 244, 244, 1);
    padding: var(--top40) var(--top30);
    position: sticky;
    top: 20px;
}
.Chanpin_left ul{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top40);
}
.Chanpin_left ul li{
    width: 100%;
}
.Chanpin_left ul li a{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top20);
}

.Chanpin_left ul li img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%);
}
.Chanpin_left ul li h2{
    flex: 1;
    font-size: var(--size20);
    color: rgba(75, 75, 75, 1);
}
.Chanpin_left ul li.active img{
    filter: grayscale(0%);
}
.Chanpin_left ul li.active h2{
    color: rgba(13, 98, 188, 1);
}
.Chanpin_right{
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top60);
}
.Chanpin_right_list{
    width: 100%;
}

.Chanpin_right_list>h2 {
    font-size: var(--size30);
    color: rgba(76, 76, 76, 1);
    border-left: 10px solid rgba(215, 215, 215, 1);
    padding-left: 10px;
    line-height: 1;
}

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

.Chanpin_right_list ul li{
    width: 100%;
}

.Chanpin_img{
    width: 100%;
    aspect-ratio: 320 / 250;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Chanpin_img img{
    width: 100%;
   height: 100%;
    object-fit: contain;
}
.Chanpin_right_list ul li p{
    text-align: center;
    font-size: var(--size16);
    color: rgba(76, 76, 76, 1);
    margin-top: 10px;
}

.Chanpin_show_top{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top60);
}

.Chanpin_show_img{
    width: 40%;
    background: rgba(247, 247, 247, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.Chanpin_show_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Chanpin_show_text{
    flex: 1;
}
.Chanpin_show_text h2{
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
}
.Chanpin_show_text p{
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
    margin-top: var(--top30);
}

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

.Chanpin_right_list ul li:hover .Chanpin_img img{
    transform: scale(1.1);
}

.Xinghao{
    width: 100%;
    margin-top: var(--top30);
}
.Xinghao>h2{
    font-size: var(--size30);
    color: rgba(0, 0, 0, 1);
}

.product_table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.product_model_table {
    width: 100%;
    border-collapse: collapse;
}
.product_model_table th, .product_model_table td {
    border: 2px solid #707070;
    padding: var(--top20) 10px;
    text-align: center;
    vertical-align: middle;
    font-size: var(--size16);
    color: #000000;
}
.product_model_table th {
    background-color: #f2f2f2;
}
.product_model_table_img{
    width: 100%;
    aspect-ratio: 250 / 130;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d7d7d7;
}
.product_model_table_img img {
    max-width: 80px;
    max-height: 80px;
}

.product_text{
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    font-size: var(--size16);
    color: #000000;
    line-height: 2;
}
.image_preview_link {
    color: #000000;
    font-size: var(--size14);
    text-align: center;
    cursor: pointer;
    padding: 10px 0;
    display: block;
    background: #f2f2f2;
}

.product_model_table th:nth-child(5),
.product_model_table td:nth-child(4) {
    width: 20%;
}


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

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

.page .active {
    background: rgba(13, 98, 188, 1);
    border: 1px solid rgba(13, 98, 188, 1);
    color: #fff;
}

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

.Footer {
    width: 100%;
    overflow: hidden;
    background: #242424;
}

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

.Footer_max_img{
    width: 90px;
}

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

.Footer_cen{
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top30);
}

.Footer_cen_item{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top20);
}
.Footer_cen_item p{
    font-size: var(--size16);
    color: #ffffff;
    line-height: 1.6;
    
    display: flex
;
    align-content: center;
    align-items: center;
}

.Footer_right{
    width: 190px;
}
.Footer_right h2{
    font-size: 18px;
    color: #ffffff;
}
.Footer_right ul{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 20px;
}
.Footer_right ul li{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Footer_right ul li img{
    width: 60px;
    height: auto;
    object-fit: contain;
}
.Footer_right ul li h3{
    font-size: var(--size18);
    color: #ffffff;
}

.Beian {
    width: 100%;
    overflow: hidden;
    background: #000000;
}

.Beian_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top20) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--top50);
    font-size: var(--size16);
    color: #ffffff;
}

.Beian_max p {
    font-size: var(--size16);
    color: #ffffff;
    margin: 0 5px;
}