:root {
    --max: 1500px;
    --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;
    --top25: 25px;
    --top30: 30px;
    --top40: 40px;
    --top50: 50px;
    --top60: 60px;
    --top80: 80px;
    --top100: 100px;
    --top120: 120px;
}

.Hertre {
    width: var(--max);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    position: fixed;
    top: var(--top30);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.Fixed {
    width: 100%;
    top: 0;
    border-radius: 0px;
    background: rgba(255, 255, 255);
}

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

.Logo {
    width: max-content;
}

.Logo a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top20);
}

.Logo img {
    width: 50px;
    height: auto;
}

.Logo span {
    font-size: var(--size20);
    color: rgba(2, 117, 49, 1);
    line-height: 1;
}

.Nav {
    width: max-content;
}

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

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

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

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

.Nav ul li::after {
    content: "";
    width: 0%;
    height: 3px;
    background: rgba(2, 117, 49, 1);
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Nav ul li.active::after,
.Nav ul li:hover::after {
    width: 30px;
}

.Nav_item {
    width: max-content;
    display: none;
    background: #ffffff;
    position: absolute;
    overflow: hidden;
    top: 100%;
    transition: auto;
    padding: 10px 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0px 0px 8px 8px;
}

.Nav_item a {
    color: rgba(51, 51, 51, 1);
    display: block;
    line-height: 2;
    font-size: var(--size14);
}

.Nav_item a:hover,
.Nav_item a.active {
    color: rgba(2, 117, 49, 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: #000000;
    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 video {
    width: 100%;
    min-height: 60vh;
    object-fit: cover;
}

.Banner::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

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

.Banner_text h2 {
    width: 470px;
    max-width: 100%;
    font-size: var(--size40);
    color: rgba(255, 255, 255, 1);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.Banner_text p {
    width: 470px;
    max-width: 100%;
    font-size: var(--size20);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.Banner_a {
    width: 100%;
    margin-top: var(--top40);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Banner_a a {
    width: max-content;
    display: block;
    margin-top: var(--top25);
    border-radius: 6px;
    background: rgba(2, 117, 49, 1);
    line-height: 50px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top30);
    cursor: pointer;
    
    
    
    position: relative;
    overflow: hidden; 
    transition: all 0.3s ease;
}
.Banner_a a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.4));
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.7, 1);
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 14% 100%);
}
.Banner_a a:hover::before {
    transform: translateX(100%);
}

























.Banner_a a:nth-child(2) {
    background: rgba(255, 255, 255, 1);
    color: rgba(2, 117, 49, 1);
}

.Banner svg {
    width: var(--size30);
    height: auto;
    display: block;
    position: absolute;
    left: 50%;
    bottom: var(--top30);
    transform: translateX(-50%);
    z-index: 5;
    animation: Banner_svg_move 1s linear infinite alternate;
}

@keyframes Banner_svg_move {
    0% {
        transform: translateX(-50%) translateY(-10px);
    }

    100% {
        transform: translateX(-50%) translateY(10px);
    }
}

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

.Title h1,
.Title h2 {
    text-align: center;
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
    line-height: 1;
}

.Title h1::after,
.Title h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: rgba(2, 117, 49, 1);
    display: block;
    margin: auto;
    margin-top: 15px;
}

.Title p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(75, 85, 99, 1);
    line-height: 1;
    margin-top: 15px;
}

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

.Xinwen ul li {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    overflow: hidden;
    border: 1px solid #ffffff;
}
.Xinwen ul li .img img{
     width: 100%; 
     height: 100%;
}
.Xinwen ul li .img {
    width: 100%;
    aspect-ratio: 480 / 190;
    object-fit: cover;
    overflow: hidden;
    transition: all 0.3s;
}
.Xinwen ul li .img img:hover{
    transform: scale(1.2);
}
.Xinwen_text {
    width: 100%;
    padding: var(--top25);
}

.Xinwen_text span {
    font-size: var(--size14);
    color: rgba(107, 114, 128, 1);
}

.Xinwen_text h2 {
    font-size: var(--size18);
    color: rgba(31, 41, 55, 1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-top: 10px;
    font-weight: 500;
}

.Xinwen_text p {
    font-size: var(--size14);
    color: rgba(75, 85, 99, 1);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Xinwen_view {
    width: 100%;
    margin-top: var(--top20);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    color: rgba(2, 117, 49, 1);
    line-height: 1;
}

.Xinwen_view svg {
    width: 7px;
    height: auto;
    display: block;
}

.Xinwen ul li:hover {
    border: 1px solid rgba(2, 117, 49, 1);
}

.Xinwen ul li:hover .Xinwen_text h2 {
    color: rgba(2, 117, 49, 1);
    ;
}



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

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


.Show_left {
    flex: 1;
    border-radius: 8px;
    border: 1px solid rgba(229, 231, 235, 1);
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.15);
    padding: var(--top20);
}

.Show_left>h1 {
    font-size: var(--size30);
    color: rgba(2, 117, 49, 1);
}

.Show_tame {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px var(--top50);
}

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

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

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

.Show_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
    font-size: var(--size14);
    color: rgba(55, 65, 81, 1);
    line-height: 2;
}

.Show_text * {
    max-width: 100%;
}

.Prev {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top20);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.Prev a {
    width: 100%;
    display: block;
    font-size: var(--size14);
    color: rgba(107, 114, 128, 1);
}

.Show_right {
    width: 480px;
}

.Show_search {
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 2px -2px rgba(0, 0, 0, 0.4), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top25);
}

.Show_search h3 {
    font-size: var(--size18);
    color: rgba(2, 117, 49, 1);
    line-height: 1
}

.Show_search form {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 42px;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: var(--top20);
}

.Show_search form input {
    flex: 1;
    font-size: var(--size14);
    color: rgba(156, 163, 175, 1);
    padding-left: 10px;
}

.Show_search form button {
    width: 32px;
    aspect-ratio: 4 / 4;
    background: rgba(2, 117, 49, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.Show_search form button svg {
    width: 15px;
    height: auto;
    display: block;
}

.Show_remen {
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 2px -2px rgba(0, 0, 0, 0.4), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top25);
    margin-top: var(--top25);
}

.Show_remen h3 {
    font-size: var(--size18);
    color: rgba(2, 117, 49, 1);
    line-height: 1
}

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

.Show_remen ul li {
    width: 100%;
}

.Show_remen ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.Show_remen ul li p {
    width: 24px;
    aspect-ratio: 4 / 4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(213, 228, 219, 1);
    font-size: 12px;
    color: rgba(255, 255, 255, 1);
    line-height: 1;
}

.Show_remen ul li span {
    flex: 1;
    font-size: var(--size16);
    color: rgba(55, 65, 81, 1);
    line-height: 24px;
}

.Show_remen ul li:nth-child(1) p {
    background: rgba(2, 117, 49, 1);
}

.Show_remen ul li:nth-child(2) p {
    background: rgba(2, 117, 49, 0.8);
}

.Show_remen ul li:nth-child(3) p {
    background: rgba(2, 117, 49, 0.6);
}

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

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

.Zhaopin ul li {
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 3px -2px rgba(0, 0, 0, 0.12), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top25);
}

.Zhaopin_img {
    width: 60px;
    aspect-ratio: 4 / 4;
    background: rgba(0, 118, 49, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

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

.Zhaopin ul li h2 {
    text-align: center;
    font-size: var(--size18);
    color: rgba(31, 41, 55, 1);
    margin-top: 15px;
}

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

.Zhaopin_max {
    width: 890px;
    max-width: 100%;
    overflow: hidden;
    margin: auto;
    margin-top: var(--top50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

.Zhaopin_left {
    width: 50%;
    padding: var(--top30);
}

.Zhaopin_left h3 {
    font-size: var(--size20);
    color: rgba(31, 41, 55, 1);
    font-weight: 700;
}

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

.Zhaopin_span span {
    font-size: var(--size16);
    color: rgba(31, 41, 55, 1);
    background: url(../images/dui.png) no-repeat left center / 16px auto;
    padding-left: 28px;
}


.Zhaopin_right {
    width: 50%;
    background: rgba(224, 237, 230, 1);
    padding: var(--top30);
}

.Zhaopin_right h3 {
    font-size: var(--size20);
    color: rgba(31, 41, 55, 1);
    font-weight: 700;
}

.Zhaopin_right p {
    font-size: var(--size16);
    color: rgba(31, 41, 55, 1);
    margin-top: 20px;
    line-height: 1.6;
}

.Zhiwei {
    width: 890px;
    max-width: calc(100% - 30px);
    margin: var(--top80) auto;
}

.Zhiwei_sousuo {
    width: 700px;
    max-width: 100%;
    margin: auto;
    margin-top: var(--top40);
}

.Zhiwei_sousuo form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
}

.Zhiwei_sousuo form>svg {
    width: 16px;
    height: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.Zhiwei_sousuo form input {
    flex: 1;
    height: 50px;
    border-radius: 8px;
    border: 1px solid rgba(209, 213, 219, 1);
    font-size: var(--size16);
    color: rgba(156, 163, 175, 1);
    padding-left: 50px;
}

.Zhiwei_sousuo form button {
    width: 110px;
    height: 50px;
    background: rgba(2, 117, 49, 1);
    border-radius: 8px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}


.Zhiwei_sousuo form button svg {
    width: 16px;
    height: auto;
    display: block;
}

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

.Zhiwei ul li {
    width: 100%;
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 5px;
}

.Zhiwei_title {
    width: 100%;
    padding: var(--top25);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.Zhiwei_let {
    flex: 1;
}

.Zhiwei_let h2 {
    font-size: var(--size20);
    color: rgba(31, 41, 55, 1);
}

.Zhiwei_let p {
    font-size: var(--size16);
    color: rgba(31, 41, 55, 1);
    margin-top: 10px;
}

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

.Zhiwei_content {
    width: 100%;
    font-size: var(--size14);
    color: rgba(75, 85, 99, 1);
    line-height: 1.8;
    border-top: 1px solid rgba(229, 231, 235, 1);
    padding: var(--top25);
    display: none;
    transition: auto;
}

.Shenqing {
    width: 100%;
    margin-top: var(--top25);
}

.Shenqing a {
    width: max-content;
    display: block;
    line-height: 40px;
    background: rgba(2, 117, 49, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top25);
    border-radius: 6px;
}

.Cod {
    width: 600px;
    max-width: 80%;
    background: #ffffff;
    border-radius: 10px;
    padding: var(--top25);
    box-shadow: 0px 0px 5px 3px #00000010;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 999999;
}

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

.Cod.active {
    transform: translate(-50%, -50%) scale(1);
}

.Zhongxin {
    width: var(--max);
    margin: var(--top80) auto;
    position: relative;
    z-index: 5;
}

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

.Zhongxin_max ul {
    width: 48%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top25);
}

.Zhongxin_max ul li {
    width: 100%;
    border-radius: 8px;
    background: rgba(250, 250, 250, 1);
    border: 1px solid rgba(250, 250, 250, 1);
    padding: var(--top25);
    cursor: pointer;
    position: relative;
}

.Zhongxin_max ul li.active {
    border: 1px solid rgba(2, 117, 49, 0.4);
    transform: translate(-2px, -4px); 
	box-shadow: 4px 10px 20px rgba(0,0,0,0.12);
}

.Zhongxin_img {
    width: 80px;
    aspect-ratio: 4 / 4;
    background: rgba(0, 118, 49, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: var(--top25);
    top: var(--top25);
}

.Zhongxin_img img {
    max-width: 40%;
    max-height: 40%;
    object-fit: contain;
}

.Zhongxin_max ul li h2 {
    font-size: var(--size18);
    color: rgba(31, 41, 55, 1);
    margin-top: 15px;
}

.number_scroll {
    font-size: var(--size36);
    color: rgba(75, 85, 99, 1);
    margin-top: 10px;
    transition: auto;
}

.number_scroll *{
    transition: auto;
}

.Zhongxin_max ul li p {
    font-size: var(--size14);
    color: rgba(75, 85, 99, 1);
    margin-top: 10px;
}

.Zhongxin_right {
    flex: 1;
    contain: size;
}

.Zhongxin_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.Zhongxin_right img:nth-child(1) {
    display: block;
}

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

.Baojia h2 {
    text-align: center;
    font-size: var(--size24);
    color: rgba(31, 41, 55, 1);
    font-weight: 700;
}

.Baojia p {
    text-align: center;
    font-size: var(--size16);
    color: rgba(55, 65, 81, 1);
    margin-top: var(--top20);
    line-height: 1.8;
}

.Baojia button {
    width: max-content;
    display: block;
    margin: auto;
    margin-top: var(--top25);
    border-radius: 6px;
    background: rgba(2, 117, 49, 1);
    height: 50px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top30);
    cursor: pointer;
}
.fangda{
    transition: all 0.3s;
}
.fangda:hover{
    transform: scale(1.2);
}
.Chanpin {
    width: var(--max);
    margin: var(--top80) auto;
}

.Chanpin ul {
    width: 100%;
    margin-top: var(--top50);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
    
    
    /*opacity: 0;*/
    /*  transform: translateY(40px);*/
    /*  animation: fadeUp 0.6s ease forwards;*/
}
/*.Chanpin ul li{*/
/*    opacity: 0;*/
/*      transform: translateY(40px);*/
      
/*}*/
/*@keyframes fadeUp {*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/
.Chanpin {
  view-timeline-name: --productView;
  view-timeline-axis: block;
}
.Chanpin:view-timeline(--productView) .Chanpin ul {
  animation: fadeUp 0.5s ease forwards;
}
.Chanpin ul:nth-child(3n+1) { animation-delay: 0.1s; }
.Chanpin ul:nth-child(3n+2) { animation-delay: 0.2s; }
.Chanpin ul:nth-child(3n+3) { animation-delay: 0.3s; }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

.Chanpin ul li {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    overflow: hidden;
    border: 1px solid rgb(255, 255, 255)
}
.Chanpin ul li img{
    width: 100%;
   width: 100%;
}
.Chanpin ul li .img1 {
    width: 100%;
    aspect-ratio: 480 / 314;
    object-fit: cover;
    overflow: hidden;
    transition: all 0.3s;
}
.Chanpin ul li img:hover{
    transform: scale(1.2);
}
.Chanpin_text {
    width: 100%;
    padding: var(--top25);
}

.Chanpin_text h2 {
    font-size: var(--size18);
    color: rgba(31, 41, 55, 1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-weight: 500;
}

.Chanpin_text p {
    font-size: var(--size14);
    color: rgba(75, 85, 99, 1);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.Chanpin_view {
    width: 100%;
    margin-top: var(--top20);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    color: rgba(2, 117, 49, 1);
    line-height: 1;
}

.Chanpin_view svg {
    width: 12px;
    height: auto;
    display: block;
}

.Chanpin ul li:hover {
    border: 1px solid rgba(2, 117, 49, 1);
}

.Chanpin ul li:hover .Chanpin_text h2 {
    color: rgba(2, 117, 49, 1);
    ;
}

.Chanpin_show {
    width: var(--max);
    margin: var(--top80) auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top60);
}
.Chanpin_show_list{
    width: 100%;
    margin:  auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top60);
}
.Chanpin_ltem {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--top40);
}

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

.Chanpin_ltem>img {
    width: 49%;
    height: auto;
}

.Chanpin_show_right {
    flex: 1;
}

.Chanpin_show_right h2 {
    font-size: var(--size30);
    color: rgba(31, 41, 55, 1);
}

.Chanpin_show_right>p {
    font-size: var(--size16);
    color: rgba(75, 85, 99, 1);
    margin-top: var(--top20);
    line-height: 1.6;
}

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

.Chanpin_detail_item {
    font-size: var(--size16);
    color: rgba(75, 85, 99, 1);
    background: url(../images/dui.png) no-repeat left center / 16px auto;
    padding-left: 28px;
}

.Chanpin_detail_item span {
    color: rgba(2, 117, 49, 1);
}

.Qita {
    width: 100%;
    overflow: hidden;
    background: rgba(249, 250, 251, 1);
}

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

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

.Zhongxin_index::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
}

.Zhongxin_index .Title * {
    color: rgba(255, 255, 255, 1);
}

.Zhaopin_index {
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

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

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

.Lianxi_left {
    width: 60%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top30);
}

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

.Lianxi_item {
    width: 100%;
}

.Lianxi_item:nth-child(-n+4) {
    width: calc(50% - var(--top25) / 2);
}

.Lianxi_item p {
    font-size: var(--size16);
    color: rgba(55, 65, 81, 1);
}

.Lianxi_item input {
    width: 100%;
    height: 42px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(209, 213, 219, 1);
    margin-top: 10px;
    font-size: var(--size14);
    color: rgba(156, 163, 175, 1);
    padding: 0 15px;
}

.Lianxi_item textarea {
    width: 100%;
    height: 140px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(209, 213, 219, 1);
    margin-top: 10px;
    font-size: var(--size14);
    color: rgba(156, 163, 175, 1);
    padding: 10px 15px;
    resize: none;
}

.Lianxi_left form button {
    width: max-content;
    display: block;
    border-radius: 6px;
    background: rgba(2, 117, 49, 1);
    height: 50px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top30);
    cursor: pointer;
}

.Lianxi_right {
    flex: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(0, 0, 0, 0);
    padding: var(--top30);
}

.Fangshi {
    width: 100%;
}

.Fangshi h2 {
    font-size: var(--size20);
    color: rgba(31, 41, 55, 1);
}

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

.Lianxi_right ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.Fangshi_img {
    width: 40px;
    aspect-ratio: 4 / 4;
    background: rgba(0, 118, 49, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Fangshi_img img {
    max-width: 40%;
    max-height: 40%;
    object-fit: contain;
}

.Fangshi_text {
    flex: 1;
}

.Zhongxin_right h2 {
    font-size: var(--size16);
    color: rgba(31, 41, 55, 1);
    margin-top: 15px;
}

.Fangshi_text p {
    font-size: var(--size14);
    color: rgba(75, 85, 99, 1);
    margin-top: 10px;
}

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

.Guanzhu h2 {
    font-size: var(--size20);
    color: rgba(31, 41, 55, 1);
}

.Guanzhu ul {
    width: 100%;
    margin-top: var(--top25);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.Guanzhu ul li {
    width: 40px;
    aspect-ratio: 4 / 4;
    position: relative;
}

.Guanzhu ul li a {
    width: 100%;
    height: 100%;
}

.Guanzhu_img {
    width: 100%;
    height: 100%;
    background: rgba(0, 118, 49, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Guanzhu_img img {
    max-width: 40%;
    max-height: 40%;
    object-fit: contain;
}

.Guanzhu_cod {
    width: 120px;
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 0px 5px 3px #00000010;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transform-origin: bottom center;
}

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

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

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

.Jiage_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top50);
    font-size: var(--size14);
    color: rgba(55, 65, 81, 1);
    line-height: 2;
}

.Jiage_text * {
    max-width: 100%;
}

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

.Footer_max {
    width: var(--max);
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
}
.Footer_left{
    width: max-content;
    max-width: 400px;
}

.Footer_logo{
    width: 100%;
}

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

.Footer_logo img{
    width: 70px;
    height: auto;
}

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

.Footer_left p{
    font-size: var(--size16);
    color: rgba(156, 163, 175, 1);
    margin-top: var(--top30);
}

.Footer_left .Guanzhu_img{
    background: #ffffff;
}

.Footer_ul {
    width: max-content;
}

.Footer_top {
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

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

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

.Footer_ul ul {
    width: 100%;
    margin-top: var(--top25);
}

.Footer_ul ul li {
    font-size: var(--size16);
    color: rgba(156, 163, 175, 1);
    line-height: 2;
}

.Footer_fangshi {
    width: max-content;
}

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

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

.Footer_fangshi ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.Footer_fangshi_img {
    width: 30px;
    aspect-ratio: 4 / 4;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Footer_fangshi_img img {
    max-width: 40%;
    max-height: 40%;
    object-fit: contain;
}

.Footer_fangshi_text {
    flex: 1;
}

.Footer_fangshi_text h2 {
    font-size: var(--size16);
    color: rgb(206, 206, 206);
}

.Footer_fangshi_text p {
    font-size: var(--size14);
    color: rgba(156, 163, 175, 1);
    margin-top: 5px;
}

.Beian {
    width: var(--max);
    border-top: 1px solid rgba(79, 96, 119, 1);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: var(--top20) 0;
}

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