body,
html {
    margin: 0;
    padding: 0;
    background: #fafafa;
    position: relative;
    min-height: 100vh;
}


p {
    margin: 0;
}

a {
    color: #221815;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Microsoft JhengHei', 'Lato', sans-serif;
}

.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;

}

/* banner */
.banner img {
    width: 100%;
}

.banner {
    --swiper-navigation-color: #fff;
    /* 设置左右箭头颜色 */
    --swiper-navigation-size: 50px;
    /* 设置左右箭头大小 */
    --swiper-theme-color: #4B6A2C;
    /* 设置按钮圆点 */
    position: relative;
}

body {
    --swiper-theme-color: #4B6A2C;
    overflow-x: hidden;
}

.banner .swiper-pagination {
    bottom: 30px;
}

.banner .s_img {
    display: none;
}

.banner .l_img {
    display: block;
}


.container {
    width: 75%;
    margin: 0 auto;
}

/* 导航栏 - Premium UI 重構 */
.nav {
    padding: 13px 0;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000; /* 提高 z-index 確保在所有組件之上 */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .left {
    display: flex;
    align-items: center;
    gap: 30px; /* 調降間距使佈局更緊湊 */
}

.nav .logo {
    display: flex;
    align-items: center;
}

.nav .logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.nav .logo:hover img {
    transform: scale(1.05);
}

.nav .nav_m {
    display: flex;
    align-items: center;
    gap: 30px; /* 確保選單項目間有適中間距 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav .nav_m li {
    position: relative;
    padding: 10px 0;
}

.nav .nav_m li a {
    color: var(--text-main, #333) !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav .nav_m li:hover > a {
    color: var(--primary, #8D19E8) !important;
}

/* 下拉箭頭 */
.nav_m li a em {
    display: inline-block;
    margin-left: 8px;
    width: 6px;
    height: 6px;
    border-left: 1.5px solid #999;
    border-bottom: 1.5px solid #999;
    transform: rotate(-45deg);
    vertical-align: middle;
    margin-top: -4px; /* 微調垂直位置，防止被文字行高遮擋 */
    transition: all 0.3s ease;
}

.nav_m li:hover a em {
    border-color: var(--primary, #8D19E8);
    transform: rotate(135deg);
    margin-top: 2px;
}

/* 子選單 (Sub-menu) 卡片化 */
.nav .nav_m .sub {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 180px;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav .nav_m li:hover .sub {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nav .nav_m .sub a {
    color: var(--text-main, #333) !important;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none !important;
    transition: background 0.2s ease;
    text-align: left;
}

.nav .nav_m .sub a:hover {
    background: rgba(141, 25, 232, 0.05);
    color: var(--primary, #8D19E8) !important;
}

.nav .nav_r {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav .nav_r .tan01 a {
    color: var(--text-main, #333);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-pill, 50px);
    background: var(--sec-accent, #FFF7EF);
    transition: all 0.3s ease;
}

.nav .nav_r .tan01 a:hover {
    background: var(--secondary, #FF782D);
    color: #fff;
}

.nav .nav_r .wx {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 6px 15px;
    border-radius: var(--radius-pill, 50px);
    gap: 8px;
}

.nav .nav_r .wx img {
    width: 20px;
    height: 20px;
}

.nav .nav_r .wx a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main, #333);
    text-decoration: none;
}

.nav .nav_r .yk {
    border-right: 1px solid #ddd;
    padding-right: 12px;
    margin-right: 0;
}

.nav:hover {
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}


.mobilenav {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 0vw;
    height: 100vh;
    background: #4B6A2C;
    box-shadow: 1px 0 5px #4B6A2C;
    transition: ease 1s all;
    overflow: hidden;
}

.mobilenav .mobile-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.mobilenav .mobile-logo img {
    width: 60vw;
}

.mobilenav .mobile-logo .closebox {
    position: relative;
    width: 20px;
    height: 20px;
    overflow: hidden;
    transition: .5s all;
}

.mobilenav .mobile-logo .closebox:hover {
    transform: rotate(90deg);
}

.mobilenav .mobile-logo .closebox::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: #fff;
    left: 0px;
    bottom: 10px;
    transform: rotate(45deg);
}

.mobilenav .mobile-logo .closebox::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: #fff;
    left: 0px;
    bottom: 10px;
    transform: rotate(-45deg);
}

.mobilenav .left {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.mobilenav .left .mobile-navitem {
    text-align: center;
    padding: 10px 0;
    color: #fff;
    margin-top: 15px;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.mobilenav .left .mobile-navitem.active {
    font-weight: bold;
    color: #4B6A2C;
    background: #fff;
}

.meau {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    display: none;
}

.meau::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 15px;
}

.meau::before {
    content: '';
    position: absolute;
    left: 12px;
    bottom: 15px;
}

.meau span {
    display: block;
}

.meau::after,
.meau::before,
.meau span {
    background: #4B6A2C;
    width: 26px;
    height: 3px;
}

.mobile_new_nav {
    display: none;

}

.app {
    overflow-x: hidden;
    min-height: 50vh;
}

.page1 .homebox {
    width: 100%;
    height: 564px;
    background-size: 100% 100%;
    background-image: url(../img/img-bg.jpg);
    background-repeat: no-repeat;
    position: relative;
}

.page1 .banner_hizh {
    width: 75%;
    max-width: none;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.page1 .textBox {
    padding-top: 78px;
}

.page1 .ellipsis {
    width: 116px;
    height: 8px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 57px;
    left: 0;
}

.page1 .ellipsis ._item {
    width: 11px;
    height: 100%;
    background-color: #4B6A2C;
}

.page1 .title {
    width: auto;
    height: 42px;
    font-size: 42px;
    font-weight: 700;
    color: #4B6A2C;
    line-height: 63px;
}

.page1 .cont {
    height: 94px;
    font-size: 18px;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color: #4B6A2C;
    line-height: 22px;
    margin-top: 54px;
}

.page1 .sTitle {
    width: 439px;
    height: 26px;
    font-size: 26px;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color: #4B6A2C;
    line-height: 39px;
    margin-top: 20px;
}

.page1 .circle {
    width: 94px;
    height: 102px;
    position: absolute;
    right: 0;
    bottom: -40px;
}

.page1 .company {
    position: absolute;
    left: 0;
    bottom: -60px;
    width: 386px;
    height: 100px;
    font-size: 58px;
    font-family: SourceHanSansCN-Heavy, SourceHanSansCN;
    font-weight: 800;
    color: #606060;
    line-height: 78px;
}

.animate__backInRight {
    animation-name: backInRight;
}

.animate__backInLeft {
    animation-name: backInLeft;
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.z-1 {
    z-index: 1 !important;
}

.page1 .pictures_list {
    width: 65%;
    padding-left: 20%;
    height: 514px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.page1 .pictures_list ._left_1hizh_90 {
    width: 48%;
    height: 100%;
    background: #fff;
    box-shadow: 0 20px 50px 0 rgba(74, 87, 58, .37);
    padding: 20px 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.page1 .pictures_list ._left_1hizh_90 img {
    width: 100%;
    height: 100%;
}

.page1 .pictures_list ._right_1hizh_102 {
    width: 400px;
    height: 80%;
    display: flex;
    flex-wrap: wrap;
}

.page1 .pictures_list ._item {
    display: inline-block;
    width: 47%;
    margin: 0 1%;
    height: 190px;
    padding: 8px;
    box-sizing: border-box;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px 0 rgba(74, 87, 58, .37);
}

.page1 .pictures_list ._item img {
    width: 100%;
    height: 100%;
}

.animate__fadeInLeft {
    animation-name: fadeInLeft;
}

.animate__fadeInTopLeft {
    animation-name: fadeInTopLeft;
}

.animate__fadeInTopRight {
    animation-name: fadeInTopRight;
}

.animate__fadeInBottomLeft {
    animation-name: fadeInBottomLeft;
}

.animate__fadeInBottomRight {
    animation-name: fadeInBottomRight;
}

.page1 .circle {
    width: 94px;
    height: 102px;
    position: absolute;
    right: 0;
    bottom: -40px;
}

.page1 .circle img {
    width: 100%;
    height: 100%;
}

.animate__bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}


@keyframes backInRight {
    0% {
        transform: translate(2000px) scale(.7);
        opacity: .7;
    }

    80% {
        transform: translate(0) scale(.7);
        opacity: .7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes backInLeft {
    0% {
        transform: translate(-2000px) scale(.7);
        opacity: .7;
    }

    80% {
        transform: translate(0) scale(.7);
        opacity: .7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 100%, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    100% {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }

    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }

    80% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0) scaleY(.95);
    }

    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}

.content {
    max-width: 1200px;
    margin: 325px auto 0;
    position: relative;
}

.content .more img {
    width: 30px;
}

.square {
    display: flex;
    justify-content: space-between;
}

.square img {
    width: 180px;
}

.square .ellipsis {
    display: flex;
}

.square .ellipsis ._item {
    height: 5px;
    width: 10px;
    background: #4B6A2C;
    margin: 0 5px;
}

.square .abouttext {
    font-size: 42px;
    font-weight: 800;
    color: #606060;
    text-align: right;
    margin-top: 20px;
}

.contInfo {
    display: flex;
    align-items: center;
    margin: 20px auto;
    margin-bottom: 100px;
}

.contInfoLeft {
    position: relative;
    width: 50%;
    height: 340px;
    overflow: hidden;
}

.contInfoLeft ._video_sm {
    width: 100%;
    height: 100%;
}

.contInfoLeft ._play {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s;
    cursor: pointer;
}

.contInfoLeft:hover ._play {
    width: 80px;
    height: 80px;
}

.contInfoRight {
    margin-left: 5%;
    width: 45%;
    min-height: 340px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}

.contInfoRight h3 {
    font-size: 26px;
    font-weight: 700;
    color: #4B6A2C;
    line-height: 36px;
    margin: 20px 0 38px 0;
}

.contInfoRight p {
    width: 100%;
    font-size: 14px;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    line-height: 18px;
}

.contInfoRight button {
    width: 163px;
    height: 45px;
    border: 1px solid #000000;
    font-size: 16px;
    margin-top: 30px;
    background: transparent;
    border-radius: 5px;
}

.productBox .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
}

.productBox .title h3 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.productList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.proItemBox {
    width: 31.5%;
    background: #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0 20px 50px #4a573a5e;
    margin-bottom: 40px;
    cursor: pointer;
    padding: 30px 30px;
    box-sizing: border-box;
}

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

.productBox .name {
    width: 100%;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    color: #4b6a2c;
    line-height: 27px;
    margin-top: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.productBox p {
    width: 100%;
    height: 58px;
    font-size: 13px;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color: #000;
    line-height: 18px;
    margin-top: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.productBox .buyNow {
    width: 100%;
    height: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #4b6a2c;
    line-height: 33px;
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    cursor: pointer;
}

.productBox .buyNow img {
    width: 30px;
    height: 30px;
}

.proItemBox img {
    width: 100%;
    height: 324px;
    transition: all .3s;
}

.text_left {
    text-align: left !important;
}

.videobox {
    margin-top: 30px;
    position: relative;
    cursor: pointer;
}

.videobox .video_bg {
    width: 100%;

}

.videobox:hover .play {
    width: 100px;
    height: 100px;
}

.videobox .play {
    width: 86px;
    height: 86px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all .3s;
}

.certificatebox {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 80px;
}

.certificatebox .swiper-slide {
    padding: 0 2.5%;
    box-sizing: border-box;
    cursor: pointer;
}

.certificatebox .swiper-slide h3 {
    text-align: center;
    font-size: 14px;
    font-family: SourceHanSansCN-Regular, SourceHanSansCN;
    font-weight: 400;
    color: #000;
    line-height: 21px;
    margin-top: 20px;
}

.certificatebox .swiper-slide img {
    width: 100%;
}

.zixun .square {
    align-items: flex-end;
}

.zixun {
    margin-top: 80px;
}

.zixun .abouttext {
    text-align: left;
}

.informatBox {
    display: flex;
    margin-top: 30px;
    align-items: center;
}

.informatBox .informatLeft {
    width: 394px;
    height: 438px;
    background: #fff;
    box-shadow: 0 20px 50px 0 rgba(74, 87, 58, .37);
    padding: 40px 40px 0;
    box-sizing: border-box;
}

.informatBox .informatLeft .time {
    font-size: 20px;
    font-family: SourceHanSansCN-Regular, SourceHanSansCN;
    font-weight: 400;
    line-height: 30px;
    color: #000;
}

.informatBox .informatLeft h4 {
    font-size: 20px;
    font-family: SourceHanSansCN-Medium, SourceHanSansCN;
    font-weight: 500;
    color: var(--text-color);
    line-height: 24px;
    margin-top: 17px;
}

.informatBox .informatLeft .cont {
    width: 100%;
    height: 52px;
    font-size: 13px;
    font-family: SourceHanSansCN-Regular, SourceHanSansCN;
    font-weight: 400;
    color: #979797;
    margin-top: 23px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.informatBox .informatLeft .cont::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 52px;
    background: #c3d3b3;
    margin-right: 14px;
    float: left;
}

.informatBox .informatLeft .imgbox {
    margin-top: 15px;
}

.informatBox .informatLeft img {
    width: 100%;
}

.informatBox .informatLeft .more {
    width: 100%;
    height: 18px;
    text-align: right;
    font-size: 13px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #979797;
    line-height: 18px;
    margin-top: 28px;
    cursor: pointer;
}

.informatBox .informatRight {
    flex: 1;
    padding-left: 5%;
    box-sizing: border-box;
}

.informatBox .informatRight .inforItem {
    height: 94px;
    font-size: 18px;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color: #4B6A2C;
    margin-top: 30px;
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 20px;
}

.informatBox .informatRight .inforItem:last-child {
    border-bottom: 0;
}

.informatBox .informatRight .inforItem .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.informatBox .informatRight .inforItem .title .name {
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.informatBox .informatRight .inforItem .time {
    white-space: nowrap;
    height: 20px;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 30px;
}

.informatBox .informatRight .inforItem .des {
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    color: #979797;
    margin-top: 20px;
}

.noticebox {
    margin-top: 34px;
}

.noticebox .noticeItem {
    display: flex;
    justify-content: space-between;
    margin-bottom: 34px;
    cursor: pointer;
    font-size: 16px;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color: #000;
    line-height: 24px;
}

.noticebox .noticeItem .left {
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

footer {
    display: block;
    padding: 74px 0 77px;
    width: 100%;
    height: auto;
    background-color: #EAF1E3;
    box-sizing: border-box;
    margin-top: auto;
}

.footerbox {
    max-width: 1200px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerbox .col {
    flex: 1;

}

.footerbox .footer_logo {
    width: 100%;
}

.footer-text {
    font-size: 18px;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color: #000;
    line-height: 22px;
    margin: 40px 0 0;
}

.iconlist {
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.iconlist img {
    width: 40px;
    margin-right: 30px;
}

.footerbox .col .title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 22px;
    margin-bottom: 48px;
}

.footerbox .col .ljbox {
    display: flex;
    flex-direction: column;
}

.footerbox .col .link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footerbox .col .ljbox a {
    font-size: 13px;
    color: #000;
    line-height: 20px;
    margin-bottom: 30px;
    display: block;
}

.footerbox .col .tel {
    padding-right: 15px;
    border-right: 1px solid rgb(204, 204, 204);
}

.footerbox .col .email {
    padding-left: 15px;
}

.footerbox .col .contact p {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    display: block;
    margin-bottom: 20px;
}

.footerbox1 {
    display: none;
}

.app_title {
    width: 100%;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-top: 34px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.app_title button a{
    width: 100%;
    height: 100%;
    display: block;color: #fff;
    line-height: 40px;
}
.app_title button {
    width: 162px;
    height: 40px;
    background: #4B6A2C;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.app_time {
    height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #979797;
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.mainBox {
    width: 75%;
    max-width: none;
    margin: 0 auto;
}

.noticelist {
    margin: 30px auto;
}

.noticelist .noticeItem {
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #282a38;
    overflow: hidden;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 5px;
    transform: .3s;
}

.noticelist .noticeItem:hover {
    color: #4B6A2C;
}

.informatPage {
    margin: 30px 0;
}

.informatItem {
    width: 100%;
    height: 258px;
    padding: 14px;
    box-sizing: border-box;
    display: flex;
    cursor: pointer;
    transition: .3s;
}

.informatItem:hover {
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(33, 37, 41, .15);
}

.informatItem .imgbox {
    width: 320px;
    height: 100%;
    display: flex;
    align-items: center;
}

.informatItem .imgbox img {
    width: 100%;
}

.informatItem .right {
    width: calc(100% - 320px);
    height: 100%;
    padding-left: 34px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.informatItem .right h3 {
    width: 100%;
    height: 50px;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 25px;
    margin-top: 29px;
    overflow: hidden;
}

.informatItem .right .cont {
    height: 50px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 25px;
    margin-top: 20px;
    overflow: hidden;
}

.informatItem .right .time {
    margin-top: 30px;
}

.goodslist {
    display: flex;
    flex-wrap: wrap;
}

.goodslist .goodsitem {
    width: 33.333%;
    padding: 0 2%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.goodslist .goodsitem:hover .imgbox {
    box-shadow: 0 .125rem 1.25rem #97979780;
}

.goodslist .goodsitem:hover img {
    transform: scale(1.05);
}

.goodslist .goodsitem .imgbox {
    width: 100%;
    height: 352px;
    background-color: #fff;
    transition: all .3s;
    overflow: hidden;
}

.goodslist .goodsitem .imgbox img {
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.goodslist .goodsitem h3 {
    width: 100%;
    font-size: 20px;
    height: 50px;
    font-weight: 700;
    color: #000;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.goodslist .goodsitem .intro {
    width: 100%;
    height: 37px;
    font-size: 13px;
    font-weight: 400;
    color: #979797;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.goodslist .goodsitem .price {
    display: block;
    width: 278px;
    height: 24px;
    font-size: 20px;
    font-weight: 700;
    color: #C33B3B;
    line-height: 30px;
    margin-top: 26px;
}

.goodslist .goodsitem .btns button {
    width: 48%;
    height: 54px;
    border: 1px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
    transition: all .3s;
    margin-top: 12px;
    cursor: pointer;
    background: transparent;
    white-space: nowrap;
    border-radius: 5px;
}

.goodslist .goodsitem .btns button:hover {
    color: #fff;
    background: #4B6A2C;
    font-weight: bold;
}

.goodslist .goodsitem .btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.goodslist .goodsitem .btns img {
    width: 24px;
    height: 24px;
}

.carttitle {
    width: 100%;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    line-height: 45px;
    padding-top: 34px;
    padding-bottom: 20px;
}

.tabBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.tablist {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.tablist .tabitem {
    padding: 0 20px;
    line-height: 50px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.tablist .tabitem.active {
    color: #4b6a2c;
    font-weight: 700;
}

.tablist .tabitem .line {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #4b6a2c;
    width: 100%;
    transition: .3s;
    height: 3px;
}

.ant-checkbox {
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    align-self: center;
}

.ant-checkbox-input {
    position: absolute;
    inset: 0;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    margin: 0;
}

.ant-checkbox-inner {
    box-sizing: border-box;
    position: relative;
    top: 0;
    inset-inline-start: 0;
    display: block;
    width: 16px;
    height: 16px;
    direction: ltr;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    border-collapse: separate;
    transition: all 0.3s;
    margin-right: 10px;
}

.ant-checkbox-wrapper {
    display: inline-flex;
    cursor: pointer;
    position: relative;
}

.ant-checkbox-checked .ant-checkbox-wrapper {
    background-color: #607846;
    border-color: transparent;
}

.ant-checkbox-checked .ant-checkbox-inner {
    background: #607846;
}

.ant-checkbox-checked .ant-checkbox-inner::after {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #4b6a2c;
    content: "√";
    color: #fff;
    font-size: 12px;
    z-index: 999;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #4b6a2c;
}

.cartitem {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    overflow: hidden;
    cursor: pointer;
    align-items: center;
    margin-top: 20px;
}

.cartitem .check {
    margin-right: 16px;
}

.cartitem .goodsimg {
    width: 196px;
    height: 196px;
    background-color: #fff;
    box-shadow: 0 0 20px #4a573a24;
    margin: 10px;
}

.cartitem .goodsimg img {
    width: 100%;
    height: 100%;
}

.cartitem .infobox {
    flex: 1;
    margin-left: 32px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 10px;
}

.cartitem .infobox .info {
    width: 40%;
}

.cartitem .infobox .info h3 {
    height: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 24px;
    margin-top: 22px;
}

.cartitem .infobox .info .pcCv {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    line-height: 20px;
    margin-top: 16px;
}

.cartitem .infobox .info p {
    margin-top: 10px;
    width: 100%;
    height: 130px;
    font-size: 13px;
    font-weight: 400;
    color: #979797;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.cartitem .infobox .btn {
    width: 20%;
    height: 36px;
    border: 1px solid #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cartitem .infobox .btn .cznum {
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 25px;
    font-weight: bold;
    vertical-align: middle;
}

.cartitem .infobox .btn input {
    width: 100px;
    height: 100%;
    background-color: transparent;
    border: none;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.cartitem .infobox .price {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.cartitem .infobox .price span {
    font-weight: bold;
    font-size: 18px;
}

.cartitem .infobox .price img {
    width: 24px;
}

.setBox {
    margin-top: 50px;
    padding: 20px 30px;
    border: 1px solid #000;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.setBox .left {
    width: 40%;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    line-height: 30px;
}

.setBox .left .setleft-item {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.setBox .right .pricenum {
    font-size: 20px;
    font-weight: 700;
    color: #c33b3b;
    margin-left: 46px;
}

.sumbitbox {
    text-align: center;
}

.sumbitbox button {
    width: 60%;
    height: 40px;
    background: #4B6A2C;
    border-radius: 6px;
    font-size: 14px;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 100px;
    cursor: pointer;
}

.orderBox {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.orderLeft {
    width: 60%;
    height: 100%;
    border: 1px solid #000;
    border-radius: 0;
}

.card-header {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    height: 60px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    background-color: #fff;
    border-bottom: 1px solid #000;
}

.card-body {
    padding: 16px;
}

.card-body .rowItem {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.card-body .rowItem p {
    width: 70%;
}

.card-body .rowItem .pchidden,
.card-body .rowItem .scene {
    width: 25%;
    margin-left: 5%;
    height: 40px;
    background: #4B6A2C;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
}

.addresstop {
    width: 100%;
}

.addresstop .form-label,
.addressinfo .infoli .form-label {
    font-size: 14px;
    font-weight: 400;
    color: #a2aa9a;
    line-height: 21px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.addresstop input,
.addressinfo .infoli input {
    margin-bottom: 16px;
    font-size: 14px;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color: #000;
    padding-left: 0;
    border: none;
    border-bottom: 1px solid #EBEBEB;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    line-height: 1.5;
    background: transparent;
    box-sizing: border-box;
}

.addresstop input::placeholder,
.addressinfo .infoli input::placeholder {
    color: #a2aa9a;
}

.addressinfo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.addressinfo .infoli {
    width: 48%;
}

.tishi {
    font-size: 14px;
    font-weight: 400;
    color: #c33b3b;
    line-height: 18px;
    margin-bottom: 20px;
}

.orderRight {
    width: 38%;
}

.orderRight .card {
    width: 100%;
    border: 1px solid #000;
    border-radius: 0;
    margin-bottom: 28px;
}

.orderRight .card .useYouhui {
    width: 157px;
    height: 40px;
    background: #4B6A2C;
    border-radius: 6px;
    font-size: 14px;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.address_content {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #00000080;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.address_content .address_body {
    width: 80%;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 6px 16px 0 rgb(0 0 0 / 8%), 0 3px 6px -4px rgb(0 0 0 / 12%), 0 9px 28px 8px rgb(0 0 0 / 5%);
    pointer-events: auto;
    padding: 20px 24px;
}

.address_content .address_body .title {
    display: flex;
    justify-content: space-between;
    color: rgba(0, 0, 0, 0.88);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
}

.address_content .address_body .title button {
    color: rgba(0, 0, 0, 0.45);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    background: transparent;
    border-radius: 4px;
    width: 22px;
    height: 22px;
    border: 0;
    outline: 0;
    font-size: 22px;
    cursor: pointer;
}

.address_content .address_body .cont p {
    margin-top: 28px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 18px;
}


.table {
    overflow-x: visible;
}

.tableheader {
    display: flex;
    align-items: center;

    margin-top: 10px;
    color: rgba(0, 0, 0, 0.88);
    font-weight: 600;
    text-align: center;
}

.tableitem {
    display: flex;

    margin-top: 10px;
    color: rgba(0, 0, 0, 0.88);
    text-align: center;
    align-items: center;
    padding-bottom: 5px;
}

.tableheader div {
    line-height: 54px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.tableheader .id,
.tableitem .id {
    height: 54px;
    width: 5%;
    min-width: 30px;
}

.tableheader .name,
.tableitem .name {
    height: 54px;
    width: 13%;
    min-width: 80px;

}

.tableheader .cardid,
.tableitem .cardid {
    height: 54px;
    width: 15%;
    min-width: 100px;
    word-break: break-all;
}

.tableheader .address-text,
.tableitem .address-text {
    height: 54px;
    width: 41%;
    min-width: 200px;

}

.tableitem div {
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}

.tablebody {
    height: 200px;
    overflow-y: scroll;
}

.nolist {
    display: none;
    text-align: center;
    color: rgba(0, 0, 0, 0.25);
}

.address_content .btnGroup {
    display: flex;
    margin-top: 44px;
    justify-content: center;
}

.address_content .btnGroup button {
    width: 154px;
    height: 40px;
    background: #4B6A2C;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 14px;
}

.tablebox {
    display: flex;
    justify-content: space-between;
}

.tablebox .card {
    width: 32%;
    border-radius: 0;
    border: 1px solid #000000;
}

.tablebox .btnGroup {
    display: flex;
    margin-top: 44px;
    justify-content: center;
}

.tablebox .aGroup a {
    width: auto;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: #4B6A2C;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    padding: 0 10px;
    box-sizing: border-box;
    margin-right: 20px;
    cursor: pointer;
    transition: all .3s;
}

.aGroup {
    display: flex;
    margin-top: 8px;
}

.tablebox .aGroup a:hover {
    background: #4B6A2C80;
}

.tablebox .btnGroup button {
    width: 154px;
    height: 40px;
    background: #4B6A2C;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 14px;
}

.tablebox .card:nth-child(1) {
    /*height: 100%;*/
    height: 380px;
}

.card .mb-3 {
    display: flex;
    flex-direction: column;
}

.card .form-control {
    height: 44px;
    background: #FFFFFF;
    border-radius: 7px;
    border: 1px solid #000000;
    font-size: 14px;
    font-weight: 400;
    padding: 0 10px;
    margin-top: 10px;
}

.tablebox .card p,
.tablebox .card-body .email {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-top: 22px;
}

.tablebox .card-body p {
    font-weight: 400;
    margin-top: 0;
}

.card .level {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.card .level img {
    width: 25px;
    height: 34px;
    margin-right: 10px;
}

.score h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 27px;
    margin-top: 30px;
}

.scorelist {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.scorelist .scoreitem {
    width: 20%;
    padding: 0 15px;
    box-sizing: border-box;
}

.scorelist .scoreitem p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 14px;
    text-align: center;
}

.scorelist .scoreitem .iteminfo {
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #EAF1E3;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #4b6a2c;
    cursor: pointer;
    margin-bottom: 10px;
}

.usercard {
    margin-top: 30px;
    margin-bottom: 80px;
    width: 100%;
    min-height: 216px;
    border: 1px solid #000000;
    border-radius: 0;
}

.usercard .infobox {
    display: flex;
    flex-wrap: wrap;
    padding: 16px;
}

.infobox .infoli {
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.usercard .infobox .infoli h3 {
    margin-top: 10px;
}

.changeUser {
    text-align: center;
    margin-top: 50px;
}

.changeUser a {
    width: 286px;
    height: 40px;
    background: #4B6A2C;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px auto 100px;
    cursor: pointer;
    transition: all .3s
}

.uploadcard .tishi {
    padding: 15px;
}

.changeUser a:hover {
    background: #4B6A2Ccc;
}

.uploadcard .infobox {
    display: flex;
    flex-wrap: wrap;
}

.inputli {
    width: 100%;
    height: 44px;
    margin-top: 15px;

}

.infoli .inputli input {
    width: 100%;
    height: 52px; /* 提高輸入框高度 */
    background: #FFFFFF;
    border-radius: 8px; /* 圓角微調 */
    border: 1px solid #ddd; /* 邊框淡化 */
    transition: all 0.3s;
    padding: 0 15px; /* 增加內距 */
    box-sizing: border-box;
    font-size: 16px; /* 提升字體以防 iOS 自動縮放 */
}

.postbtn {
    display: flex;
    margin: 44px 0;
    justify-content: center;
}

.btnGroup button {
    width: 154px;
    height: 40px;
    background: #4B6A2C;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 14px;
}

.contBox {
    display: flex;
}

.contBox .left {
    width: 38%;
    min-height: 500px;
    border: 1px solid #000000;
    border-radius: 0;
}

.contBox .left h3 {
    height: 42px;
    background: #FFD273;
    border: 1px solid #EBEBEB;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 42px;
    text-align: center;
}

.contbody .price {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.contbody .priceRow {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contbody .priceRow img {
    width: 18px;
    height: 18px;
    margin-right: 20px;
}

.contbody .priceRow span {
    display: inline-block;
    font-size: 18px;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color: #000;
}

.contbody .btnGroup {
    width: 100%;
}

.contbody .btnGroup div {
    width: 80%;
    margin: 0 auto;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background: #4B6A2C;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    transition: all .3s;
    cursor: pointer;
}

.contbody .time {
    height: 42px;
    background: #EAF1E3;
    border: 1px solid #EBEBEB;
    line-height: 42px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.choosetime {
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contbody .btn {
    width: 50%;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background: #4B6A2C;
    margin: 15px auto;
    color: #fff;
    border-radius: 5px;
}

.contBox .right {
    width: 63%;
    margin-left: 2%;
}


@media (max-width:1200px) {
    .content {
        padding: 0 2%;
        box-sizing: border-box;
    }

    .nav .nav_r {
        width: 18%;
    }

    .nav li {
        margin-left: 25px;
    }
}

@media (max-width:1000px) {
    .goodslist .goodsitem {
        width: 50%;
    }

    .tablebody {
        overflow: unset;
        height: auto;
        min-height: 200px;
    }

    .proItemBox {
        width: 49%;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .contInfo {
        flex-direction: column;
    }

    .contInfoLeft {
        width: 100%;
        box-sizing: border-box;
    }

    .contInfoRight {
        width: 100%;
        margin: 0;
        height: auto;
        padding-bottom: 20px;
    }

    .page1 .pictures_list {
        padding-left: 5%;
    }
}

@media (max-width:768px) {
    .infobox .infoli {
        width: 100%;
    }

    .tablebox {
        flex-direction: column;
    }

    .tablebox .card {
        width: 100%;
        margin-bottom: 15px;
    }
    .tablebox .card:nth-child(1){
        height: 430px;
    }
    .card .feedback{
        margin-top: 0 !important;
        margin-left: 5px;
    }
    .scorelist .scoreitem {
        width: 50%;
    }

    .table {
        overflow: scroll;
    }

    .tablist .tabitem {
        padding: 0 5px;
    }

    .cartitem .infobox {
        flex-direction: column;
    }

    .cartitem .infobox .info {
        width: 100%;
    }

    .cartitem .infobox .price {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

    .cartitem .goodsimg {
        width: 90px;
        height: 90px;
    }

    .cartitem .infobox .btn {
        border: 0;
        justify-content: flex-end;
        width: 100%;
    }

    .cartitem .infobox .info p {
        display: none;
    }

    .cartitem .infobox .btn input {
        width: 40px;
        border: 0;
    }

    .cartitem .infobox .price img {
        width: 15px;
    }

    .orderBox {
        flex-direction: column;
    }

    .orderLeft,
    .orderRight {
        width: 100%;
    }

    .orderRight {
        margin-top: 30px;
    }

    .goodslist .goodsitem {
        width: 100%;
    }

    .informatItem {
        width: 100%;
        height: 28.53333333vw;
        padding: 1.86666667vw;
        box-sizing: border-box;
        display: flex;
        cursor: pointer;
        box-shadow: 0 0 1.33333333vw #4a573a26;
        margin-bottom: 2.66666667vw;
    }

    .informatItem .imgbox {
        width: 36.8vw;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .informatItem .right {
        width: calc(100% - 36.8vw);
        padding-left: 10px;
    }

    .informatItem .right h3 {
        font-size: 3.46666667vw;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        margin-top: 0;
        height: 40px;
    }

    .informatItem .right .cont {
        margin-top: 5px;
        font-size: 12px;
        line-height: 17px;
    }

    .informatItem .right .time {
        margin-top: 5px;
    }

    .mainBox {
        width: 90%;
        padding: 0;
        box-sizing: border-box;
    }

    .zixun {
        margin-top: 50px !important;
    }

    .informatLeft {
        display: none;
    }

    .informatBox .informatRight {
        padding-left: 0;
    }

    .videobox .video_bg {
        height: 55vw;
    }

    .videobox .play {
        width: 30px;
        height: 30px;
    }

    .certificatebox {
        margin-top: 30px;
    }

    .square,
    .productBox .title {
        padding: 0 2%;
    }

    .proItemBox {
        width: 100%;
        overflow: hidden;
        margin-bottom: 20px;
        box-shadow: none;
    }

    body {
        width: 100vw;
    }

    .content {
        margin-top: 180px;
    }

    .square img {
        width: 100px;
    }

    .square .abouttext {
        font-size: 30px;
    }

    .contInfoLeft {
        height: auto;
    }

    .pc_nav .container {
        justify-content: space-between;
        flex: 1;
    }

    .mobile_new_nav {
        width: 100vw;
        height: auto;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 2001;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 0;
        display: block !important; /* 頂部 Bar 必須可見 */
    }

    .mobile_new_nav .mobile-top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 5%;
        border-bottom: 1px solid #eee;
        background: #fff;
        box-sizing: border-box;
    }

    .mobile_new_nav .logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: auto;
    }

    .mobile_new_nav .logo img {
        height: 35px;
    }

    .mobile_new_nav.active {
        height: 100vh;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .mobile_new_nav .mobile-top-btns {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mobile-cart-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        color: var(--primary, #8D19E8); /* 改為品牌色更醒目 */
        font-size: 28px; /* 增大尺寸 */
        text-decoration: none;
    }

    .mobile-cart-icon i {
        font-size: 28px !important;
    }

    /* 漢堡按鈕動畫強化 */
    .meau {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    .meau span, .meau::before, .meau::after {
        content: '';
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary, #8D19E8);
        transition: all 0.3s ease;
        position: relative;
    }

    .meau.on span { opacity: 0; }
    .meau.on::before { transform: translateY(8px) rotate(45deg); }
    .meau.on::after { transform: translateY(-8px) rotate(-45deg); }

    /* 選單內容區域優化 */
    .mobile-menu-content {
        background: #fcfcfc;
        padding: 10px 0 30px;
    }

    .mobile_new_nav .nav_m {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 0 4%;
    }

    .mobile_new_nav .nav_m li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }

    .mobile_new_nav .nav_m li a {
        padding: 12px 10px;
        font-size: 15px;
        color: #333;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 500;
    }

    /* 子選單縮排與層次 */
    .mobile_new_nav .nav_m .sub {
        background: rgba(141, 25, 232, 0.05);
        padding: 5px 0;
        margin: 8px 0;
        border-radius: 15px;
        display: none; /* 由 JS slideToggle 控制 */
        width: 100%;
    }

    /* 當子選單顯示時，內部項目強制置中 */
    .mobile_new_nav .nav_m .sub a {
        padding: 14px 0;
        width: 100%;
        font-size: 14px;
        color: #555;
        border-bottom: none !important;
        display: flex;
        justify-content: center; /* 水平置中 */
        align-items: center;    /* 垂直置中 */
        text-align: center;
        font-weight: 500;
    }

    /* 修正展開時的狀態穩定性 */
    .mobile_new_nav .nav_m .sub[style*="display: block"],
    .mobile_new_nav .nav_m .sub.on {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }

    /* 用戶功能區優化 */
    .mobile_new_nav .nav_r {
        display: flex;
        flex-direction: column;
        width: 92%;
        margin: 20px auto 0;
        gap: 10px;
        padding: 15px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .user-info-mobile {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 5px;
    }

    .user-info-mobile img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid var(--primary);
    }

    .user-info-mobile span {
        font-weight: 700;
        font-size: 16px;
        color: #333;
    }

    .logout-btn-mobile {
        text-align: center;
        font-size: 13px;
        color: #999;
        padding: 8px;
        text-decoration: underline;
    }

    .btn-primary-mobile {
        background: var(--primary);
        color: #fff !important;
        text-align: center;
        padding: 14px;
        border-radius: 10px;
        font-weight: 600;
        display: block;
    }


    .footer-nav-list {
        width: 90%;
        flex-wrap: wrap;
    }

    .footer-nav-list .navitem {
        width: 33%;
        flex: unset;
        border: 0;
    }

    .footer-bot p {
        padding: 0 5%;
        box-sizing: border-box;
        font-size: 14px;
        text-align: center;
    }


    .logo {
        width: 70%;
        padding: 0 10px;
        height: 50px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    nav .navbox {
        height: 50px;
    }

    .navbox {
        justify-content: space-between;
    }

    .meau {
        display: flex;
    }
}

@media (max-width: 768px) {
    .diagrambox{
        flex-direction: column;
    }
    .diagrambox .left,.diagrambox .right{
        width: 100%;
    }
    footer {
        /*background: #4b6a2c;*/
        padding-bottom: 20px;
    }

    .footerbox1 {
        display: flex;
        flex-direction: column;
        padding: 4.8vw 4vw 7.2vw;
        box-sizing: border-box;
    }

    .footerbox1 .footer_logo img {
        width: 50%;
        margin-bottom: 4vw;
    }

    .footerbox1 .col .title {
        font-size: 4.26666667vw;
        font-family: SourceHanSansCN-Bold, SourceHanSansCN;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4vw;
    }

    .footerbox1 .col .contact {
        border-bottom: 1px solid #fff;
        padding-bottom: 30px;
    }

    .footerbox1 .col .contact p {
        line-height: 5.33333333vw;
        font-size: 3.46666667vw;
        font-family: SourceHanSansCN-Normal, SourceHanSansCN;
        font-weight: 400;
        color: #fff;
        margin-bottom: 2vw;
    }

    .footerbox1 .col .contact a {
        color: #fff;
    }

    .footerbox1 .footer-text {
        margin-top: 30px;
        color: #fff;
    }

    .footerbox1 .iconlist {
        margin-top: 30px;
        border-bottom: 1px solid #fff;
        padding-bottom: 30px;
    }

    .footerbox1 .ljbox {
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .footerbox1 .ljbox a {
        display: inline-block;
        width: 25.86666667vw;
        height: 3.73333333vw;
        line-height: 3.73333333vw;
        color: #fff;
        border-right: 1px solid #fff;
        text-align: center;
        margin: 10px 0;
        font-size: 3.46666667vw;
    }

    .footerbox1 .ljbox a:last-child {
        border-right: 0;
    }
    .footerbox .col{
        width: 90%;
    }
    .footerbox {
        /*display: none;*/
        flex-direction: column;
        align-items: flex-start;
        padding-left: 5%;
    }
    .footerbox .footer_logo{
        width: 50%;
    }
    .footerbox .col .link{
        margin-top: 30px;
    }
    .footerbox .col .ljbox{
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .footerbox .col .title{
        width: 100%;
    }
    .page1 .homebox {
        width: 100%;
        height: 61.6vw;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        position: relative
    }

    .page1 .homebox ._bannerImg_1hizh_10 {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0
    }

    .page1 .banner_hizh {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        position: relative
    }

    .page1 .textBox {
        position: absolute;
        left: 0;
        top: 8.13333333vw;
        z-index: 10;
        padding-top: 0;
        width: 100%;
    }

    .page1 .title {
        width: auto;
        font-size: 6.13333333vw;
        font-weight: 700;
        color: var(--text-active-color);
        margin-left: 4vw
    }

    .page1 .sTitle {
        min-width: 58.53333333vw;
        font-size: 4vw;
        font-weight: 400;
        margin-top: 4vw;
        padding-left: 4vw;
        width: 100%;
        box-sizing: border-box;
    }

    .page1 .cont {
        width: 70.53333333vw;
        font-size: 2.93333333vw;
        font-weight: 400;
        color: #4b6a2c;
        margin-left: 4vw;
        margin-top: 4vw
    }

    .page1 .ellipsis {
        width: 11.73333333vw;
        height: 1.06666667vw;
        display: flex;
        justify-content: space-between;
        position: absolute;
        bottom: 0vw;
        left: 2.66666667vw
    }

    .page1 .ellipsis ._item {
        width: 1.46666667vw;
        height: 100%;
    }

    .page1 .circle {
        width: 8.26666667vw;
        height: 9.33333333vw;
        position: absolute;
        right: 0;
        bottom: -5.33333333vw;
        display: none
    }

    .page1 .circle img {
        width: 100%;
        height: 100%
    }

    .page1 .pictures_list {
        width: 69.86666667vw;
        height: 43.2vw;
        position: absolute;
        left: 24.8vw;
        bottom: -30.66666667vw;
        display: flex;
        justify-content: space-between;
        padding-left: 0;
    }

    .page1 .pictures_list ._left_1hizh_90 {
        width: 29.86666667vw;
        height: 45.86666667vw;
        padding: 1.6vw;
        box-sizing: border-box
    }

    .page1 .pictures_list ._left_1hizh_90 img {
        width: 100%;
        height: 100%
    }

    .page1 .pictures_list ._right_1hizh_102 {
        width: 38.33333333vw;
        height: 100%;
        display: block;
    }

    .page1 .pictures_list ._item {
        display: inline-block;
        width: 16.86666667vw;
        height: 16.86666667vw;
        padding: .93333333vw;
        box-sizing: border-box;
    }

    .page1 .pictures_list ._item:first-child {
        margin-right: 1.6vw
    }

    .page1 .pictures_list ._item:nth-child(3) {
        margin-right: 1.6vw;
        margin-top: 1.6vw
    }

    .page1 .pictures_list ._item:last-child {
        margin-top: 1.6vw
    }

    .page1 .pictures_list ._item img {
        width: 100%;
        height: 100%
    }

    .page1 .company {
        position: absolute;
        white-space: nowrap;
        left: 0;
        bottom: -9vw;
        width: 26.13333333vw;
        font-size: 5.33333333vw;
        font-family: SourceHanSansCN-Heavy, SourceHanSansCN;
        font-weight: 800;
        line-height: 7.2vw;
        margin-left: 2.66666667vw;
        height: auto;
    }

    .page1 .content {
        width: 100%;
        margin: 0 auto;
        margin-top: 35.73333333vw;
        position: relative
    }

    .page1 .content .square {
        display: none;
        width: 180px
    }

    .page1 .content .square img {
        width: 100%;
        height: auto
    }
}