/* 全局基础样式 - 静态站共用 */

:root {
    --max-width: 1100px;
    --border-radius: 12px;
    --primary-color: #55941E;
    --primary-color-deep: #64a927;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #f7efe3;
    font-family: "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, tahoma, arial, "WenQuanYi Micro Hei", Verdana, sans-serif, "宋体";
    font-size: 16px;
}

.hui-front-end-page {
    font-size: 16px;
}

.hui-layout-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.hui-section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.primary-color {
    color: var(--primary-color);
}


/* 导航栏 */

.hui-nav-wrapper {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background .3s linear 0s;
}

.hui-nav-wrapper.hui-nav-bg {
    background: var(--primary-color);
}

.hui-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    position: relative;
}

.hui-logoSection {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hui-logoLink {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.hui-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.hui-navMenu {
    display: flex;
    align-items: center;
    gap: 100px;
    flex: 1;
    justify-content: flex-end;
}

.hui-navItem {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.hui-navItem:hover {
    color: #fff;
}

.hui-navItem.hui-active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #fff;
}

.hui-contactSection {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: #999;
}

.hui-menuToggle {
    display: none;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    font-size: 20px;
}

.hui-navMenu-wrapper {
    display: none;
}

.hui-nav-overlay {
    display: none;
}

.hui-nav-wrapper.is-open .hui-navMenu-wrapper {
    display: none;
}


/* 轮播 Banner */

.bannerCarousel {
    width: 100%;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.bannerSlide {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.bannerSlide.active {
    opacity: 1;
    position: relative;
}

.bannerImage {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.banner-dot.active {
    background: #fff;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    font-size: 24px;
}

.banner-arrow.prev {
    left: 20px;
}

.banner-arrow.next {
    right: 20px;
}


/* 页面标题 */

.hui-page-title {
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    border-left: 5px solid var(--primary-color);
    color: var(--primary-color);
    padding-left: 20px;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
}

.hui-page-title .hui-page-subTitle {
    font-size: 24px;
    font-weight: 400;
    color: #666;
}


/* 页面横幅（产品/关于等内页） */

.hui-page-banner {
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    margin-top: 72px;
}

.hui-page-banner .hui-layout-content {
    height: 600px;
    position: relative;
}

.hui-page-banner .hui-page-banner-content {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 300px;
    margin-top: -70px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    padding-left: 30px;
    padding-bottom: 10px;
}

.hui-page-banner .hui-page-banner-content h1 {
    padding: 0;
    margin: 0;
    font-size: 60px;
}

.hui-page-banner .hui-page-banner-content h2 {
    padding: 0;
    margin: 0;
    font-size: 30px;
    font-weight: 400;
}


/* 产品中心页 */

#hui-product-page .hui-product-list-wrapper {
    padding-top: 20px;
}

#hui-product-page .hui-product-list-wrapper .hui-product-list-group {
    margin-bottom: 40px;
}

#hui-product-page .hui-product-list-wrapper .hui-product-list-group-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

#hui-product-page .hui-product-list-wrapper .hui-product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

#hui-product-page .hui-product-list-item .hui-product-list-item-image {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

#hui-product-page .hui-product-list-item .hui-product-list-item-image img {
    width: 100%;
    height: auto;
    display: block;
}

#hui-product-page .hui-product-list-item .hui-product-list-item-content-name {
    font-size: 28px;
    font-weight: 400;
    border-bottom: solid 1px #444;
    padding-top: 12px;
    padding-bottom: 8px;
}

#hui-product-page .hui-product-list-item .hui-product-list-item-content-desc {
    font-size: 14px;
}

#hui-product-page .hui-product-list-item .hui-product-list-item-content-desc ul {
    padding: 0;
    list-style: none;
}

#hui-product-page .hui-product-list-item .hui-product-list-item-content-desc li {
    padding: 0;
    margin-bottom: 5px;
}

#hui-product-page .hui-product-list-item .hui-product-list-item-content-desc p {
    margin: 0;
}

#hui-product-page .hui-product-list-item .hui-product-list-item-content-desc p img {
    margin-right: 10px;
}


/* 联系我们页 */

#hui-contact-page .hui-contact-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

#hui-contact-page .hui-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

#hui-contact-page .hui-contact-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

#hui-contact-page .hui-contact-subtitle {
    font-size: 18px;
    color: #666;
}

#hui-contact-page .hui-contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

#hui-contact-page .hui-contact-stats {
    flex: 0 0 auto;
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

#hui-contact-page .hui-contact-stats-item {
    display: flex;
    flex-direction: column;
}

#hui-contact-page .hui-contact-stats-item-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

#hui-contact-page .hui-contact-stats-item-divider {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin-bottom: 15px;
}

#hui-contact-page .hui-contact-stats-item-value {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
}

#hui-contact-page .hui-contact-stats-item-value span {
    font-size: 24px;
    font-weight: normal;
}

#hui-contact-page .hui-contact-texts {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#hui-contact-page .hui-contact-text-item {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

#hui-contact-page .hui-contact-map {
    margin-bottom: 20px;
}

#hui-contact-page .hui-contact-map iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: 0;
}

#hui-contact-page .hui-contact-wrapper p {
    font-size: 20px;
}

#hui-contact-page .hui-contact-links {
    display: flex;
    gap: 30px;
}

#hui-contact-page .hui-contact-links-item {
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
}

#hui-contact-page .hui-contact-links-item-img {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 5px;
}

#hui-contact-page .hui-contact-links-item-img img {
    height: auto;
    width: 100%;
}


/* 关于我们页 */

#hui-about-page {
    background-color: #fff;
}

#hui-about-page .hui-about-wrapper .hui-about-section-licheng {
    padding-top: 60px;
}

#hui-about-page .hui-about-wrapper .hui-about-section-licheng .hui-about-section-image {
    margin-top: 40px;
}

#hui-about-page .hui-about-wrapper .hui-about-section-licheng .hui-about-section-image img {
    width: 100%;
    height: auto;
}

#hui-about-page .hui-about-wrapper .hui-about-section-brand {
    padding-top: 60px;
}

#hui-about-page .hui-about-wrapper .hui-about-section-brand .hui-about-section-brand-list {
    display: flex;
    gap: 30px;
    padding-top: 40px;
}

#hui-about-page .hui-about-wrapper .hui-about-section-brand .hui-about-section-brand-item {
    flex: 1;
    text-align: center;
    background-color: #f7efe3;
    border: solid 1px #64a927;
    border-radius: 8px;
}

#hui-about-page .hui-about-wrapper .hui-about-section-brand .hui-about-section-brand-item-image img {
    display: block;
    width: 100%;
}

#hui-about-page .hui-about-wrapper .hui-about-section-brand .hui-about-section-brand-item-content {
    padding: 20px;
}

#hui-about-page .hui-about-wrapper .hui-about-section-brand .hui-about-section-brand-item-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

#hui-about-page .hui-about-wrapper .hui-about-section-brand .hui-about-section-brand-item-description {
    color: #666;
}

#hui-about-page .hui-about-wrapper .hui-about-section-shiming {
    padding-top: 60px;
}

#hui-about-page .hui-about-wrapper .hui-about-section-shiming .hui-about-section-image {
    margin-top: 40px;
}

#hui-about-page .hui-about-wrapper .hui-about-section-shiming .hui-about-section-image img {
    width: 100%;
    height: auto;
}

#hui-about-page .hui-about-wrapper .hui-about-section-linian {
    padding-top: 60px;
    padding-bottom: 60px;
}

#hui-about-page .hui-about-wrapper .hui-about-section-linian .hui-layout-content .hui-about-section-linian-content {
    padding-top: 40px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

#hui-about-page .hui-about-wrapper .hui-about-section-linian dl {
    flex: 1;
    padding: 0;
    margin: 0;
}

#hui-about-page .hui-about-wrapper .hui-about-section-linian dt {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    padding: 0 0 10px 0;
    margin: 0;
}

#hui-about-page .hui-about-wrapper .hui-about-section-linian dd {
    font-size: 18px;
    padding: 0;
    margin: 0;
    color: #666;
}


/* 新闻列表页 */

#hui-article-list-page .hui-article-list-wrapper {
    padding-top: 60px;
    padding-bottom: 40px;
}

#hui-article-list-page .hui-article-list-item {
    margin-bottom: 20px;
    background-color: #fff;
    overflow: hidden;
    padding: 20px;
    display: flex;
    gap: 30px;
}

#hui-article-list-page .hui-article-list-item-image {
    width: 220px;
    flex-shrink: 0;
}

#hui-article-list-page .hui-article-list-item-image img {
    width: 100%;
    height: auto;
    display: block;
}

#hui-article-list-page .hui-article-list-item-content {
    flex: 1;
}

#hui-article-list-page .hui-article-list-item-content-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
}

#hui-article-list-page .hui-article-list-item-content-description {
    font-size: 16px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#hui-article-list-page .hui-article-list-item-content-date {
    font-size: 12px;
    color: #999;
    display: flex;
    justify-content: space-between;
}

#hui-article-list-page .hui-article-list-item-content a {
    color: #333;
    text-decoration: none;
}

#hui-article-list-page .hui-article-list-item-content a:hover {
    color: var(--primary-color);
}


/* 新闻详情页 */

#hui-article-detail-page .hui-article-detail-wrapper {
    padding-top: 60px;
}

#hui-article-detail-page .hui-article-detail-wrapper h1 {
    text-align: center;
    font-size: 36px;
    margin: 0;
    margin-bottom: 30px;
}

#hui-article-detail-page .hui-article-detail-info {
    text-align: center;
    border-bottom: solid 1px #64a927;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

#hui-article-detail-page .hui-article-detail-info-item {
    margin-right: 10px;
}

#hui-article-detail-page .hui-article-detail-info-label {
    color: #999;
}

#hui-article-detail-page .hui-article-detail-info-value {
    color: #666;
}

#hui-article-detail-page .hui-article-detail-content {
    font-size: 16px;
    line-height: 1.8;
}

#hui-article-detail-page .hui-article-detail-content p {
    margin-bottom: 10px;
    text-indent: 2em;
}

#hui-article-detail-page .hui-article-detail-content img {
    max-width: 100%;
}

#hui-article-detail-page .hui-article-detail-content ul {
    margin-bottom: 10px;
    padding-inline-start: 20px;
}


/* 首页 - 关于 */

#hui-home-page .hui-home-section-about .hui-home-section-about-item {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
    margin-top: 40px;
}

#hui-home-page .hui-home-section-about .hui-home-section-about-item-img {
    flex: 0 0 auto;
    width: 50%;
}

#hui-home-page .hui-home-section-about .hui-home-section-about-item-img img {
    height: auto;
    display: block;
    width: 100%;
}

#hui-home-page .hui-home-section-about .hui-home-section-about-item-content {
    flex: 1;
}

#hui-home-page .hui-home-section-about .hui-home-section-about-item-text {
    color: #55941E;
    text-align: justify;
}

#hui-home-page .hui-home-section-about .hui-home-section-about-item.hui-home-section-about-item-reverse .hui-home-section-about-item-content {
    font-size: 18px;
    text-align: justify;
}

#hui-home-page .hui-home-section-about .hui-home-section-about-item.hui-home-section-about-item-reverse .hui-home-section-about-item-content p {
    margin: 0 0 15px;
}

#hui-home-page .hui-home-section-about .hui-home-section-about-item.hui-home-section-about-item-reverse .hui-home-section-about-item-content .hui-home-section-about-p-last {
    margin-bottom: 40px;
}

#hui-home-page .hui-home-section-about .hui-home-section-about-item.hui-home-section-about-item-reverse .hui-home-section-about-item-img {
    width: 48%;
}


/* 首页 - 历程 */

#hui-home-page .hui-home-section-licheng {
    background-color: #fff;
}

#hui-home-page .hui-home-section-licheng .hui-home-section-image {
    padding-top: 40px;
}


/* 首页 - 产品 */

#hui-home-page .hui-home-section-product .hui-home-section-product-list {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin-top: 40px;
}

#hui-home-page .hui-home-section-product .hui-home-section-product-item {
    flex: 1 1 0%;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    background: var(--primary-color-deep);
}

#hui-home-page .hui-home-section-product .hui-home-section-product-item-img img {
    width: 100%;
    height: auto;
    display: block;
}

#hui-home-page .hui-home-section-product .hui-home-section-product-item-description {
    color: #fff;
    padding: 20px;
    text-align: left;
}


/* 首页 - 草原优势 */

#hui-home-page .hui-home-section-advantage {
    background-color: #fff;
}

#hui-home-page .hui-home-section-advantage .hui-home-section-advantage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

#hui-home-page .hui-home-section-advantage .hui-home-section-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

#hui-home-page .hui-home-section-advantage .hui-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6px;
}

#hui-home-page .hui-home-section-advantage .hui-icon img {
    width: 48px;
    height: 48px;
}

#hui-home-page .hui-home-section-advantage .hui-home-section-advantage-item-title {
    font-size: 22px;
    color: #55941E;
    margin-bottom: 6px;
}


/* 页脚 */

.hui-footer-wrapper {
    background: var(--primary-color);
    color: #fff;
}

.hui-footer-logoLink {
    padding: 20px 0;
}

.hui-footer-logoLink .hui-layout-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.hui-footer-logoLink-left-logo {
    margin-bottom: 20px;
}

.hui-footer-logo {
    vertical-align: middle;
    height: 40px;
    margin-right: 30px;
}

.hui-footer-slogan {
    vertical-align: middle;
    height: 40px;
}

.hui-footer-tel {
    font-size: 30px;
}

.hui-footer-logoLink-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hui-footer-links-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.hui-footer-links-item-img {
    border: 2px solid #fff;
    padding: 5px;
    background-color: #fff;
    margin-bottom: 10px;
}

.hui-footer-links-item-img img {
    width: 100px;
    height: auto;
    display: block;
}

.hui-footer-links-item-img.no-border {
    background-color: transparent;
    border: none;
    padding: 0;
}

.hui-footer-links-item-img.no-border img {
    width: 106px;
    height: auto;
}

.hui-footer-copyright {
    font-size: 14px;
    line-height: 1.8;
    border-top: solid 1px #64a927;
    padding: 20px;
    color: #ddd;
    text-align: center;
}


/* 响应式 */

@media (max-width: 1024px) {
    .hui-section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hui-nav-content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .hui-logo {
        height: 36px;
    }
    .hui-navMenu {
        display: none;
    }
    .hui-navItem {
        font-size: 16px;
        padding: 6px 0;
    }
    .hui-contactSection {
        gap: 12px;
    }
    .hui-menuToggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .hui-nav-wrapper.is-open .hui-navMenu-wrapper {
        position: fixed;
        display: block;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 1001;
        background-color: #fff;
    }
    .hui-nav-wrapper.is-open .hui-navMenu-wrapper .hui-navMenu {
        display: block;
    }
    .hui-nav-wrapper.is-open .hui-navMenu-wrapper .hui-navItem {
        display: block;
        padding: 16px;
        font-size: 16px;
        color: #333;
        text-decoration: none;
        transition: background-color 0.3s;
    }
    .hui-nav-wrapper.is-open .hui-navMenu-wrapper .hui-navItem:hover {
        background-color: #f7f7f7;
    }
    .hui-nav-wrapper.is-open .hui-nav-overlay {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.25);
        z-index: 999;
    }
    #hui-home-page .hui-home-section-about .hui-home-section-about-item.hui-home-section-about-item-reverse {
        display: block;
    }
    #hui-home-page .hui-home-section-about .hui-home-section-about-item.hui-home-section-about-item-reverse .hui-home-section-about-item-content {
        font-size: 16px;
    }
    #hui-home-page .hui-home-section-about .hui-home-section-about-item.hui-home-section-about-item-reverse .hui-home-section-about-item-content .hui-home-section-about-p-last {
        margin-bottom: 20px;
    }
    #hui-home-page .hui-home-section-about .hui-home-section-about-item.hui-home-section-about-item-reverse .hui-home-section-about-item-img {
        width: 100%;
    }
    #hui-product-page .hui-product-list-wrapper .hui-product-list {
        grid-template-columns: repeat(2, 1fr);
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-linian .hui-layout-content .hui-about-section-linian-content {
        display: block;
        padding-top: 20px;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-linian dl {
        margin-bottom: 20px;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-linian dl:last-child {
        margin-bottom: 0;
    }
    .hui-page-banner {
        height: 400px;
    }
    .hui-page-banner .hui-layout-content {
        height: 400px;
    }
    .hui-page-banner .hui-page-banner-content {
        margin-top: -50px;
    }
    .hui-page-banner .hui-page-banner-content h1 {
        font-size: 40px;
    }
    .hui-page-banner .hui-page-banner-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hui-section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .bannerCarousel {
        margin-top: 64px;
    }
    .hui-page-title {
        font-size: 30px;
        line-height: 30px;
        border-left-width: 3px;
    }
    .hui-page-title .hui-page-subTitle {
        display: block;
        padding-top: 10px;
        font-size: 16px;
        line-height: 1.6;
    }
    .hui-footer-logoLink {
        text-align: center;
    }
    .hui-footer-logoLink .hui-layout-content {
        display: block;
    }
    .hui-footer-logoLink-left {
        margin-bottom: 20px;
    }
    .hui-footer-logoLink-left-logo {
        margin-bottom: 10px;
    }
    .hui-footer-tel {
        font-size: 20px;
    }
    .hui-footer-links-item-img img {
        width: 87px;
    }
    #hui-home-page .hui-home-section-about .hui-home-section-about-item {
        margin-top: 30px;
        display: block;
    }
    #hui-home-page .hui-home-section-about .hui-home-section-about-item-img {
        width: 100%;
    }
    #hui-home-page .hui-home-section-about .hui-home-section-about-item-content {
        margin-top: 20px;
    }
    #hui-home-page .hui-home-section-advantage .hui-home-section-advantage-list {
        display: block;
        margin-top: 0;
    }
    #hui-home-page .hui-home-section-advantage .hui-home-section-advantage-item {
        margin-top: 20px;
    }
    #hui-home-page .hui-home-section-product {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #hui-home-page .hui-home-section-product .hui-home-section-product-list {
        display: block;
        margin-top: 0;
    }
    #hui-home-page .hui-home-section-product .hui-home-section-product-item {
        margin-top: 20px;
    }
    .hui-page-banner {
        height: 300px;
        margin-top: 64px;
    }
    .hui-page-banner .hui-layout-content {
        height: 300px;
    }
    .hui-page-banner .hui-page-banner-content {
        margin-top: -45px;
    }
    .hui-page-banner .hui-page-banner-content h1 {
        font-size: 36px;
    }
    .hui-page-banner .hui-page-banner-content h2 {
        font-size: 18px;
    }
    #hui-product-page .hui-product-list-wrapper {
        margin-bottom: 20px;
    }
    #hui-product-page .hui-product-list-wrapper .hui-product-list {
        grid-template-columns: repeat(1, 1fr);
    }
    #hui-product-page .hui-product-list-item .hui-product-list-item-image {
        display: block;
        width: 100%;
        max-width: 100%;
    }
    #hui-contact-page .hui-contact-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #hui-contact-page .hui-contact-header {
        margin-bottom: 40px;
    }
    #hui-contact-page .hui-contact-title {
        font-size: 24px;
    }
    #hui-contact-page .hui-contact-subtitle {
        font-size: 16px;
    }
    #hui-contact-page .hui-contact-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    #hui-contact-page .hui-contact-stats {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    #hui-contact-page .hui-contact-stats-item-label {
        font-size: 14px;
        margin-bottom: 10px;
    }
    #hui-contact-page .hui-contact-stats-item-divider {
        margin-bottom: 10px;
    }
    #hui-contact-page .hui-contact-stats-item-value {
        font-size: 32px;
    }
    #hui-contact-page .hui-contact-stats-item-value span {
        font-size: 18px;
    }
    #hui-contact-page .hui-contact-texts {
        gap: 20px;
    }
    #hui-contact-page .hui-contact-text-item {
        font-size: 14px;
    }
    #hui-contact-page .hui-contact-map iframe {
        height: 400px;
    }
    #hui-contact-page .hui-contact-links {
        gap: 20px;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-licheng {
        padding-top: 40px;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-licheng .hui-about-section-image {
        margin-top: 20px;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-brand {
        padding-top: 40px;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-brand .hui-about-section-brand-list {
        display: block;
        padding-top: 20px;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-brand .hui-about-section-brand-item {
        text-align: center;
        margin-bottom: 20px;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-brand .hui-about-section-brand-item:last-child {
        margin-bottom: 0;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-brand .hui-about-section-brand-item-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-shiming {
        padding-top: 40px;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-shiming .hui-about-section-image {
        margin-top: 20px;
    }
    #hui-about-page .hui-about-wrapper .hui-about-section-linian {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #hui-article-list-page .hui-article-list-wrapper {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    #hui-article-list-page .hui-article-list-item {
        display: block;
        padding: 0;
        margin-bottom: 20px;
    }
    #hui-article-list-page .hui-article-list-item-image {
        width: 100%;
    }
    #hui-article-list-page .hui-article-list-item-content {
        padding: 10px;
    }
    #hui-article-list-page .hui-article-list-item-content-title {
        font-size: 18px;
    }
    #hui-article-list-page .hui-article-list-item-content-description {
        font-size: 16px;
    }
    #hui-article-list-page .hui-article-list-item-content-date {
        font-size: 12px;
    }
    #hui-article-detail-page .hui-article-detail-wrapper {
        padding-top: 40px;
    }
    #hui-article-detail-page .hui-article-detail-wrapper h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    #hui-article-detail-page .hui-article-detail-info {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    #hui-article-detail-page .hui-article-detail-content p {
        text-indent: 0;
    }
    #hui-article-detail-page .hui-article-detail-content ul {
        padding-inline-start: 20px;
    }
}