:root {
    --max: 1440px;
    --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: "R";
    src: url("../fonts/Regular.otf") format("truetype");
}

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

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

body {
    font-family: "R";
    background: rgba(245, 245, 245, 1);
}

.Hertre {
    width: 100%;
    z-index: 999;
    position: relative;
    background: rgba(255, 255, 255, 1);
}

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

.Logo {
    width: 100px;
    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;
}

.Nav ul li {
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 100px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    transition: auto;
    padding: 0 var(--top30);
}

.Nav ul li a {
    display: block;
    position: relative;
    z-index: 5;
}

.Nav ul li svg {
    width: 16px;
    height: 16px;
    fill: #000000;
    position: relative;
    z-index: 5;
    transform: rotate(90deg);
}

.Nav ul li:hover svg {
    transform: rotate(-90deg);
    fill: rgb(255, 255, 255);
}

.Nav ul li.active svg {
    fill: rgba(1, 169, 74, 1);
}

.Nav ul li.active {
    color: rgba(1, 169, 74, 1);
}

.Nav ul li:hover {
    color: rgb(248, 248, 248);
}

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

.Nav ul li.active::after {
    height: 2px;
}

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

.Nav_ul {
    width: max-content;
    background: #ffffff;
    position: absolute;
    overflow: hidden;
    top: 100%;
    transition: auto;
    left: 0%;
    box-shadow: 0px 0px 10px 5px #00000010;
    display: none;
}

.Nav_ul_cen {
    width: 100%;
    padding: 10px 20px;
}

.Nav_ul a {
    color: rgba(102, 102, 102, 1);
    display: block;
    text-align: left;
    line-height: 1;
    font-size: var(--size16);
    border-bottom: 1px solid rgba(245, 245, 245, 1);
    padding: 15px 0;
    padding-right: 5vw;
}

.Nav_ul a:hover {
    color: rgba(1, 169, 74, 1);
}

.Nav_ul a.active {
    color: rgba(1, 169, 74, 1);
}

.Nav_ul_a {
    width: 100%;
}

.Nav_ul_a a {
    display: block;
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    border-bottom: none;
    padding: 7px 0;
    padding-left: 15px;
}

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

.Hertre_tel {
    width: max-content;
}

.Hertre_tel h2 {
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    text-align: right;
}

.Hertre_tel p {
    font-size: var(--size36);
    color: rgba(1, 169, 74, 1);
    line-height: 1;
}

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

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: rgba(1, 169, 74, 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: var(--max);
    overflow: hidden;
    position: relative;
    margin: auto;
    border-radius: 10px;
}

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

.Banner_text {
    width: max-content;
    max-width: 100%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    padding-left: var(--top40);
}

.Banner_text h2 {
    font-size: var(--size46);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    font-family: "B";
}

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

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

.Mianbao {
    width: var(--max);
    margin: var(--top30) auto;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}


.Zixun {
    width: var(--max);
    margin: 20px auto;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.Zixun ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.Zixun ul li {
    width: max-content;
    padding: 0 var(--top30);
    line-height: 60px;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
}

.Zixun ul li.active {
    background: rgba(1, 169, 74, 1);
    color: rgba(255, 255, 255, 1);
}

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

.Zixun_list_left {
    flex: 1;
}

.Zixun_list_left ul {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(245, 245, 245, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 5px 25px;
}

.Zixun_list_left ul li {
    width: 100%;
    border-bottom: 1px solid rgba(204, 204, 204, 1);
    padding: var(--top20) 0;
    position: relative;
}

.Zixun_list_left ul li::after {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 5;
    background: rgba(1, 169, 74, 1);
    transition: 0.3s;
}

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

.Zixun_list_left ul li span {
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    display: block;
    margin-top: 10px;
}

.Zixun_list_left ul li p {
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    margin-top: 10px;
}

.Zixun_list_left ul li:last-child {
    border-bottom: none;
}

.Zixun_list_left ul li:hover h2 {
    color: rgba(1, 169, 74, 1);
}

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

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

.page .active,
.page .total {
    font-size: var(--size14);
    padding: 10px 12px;
    border-radius: 5px;
    color: rgba(1, 169, 74, 1);
    border: 1px solid rgba(1, 169, 74, 1);
    line-height: 1;
    background: transparent;
}

.page .active {
    background: rgba(1, 169, 74, 1);
    border: 1px solid rgba(1, 169, 74, 1);
    color: rgba(255, 255, 255, 1);
}

.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: rgba(1, 169, 74, 1);
    border: 1px solid rgba(1, 169, 74, 1);
    background: transparent;
}

.Zixun_list_right {
    width: 350px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.Map {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.Map img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.Map h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(102, 102, 102, 1);
    line-height: 1;
    margin-top: var(--top20);
}

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

.Map a {
    width: max-content;
    display: block;
    max-width: 100%;
    padding: 0 30px;
    line-height: 44px;
    background: rgba(1, 169, 74, 1);
    margin: 15px auto;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    border-radius: 5px;
}

.Guanzhu {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.Guanzhu h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-family: 'M';
}

.Guanzhu ul {
    width: 100%;
    margin-top: 10px;
}

.Guanzhu ul li {
    width: 100%;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    border-bottom: 1px solid rgba(240, 240, 241, 1);
    padding: 10px 0;
}

.Guanzhu ul li:hover {
    color: rgba(1, 169, 74, 1);
}

.Tu {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

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

.Banner_Guan p {
    font-family: 'B';
}

.Guanyu {
    width: var(--max);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    margin: var(--top30) auto;
    padding: var(--top30) var(--top20);
    background: url(../images/beijing1.png) no-repeat right bottom / 50% auto;
}


.Guanyu>p {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    line-height: 1.5;
    margin-top: var(--top30);
}

.Guanyu_Text {
    width: 880px;
    max-width: 100%;
    margin-top: 25px;
}

.Guanyu_Text>h2 {
    font-size: var(--size20);
    color: rgba(1, 169, 74, 1);
    font-family: 'M';
}

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

.Guanyu_Text ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top20);
}

.Guanyu_Text ul li svg {
    width: 28px;
    height: auto;
}

.Mixnuiu_Itme {
    flex: 1;
}

.Mixnuiu_Itme h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    font-family: 'M';
}

.Mixnuiu_Itme p {
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    line-height: 1.5;
    margin-top: 5px;
}

.Banner_Guwen {
    width: 100%;
    text-align: center;
}

.Guwen {
    width: var(--max);
    margin: var(--top30) auto;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: var(--top30);
}

.Youshi ul {
    width: 100%;
}

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

.Youshi ul li {
    width: 100%;
}

.Youshi ul li span {
    font-size: var(--size46);
    color: rgba(1, 169, 74, 1);
    text-align: center;
    display: block;
    font-family: 'M';
}

.Youshi ul li h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(1, 169, 74, 1);
    margin-top: 5px;
}

.Youshi ul li p {
    font-size: var(--size18);
    color: rgba(153, 153, 153, 1);
    text-align: center;
    margin-top: 5px;
}


.Guwen_Max {
    width: 100%;
    margin-top: var(--top60);
}

.Title {
    width: 100%;
}

.Title>h2 {
    width: 100%;
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--top20);
    font-family: 'M';
}

.Title>h2::after,
.Title>h2::before {
    content: "";
    width: 60px;
    height: 2px;
    background: rgba(51, 51, 51, 1);
    display: block;
}

.Title>span {
    display: block;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
    text-align: center;
}

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

.Guwen_Max ul li {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(245, 245, 245, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Guwen_Img {
    width: 40%;
    position: relative;
}

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

.Guwen_Img p {
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    line-height: 1.2;
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: "B";
}

.Guwen_Text {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

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

.Guwen_Top h2 {
    width: max-content;
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
}

.Guwen_Top p {
    width: max-content;
    line-height: 28px;
    background: rgba(204, 204, 204, 1);
    border-radius: 28px;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    padding: 0 10px;
}

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

.Guwen_Cen_Litm {
    width: 100%;
}

.Guwen_Cen_Litm h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-family: 'B';
}

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

.Guwen_Cen_Litm span {
    color: rgba(212, 48, 48, 1);
}

.Guwen_Text>a {
    width: 190px;
    max-width: 100%;
    text-align: center;
    display: block;
    line-height: 42px;
    border-radius: 5px;
    background: rgba(1, 169, 74, 1);
    margin-top: var(--top30);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
}

.Yiduiyi {
    width: var(--max);
    margin: var(--top30) auto var(--top60);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: var(--top50) var(--top20);
}


.Show {
    flex: 1;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(245, 245, 245, 1);
    padding: var(--top30);
}

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

.Show>p {
    font-size: var(--size14);
    color: #888888;
    text-align: center;
    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;
}

.Preva {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.Preva a {
    width: max-content;
    max-width: 48%;
    display: block;
    font-size: var(--size14);
    color: #000000;
}



.Cebianlan {
    width: 90px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(247, 247, 247, 1);
    right: 0px;
    z-index: 999;
}

.Cebianlan ul {
    width: 100%;
}

.Cebianlan ul li {
    width: 100%;
    aspect-ratio: 4 / 4;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.Cebianlan ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.Cebianlan ul li svg {
    width: 30px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.Cebianlan ul li h2 {
    width: 100%;
    margin-top: 8px;
    font-size: var(--size14);
    text-align: center;
    color: rgba(102, 102, 102, 1);
}

.Mixnuiu {
    width: max-content;
    overflow: hidden;
    background: #ffffff;
    position: absolute;
    top: 50%;
    right: 100%;
    box-shadow: 0px 4px 10px 0px #00000020;
    transform: translateY(-50%) scale(0);
    padding: 10px;
    border-radius: 10px;
    transform-origin: right center;

}

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

.Cebianlan ul li:hover .Mixnuiu {
    transform: translateY(-50%) scale(1);
}

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

.Cebianlan ul li:hover,
.Cebianlan ul li:last-child {
    background: rgba(1, 169, 74, 1);
}

.Cebianlan ul li:hover h2,
.Cebianlan ul li:last-child h2 {
    color: #ffffff;
}

.Erweima {
    width: max-content;
    max-width: 95%;
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #ffffff;
    padding: var(--top30);
    box-shadow: 0px 4px 10px 0px #00000020;
}

.Erweima p {
    text-align: center;
    font-size: var(--size20);
    color: #000000;
    font-family: 'B';
}

.Erweima img {
    width: 200px;
    height: auto;
    margin: auto;
    margin-top: var(--top20);
}

.Mixnuiu_tel {
    padding: 0;
    border-radius: 0px;
}

.Mixnuiu_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: rgba(91, 161, 114, 1);
    padding: var(--top20) var(--top30);
    gap: var(--top20);
}

.Mixnuiu_text {
    flex: 1;
}

.Mixnuiu_text h3 {
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    text-align: left;
}

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


.Mixnuiu_item svg {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.Mixnuiu_item:nth-child(2) {
    background: rgba(98, 192, 150, 1);
}


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

.Lingyuan_left {
    flex: 1;
}

.Lingyuan_Shai {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    padding: var(--top30);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
}

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


.Lingyuan_Item p {
    width: max-content;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    font-family: "M";
}

.Lingyuan_Item ul {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.Lingyuan_Item ul li {
    width: 100%;
    text-align: center;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    cursor: pointer;
}

.Lingyuan_Item ul li.active {
    color: rgba(1, 169, 74, 1);
}

.Lingyuan_List {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    margin-top: var(--top20);
    padding-bottom: var(--top50);
}

.Lingyuan_List ul {
    width: 100%;
}

.Lingyuan_List ul li {
    width: 100%;
    border-bottom: 1px solid rgba(230, 230, 230, 1);
    padding: var(--top30);
}

.Lingyuan_List ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top20);
}

.Lingyuan_List ul li a>img {
    width: 25%;
    height: auto;
    border-radius: 10px;
}

.Lingyuan_List_right {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--top20);
}

.Lingyuan_List_text {
    flex: 1;
}

.Lingyuan_List_text h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top20);
}

.Lingyuan_List_text h2 p {
    width: max-content;
    background: linear-gradient(180deg, rgba(1, 170, 69, 1) 0%, rgba(5, 172, 75, 1) 0%, rgba(95, 216, 207, 1) 100%);
    line-height: 22px;
    font-size: var(--size14);
    color: rgba(252, 252, 252, 1);
    padding: 0 6px;
    border-radius: 3px;
}

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

.Lingyuan_text img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

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

.Lingyuan_text p span {
    color: rgba(255, 195, 0, 1);
    margin-left: 10px;
}

.Zixun_tese {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.Zixun_tese p {
    width: max-content;
    line-height: 28px;
    border-radius: 2px;
    background: rgba(239, 239, 236, 1);
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    padding: 0 10px;
}

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

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

.Zixun_tedian_Item {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 2px;
    background: rgba(191, 169, 119, 1);
    line-height: 28px;
    padding: 0 10px;
    gap: 5px;
}

.Zixun_tedian_Item img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

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

.Lingyuan_List_right>p {
    width: max-content;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

.Lingyuan_List_right>p span {
    font-size: var(--size36);
    color: rgba(1, 169, 74, 1);
    line-height: 1;
}

.Guan {
    width: var(--max);
    margin: var(--top60) auto;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(245, 245, 245, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: var(--top20);
}

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

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

.Guan ul li img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

.Guan ul li p {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    margin: 5px auto 15px;
}


.Guan ul li p svg {
    width: 12px;
    height: auto;
}


.Lingyuan_right {
    width: 350px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}



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

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

.Rongyu {
    width: var(--max);
    margin: var(--top30) auto;
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: var(--top30);
}

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

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

.Rongyu ul li img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.Rongyu ul li h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    padding: 15px;
}

.Shiti {
    margin: var(--top30) auto var(--top60);
}

.Tuijian {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.Tuijian h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-family: 'M';
}

.Tuijian ul {
    width: 100%;
}

.Tuijian ul li {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(236, 236, 236, 1);
}

.Tuijian ul li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.Tuijian ul li img {
    width: 45%;
    object-fit: cover;
    border-radius: 10px;
}

.Tuijian_text {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Tuijian_text h2 {
    width: 100%;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Tuijian_text>span {
    display: block;
    width: 100%;
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    margin: 5px 0;
}

.Tuijian_text p {
    width: 100%;
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
}

.Tuijian_text p span {
    font-size: var(--size18);
    color: rgba(1, 169, 74, 1);
}

.Banner_tese h2,
.Banner_tese p {
    color: rgba(51, 51, 51, 1);
}

.Rese {
    width: var(--max);
    margin: var(--top30) auto var(--top60);
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(245, 245, 245, 1);
    padding: var(--top30);
}

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

.Rese ul li {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(245, 245, 245, 1);
    border-radius: 15px;
}

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

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

.Rese_text h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Rese_text h2 p {
    width: max-content;
    background: linear-gradient(180deg, rgba(1, 170, 69, 1) 0%, rgba(5, 172, 75, 1) 0%, rgba(95, 216, 207, 1) 100%);
    line-height: 22px;
    font-size: var(--size14);
    color: rgba(252, 252, 252, 1);
    padding: 0 6px;
    border-radius: 3px;
}

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

.Rese_p {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 15px;
}

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

.Rese_p p span {
    font-size: var(--size24);
    color: rgba(255, 141, 26, 1);
}

.Banner_yongpin {
    width: 100%;
    padding: 0;
}

.Banner_yongpin h2,
.Banner_yongpin p {
    text-align: center;
    color: #000000;
}

.Yongpin {
    width: var(--max);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    margin: var(--top30) auto var(--top60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 15px;
}

.Yongpin_left {
    width: 260px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.Yongpin_litm_box {
    width: 100%;
    background: rgba(78, 63, 45, 1);
    padding: 20px 25px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.Yongpin_litm {
    width: 100%;
    border-bottom: 1px solid rgba(245, 245, 245, 0.3);
    padding: 8px 0;
}

.Yongpin_litm_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.Yongpin_litm_top:hover {
    opacity: 0.8;
}

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

.Yongpin_litm_top svg {
    width: 7px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.Yongpin_litm ul {
    width: 100%;
    margin-top: 10px;
    display: none;
    transition: auto;

}

.Yongpin_litm.expanded ul {
    display: block;
}

.Yongpin_litm.expanded .Yongpin_litm_top svg {
    transform: rotate(-90deg);
}

.Yongpin_litm ul li {
    width: 100%;
}

.Yongpin_litm ul li a {
    width: max-content;
    max-width: 100%;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 32px;
    border-radius: 28px;
    text-align: center;
    padding: 0 15px;
    display: block;
}

.Yongpin_litm ul li.active a {
    background: rgba(1, 169, 74, 1);
    color: rgb(255, 255, 255);
}

.Yongpin_right {
    flex: 1;
    padding: var(--top30);
}

.Yongpin_right ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top20);
}

.Yongpin_right ul li {
    width: 100%;
    border: 1px solid rgba(245, 245, 246, 1);
    padding: 15px;
}

.Yongpin_right ul li img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
}

.Yongpin_right ul li h2 {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
}

.Yongpin_right ul li p {
    font-size: var(--size20);
    color: rgba(212, 48, 48, 1);
    margin-top: 10px;
    font-family: 'B';
}

.Banche {
    width: var(--max);
    margin: var(--top30) auto var(--top60);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

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

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

.Banche ul li img {
    width: 48%;
    object-fit: cover;
}


.Banche_text {
    flex: 1;
    padding: var(--top50);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Banche_text h2 {
    width: 100%;
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-family: 'B';
}

.Banche_p {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0;
}

.Banche_p p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    background: url(../images/dui.png) no-repeat left center / var(--size20) auto;
    padding-left: 30px;
}

.Banche_text a {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    background: rgba(1, 169, 74, 1);
    line-height: 60px;
    border-radius: 10px;
    padding: 0 var(--top30);
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Banche_text a svg {
    width: 20px;
    height: auto;
}

.Banche ul li:nth-child(2n) {
    flex-direction: row-reverse;
}


.Liucheng {
    width: var(--max);
    margin: var(--top30) auto var(--top60);
    background: rgba(255, 255, 255, 1) url(../images/niao.png) no-repeat left top / 150px auto;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: var(--top30);
    position: relative;
}

.Liucheng>p {
    width: 1000px;
    max-width: 100%;
    margin: auto;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 25px;
}

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

.Liucheng ul::after {
    content: "";
    width: 1px;
    height: 100%;
    background: rgba(204, 204, 204, 1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.Liucheng ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    padding-top: 60px;
}

.Liucheng_n {
    width: 50px;
    height: 50px;
    opacity: 1;
    background: rgba(1, 169, 74, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 5;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Liucheng_text,
.Liucheng_img {
    flex: 1;
}

.Liucheng_img img {
    width: 460px;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.Liucheng_text h2 {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
    font-family: 'B';
}

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

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

.Liucheng_span span {
    display: block;
    width: max-content;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    line-height: 1.6;
}

.Liucheng_span p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    line-height: 1.6;
}

.Liucheng ul li:nth-child(2n) {
    flex-direction: row-reverse;
}

.Youhui {
    width: var(--max);
    margin: var(--top30) auto var(--top60);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: var(--top30);
}

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

.Youhui ul li {
    width: 100%;
}

.Youhui ul li img {
    width: 100%;
    aspect-ratio: 640 / 370;
    ;
    object-fit: cover;
    border-radius: 15px;
}

.Youhui_text {
    width: 100%;
    margin-top: 15px;
}

.Youhui_text h2 {
    font-size: var(--size24);
    color: rgba(1, 169, 74, 1);
    font-family: 'B';
}

.Youhui_p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    margin: 10px auto;
}

.Youhui_p p {
    font-size: var(--size20);
    font-family: 'B';
}

.Youhui_text a {
    width: max-content;
    line-height: 56px;
    background: rgba(212, 48, 48, 1);
    display: block;
    padding: 0 var(--top40);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
}

.Youhui ul li:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-column: 2 span;
    gap: var(--top30);
}

.Youhui ul li:nth-child(1) img {
    width: calc(50% - 15px);
}

.Youhui ul li:nth-child(1) .Youhui_text {
    flex: 1;
}

.Youhui ul li:nth-child(1) .Youhui_text h2 {
    color: rgba(102, 102, 102, 1);
}

.Banner_Ping {
    width: max-content;
    max-width: 90%;
    padding: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Banner_Ping span {
    display: block;
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    margin-bottom: var(--top30);
}

.Banner_Ping h2,
.Banner_Ping p {
    text-align: left;
    color: rgba(51, 51, 51, 1);
    font-family: "M";
}

.Pingjia {
    width: var(--max);
    margin: var(--top30) auto;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(245, 245, 245, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: var(--top30);
}

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

.Pingjia ul li {
    width: 100%;
    padding: var(--top20);
    border: 1px solid rgba(229, 229, 229, 1);
}

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

.Pingjia_title img {
    width: 32px;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    border-radius: 50%;
}

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

.Pingjia_title p {
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    margin-left: auto;
}

.Pingjia ul li>p {
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    line-height: 1.6;
    margin-top: 10px;
}

.Pingjia_img {
    width: 100%;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}

.Pingjia_img img {
    width: 100%;
    aspect-ratio: 120 / 80;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.Ban_Liucheng {
    width: var(--max);
    margin: var(--top30) auto;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: var(--top30);
}

.Ban_Liucheng ul {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    justify-content: space-between;
}

.Ban_Liucheng ul li {
    flex: 1;
}

.Ban_Liucheng ul li img {
    width: 70px;
    max-width: 80%;
    height: auto;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    border-radius: 50%;
    margin: auto;
}

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

.Ban_Liucheng ul li p {
    text-align: center;
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    margin-top: 5px;
}

.Jiege {
    width: var(--max);
    margin: var(--top30) auto;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: var(--top30);
}

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

.Jiege_max h2 {
    width: max-content;
    line-height: 60px;
    background: rgba(1, 169, 74, 1);
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top50);
}

.Jiege_max p {
    flex: 1;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(240, 240, 241, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: var(--top20);
    font-size: var(--size18);
    color: rgba(102, 102, 102, 1);
    line-height: 2;
}


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

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

.Liucheng_fuwu ul li {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

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

.Zhuanyuan {
    width: var(--max);
    margin: var(--top30) auto;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: var(--top30);
}


.Swiper {
    width: 100%;
    margin-top: var(--top50);
}

.Swiper_img {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.Swiper_img img {
    width: 100%;
    aspect-ratio: 210 / 260;
}

.Swiper_img p {
    width: max-content;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    text-align: right;
}

.Swiper_img p span {
    display: block;
    font-size: var(--size46);
    line-height: 1;
}

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

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

.pager1 {
    position: static;
    inset: 0;
    transform: translate(0%, 0%);
    margin-top: var(--top30);
}

.pager1 .zhenshangyin-pager-bullets-bullet {
    width: 12px;
    height: 12px;
    background: rgba(204, 204, 204, 1);
    border-radius: 50%;
}

.pager1 .zhenshangyin-pager-bullets-bullet.active {
    background: rgba(1, 169, 74, 1);
}

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

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

.Liucheng_Yongpin ul li {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    padding: 25px 20px;
}

.Liucheng_Yongpin ul li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

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

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

.Liucheng_guan {
    width: var(--max);
    margin: var(--top30) auto;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(245, 245, 245, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: var(--top30);
}

.Liucheng_guan>a {
    width: max-content;
    display: block;
    margin: auto;
    margin-top: var(--top30);
    font-size: var(--size16);
    color: rgba(1, 169, 74, 1);
    line-height: 44px;
    padding: 0 var(--top30);
    border: 1px solid rgba(1, 169, 74, 1);
}

.Liucheng_guan>a:hover {
    background: rgba(1, 169, 74, 1);
    color: #ffffff;
}

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

.Yongpin_show_img {
    width: 45%;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(245, 245, 246, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    aspect-ratio: 4 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.Yongpin_show_text {
    flex: 1;
}

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

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

.Yongpin_show_text>p span {
    font-size: var(--size24);
    color: rgba(212, 48, 48, 1);
    font-family: 'B';
}

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

.Yongpin_show_text>ul li {
    width: 100%;
}

.Yongpin_show_text>ul li svg {
    width: 100%;
    height: auto;
}

.Yongpin_show_text_text {
    width: 100%;
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
    margin-top: var(--top30);
    line-height: 2;
}

.Moxing_show {
    width: var(--max);
    margin: var(--top30) auto;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(245, 245, 245, 1);
    padding: var(--top30);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top30);
}

.Moxing_show_img {
    width: 40%;
}

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

.Moxing_show_right {
    flex: 1;
}

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

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

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

.Moxing_show_title>p span {
    font-size: var(--size36);
    color: rgba(1, 169, 74, 1);
    line-height: 1;
}

.Suoshu {
    width: max-content;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
}

.Suoshu span {
    color: rgba(1, 169, 74, 1);
}

.Moxing_show_ji {
    width: 100%;
    border-top: 1px solid rgba(204, 204, 204, 1);
    margin-top: var(--top20);
    padding-top: var(--top20);
}

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

.Moxing_show_ji ul li {
    width: 100%;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.Moxing_show_zixun {
    width: 100%;
    border-radius: 10px;
    margin-top: var(--top30);
    background: rgba(240, 240, 240, 1);
    padding: var(--top20);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top40);
}

.Moxing_tel {
    width: max-content;
}

.Moxing_tel_top {
    width: 100%;
    height: 52px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
}

.Moxing_tel_top svg {
    width: 24px;
    height: auto;
    display: block;
}


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

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

.Moxing_show_zixun ul li {
    width: 100%;
}

.Moxing_show_zixun ul li a {
    width: 100%;
    line-height: 52px;
    background: rgba(212, 48, 48, 1);
    border-radius: 5px;
    text-align: center;
    font-size: var(--size16);
    display: block;
    color: rgba(255, 255, 255, 1);
}

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

.Moxing_show_zixun ul li p span {
    color: rgba(212, 48, 48, 1);
}

.Moxing_show_zixun ul li:nth-child(1) a {
    background: rgba(1, 169, 74, 1);
}

.Tesefuwu {
    width: 100%;
    margin-top: var(--top30);
}

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

.Tesefuwu_title::after {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(229, 229, 229, 1);
    ;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.Tesefuwu_title h2 {
    width: max-content;
    margin: auto;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    background: rgba(255, 255, 255, 1);
    line-height: 30px;
    border-radius: 30px;
    border: 1px solid rgba(229, 229, 229, 1);
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.Tesefuwu ul {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.Tesefuwu ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Tesefuwu ul li h2 {
    width: max-content;
    line-height: 26px;
    background: rgba(1, 169, 74, 1);
    border-radius: 5px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 8px;
}

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

.Rongyu_text {
    width: 100%;
    margin-top: var(--top50);
    font-size: var(--size14);
    color: #000000;
    line-height: 2;
}

.Rongyu_text img {
    max-width: 100%;
    height: auto;
    margin: auto;
}

.Xiangguan {
    width: var(--max);
    margin: var(--top30) auto var(--top60);
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: var(--top50);
}

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

.Xiangguan ul li {
    width: 100%;
    border: 1px solid rgba(229, 229, 229, 1);
}

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

.Xiangguan ul li img {
    width: 50%;
    height: auto;
    height: 160px;
    object-fit: cover;
}

.Xiangguan_text {
    flex: 1;
    padding: 15px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Xiangguan_text h2 {
    width: 100%;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Xiangguan_text p {
    width: 100%;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: 5px;
}

.Xiangguan_jine {
    width: 100%;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}

.Xiangguan_jine span {
    font-size: 24px;
    color: rgba(1, 169, 74, 1);
}

.Xiangguan_text>span {
    display: block;
    width: max-content;
    line-height: 30px;
    background: rgba(204, 177, 110, 1);
    padding: 0 10px;
    border-radius: 5px;
    font-size: var(--size14);
    color: #fff;
    margin-top: 5px;
}

.Xiangguan_yuyue {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--top50);
}

.Xiangguan_yuyue a {
    width: 230px;
    display: block;
    line-height: 52px;
    border-radius: 5px;
    text-align: center;
    background: rgba(1, 169, 74, 1);
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
}

.Xiangguan_yuyue a:nth-child(1) {
    background: rgba(212, 48, 48, 1);
}

.Banner_swiper {
    width: 100%;
}

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

.Bai {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}


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

.Fuwuyi>h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 1;
    background: linear-gradient(180deg, rgba(1, 169, 74, 1) 0%, rgba(95, 216, 207, 1) 100%);
    color: transparent;
    -webkit-background-clip: text;
}


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

.Fuwuyi ul li {
    width: 100%;
    border: 1px solid rgba(245, 245, 245, 1);
    padding: var(--top50);
}

.Fuwuyi ul li img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin: auto;
}

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

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

.Fuwuyi_index ul {
    margin: 0;
}



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

.Muxing>h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 1;
    background: linear-gradient(180deg, rgba(1, 169, 74, 1) 0%, rgba(95, 216, 207, 1) 100%);
    color: transparent;
    -webkit-background-clip: text;
}

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

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

.Muxing ul li {
    width: 100%;
    border: 1px solid rgba(229, 229, 229, 1);
}

.Muxing ul li img {
    width: 100%;
    aspect-ratio: 340 / 200;
    object-fit: cover;
}

.Muxing_text {
    width: 100%;
    padding: 15px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Muxing_text h2 {
    width: 100%;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Muxing_text p {
    width: 100%;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    margin-top: 8px;
}

.Muxing_jine {
    width: 100%;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    margin-top: 5px;
}

.Muxing_jine span {
    font-size: 24px;
    color: rgba(255, 141, 26, 1);
}

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

.Jieshao>h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 1;
    background: linear-gradient(180deg, rgba(1, 169, 74, 1) 0%, rgba(95, 216, 207, 1) 100%);
    color: transparent;
    -webkit-background-clip: text;
}

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

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

.Jieshao_max img {
    width: 48%;
    height: auto;
}

.Jieshao_max p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    line-height: 2;
    text-indent: 2em;

}

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

.Jieshao ul li {
    width: 100%;
}

.Jieshao ul li img {
    width: 100%;
    aspect-ratio: 340 / 250;
    object-fit: cover;
    cursor: pointer;
}

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

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

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

.Liuchengyi>h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 1;
    background: linear-gradient(180deg, rgba(1, 169, 74, 1) 0%, rgba(95, 216, 207, 1) 100%);
    color: transparent;
    -webkit-background-clip: text;
}

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

.Liuchengyi ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: var(--top50);
    position: relative;
    gap: 10px;
}

.Liuchengyi ul::after {
    content: "";
    width: 100%;
    border-top: 1px dashed rgba(207, 207, 207, 1);
    position: absolute;
    top: 30px;
    left: 0;
}

.Liuchengyi ul li {
    flex: 1;
    position: relative;
    z-index: 5;
}

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

.Liuchengyi ul li span {
    width: 28px;
    height: 28px;
    background: rgba(67, 207, 124, 1);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -14px;
    position: relative;
    z-index: 5;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    border-radius: 50%;
}

.Liuchengyi ul li h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
}

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

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

.Dongtai>h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 1;
    background: linear-gradient(180deg, rgba(1, 169, 74, 1) 0%, rgba(95, 216, 207, 1) 100%);
    color: transparent;
    -webkit-background-clip: text;
}

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

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

.Dongtai li {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    overflow: hidden;
    border: 1px solid rgba(245, 245, 245, 1);
}

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

.Dongtai li a img {
    width: 220px;
    height: 140px;
    object-fit: cover;
}


.Dongtai_text {
    flex: 1;
    padding: var(--top20);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.Dongtai_text h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Dongtai_text span {
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    display: block;
    margin-top: 10px;
}

.Dongtai_text p {
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Dizhi {
    width: 100%;
    margin-top: 20px;
}

.Dizhi p {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    margin: 5px auto 15px;
}

.Dizhi p span {
    font-size: var(--size18);
    margin-left: 10px;
}

.Dizhi p svg {
    width: 12px;
    height: auto;
}

.Shengxin {
    width: 100%;
    margin-top: var(--top30);
    padding: var(--top20);
    background: url(../images/123.jpg) no-repeat right center / cover;
}

.Shengxin ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: var(--top20);
}

.Shengxin ul li {
    flex: 1;
}

.Shengxin ul li h2 {
    font-size: var(--size36);
    color: #fff;
    text-align: center;
}

.Shengxin ul li p {
    font-size: var(--size16);
    color: #000;
    text-align: center;
    margin-top: 15px;
}

.Shijing {
    width: var(--max);
    margin: var(--top30) auto var(--top60);
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(245, 245, 245, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: var(--top20);
}

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

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

.Shijing ul li img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.prev,
.next {
    background: rgba(1, 169, 74, 1);
}

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

.Tuijianin>h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 1;
    background: linear-gradient(180deg, rgba(1, 169, 74, 1) 0%, rgba(95, 216, 207, 1) 100%);
    color: transparent;
    -webkit-background-clip: text;
}

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

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

.Tuijianin ul li {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(245, 245, 245, 1);
    border-radius: 15px;
}

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


.Liucheng_fuwu>h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 1;
    background: linear-gradient(180deg, rgba(1, 169, 74, 1) 0%, rgba(95, 216, 207, 1) 100%);
    color: transparent;
    -webkit-background-clip: text;
}

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

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

.Fuwuin>h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 1;
    background: linear-gradient(180deg, rgba(1, 169, 74, 1) 0%, rgba(95, 216, 207, 1) 100%);
    color: transparent;
    -webkit-background-clip: text;
}

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

.Fuwuin_max {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top30);
    margin-top: var(--top50);
}

.Fuwuin_left {
    flex: 1;
    background: rgba(255, 255, 255, 1);

    border: 1px solid rgba(255, 255, 255, 1);

    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: var(--top20);
}

.Fuwuin_left h2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    font-family: "M";
}

.Fuwuin_left h2 a {
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
}

.Fuwuin_left>p {
    width: max-content;
    line-height: 50px;
    background: rgba(5, 171, 74, 1);
    padding: 0 30px;
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    margin-top: 10px;
}

.Fuwuin_left_p {
    width: 100%;
    background: rgba(5, 171, 74, 1);
    padding: var(--top20);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}

.Fuwuin_left_p p {
    width: 100%;
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
}

.Fuwuin_right {
    width: 48%;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: var(--top20);
}

.Fuwuin_right>h2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    font-family: "M";
}

.Fuwuin_right h2 a {
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
}

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

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

.Fuwuin_right ul li:nth-child(1) {
    grid-column: 2 span;
}

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

.Fuwuin_text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
}

.Fuwuin_text h2 {
    width: 100%;
    text-align: right;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
}

.Fuwuin_text p {
    width: 100%;
    text-align: right;
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    margin-top: 5px;
}

.Guanin {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: var(--top20);
    margin-top: var(--top30);
}

.Guanin>h2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    font-family: "M";
}

.Guanin>h2 a {
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
}


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

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

.Guanin ul li img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

.Guanin ul li p {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    margin: 5px auto 15px;
}


.Guanin ul li p svg {
    width: 12px;
    height: auto;
}


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

.Zixunin>h2 {
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 1;
    background: linear-gradient(180deg, rgba(1, 169, 74, 1) 0%, rgba(95, 216, 207, 1) 100%);
    color: transparent;
    -webkit-background-clip: text;
}

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

.Zixunin_max {
    width: 100%;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--top40);
}

.Zixunin_list {
    flex: 1;
    border-radius: 5px;
    border: 1px solid rgba(245, 245, 245, 1);
    padding: var(--top20);
}

.Zixunin_list>h2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    font-family: "M";
}

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

.Zixunin_list ul li {
    width: 100%;
}

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

.Zixunin_list ul li h2 {
    flex: 1;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Zixunin_list ul li p {
    width: max-content;
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
}

.Zixunin_right {
    flex: 1;
}

.Zixunin_top {
    width: 100%;
    background: url(../images/123456.png) no-repeat center center / cover;
    border-radius: 10px;
    padding: 20px 20px 60px;
}

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

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

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

.Zixunin_right ul li {
    width: 100%;
    background: linear-gradient(180deg, rgba(186, 181, 181, 0.3) 0%, rgba(186, 181, 181, 0) 100%);
    padding: var(--top30) 10px;
}

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

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

.Footer_top {
    width: 100%;
    background: rgba(245, 245, 245, 1);
}

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

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

.Footer_top_max ul {
    flex: 1;
    display: flex;
    justify-content: space-between;
    border-left: 1px solid rgba(0, 0, 0, 1);
    border-right: 1px solid rgba(0, 0, 0, 1);
    padding: 0 var(--top60);
}

.Footer_top_max ul li {
    width: max-content;
}

.Footer_top_max ul li img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: auto;
}

.Footer_top_max ul li h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
}

.Footer_top_max ul li p {
    text-align: center;
    font-size: var(--size14);
    color: rgba(102, 102, 102, 1);
    margin-top: 5px;
}

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

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

.Footer_cen_max p {
    width: max-content;
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    gap: 5px;
}

.Footer_cen_max p svg {
    width: 12px;
    height: auto;
}

.Footer_bottom {
    width: 100%;
    overflow: hidden;
    background: rgba(13, 17, 22, 1);
}

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

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



.Footer_bottom_right {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.Footer_bottom_right p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: var(--size24);
    color: rgba(255, 255, 255, 1);
}

.Footer_bottom_right p svg {
    width: var(--size20);
    height: auto;
}

.Footer_bottom_right a {
    display: block;
    width: max-content;
    line-height: 42px;
    border-radius: 3px;
    background: linear-gradient(135deg, rgba(5, 171, 74, 1) 0%, rgba(95, 216, 207, 1) 100%);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 25px;
}

.Footer_bottom_max ul{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.Footer_bottom_max ul li{
    width: max-content;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    background: url(../images/xin.png) no-repeat left center / var(--size20) auto;
    padding-left: 25px;
}
