/* 侧边悬浮栏 */
.yc-sidebar {
    position: fixed;
    right: 1.25rem;
    bottom: 2rem;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.yc-sidebar-item {
    position: relative;
    cursor: pointer;
}

.yc-sidebar-icon {
    width: 3rem;
    height: 3rem;
    background-color: #ec6935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25rem 0.75rem rgba(236, 105, 53, 0.4);
    transition: all 0.3s ease;
}

.yc-sidebar-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.yc-sidebar-item:hover .yc-sidebar-icon {
    background-color: #d85a2a;
    transform: scale(1.1);
}

.yc-sidebar-tooltip {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    color: #333;
}

.yc-sidebar-tooltip::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0.5rem solid transparent;
    border-left-color: #fff;
}

.yc-sidebar-item:hover .yc-sidebar-tooltip {
    opacity: 1;
    visibility: visible;
}

.yc-sidebar-phone-tip {
    min-width: 12rem;
}

.yc-sidebar-phone-list p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.yc-sidebar-phone-list p i {
    color: #ec6935;
    font-size: 1rem;
}

.yc-sidebar-wechat-qr {
    text-align: center;
}

.yc-sidebar-wechat-qr img {
    width: 6rem;
    height: 6rem;
    margin-bottom: 0.5rem;
}

.yc-sidebar-wechat-qr p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

/* 返回顶部 - 默认隐藏 */
.yc-sidebar-top {
    display: none;
}

.yc-sidebar-top .yc-sidebar-tooltip {
    font-size: 0.875rem;
}

/* 留言表单 */
.yc-sidebar-message-tip a {
    color: #ec6935;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.yc-sidebar-message-tip a:hover {
    color: #d85a2a;
    text-decoration: underline;
}

/* 在线客服 */
.yc-sidebar-service-tip a {
    color: #ec6935;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.yc-sidebar-service-tip a:hover {
    color: #d85a2a;
    text-decoration: underline;
}


/* 响应式设计 - 移动端隐藏部分功能 */
@media (max-width: 768px) {
    .yc-sidebar {
        right: 0.75rem;
        bottom: 1.5rem;
        gap: 0.5rem;
    }

    .yc-sidebar-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .yc-sidebar-icon i {
        font-size: 1.25rem;
    }

    .yc-sidebar-tooltip {
        right: 2.75rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .yc-sidebar-phone-tip {
        min-width: 10rem;
    }

    .yc-sidebar-wechat-qr img {
        width: 4.5rem;
        height: 4.5rem;
    }

}
/* 容器样式 */
.yc-container {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10rem;
    position: relative;
    display: block;
}



/* 头部导航 */
.yc-header {
    /*background-color: rgba(0, 0, 0, 0.3);*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* 单页导航默认白色背景（直接使用 scrolled 样式） */
.yc-page .yc-header {
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
}

.yc-page .yc-header .yc-logo-img {
    display: none;
}

.yc-page .yc-header .yc-logo-img-hover {
    display: block;
}

.yc-page .yc-header .yc-nav a {
    color: #333;
}
.yc-page .yc-header .yc-nav li a:hover {
    color: #ec6935;
}
.yc-page .yc-header .yc-nav .active {
    position: relative;
}
.yc-page .yc-header .yc-nav .active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #ec6935;
    border-radius: 2px;
}
.yc-page .yc-header .yc-nav .active a {
    color: #ec6935;
}
.yc-page .yc-header .yc-search-btn {
    background-color: #ec6935;
}

.yc-page .yc-header .yc-search-icon {
    color: #fff;
}

.yc-page .yc-header .yc-menu-btn span {
    background-color: #333;
}

.yc-header.scrolled {
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
}

.yc-header .yc-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6.25rem;
}

.yc-logo {
    display: flex;
    align-items: center;
    position: relative;
}

.yc-logo-img {
    height: 3.75rem;
    transition: all 0.3s ease;
    display: block;
}

.yc-logo-img-hover {
    height: 3.75rem;
    transition: all 0.3s ease;
    display: none;
}

.yc-header.scrolled .yc-logo-img {
    display: none;
}

.yc-header.scrolled .yc-logo-img-hover {
    display: block;
}

.yc-header-right {
    display: flex;
    align-items: center;
}

.yc-nav {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.yc-nav ul {
    display: flex;
    list-style: none;
}

.yc-nav li {
    position: relative;
    margin-left: 2.5rem;
}

.yc-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.625rem 0;
}

.yc-header.scrolled .yc-nav a {
    color: #333;
}

.yc-nav a:hover,
.yc-nav li.active a,
.yc-header.scrolled .yc-nav a:hover,
.yc-header.scrolled .yc-nav li.active a {
    color: #ec6935;
}

.yc-subnav {
    position: absolute;
    top: 100%;
    left: -1rem;
    background-color: #fff;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    min-width: 11rem;
    width: auto;
    display: none;
    z-index: 1001;
    border-radius: 0.5rem;
    border: 1px solid #f0f0f0;
}

.yc-subnav::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.yc-nav li:hover .yc-subnav {
    display: block;
}

.yc-subnav-box {
    padding: 0 1.25rem;
}

.yc-subnav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #333;
    transition: all 0.3s ease;
}

.yc-subnav a:hover {
    color: #ec6935;
    background-color: #fef6f3;
}

.yc-subnav h4 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.yc-subnav-arrow {
    width: 0.4375rem;
    height: 0.4375rem;
    border-right: 0.125rem solid #333;
    border-bottom: 0.125rem solid #333;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: -0.0625rem;
}

.yc-subnav a:hover .yc-subnav-arrow {
    border-right-color: #ec6935;
    border-bottom-color: #ec6935;
}

.yc-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 0;
}

.yc-header-mobile-right {
    display: none;
}

/* 媒体查询 - 移动端显示搜索按钮和菜单按钮 */
@media (max-width: 1200px) {
    .yc-header-right {
        display: none;
    }
    
    .yc-header-mobile-right {
        display: flex;
        align-items: center;
    }
    
    .yc-header-mobile-actions {
        display: flex;
        align-items: center;
        margin-right: 1rem;
    }
    
    .yc-menu-btn {
        display: flex;
    }
}

.yc-search-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.yc-header.scrolled .yc-search-btn {
    background-color: #ec6935;
}

.yc-search-icon {
    width: 0.875rem;
    height: 0.875rem;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 0.875rem;
    line-height: 0.875rem;
}

.yc-header.scrolled .yc-search-icon {
    color: #fff;
}

.yc-search-btn:hover {
    transform: scale(1.1);
    background-color: rgba(236, 105, 53, 0.9);
    box-shadow: 0 4px 12px rgba(236, 105, 53, 0.4);
}

.yc-search-btn:hover .yc-search-icon {
    color: #fff;
    transform: rotate(15deg);
}

/* 移动端导航 */
.yc-mobile-nav {
    display: none;
}

.yc-menu-btn {
    display: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.yc-menu-btn span {
    width: 1.5rem;
    height: 0.125rem;
    background-color: #fff;
    margin: 0.1875rem 0;
    transition: all 0.3s ease;
}

.yc-header.scrolled .yc-menu-btn span {
    background-color: #333;
}

.yc-menu-btn:hover span {
    background-color: #ec6935;
}

/* 媒体查询 - 移动端显示搜索按钮 */
@media (max-width: 992px) {
    .yc-header-actions {
        display: flex;
        align-items: center;
        margin-right: 1rem;
    }
    
    .yc-menu-btn {
        display: flex;
    }
    
    .yc-header-right {
        display: none;
    }
}

/* Banner模块 */
#banner {
    position: relative;
    z-index: 0;
    width: 100%;
    overflow: hidden;
}

.banner-carousel {
    width: 100%;
}

.banner-slide {
    height:70vh;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banner-slide video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

#banner .img {
    height: 70vh;
}

#banner .img img {
    transform: none !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#banner .img:after {
    content: '';
    display: block;
    padding-top: 50%;
}

#banner .banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

#banner .banner-container {
    max-width: 1920px;
    width: 100%;
    padding: 0 10rem;
    height: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
}

#banner .banner-content {
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#banner .banner-content>* {
    opacity: 0;
}

#banner .banner-content h3 {
    font-size: 5.25rem;
    color: #fff;
    font-family: Alibaba-PuHuiTi-Heavy;
    margin-bottom: 1.75rem;
}

#banner .banner-content h3 span {
    color: #fff;
}

#banner .banner-content p {
    font-size: 1.5rem;
    line-height: 1.875rem;
    margin-bottom: 4.75rem;
}

#banner .banner-content .banner-buttons {
    display: flex;
    gap: .9375rem;
}


/* 动画效果 */
@-webkit-keyframes enter {
    0% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }

    20% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
}

@keyframes enter {
    0% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }

    20% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
}

#banner .slick-active .banner-content h3 {
    animation: enter 1.2s forwards .1s;
}

#banner .slick-active .banner-content p {
    animation: enter 1.2s forwards .2s;
}

#banner .slick-active .banner-content .banner-buttons {
    animation: enter 1.2s forwards .3s;
}



/* 按钮样式 */
.btn_border {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    width: 14.0625rem;
    height: 3.4375rem;
    transition: .5s;
    gap: 1rem;
    border-radius: 1.5rem;
    font-size: 1.125rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
}

.btn_border:hover {
    background: #fff;
    color: #ec6935;
}

.btn_border i {
    font-weight: bold;
    font-size: .875rem;
    transition: 0s;
}

.btn_liaojie {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    width: 14.0625rem;
    height: 3.125rem;
    gap: 1rem;
    border-radius: 1.5rem;
    font-size: 1.125rem;
    background: #fff;
    color: #ec6935;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn_liaojie:hover {
    background-color: #d85a2a;
    color: #fff;
}

.btn_liaojie i {
    font-weight: bold;
    font-size: .875rem;
    transition: .5s;
}

.btn_liaojie:hover i {
    transform: translateX(10px);
}

/* 了解阳春模块 */
.yc-about-intro {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

.yc-about-intro-left {
    flex: 1;
    padding-right: 3.75rem;
}

.yc-about-intro-right {
    flex: 1;
    overflow: hidden;
    border-radius: 0.5rem;
}

.yc-about-intro h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    color: #333;
}

.yc-about-intro h3 {
    font-size: 1.25rem;
    color: #ec6935;
    margin-bottom: 1.875rem;
}

.yc-about-intro p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.875rem;
    color: #666;
}

.yc-about-intro .yc-btn {
    display: inline-block;
    padding: 0.75rem 1.875rem;
    background-color: #ec6935;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.yc-about-intro .yc-btn:hover {
    background-color: #d85a2a;
}

.yc-about-intro-img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.yc-about-intro-right:hover .yc-about-intro-img {
    transform: scale(1.05);
}

/* 关于阳春啤酒模块 */
.yc-about-company {
    padding: 5rem 0;
    background-color: #fff;
}

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

.yc-about-company-left {
    flex: 1;
    padding-right: 3.75rem;
}

.yc-about-company-right {
    flex: 1;
}

.yc-about-company h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    color: #333;
}

.yc-about-company p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.875rem;
    color: #666;
    text-align: justify;
}

.yc-about-company .yc-btn {
    display: inline-block;
    padding: 0.75rem 1.875rem;
    background-color: #ec6935;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.yc-about-company .yc-btn:hover {
    background-color: #d85a2a;
}

.yc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
}

.yc-stat-item {
    text-align: center;
    padding: 1.875rem;
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.yc-stat-item:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
}

.yc-stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ec6935;
    margin-bottom: 0.625rem;
}

.yc-stat-label {
    font-size: 0.875rem;
    color: #999;
    white-space: nowrap;
}

/* 产品中心模块 */
.yc-products {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.yc-section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.yc-section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #313131;
    position: relative;
    display: inline-block;
}

.yc-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background-color: #ec6935;
    border-radius: 0.125rem;
}

.yc-section-header p {
    font-size: 1rem;
    color: #666;
}

.yc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
    margin-bottom: 2.5rem;
}

.yc-product-item {
    background-color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.yc-product-item:hover {
    transform: translateY(-12px);
        -webkit-transform: translateY(-12px);
        -moz-transform: translateY(-12px);
        -ms-transform: translateY(-12px);
        -o-transform: translateY(-12px);
}

.yc-product-img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}


.yc-product-info {
    text-align: left;
    position: relative;
    padding: 1.25rem;
    min-height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.yc-product-info h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    color: #333;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 85%;
}

.yc-product-info::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.6875rem;
    height: 2.6875rem;
    background: url(../images/yccp_ico01.png) center no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
}

.yc-product-item:hover .yc-product-info h4 {
    color: #ec6935;
}

.yc-product-item:hover .yc-product-info::after {
    background: url(../images/yccp_ico02.png) center no-repeat;
    background-size: contain;
}

.yc-products-more {
    text-align: center;
}

.yc-products-more .yc-btn {
    display: inline-block;
    padding: 0.75rem 1.875rem;
    background-color: #ec6935;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.yc-products-more .yc-btn:hover {
    background-color: #d85a2a;
}

/* 阳春超级供应链模块 */
.yc-chain {
    padding: 3.75rem 0;
    background-color: #fff;
}

.yc-chain-tab-nav {
    position: relative;
    margin-bottom: 3.75rem;
    padding: 0 3.75rem;
}

.yc-chain-tab-nav .m {
    position: relative;
    overflow: hidden;
}

.yc-chain-tab-nav .swiper-container {
    width: 100%;
}

.yc-chain-tab-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yc-chain-tab-item a {
    display: block;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    margin: 8px;
    border-radius: 0.375rem;
    padding: 1rem;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yc-chain-tab-item .yc-chain-ico {
    margin-bottom: 0.625rem;
    position: relative;
    display: inline-block;
}

.yc-chain-tab-item .yc-chain-ico img {
    width: 3rem;
    height: 3rem;
    transition: all 0.3s ease;
}

.yc-chain-tab-item .yc-chain-ico-normal {
    display: block;
}

.yc-chain-tab-item .yc-chain-ico-active {
    display: none;
}

.yc-chain-tab-item h4 {
    font-size: 1.125rem;
    margin: 0;
    text-align: center;
    color: #021221;
    transition: all 0.3s ease;
}

.yc-chain-tab-item.swiper-slide-thumb-active a {
    background: #ec6935;
}

.yc-chain-tab-item.swiper-slide-thumb-active a h4 {
    color: #fff;
}

.yc-chain-tab-item.swiper-slide-thumb-active .yc-chain-ico-normal {
    display: none;
}

.yc-chain-tab-item.swiper-slide-thumb-active .yc-chain-ico-active {
    display: block;
}

.yc-chain-tab-nav .yc-chain-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    margin: 0;
    background: #f9f9f9 !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
}

.yc-chain-tab-nav .yc-chain-arr i {
    color: #999999;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.yc-chain-tab-nav .yc-chain-arr:hover {
    background-color: #ec6935 !important;
}

.yc-chain-tab-nav .yc-chain-arr:hover i {
    color: #fff;
}

.yc-chain-tab-nav .yc-chain-arr-prev {
    left: 0;
}

.yc-chain-tab-nav .yc-chain-arr-next {
    right: 0;
}

.yc-chain-tab-content {
    margin-top: 2.5rem;
    position: relative;
    z-index: 5;
}

.yc-chain-tab-content .yc-chain-content-wrap {
    position: relative;
}

.yc-chain-tab-content .yc-chain-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.yc-chain-tab-content .yc-chain-desc {
    flex: 1;
    border-radius: 0.5rem;
}

.yc-chain-tab-content .yc-chain-desc h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
}

.yc-chain-tab-content .yc-chain-detail p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.875rem;
}

.yc-chain-tab-content .yc-chain-stats {
    margin-bottom: 1.875rem;
}

.yc-chain-tab-content .yc-chain-stats ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.yc-chain-tab-content .yc-chain-stats li {
    list-style: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.5rem;
    background-color: #f5f5f5;
    border-radius: 0.3125rem;
    transition: all 0.3s ease;
    color: #333;
}

.yc-chain-tab-content .yc-chain-stats li::before {
    content: '';
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    background-image: url(../images/shizi1.png);
    background-size: cover;
    transition: all 0.3s ease;
}

.yc-chain-tab-content .yc-chain-stats li:hover {
    background-color: #ec6935;
    color: #fff;
}

.yc-chain-tab-content .yc-chain-stats li:hover::before {
    background-image: url(../images/shizi2.png);
}

.yc-chain-tab-content .yc-chain-stat-text {
    margin: 0;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yc-chain-tab-content .yc-chain-img {
    flex: 1;
}

.yc-chain-tab-content .yc-chain-img img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.yc-chain-tab-content:hover .yc-chain-img img {
    filter: brightness(1.1);
}

/* 响应式布局 */
@media (max-width: 1440px) {
    #banner .banner-container {
        padding: 0 9rem;
    }
}

@media (max-width: 1360px) {
    #banner .banner-container {
        padding: 0 8rem;
    }
}

@media (max-width: 1280px) {
    #banner .banner-container {
        padding: 0 7rem;
    }
}

@media (max-width: 1200px) {
    #banner .banner-container {
        padding: 0 6rem;
    }
}

@media (max-width: 1190px) {
    #banner .img,
    .banner-slide {
        height: 40vh;
    }
    
    #banner .banner-content h3 {
        font-size: 4.25rem;
    }
    #banner .banner-container {
        padding: 0 5rem;
    }
}
@media (max-width: 820px) {
    .yc-chain-tab-item h4 {
        font-size: 0.875rem;
    }
}
@media (max-width: 768px) {
    #banner .banner-content h3 {
        font-size: 3rem;
    }
    #banner .banner-container {
        padding: 0 30px;
    }
    
    .yc-chain-tab-content .yc-chain-content {
        flex-direction: column;
        gap: 1.875rem;
    }
    
    .yc-chain-tab-content .yc-chain-desc,
    .yc-chain-tab-content .yc-chain-img {
        width: 100%;
    }
    
    .yc-chain-stats ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.375rem;
    }
    
    .yc-chain-stats li {
        padding: 0.375rem 0.5rem;
    }
    
    .bsico {
        width: 1rem;
        height: 1rem;
        margin-right: 0.375rem;
    }
    
    .yc-chain-stat-text {
        font-size: 0.625rem;
    }
    
    .yc-chain-tab-content .yc-chain-img img {
        max-height: 200px;
        object-fit: cover;
    }
    
    .yc-chain-tab-item a {
        padding: 0.9375rem 1.25rem 1.125rem;
        margin: 4px;
    }
    
    .yc-chain-tab-item .yc-chain-ico img {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .yc-chain-tab-item h4 {
        font-size: 0.875rem;
    }
}
@media (max-width: 540px) {
    .yc-chain-tab-item h4 {
        font-size: 0.875rem;
    }
}
@media (max-width: 480px) {
    #banner .img,
    .banner-slide {
        height: 30vh;
    }
    
    #banner .banner-content h3 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    
    #banner .banner-content p {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .btn_border,
    .btn_liaojie {
        width: 10rem;
    }
    
    #banner .banner-container {
        padding: 0 15px;
    }
    
    #banner .slick-arrow {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .yc-chain-stats ul {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yc-chain-tab-content .yc-chain-content {
        gap: 1.875rem;
    }
    
    .yc-chain-tab-content .yc-chain-desc,
    .yc-chain-tab-content .yc-chain-img {
        flex: 1;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .yc-chain-stats ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .yc-chain-tab-content .yc-chain-content {
        gap: 2.5rem;
    }
}

/* 阳春大记事模块 */

.yc-news {
    padding: 2.5rem 0;
    background: #fff;
}

.yc-news-content {
    display: flex;
    flex-direction: row-reverse;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.yc-news-list {
    flex: 1;
    overflow: hidden;
    max-width: 100%;
}

.yc-news-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yc-news-list li {
    padding: 1.25rem 0;
    border-bottom: 0.0625rem solid #ebeef0;
}

.yc-news-list li:first-child {
    padding-top: 0;
}

.yc-news-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.yc-news-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
}

.yc-news-item:hover {
    transform: translateX(5px);
}

.yc-news-item:hover .yc-news-info h4 {
    color: #ec6935;
}

.yc-news-box {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.yc-news-info {
    flex: 1;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.yc-news-info h4 {
    margin: 0 0 0.625rem 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: #313131;
    transition: 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yc-news-info span {
    font-size: 0.875rem;
    color: #616161;
}

.yc-news-content .yc-news-line {
    width: 1px;
    height: auto;
    background: #ebeef0;
    margin: 0 2.875rem;
}

.yc-news-featured {
    flex: 1;
    max-width: 100%;
}

.yc-news-featured-item {
    display: block;
    height: 100%;
    background: #f4f4f4;
    border-radius: 0.9375rem;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.yc-news-featured-item:hover .yc-news-featured-img img {
    transform: scale(1.05);
}

.yc-news-featured-item:hover h4 {
    color: #ec6935;
}

.yc-news-featured-img {
    position: relative;
    overflow: hidden;
}

.yc-news-featured-img:after {
    content: '';
    display: block;
    padding-top: 70%;
}

.yc-news-featured-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.yc-news-featured-info {
    padding: 1.875rem 2.5rem;
}

.yc-news-featured-info h4 {
    margin: 0 0 0.9375rem 0;
    font-size: 1.375rem;
    line-height: 2.125rem;
    font-weight: 500;
    color: #313131;
    transition: 0.5s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yc-news-featured-info p {
    margin: 1rem 0;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #616161;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yc-news-featured-info span {
    font-size: 0.875rem;
    color: #616161;
    line-height: 1.375rem;
}

.yc-news-more {
    text-align: center;
    margin-top: 2rem;
}

.yc-news-more .yc-btn {
    display: inline-block;
    padding: 0.75rem 1.875rem;
    background-color: #ec6935;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.yc-news-more .yc-btn:hover {
    background-color: #d85a2a;
}

.yc-typetxt {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}

.yc-txtovh2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}

/* 服务特色模块 */
.yc-services {
    width: 100%;
    padding: 3.75rem 0;
    background: url(../images/services_bg.jpg) center no-repeat;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
}

.yc-services-bd {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.25rem 0;
    z-index: 1;
}

.yc-services-centerbox {
    position: relative;
}

.yc-services-ttbox {
    position: relative;
}

.yc-services-ttbox img {
    display: block;
    width: 25rem;
}

.yc-services-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.yc-service-item {
    display: flex;
    align-items: center;
    position: absolute;
    transition: all 0.3s ease;
}

.yc-service-item:hover {
    transform: scale(1.05);
}

.yc-service-item:hover .yc-service-icon {
    background-color: #f0f0f0;
}

.yc-service-icon {
    margin: 0 1rem;
    flex-shrink: 0;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-image: url(../images/shizi1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.yc-service-icon img {
    display: none;
}

.yc-service-text {
    flex-shrink: 0;
}

.yc-service-text h4 {
    font-size: 1.5rem;
    color: #333;
    white-space: nowrap;
    margin: 0;
}

/* 服务项定位 */
.yc-service-1 {
    right: 80%;
    top: 10%;
    flex-direction: row-reverse;
    text-align: right;
}

.yc-service-1 .yc-service-text h4 {
    text-align: right;
}

.yc-service-2 {
    right: 105%;
    top: 44%;
    flex-direction: row-reverse;
    text-align: right;
}

.yc-service-2 .yc-service-text h4 {
    text-align: right;
}

.yc-service-3 {
    right: 80%;
    bottom: 10%;
    flex-direction: row-reverse;
    text-align: right;
}

.yc-service-3 .yc-service-text h4 {
    text-align: right;
}

.yc-service-4 {
    left: 80%;
    top: 10%;
}

.yc-service-5 {
    left: 105%;
    top: 44%;
}

.yc-service-6 {
    left: 80%;
    bottom: 10%;
}

/* 新底部模块 */
.yc-footer {
    background-color: #f9f9f9;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.yc-footer .yc-container-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.yc-footer-section {
    min-width: 250px;
}

.yc-footer-section:first-child {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.yc-footer-section:last-child {
    flex: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    height: 100%;
}

.yc-footer-contact {
    flex: 2;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.yc-footer-qr {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yc-footer-qr h3 {
    text-align: center;
}

.yc-footer-qr img {
    width: 8rem;
    height: 8rem;
    margin: 0 0 0.5rem 0;
}

.yc-footer-qr p {
    text-align: center;
}

.yc-footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
    min-width: fit-content;
}

.yc-footer-logo img {
    height: 3.5rem;
    margin-right: 1rem;
    display: block;
    flex-shrink: 0;
}

.yc-footer-logo-text {
    flex: 1;
    white-space: nowrap;
}

.yc-footer-logo-text h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 0.25rem 0;
}

.yc-footer-logo-text p {
    font-size: 0.8125rem;
    color: #666;
    margin: 0;
}

.yc-footer-search {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.yc-footer-search h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.75rem;
}

.yc-footer-search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    width: 100%;
}

.yc-footer-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.yc-footer-search-btn {
    padding: 0.75rem 1.5rem;
    background-color: #ec6935;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    white-space: nowrap;
}

.yc-footer-search-btn:hover {
    background-color: #d85a2a;
}

.yc-footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.yc-footer-contact h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.yc-footer-contact p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 2;
}

.yc-footer-contact p i {
    color: #ec6935;
    font-size: 1rem;
}

.yc-footer-qr {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.yc-footer-qr h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.75rem;
}

.yc-footer-qr img {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 0.5rem;
    display: block;
}

.yc-footer-qr p {
    font-size: 0.8125rem;
    color: #666;
    margin: 0;
}



.yc-footer-links {
    padding: 1rem 0;
    border-top: 1px dashed #e5e5e5;
    border-bottom: 1px dashed #e5e5e5;
    margin: 0.5rem 0;
    background: linear-gradient(to right, transparent, #f0f0f0, transparent);
}

.yc-footer-links .yc-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
}

.yc-footer-links h3 {
    font-size: 0.875rem;
    color: #999;
    margin: 0;
    font-weight: normal;
    padding-right: 0.5rem;
    border-right: 1px solid #ddd;
}

.yc-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.yc-footer-links li {
    margin: 0;
    position: relative;
}

.yc-footer-links li:not(:last-child)::after {
    content: '·';
    color: #ccc;
    margin: 0 0.75rem;
    font-size: 0.75rem;
}

.yc-footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
}

.yc-footer-links a:hover {
    color: #ec6935;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(236, 105, 53, 0.15);
}

.yc-footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.yc-footer-bottom p {
    font-size: 0.875rem;
    color: #999;
    margin: 0;
}

.yc-footer-bottom p a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.yc-footer-bottom p a:hover {
    color: #ec6935;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .yc-footer-links {
        display: none;
    }
    
    .yc-footer-bottom p a[href*="sitemap"] {
        display: none;
    }
    
    .yc-footer .yc-container-footer {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .yc-footer-section {
        width: 100%;
    }
    
    .yc-footer-section:first-child {
        order: 1;
    }
    
    .yc-footer-section:last-child {
        order: 2;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }
    
    .yc-footer-logo {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    
    .yc-footer-logo img {
        margin-right: 1rem;
    }
    
    .yc-footer-search-form {
        flex-direction: row;
        max-width: 100%;
    }
    
    .yc-footer-contact {
        flex: 2;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .yc-footer-contact h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .yc-footer-contact p {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
        justify-content: flex-start;
        line-height: 1.4;
    }
    
    .yc-footer-qr h3 {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        text-align: right;
    }
    
    .yc-footer-qr img {
        width: 5rem;
        height: 5rem;
        margin: 0 0 0.5rem 0;
    }
    
    .yc-footer-qr p {
        font-size: 0.75rem;
        text-align: right;
    }
}

/* 搜索模块 */
.yc-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.yc-search.active {
    opacity: 1;
    visibility: visible;
}

.yc-search-content {
    width: 80%;
    max-width: 37.5rem;
    text-align: center;
}

.yc-search h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
}

.yc-search-form {
    display: flex;
    margin-bottom: 1.875rem;
}

.yc-search-input {
    flex: 1;
    padding: 0.9375rem 1.25rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.25rem 0 0 0.25rem;
}

.yc-search-submit-btn {
    padding: 0.9375rem 1.875rem;
    background-color: #ec6935;
    color: #fff;
    border: none;
    border-radius: 0 0.25rem 0.25rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yc-search-submit-btn:hover {
    background-color: #d85a2a;
}

.yc-search-close {
    position: absolute;
    top: 1.875rem;
    right: 1.875rem;
    color: #fff;
    font-size: 1.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.yc-search-close:hover {
    color: #ec6935;
}

/* Banner Swiper样式 */
.yc-banner {
    position: relative;
    overflow: hidden;
    height: 56.25vw;
    max-height: 100vh;
    min-height: 400px;
}

.yc-banner-swiper {
    width: 100%;
    height: 100%;
}

.yc-banner-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.yc-banner-video-container,
.yc-banner-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.yc-banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.yc-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yc-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.yc-banner-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.yc-banner-content {
    color: #fff;
    margin: 0 auto;
    text-align: center;
}

/* 单页Banner内容 */
.yc-page-banner-content {
    color: #fff;
    margin: 0;
    text-align: left;
}

.yc-page-banner-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.yc-page-banner-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 1rem 0;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.yc-banner-content h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.yc-banner-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 1rem 0;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.yc-banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.yc-banner-btn,
.yc-banner-buttons a {
    padding: 0.5rem 1.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
    box-sizing: border-box;
}

.yc-banner-btn:hover,
.yc-banner-buttons a:hover {
    background-color: #ec6935;
    border-color: #ec6935;
}

.yc-banner-btn-liaojie {
    background-color: #ec6935 !important;
    border-color: #ec6935 !important;
}

/* Swiper导航按钮样式 */
.yc-banner-swiper .swiper-button-prev,
.yc-banner-swiper .swiper-button-next {
    color: #fff !important;
    width: clamp(40px, 5vw, 50px) !important;
    height: clamp(40px, 5vw, 50px) !important;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.yc-banner-swiper .swiper-button-prev {
    left: 20px !important;
}

.yc-banner-swiper .swiper-button-next {
    right: 20px !important;
}

.yc-banner-swiper .swiper-button-prev::after,
.yc-banner-swiper .swiper-button-next::after {
    font-size: clamp(16px, 3vw, 20px) !important;
    font-weight: bold !important;
}

/* Swiper分页器样式 */
.yc-banner-swiper .swiper-pagination {
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
}

.yc-banner-swiper .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255,255,255,0.5) !important;
    opacity: 1 !important;
    margin: 0 6px !important;
}

.yc-banner-swiper .swiper-pagination-bullet-active {
    background: #ec6935 !important;
    width: 20px !important;
    border-radius: 6px !important;
}

/* 响应式设计 - 简洁自适应版本 */

@media (max-width: 2560px) {
    .yc-banner {
        height: 56.25vw;
        max-height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 1200px) {
    .yc-banner {
        min-height: 450px;
    }
}

@media (max-width: 1024px) {
    .yc-banner {
        min-height: 420px;
    }
}

@media (max-width: 853px) {
    .yc-banner {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .yc-banner {
        min-height: 380px;
    }
    
    .yc-banner-buttons {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .yc-banner-swiper .swiper-button-prev,
    .yc-banner-swiper .swiper-button-next {
        display: none !important;
    }
}

@media (max-width: 540px) {
    .yc-banner {
        max-height: 70vh;
        min-height: 360px;
    }
}

@media (max-width: 480px) { 
    .yc-banner { 
        max-height: 68vh;
        min-height: 350px; 
    } 
}

@media (max-width: 430px) {
    .yc-banner {
        max-height: 66vh;
        min-height: 340px;
    }
}

@media (max-width: 414px) {
    .yc-banner {
        max-height: 64vh;
        min-height: 330px;
    }
}

@media (max-width: 390px) {
    .yc-banner {
        max-height: 62vh;
        min-height: 320px;
    }
}

@media (max-width: 375px) {
    .yc-banner {
        max-height: 60vh;
        min-height: 310px;
    }
}

@media (max-width: 360px) {
    .yc-banner {
        max-height: 58vh;
        min-height: 300px;
    }
}

@media (max-width: 344px) {
    .yc-banner {
        max-height: 56vh;
        min-height: 280px;
    }
}

/* 产业布局模块 */
.yc-industry {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.yc-industry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ec6935" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    z-index: 0;
}

.yc-industry-content {
    position: relative;
    margin-top: 3rem;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    grid-template-rows: 1fr;
    gap: 1.5rem;
    align-items: stretch;
    height: 100%;
}

.yc-industry-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.yc-industry-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.yc-industry-slide {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.yc-industry-img {
    flex: 1;
    min-height: 0;
}

.yc-industry-text {
    flex-shrink: 0;
}

/* 地图部分 */
.yc-industry-map {
    background-color: #F3F3F3;
    border-radius: 0.625rem;
    padding: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.yc-industry-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.625rem;
}

/* 地图标记点样式 */
.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.marker-dot {
    width: 14px;
    height: 14px;
    background-color: #fff;
    border: 3px solid #ec6935;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(236, 105, 53, 0.4);
}

/* 辐射效果 */
.pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: 3px solid #ec6935;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

.pulse:nth-child(2) {
    animation-delay: 0.3s;
}

.pulse:nth-child(3) {
    animation-delay: 0.6s;
}

.pulse:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes pulse {
    0% {
        width: 12px;
        height: 12px;
        opacity: 0.8;
    }
    100% {
        width: 40px;
        height: 40px;
        opacity: 0;
    }
}

/* 导航部分 */
.yc-industry-nav {
    background: url(../images/buju_en.png) center bottom no-repeat #ec6935;
    background-size: 100%;
    border-radius: 0.625rem;
    padding: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.yc-industry-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.yc-industry-nav li {
    position: relative;
    padding: 0.5rem 0.75rem 0.5rem 3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    border: 2px solid transparent;
    min-height: 2rem;
    display: flex;
    align-items: center;
}

.yc-industry-nav li:hover {
    background-color: #fff;
    border-color: #ec6935;
    box-shadow: 0 0.25rem 1rem rgba(236, 105, 53, 0.15);
}

.yc-industry-nav li.active {
    background-color: #fff;
    color: #ec6935;
    box-shadow: 0 0.5rem 1.5rem rgba(236, 105, 53, 0.3);
    border-color: #fff;
}

.yc-industry-icon {
    position: absolute;
    left: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    font-size: 0.875rem;
    color: #ec6935;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yc-industry-icon::before {
    content: '';
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    background-image: url("data:image/svg+xml,%3Csvg t='1776232653910' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2805'%3E%3Cpath d='M512 64C306.4 64 140 230.4 140 436c0 101.6 40.8 194.4 107.2 261.6L512 960l264-263.2c66.4-67.2 107.2-159.2 107.2-261.6C884 230.4 717.6 64 512 64z m128 331.2c-4.8 62.4-54.4 112-116.8 116.8-75.2 6.4-138.4-53.6-138.4-127.2 0-70.4 57.6-128 128-128 73.6 0 133.6 63.2 127.2 138.4z' p-id='2806' fill='%23ec6935'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.yc-industry-nav li.active .yc-industry-icon {
    background-color: #ec6935;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0.25rem 1rem rgba(236, 105, 53, 0.3);
}

.yc-industry-nav li.active .yc-industry-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg t='1776232653910' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2805'%3E%3Cpath d='M512 64C306.4 64 140 230.4 140 436c0 101.6 40.8 194.4 107.2 261.6L512 960l264-263.2c66.4-67.2 107.2-159.2 107.2-261.6C884 230.4 717.6 64 512 64z m128 331.2c-4.8 62.4-54.4 112-116.8 116.8-75.2 6.4-138.4-53.6-138.4-127.2 0-70.4 57.6-128 128-128 73.6 0 133.6 63.2 127.2 138.4z' p-id='2806' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
}

.yc-industry-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yc-industry-info span {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.yc-industry-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: all 0.3s ease;
}

.yc-industry-nav li.active .yc-industry-info span {
    color: #999;
}

.yc-industry-nav li.active .yc-industry-info h3 {
    color: #333;
}

/* 右侧内容部分 */
.yc-industry-right {
    position: relative;
    z-index: 1;
}

.yc-industry-box {
    padding: 0.75rem;
    background: #ec6935;
    border-radius: 0.625rem;
}

.yc-industry-slide {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.yc-industry-slide.active {
    display: block;
}

.yc-industry-img {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 宽高比 */
}

.yc-industry-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.yc-industry-img:hover img {
    transform: scale(1.1);
}

/* 荣誉资质页面样式 */
.yc-honors {
    padding: 4rem 0;
    background: #f9f9f9;
}

/* 荣誉介绍样式 */
.yc-honors-intro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.yc-honors-intro-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.yc-honors-intro-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(236, 105, 53, 0.1);
}

.yc-honors-intro-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #ec6935 0%, #f5a623 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yc-honors-intro-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.yc-honors-intro-content {
    flex: 1;
}

.yc-honors-intro-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.yc-honors-intro-content p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.yc-honors-grid {
    margin-top: 3rem;
}

#yc-honors-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.yc-honor-item {
    position: relative;
}

.yc-honor-card {
    display: block;
    background: url(../images/rongyu.jpg) center no-repeat;
    background-size: cover;
    border-radius: 0.9375rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.yc-honor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 一次性闪光效果 */
.flash-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    pointer-events: none;
    transition: left 0.6s ease-out;
    z-index: 10;
}

.flash-effect.active {
    left: 100%;
}

.yc-honor-image {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
}

.yc-honor-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yc-honor-pic img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.yc-honor-card:hover .yc-honor-pic img {
    transform: scale(1.05);
}

.yc-honor-title {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    #yc-honors-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .yc-honors-intro {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .yc-honors {
        padding: 3rem 0;
    }
    
    #yc-honors-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .yc-honor-title {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .yc-honors-intro {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .yc-honors-intro-item {
        padding: 1.25rem;
    }
    
    .yc-honors-intro-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .yc-honors-intro-icon i {
        font-size: 1.25rem;
    }
    
    .yc-honors-intro-content h4 {
        font-size: 1rem;
    }
    
    .yc-honors-intro-content p {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .yc-honors {
        padding: 2rem 0;
    }
    
    #yc-honors-list {
        gap: 0.75rem;
    }
    
    .yc-honors-intro {
        gap: 1rem;
    }
    
    .yc-honors-intro-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .yc-honors-intro-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .yc-honors-intro-icon i {
        font-size: 1rem;
    }
}

.yc-industry-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.yc-industry-text {
    padding: 1.875rem 0.625rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.yc-industry-text h4 {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 1.375rem;
        display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yc-industry-text p {
    font-size: 0.9375rem;
    line-height: 1.625rem;
    color: #fff;
    margin: 0;
    text-align: left;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media(min-width:1601px) {
    html {
        font-size: 16px
    }
}

@media(min-width:1400px) and (max-width:1600px) {
    html {
        font-size: 14px
    }
}

@media(min-width:640px) and (max-width:1399px) {
    html {
        font-size: 13px
    }
}

@media(min-width:481px) and (max-width:639px) {
    html {
        font-size: 13px
    }
}

@media(min-width:329px) and (max-width:480px) {
    html {
        font-size: 13px
    }
}
@media (max-width: 1360px) {
    .yc-container {
        padding: 0 8rem;
    }
}

@media (max-width: 1280px) {
    .yc-container {
        padding: 0 7rem;
    }
}

@media (max-width: 1200px) {
    .yc-container {
        padding: 0 6rem;
    }
      
    .yc-header-right {
        display: none;
    }
    
    .yc-industry-nav {
        background: #ec6935;
        background-image: none;
    }
    
    .yc-menu-btn {
        display: flex;
    }
    
    .yc-mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -18.75rem;
        width: 18.75rem;
        height: 100%;
        background-color: #fff;
        box-shadow: -0.125rem 0 0.5rem rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 9999;
        padding: 1.875rem;
    }
    
    .yc-mobile-nav.active {
        right: 0;
    }
    
    .yc-mobile-nav ul {
        list-style: none;
        padding: 0 1rem;
    }
    
    .yc-mobile-nav li {
        margin-bottom: 0.5rem;
    }
    
    .yc-mobile-nav a {
        font-size: 1rem;
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
        display: block;
        padding: 0.5rem 0;
    }
    
    .yc-mobile-nav a:hover {
        color: #ec6935;
    }
    
    .yc-mobile-nav li.active > .yc-mobile-nav-item > a,
    .yc-mobile-nav li.active > a {
        color: #ec6935;
        font-weight: bold;
    }
    
    .yc-mobile-nav-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    
    .yc-mobile-nav-arrow {
        width: 0.5rem;
        height: 0.5rem;
        border-right: 0.125rem solid #333;
        border-bottom: 0.125rem solid #333;
        transform: rotate(-45deg);
        transition: all 0.3s ease;
    }
    
    .yc-mobile-nav-item.active .yc-mobile-nav-arrow {
        transform: rotate(45deg);
    }
    
    .yc-mobile-nav-submenu {
        display: none;
        padding-left: 1.25rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .yc-mobile-nav-submenu li {
        margin-bottom: 0.5rem;
    }
    
    .yc-mobile-nav-submenu a {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }
    
    .yc-mobile-nav-submenu li.active {
        background-color: rgba(236, 105, 53, 0.1);
        padding: 0 0.75rem;
        border-radius: 0.25rem;
    }
    
    .yc-mobile-nav-submenu.active {
        display: block;
    }
    
    .yc-mobile-nav-close {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        font-size: 1.5rem;
        cursor: pointer;
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .yc-mobile-nav-close:hover {
        color: #ec6935;
        transform: rotate(90deg);
    }
    
    /* 移动端导航遮罩 */
    .yc-mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(236, 105, 53, 0.3);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .yc-mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .yc-nav li {
        margin-left: 1.5rem;
    }
    
    
    
    
    .yc-about-intro-left,
    .yc-about-intro-right,
    .yc-about-company-left,
    .yc-about-company-right {
        padding: 0;
        margin-bottom: 2.5rem;
        width: 100%;
    }
    
    .yc-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yc-services-ttbox img {
        width: 20.125rem;
    }
    
    .yc-service-1 {
        right: 80%;
        top: 5%;
    }
    
    .yc-service-2 {
        right: 105%;
        top: 42%;
    }
    
    .yc-service-3 {
        right: 80%;
        bottom: 5%;
    }
    
    .yc-service-4 {
        left: 80%;
        top: 5%;
    }
    
    .yc-service-5 {
        left: 105%;
        top: 42%;
    }
    
    .yc-service-6 {
        left: 80%;
        bottom: 5%;
    }
    
    .yc-service-text h4 {
        font-size: 1.375rem;
    }
    
    .yc-footer .yc-container-footer {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yc-industry-content {
        gap: 1.5rem;
    }
    
    .yc-industry-nav ul {
        gap: 1.5rem;
    }
    
    .yc-industry-nav li {
        padding: 0.4rem 0.8rem 0.4rem 3rem;
        min-height: 2rem;
    }
    
    .yc-industry-nav .yc-industry-info span {
        display: none;
    }
    .yc-industry-content{
        grid-template-columns: 0.5fr 1fr 1fr;
    }

    .yc-industry-text p {
        font-size: 0.875rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .yc-industry-icon {
        width: 1.75rem;
        height: 1.75rem;
        line-height: 1.75rem;
        font-size: 0.875rem;
        left: 0.4rem;
    }
    
    .yc-industry-icon::before {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    .yc-industry-info h3 {
        font-size: 0.75rem;
    }
}

@media (max-width: 1190px) {
    .yc-container {
        padding: 0 5rem;
    }
}

@media (max-width: 1024px) {
    .yc-about-intro .yc-container,
    .yc-about-company .yc-container {
        flex-direction: column;
    }
    .yc-services-ttbox img {
        width: 18.825rem;
    }
    
    .yc-service-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .yc-service-icon img {
        height: 3.5rem;
    }
    
    .yc-service-text h4 {
        font-size: 1.125rem;
    }
    
    .yc-service-1 {
        right: 75%;
        top: 5%;
    }
    
    .yc-service-2 {
        right: 100%;
        top: 40%;
    }
    
    .yc-service-3 {
        right: 75%;
        bottom: 5%;
    }
    
    .yc-service-4 {
        left: 75%;
        top: 5%;
    }
    
    .yc-service-5 {
        left: 100%;
        top: 40%;
    }
    
    .yc-service-6 {
        left: 75%;
        bottom: 5%;
    }
}

@media (max-width: 912px) {
        .yc-industry-text p {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
@media (max-width: 768px) {
    .yc-container {
        padding: 0 1.875rem;
    }
  
    
    .yc-banner {
        height: 25rem;
    }
    
    .yc-banner-content h3 {
        font-size: 1.5rem;
    }
    
    .yc-banner-content p {
        font-size: 0.875rem;
    }
    
    /* 单页Banner响应式 */
    .yc-page-banner-content h2 {
        font-size: 1.5rem;
    }
    
    .yc-page-banner-content p {
        font-size: 0.875rem;
    }
    
    .yc-stat-item {
        padding: 1.25rem;
    }
    
    .yc-stat-number {
        font-size: 1.5rem;
    }
    
    .yc-stat-label {
        font-size: 0.875rem;
    }
    
    .yc-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .yc-news-content {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .yc-news-list,
    .yc-news-featured {
        width: 100%;
    }
    
    .yc-news-info h4 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .yc-section-header {
        margin-bottom: 2rem;
    }
    
    .yc-section-header h2 {
        font-size: 1.5rem;
    }
    
    .yc-news-featured-info h4 {
        font-size: 1.25rem;
    }
    
    .yc-services-bd {
        margin-top: 2rem;
    }
    
    .yc-services-ttbox {
        margin-bottom: 2rem;
    }
    
    .yc-services-ttbox img {
        width: 100%;
        max-width: 15rem;
        margin: 0 auto;
    }
    
    .yc-services-items {
        position: relative;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1rem;
    }
    
    .yc-service-item {
        position: static;
        flex-direction: row !important;
        transform: none !important;
        text-align: left !important;
    }
    
    .yc-service-text h4 {
        text-align: left !important;
        font-size: 1.125rem;
    }
    
    .yc-industry-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        height: auto;
    }
    
    .yc-industry-nav {
        order: 1;
    }
    
    .yc-industry-right {
        order: 2;
        display: block;
        height: auto;
        max-width: 540px;
        margin: 0 auto;
    }
    
    .yc-industry-map {
        order: 3;
    }
    
    .yc-industry-box {
        display: block;
        height: auto;
    }
    
    .yc-industry-slide {
        display: none;
        height: auto;
    }
    
    .yc-industry-slide.active {
        display: block;
    }
    
    .yc-industry-img {
        flex: none;
        min-height: auto;
    }
    
    .yc-industry-text {
        flex-shrink: 1;
    }

    .yc-industry-content {
        align-items: stretch;
    }
    
    .yc-industry-nav {
        display: flex;
        align-items: center;
    }
    
    .yc-industry-nav ul {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        width: 100%;
        padding-bottom: 1rem;
        grid-template-columns: none;
    }
    
    .yc-industry-nav ul::-webkit-scrollbar {
        height: 0.3125rem;
    }
    
    .yc-industry-nav ul::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 0.15625rem;
    }
    
    .yc-industry-nav ul::-webkit-scrollbar-thumb {
        background: #ec6935;
        border-radius: 0.15625rem;
    }
    
    .yc-industry-nav li {
        flex: 0 0 auto;
        width: 11rem;
        padding: 0.6rem 0.6rem 0.6rem 2.75rem;
        min-height: 1.75rem;
    }
    
    .yc-industry-icon {
        width: 1.5rem;
        height: 1.5rem;
        line-height: 1.5rem;
        font-size: 0.75rem;
        left: 0.35rem;
    }
    
    .yc-industry-icon::before {
        width: 0.75rem;
        height: 0.75rem;
    }
    
    .yc-industry-info span {
        font-size: 0.5625rem;
    }
    
    .yc-industry-info h3 {
        font-size: 0.875rem;
    }
    
    .yc-industry-text {
        padding: 1.5rem;
    }
    
    .yc-industry-text h4 {
        font-size: 1.125rem;
    }
    
    .yc-industry-text p {
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .yc-container {
        padding: 0 0.9375rem;
    }
    
    .yc-banner {
        height: 18.75rem;
    }
    
    .yc-banner-content h3 {
        font-size: 1.25rem;
    }
    
    .yc-banner-content p {
        font-size: 0.75rem;
    }
    
    /* 单页Banner响应式 */
    .yc-page-banner-content h2 {
        font-size: 1.25rem;
    }
    
    .yc-page-banner-content p {
        font-size: 0.75rem;
    }
    
    .yc-banner-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        margin-right: 0.625rem;
    }
    
    .yc-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yc-services-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 2rem;
    }
    
    .yc-service-item {
        padding: 0.75rem;
        background-color: #fff;
        border-radius: 0.5rem;
        box-shadow: 0 0.125rem 0.375rem rgba(0,0,0,0.1);
    }
    
    .yc-service-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin: 0 0.5rem;
        background-image: url(../images/shizi1.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .yc-service-icon img {
        display: none;
    }
    
    .yc-service-item:hover {
        transform: translateY(-0.125rem) !important;
    }
    
    .yc-service-text h4 {
        font-size: 0.75rem;
    }
    
    .yc-footer .yc-container-footer {
        grid-template-columns: 1fr;
    }
    
    .yc-section-header h2 {
        font-size: 1.5rem;
    }
    
    .yc-about-intro h2,
    .yc-about-company h2 {
        font-size: 1.5rem;
    }
    
    .yc-industry-nav li {
        width: 8.5rem;
        padding: 0.4rem 0.4rem 0.4rem 2.25rem;
        min-height: 1.25rem;
    }
    
    .yc-industry-icon {
        width: 1.25rem;
        height: 1.25rem;
        line-height: 1.25rem;
        font-size: 0.625rem;
        left: 0.25rem;
    }
    
    .yc-industry-icon::before {
        width: 0.625rem;
        height: 0.625rem;
    }
    
    .yc-industry-text {
        padding: 1.25rem;
    }
    
    .yc-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .yc-stat-item {
        padding: 0.875rem 0.5rem;
    }
    
    .yc-stat-number {
        font-size: 1.25rem;
    }
    
    .yc-stat-label {
        font-size: 0.875rem;
    }
}

@media (max-width: 1200px) {
    .yc-about-intro,
    .yc-about-company,
    .yc-news,
    .yc-services,
    .yc-products,
    .yc-chain,
    .yc-industry {
        padding: 3rem 0;
    }
}

@media (max-width: 992px) {
    .yc-about-intro,
    .yc-about-company,
    .yc-news,
    .yc-services,
    .yc-products,
    .yc-chain,
    .yc-industry {
        padding: 2.5rem 0;
    }
}

@media (max-width: 768px) {
    .yc-about-intro,
    .yc-about-company,
    .yc-news,
    .yc-services,
    .yc-products,
    .yc-chain,
    .yc-industry {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .yc-about-intro,
    .yc-about-company,
    .yc-news,
    .yc-services,
    .yc-products,
    .yc-chain,
    .yc-industry {
        padding: 1.5rem 0;
    }
}

/* ==================== 合作伙伴页面样式 ==================== */

.yc-partner-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.yc-partner-section .yc-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.yc-partner-section .yc-section-header h2 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.75rem;
}

.yc-partner-section .yc-section-header p {
    font-size: 1rem;
    color: #999;
}

.yc-partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.yc-partner-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.yc-partner-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.yc-partner-img {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.yc-partner-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.yc-partner-card:hover .yc-partner-img img {
    transform: scale(1.05);
}

.yc-partner-brands {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.yc-brand-item {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.yc-brand-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.yc-brand-img {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.yc-brand-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.yc-brand-item:hover .yc-brand-img img {
    transform: scale(1.05);
}

/* 更多卡片样式 */
.yc-partner-more {
    cursor: pointer;
}

.yc-partner-more-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
}

.yc-partner-more:hover .yc-partner-more-content {
    background: linear-gradient(135deg, #ec6935 0%, #f5a623 100%);
}

.yc-partner-more-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ec6935;
    transition: color 0.3s ease;
}

.yc-partner-more:hover .yc-partner-more-text {
    color: #fff;
}

.yc-partner-more-label {
    font-size: 0.875rem;
    color: #ec6935;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.yc-partner-more:hover .yc-partner-more-label {
    color: #fff;
}

/* 合作伙伴统计展示 */
.yc-partner-intro {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid #f0f0f0;
}

.yc-partner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.yc-partner-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ec6935;
    line-height: 1;
    letter-spacing: -0.02em;
}

.yc-partner-stat-plus {
    font-size: 1.5rem;
    vertical-align: super;
}

.yc-partner-stat-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* 出口品牌样式 - 4张图片布局 */
.yc-export-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.yc-export-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.yc-export-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.yc-export-img {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.yc-export-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    padding: 1rem;
}

.yc-export-card:hover .yc-export-img img {
    transform: scale(1.05);
}

/* 服务特色板块 */
.yc-service-features {
    padding: 3rem 0;
    border-radius: 1rem;
}



.yc-service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* 响应式布局 - 服务特色网格 */
@media (max-width: 1400px) {
    .yc-service-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .yc-service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .yc-service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.yc-service-feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.yc-service-feature-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.1);
}

.yc-service-feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #ec6935 0%, #f5a623 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.5rem;
}

.yc-service-feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.yc-service-feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* 优质原材料板块 */
.yc-quality-materials {
    padding: 3rem 0;
    background: #f9f9f9;
    border-radius: 1rem;
}



.yc-quality-materials-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.yc-quality-materials-text {
    flex: 1;
}

.yc-quality-materials-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ec6935;
    margin-bottom: 1rem;
}

.yc-quality-materials-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.yc-quality-materials-image {
    flex: 1;
    max-width: 500px;
}

.yc-quality-materials-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

/* 创新产品板块 */
.yc-innovative-products {
    padding: 3rem 0;
    border-radius: 1rem;
}



.yc-innovative-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.yc-innovative-product-item {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.yc-innovative-product-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.1);
}

.yc-innovative-product-image {
    height: 200px;
    overflow: hidden;
}

.yc-innovative-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.yc-innovative-product-item:hover .yc-innovative-product-image img {
    transform: scale(1.05);
}

.yc-innovative-product-content {
    padding: 1.5rem;
}

.yc-innovative-product-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.yc-innovative-product-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .yc-quality-materials-content {
        flex-direction: column;
        text-align: center;
    }
    
    .yc-quality-materials-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .yc-service-features,
    .yc-innovative-products {
        padding: 2rem 0;
    }
    
    .yc-section-header h2 {
        font-size: 1.5rem;
    }
    
    .yc-service-feature-item,
    .yc-innovative-product-content {
        padding: 1.5rem;
    }
    
}
@media (max-width: 480px) {
    .yc-service-features-grid,
    .yc-innovative-products-grid {
        grid-template-columns: 1fr;
    }
}

/* 精酿系列 */
.yc-craft-series {
    width: 100%;
    overflow: hidden;
    background: url(../images/franchise_bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.yc-craft-series .yc-section-header h2 {
    color: #fff;
}

.yc-craft-series .yc-section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.yc-craft-series-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.yc-craft-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.yc-craft-item:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateX(0.5rem);
}

.yc-craft-badge {
    background: linear-gradient(135deg, #ec6935 0%, #e05a2b 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

.yc-craft-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .yc-craft-series-grid {
        grid-template-columns: 1fr;
    }
    
    .yc-craft-item {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .yc-craft-series {
        padding: 2rem 0;
    }
    
    .yc-craft-badge {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* 招商加盟页面样式 */
.yc-franchise {
    padding: 3rem 0;
    background-color: #f9f9f9;
    margin-top: 1rem;
}

.yc-franchise-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.yc-franchise-card {
    flex: 1;
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.yc-franchise-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}

.yc-franchise-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.yc-franchise-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.yc-franchise-card:hover .yc-franchise-card-image img {
    transform: scale(1.05);
}

.yc-franchise-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.yc-franchise-card-overlay h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.yc-franchise-card-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    margin-bottom: 1.5rem;
}

.yc-franchise-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #ec6935;
    color: #fff;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.yc-franchise-btn:hover {
    background-color: #d85a2a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 105, 53, 0.4);
}

.yc-franchise-card-content {
    padding: 2rem;
}

/* 手风琴样式 */
.yc-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.yc-accordion-item {
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.yc-accordion-item:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

/* 啤酒代理手风琴样式 */
.yc-franchise-card-agent .yc-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: background-color 0.4s ease-in-out;
    background-color: #fff;
    border-left: 3px solid #ec6935;
}

.yc-franchise-card-agent .yc-accordion-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ec6935;
    margin: 0;
}

.yc-franchise-card-agent .yc-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: #ec6935;
}

.yc-franchise-card-agent .yc-accordion-toggle i {
    font-size: 0.7rem;
    color: #fff;
    transition: transform 0.4s ease-in-out;
    line-height: 1;
}

.yc-franchise-card-agent .yc-accordion-item.active .yc-accordion-toggle {
    background-color: #d85a25;
}

.yc-franchise-card-agent .yc-accordion-item.active .yc-accordion-toggle i {
    transform: rotate(180deg);
}

/* 啤酒代工手风琴样式 */
.yc-franchise-card-oem .yc-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: background-color 0.4s ease-in-out;
    background-color: #fff;
    border-left: 3px solid #d85a25;
}

.yc-franchise-card-oem .yc-accordion-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d85a25;
    margin: 0;
}

.yc-franchise-card-oem .yc-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: #d85a25;
}

.yc-franchise-card-oem .yc-accordion-toggle i {
    font-size: 0.7rem;
    color: #fff;
    transition: transform 0.4s ease-in-out;
    line-height: 1;
}

.yc-franchise-card-oem .yc-accordion-item.active .yc-accordion-toggle {
    background-color: #c84a15;
}

.yc-franchise-card-oem .yc-accordion-item.active .yc-accordion-toggle i {
    transform: rotate(180deg);
}

.yc-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out, padding-bottom 0.4s ease-in-out;
    background-color: #f9f9f9;
    padding: 0 1.25rem;
}

.yc-accordion-item.active .yc-accordion-content {
    max-height: 500px;
    padding: 0.75rem 1.25rem 1.25rem;
}

.yc-accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yc-accordion-list li {
    padding-left: 0;
    margin-bottom: 0.4rem;
    line-height: 1.4;
    font-size: 0.85rem;
    color: #666;
    word-wrap: break-word;
    white-space: normal;
}

.yc-accordion-list li::before {
    display: none;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .yc-franchise-container {
        flex-direction: column;
    }
    
    .yc-franchise-card {
        margin-bottom: 2rem;
    }
    
    .yc-franchise-card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .yc-franchise-card-content {
        padding: 1.5rem;
    }
    
    .yc-accordion-header {
        padding: 0.75rem 1.25rem;
    }
    
    .yc-accordion-title {
        font-size: 0.9rem;
    }
    
    .yc-accordion-item.active .yc-accordion-content {
        padding: 0 1.25rem 1.25rem;
    }
}

/* 在线留言部分 */
.yc-franchise-message {
    margin-top: 3rem;
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.yc-franchise-message-header {
    text-align: center;
    padding: 2.5rem;
    background: #f9f9f9;
    border-radius: 1.5rem 1.5rem 0 0;
    border-bottom: 1px solid #e0e0e0;
}

.yc-franchise-message-header h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.9375rem;
    color: #333;
}

.yc-franchise-message-header p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.25rem;
}

.yc-franchise-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ec6935;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ec6935;
    border-radius: 2rem;
}

.yc-franchise-phone i {
    font-size: 1.3rem;
}

.yc-franchise-phone:hover {
    color: #fff;
    background: #ec6935;
    transform: scale(1.05);
}

.yc-franchise-phone:hover i {
    color: #fff;
}

.yc-franchise-message-form {
    padding: 3rem;
}

.yc-franchise-form {
    max-width: 800px;
    margin: 0 auto;
}

.yc-form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.yc-form-group {
    flex: 1;
}

.yc-form-group-full {
    flex: 1 1 100%;
}

.yc-form-group-captcha {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.yc-form-input {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.yc-form-input:focus {
    outline: none;
    border-color: #ec6935;
    box-shadow: 0 0 0 3px rgba(236, 105, 53, 0.1);
}

.yc-form-input-captcha {
    flex: 1;
}

.yc-captcha-img img {
    height: 4rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.yc-form-textarea {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 1rem;
    resize: vertical;
    min-height: 12rem;
    transition: all 0.3s ease;
}

.yc-form-textarea:focus {
    outline: none;
    border-color: #ec6935;
    box-shadow: 0 0 0 3px rgba(236, 105, 53, 0.1);
}

.yc-form-button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #ec6935 0%, #f5a623 100%);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.yc-form-button:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(236, 105, 53, 0.3);
}

/* 自定义选择器 */
.yc-custom-select {
    position: relative;
    width: 100%;
}

.yc-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.yc-select-trigger:hover {
    border-color: #ec6935;
}

.yc-select-value {
    font-size: 1rem;
    color: #666;
}

.yc-select-trigger i {
    font-size: 1rem;
    color: #999;
    transition: all 0.3s ease;
}

.yc-custom-select.open .yc-select-trigger i {
    transform: rotate(180deg);
    color: #ec6935;
}

.yc-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.yc-custom-select.open .yc-select-options {
    display: block;
}

.yc-select-option {
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.yc-select-option:last-child {
    border-bottom: none;
}

.yc-select-option:hover {
    background-color: #f9f9f9;
    color: #ec6935;
}

.yc-select-option.selected {
    background-color: #ec6935;
    color: #fff;
}

/* 招商加盟页面响应式 */
@media (max-width: 1200px) {

    .yc-form-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .yc-franchise {
        padding: 2rem 0;
    }
    
    .yc-franchise-message {
        margin-top: 3rem;
    }
    
    .yc-franchise-message-header {
        padding: 2rem;
    }
    
    .yc-franchise-message-header h3 {
        font-size: 1.5rem;
    }
    
    .yc-franchise-phone {
        font-size: 1.25rem;
    }
    
    .yc-franchise-message-form {
        padding: 1.5rem;
    }
    
    .yc-form-input,
    .yc-form-textarea {
        padding: 1rem;
    }
    
    .yc-form-button {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* 合作伙伴页面响应式 */
@media (max-width: 1199px) {
    .yc-partner-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }
    
    .yc-partner-brands {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .yc-export-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .yc-partner-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .yc-partner-brands {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yc-export-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .yc-partner-intro {
        margin-bottom: 1.5rem;
        padding: 1.25rem;
    }
    
    .yc-partner-stat-num {
        font-size: 2.5rem;
    }
    
    .yc-partner-stat-text {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .yc-partner-section {
        padding: 2.5rem 0;
    }
    
    .yc-partner-section .yc-section-header {
        margin-bottom: 2rem;
    }
    
    .yc-partner-section .yc-section-header h2 {
        font-size: 1.75rem;
    }
    
    .yc-partner-section .yc-section-header p {
        font-size: 0.875rem;
    }
    
    .yc-partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .yc-partner-card {
        border-radius: 0.5rem;
    }
    
    .yc-partner-img img {
        padding: 0.75rem;
    }
    
    .yc-partner-more-content {
        min-height: 6rem;
    }
    
    .yc-partner-more-text {
        font-size: 1.5rem;
    }
    
    .yc-partner-intro {
        margin-bottom: 1.25rem;
        padding: 0.75rem;
    }
    
    .yc-partner-stat-num {
        font-size: 1.75rem;
    }
    
    .yc-partner-stat-text {
        font-size: 0.875rem;
    }
    
    .yc-partner-brands {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .yc-brand-item {
        border-radius: 0.75rem;
    }
    
    .yc-export-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .yc-export-card {
        border-radius: 0.75rem;
    }
    
    .yc-export-img img {
        padding: 0.75rem;
    }
}

@media (max-width: 575px) {
    .yc-partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .yc-partner-img {
        padding-bottom: 75%;
    }
    
    .yc-partner-img img {
        padding: 0.5rem;
    }
    
    .yc-partner-brands {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .yc-brand-img {
        padding-bottom: 50%;
    }
    
    .yc-export-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .yc-export-img {
        padding-bottom: 60%;
    }
    
    .yc-export-img img {
        padding: 0.5rem;
    }
    
    .yc-partner-more-content {
        min-height: 5rem;
    }
    
    .yc-partner-more-text {
        font-size: 1.25rem;
    }
    
    .yc-partner-more-label {
        font-size: 0.75rem;
    }
    
    .yc-partner-intro {
        margin-bottom: 1rem;
        padding: 0.875rem;
    }
    
    .yc-partner-stat-num {
        font-size: 1.75rem;
    }
    
    .yc-partner-stat-plus {
        font-size: 1.25rem;
    }
    
    .yc-partner-stat-text {
        font-size: 0.8125rem;
    }
}

/* ==================== 关于页面样式 ==================== */

/* Banner模块 */
.yc-page-banner {
    padding-top: 6.25rem;
    width: 100%;
}

.yc-banner-bg {
    position: relative;
    height: 32rem;
    width: 100%;
    overflow: hidden;
    background-size: cover !important;
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
}

.yc-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.yc-banner-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3);
    color: #fff;
}

.yc-banner-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.banner_wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6rem;
    /*z-index: 1;*/
    overflow: hidden;
    pointer-events: none;
}

.banner_wave svg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* 横向波浪动画 */
.banner_wave use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.banner_wave use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
    fill: rgba(252, 103, 0, 0.5);
}

.banner_wave use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
    fill: rgba(255, 255, 255, 0.1);
}

.banner_wave use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
    fill: rgba(255, 255, 255, 0.08);
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.yc-banner-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3rem;
    overflow: hidden;
}

/* 当前位置导航 */
.yc-position {
    background: linear-gradient(135deg, #fff8f5 0%, #fefefe 100%);
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.yc-position-content {
    font-size: 0.875rem;
    color: #666;
    display: flex;
    align-items: center;
}

.yc-position-content::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-color: #ec6935;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.yc-position-content a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yc-position-content a:hover {
    color: #ec6935;
}

.yc-position-content span {
    margin: 0 0.5rem;
    color: #ec6935;
    font-size: 0.75rem;
}

/* 导航菜单 */
.yc-page-subnav {
    position: relative;
}

.yc-page-subnav:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #e1e3e5;
}

.yc-page-subnav ul {
    display: flex;
    justify-content: center;
    gap: 8.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.yc-page-subnav ul li a {
    font-size: 1.125rem;
    color: #313131;
    font-weight: bold;
    height: 5.875rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
}

/* 小图片基础样式 */
.yc-page-subnav ul li>a:before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: -13px;
    left: 50%;
    opacity: 0;
    background: url(../images/shizi1.png) center no-repeat;
    background-size: contain;
    transform: translateX(-50%);
    transition: 0.3s ease-in-out;
}

/* 当前激活项显示小图片 */
.yc-page-subnav ul li.active>a:before {
    opacity: 1;
}

/* 默认所有小图片隐藏 */
.yc-page-subnav ul li>a:before {
    opacity: 0;
}

/* .active 的项显示小图片 */
.yc-page-subnav ul li.active>a:before {
    opacity: 1;
}

/* 当鼠标悬停在任何 li 上时，所有 li 的小图片都隐藏 */
.yc-page-subnav ul:hover li>a:before {
    opacity: 0;
}

/* 但是，当前悬停的那个 li 要显示小图片 */
.yc-page-subnav ul li:hover>a:before {
    opacity: 1;
}

/* 鼠标悬停的项显示小图片（覆盖上面的规则） */
.yc-page-subnav ul li:hover>a:before {
    opacity: 1;
}

/* 文字颜色变化 */
.yc-page-subnav ul li.active>a,
.yc-page-subnav ul li:hover>a {
    color: #ec6935;
}

/* 底部滑动线 */
.yc-page-subnav-line {
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #ec6935;
    transition: 1s;
}

/* 手机端单页子导航 */
.yc-page-msubnav {
    display: none;
    background-color: #f8f8f8;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.5rem 0;
}

.yc-page-msubnav-content {
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.5rem 0;
    text-align: center;
}

.yc-page-msubnav-content ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-flex;
    gap: 0 1rem;
}

.yc-page-msubnav-content li {
    display: inline-block;
}

.yc-page-msubnav-content a {
    font-size: 0.875rem;
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 1.5rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.yc-page-msubnav-content li.active a {
    color: #fff;
    background-color: #ec6935;
    border-color: #ec6935;
    box-shadow: 0 2px 4px rgba(236, 105, 53, 0.2);
}

.yc-page-msubnav-content a:hover {
    color: #ec6935;
    border-color: #ec6935;
    background-color: rgba(236, 105, 53, 0.05);
}

/* 隐藏滚动条 */
.yc-page-msubnav-content::-webkit-scrollbar {
    display: none;
}

.yc-page-msubnav-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 响应式导航 */
@media (max-width: 1200px) {
    .yc-page-subnav {
        display: none;
    }
    
    .yc-page-msubnav {
        display: block;
    }
    
    .yc-position {
        display: none;
    }
}

/* 创始人介绍 */
.yc-founder {
    padding: 4rem 0;
    background-color: #fff;
}

.yc-founder-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.5rem;
}

.yc-founder-left {
    flex-shrink: 0;
}

.yc-founder-left img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
}

.yc-founder-right {
    flex-shrink: 0;
}

.yc-founder-title h3 {
    font-size: 1.875rem;
    color: #ec6935;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.yc-founder-title p {
    font-size: 2.875rem;
    line-height: 2;
    color: #313131;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Poppins-Light', sans-serif;
    margin-bottom: 1.5rem;
}

.yc-founder-info p {
    font-size: 1.0625rem;
    line-height: 2rem;
    color: #313131;
    margin-bottom: 0.5rem;
}

.yc-founder-info p span {
    color: #ec6935;
}

/* 公司简介 */
.yc-company-intro {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.yc-company-intro-content {
    display: block;
}

.yc-company-intro-top {
    display: flex;
    gap: 8rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.yc-company-intro-left {
    flex-shrink: 0;
    max-width: 35rem;
}

.yc-company-intro-right {
    flex-shrink: 0;
    max-width: 42rem;
}

.yc-company-intro-left h2 {
    font-size: 1.875rem;
    color: #313131;
    font-weight: bold;
    margin-bottom: 1.75rem;
}

.yc-company-intro-left .yc-section-title h3 {
    font-size: 2.875rem;
    line-height: 4rem;
    color: #ec6935;
    font-weight: 900;
    margin: 0 0 2.5rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .yc-company-intro-top {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .yc-company-intro-right {
        max-width: 100%;
    }
    
    .yc-company-intro-left h2 {
        font-size: 1.5rem;
    }
    
    .yc-company-intro-left .yc-section-title h3 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
}

.yc-company-text {
    margin-bottom: 1.5rem;
}

.yc-company-text p {
    font-size: 1.0625rem;
    line-height: 2rem;
    color: #313131;
}

/* 企业视频 */
.yc-company-video {
    padding: 4rem 0;
    background-color: #fff;
}

.yc-video-container {
    position: relative;
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    background-color: #000;
    border-radius: 0.9375rem;
    overflow: hidden;
}

.yc-video-container video {
    width: 100%;
    display: none;
}

.yc-video-mask {
    position: relative;
    width: 100%;
}

.yc-video-mask img {
    width: 100%;
    height: auto;
    display: block;
}

.yc-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(236, 105, 53, 0.9);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.yc-video-play-btn:hover {
    background-color: #d85a2a;
}

.yc-video-play-btn i {
    font-size: 1.5rem;
}

.yc-video-play-btn span {
    font-size: 1.125rem;
}

.yc-video-play-btn-shigu {
    top: calc(50% + 4rem);
    background-color: #f1ad3e !important;
}

.yc-video-play-btn-shigu:hover {
    background-color: #e09a2a !important;
}

.yc-video-selector {
    position: relative;
    display: none;
    gap: 15px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    z-index: 10;
    margin-top: 20px;
    justify-content: center;
    box-shadow: none;
    backdrop-filter: none;
    border: none;
}

.yc-video-selector.show {
    display: flex;
}

.video-option {
    padding: 12px 32px;
    border: none;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.video-option:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.video-option.active {
    background: linear-gradient(135deg, #ec6935 0%, #e05a2b 100%);
    box-shadow: 0 6px 20px rgba(236, 105, 53, 0.4);
}

.video-option-shigu.active {
    background: linear-gradient(135deg, #f1ad3e 0%, #e09a2a 100%);
    box-shadow: 0 6px 20px rgba(241, 173, 62, 0.4);
}

/* 企业数据 */
.yc-company-stats {
    width: 100%;
    overflow: hidden;
    background: url(../images/about_bg.jpg) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    padding: 4rem 0;
}

.yc-company-stats .yc-section-header {
    margin-bottom: 4rem;
}

.yc-company-stats .yc-section-header h2 {
    color: #fff;
}

.yc-company-stats .yc-section-header p {
    color: #fff;
}

.yc-stats-content {
    margin-top: 2rem;
}

.yc-stats-text {
    margin-bottom: 3rem;
}

.yc-stats-text p {
    font-size: 1.0625rem;
    line-height: 2rem;
    color: #fff;
}

.yc-stats-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.yc-company-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.625rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yc-company-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.yc-company-stat-item .yc-stat-line {
    width: 3rem;
    height: 0.25rem;
    background-color: #ec6935;
    margin: 0.75rem 0;
}

.yc-company-stat-item .yc-stat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yc-company-stat-item .yc-stat-info p {
    font-size: 0.875rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.yc-stat-box {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.yc-stat-box .yc-stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.yc-stat-box i {
    font-size: 1.125rem;
    color: #fff;
    font-style: normal;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .yc-company-stats {
        padding: 6rem 0;
    }
    
    .yc-stats-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .yc-stats-numbers {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* 企业文化 */
.yc-culture {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.yc-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.yc-section-header h2 {
    font-size: 2.5rem;
    color: #313131;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.yc-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background-color: #ec6935;
    border-radius: 0.125rem;
}

.yc-culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.yc-culture-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 0.75rem;
    background-color: #ec6935;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yc-culture-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: #ec6935;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.yc-culture-item:hover {
    transform: translateY(-0.75rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border-color: #ec6935;
}

.yc-culture-item:hover::before {
    transform: scaleX(1);
}

.yc-culture-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.yc-culture-icon img {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.yc-culture-item:hover .yc-culture-icon img {
    transform: scale(1.1);
}

.yc-culture-info {
    position: relative;
    z-index: 1;
}

.yc-culture-info h4 {
    font-size: 1.375rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.yc-culture-info span {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.yc-culture-item:hover .yc-culture-info h4 {
    color: #fff;
}

.yc-culture-item:hover .yc-culture-info span {
    color: #fff;
}

/* 生产优势 */
.yc-production-advantages {
    width: 100%;
    overflow: hidden;
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.yc-advantages-content {
    margin-top: 4rem;
}

.yc-advantage-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yc-advantage-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.yc-advantage-content-left,
.yc-advantage-content-right {
    flex: 1;
}

.yc-advantage-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.yc-advantage-icon img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.yc-advantage-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
}

.yc-advantage-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.yc-advantage-section p strong {
    color: #ec6935;
    font-weight: bold;
}

.yc-advantage-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.yc-advantage-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.yc-advantage-section:hover .yc-advantage-image img {
    transform: scale(1.02);
}

/* 生产优势页面的 yc_num 样式 */
.yc-advantage-section .yc_num {
    margin: 2rem 0;
}

.yc-advantage-section .yc_num ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.yc-advantage-section .yc_num li {
    list-style: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.5rem;
    background-color: #f5f5f5;
    border-radius: 0.3125rem;
    transition: all 0.3s ease;
    color: #333;
}

.yc-advantage-section .yc_num li::before {
    content: '';
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    background-image: url('../images/shizi1.png');
    background-size: cover;
    transition: all 0.3s ease;
}

.yc-advantage-section .yc_num li:hover {
    background-color: #ec6935;
    color: #fff;
}

.yc-advantage-section .yc_num li:hover .typetxt {
    color: #fff;
}

.yc-advantage-section .yc_num li:hover::before {
    background-image: url('../images/shizi2.png');
}

.yc-advantage-section .typetxt {
    margin: 0;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .yc-production-advantages {
        padding: 4rem 0;
    }
    
    .yc-advantage-section {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .yc-advantage-content-left,
    .yc-advantage-content-right {
        width: 100%;
    }
    
    .yc-advantage-section .yc_num ul {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yc-advantage-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .yc-advantage-icon img {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .yc-advantage-section h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .yc-production-advantages {
        padding: 2rem 0;
    }
    
    .yc-advantage-section {
        padding: 1rem;
        margin-bottom: 4rem;
    }
    
    .yc-advantage-section .yc_num ul {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yc-advantage-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .yc-advantage-icon img {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .yc-advantage-section h3 {
        font-size: 1.125rem;
    }
}
/* 关于页面响应式 */
@media (max-width: 1024px) {
    .yc-founder-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .yc-founder-left img {
        margin: 0 auto;
    }
    
    .yc-company-intro-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .yc-stats-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .yc-stats-numbers {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yc-culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .yc-banner-bg {
        height: 15rem;
    }
    
    .yc-banner-content h2 {
        font-size: 1.75rem;
    }
    
    .yc-banner-content p {
        font-size: 0.875rem;
    }
    
    /* 波浪高度调整 */
    .banner_wave {
        height: 3rem;
    }
    
    .yc-founder {
        padding: 2.5rem 0;
    }
    
    .yc-founder-title h3 {
        font-size: 1.375rem;
    }
    
    .yc-founder-title p {
        font-size: 1.75rem;
    }
    
    .yc-stats-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .yc-culture-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .yc-company-intro,
    .yc-company-video,
    .yc-company-stats,
    .yc-culture {
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .yc-banner-bg {
        height: 12rem;
    }
    
    .yc-banner-content h2 {
        font-size: 1.375rem;
    }
    
    .yc-founder-title h3 {
        font-size: 1.125rem;
    }
    
    .yc-founder-title p {
        font-size: 1.375rem;
    }
    
    .yc-founder-left {
        flex: 0 0 70%;
        max-width: 70%;
    }


    .yc-stat-box .yc-stat-number {
        font-size: 1.5rem;
    }
}

/* ========== 发展历程页面样式 ========== */
.yc-history {
    padding: 4rem 0;
    background-color: #fff;
}

.yc-history-header {
    margin-bottom: 4rem;
}

.yc-history-image {
    position: relative;
    width: 100%;
    height: 20rem;
    overflow: hidden;
    border-radius: 0.75rem;
}

.yc-history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yc-history-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 105, 53, 0.9) 0%, rgba(236, 105, 53, 0.6) 100%);
}

.yc-history-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.yc-history-info h3 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.yc-history-info h3 span {
    font-size: 5rem;
    color: #fff;
}

.yc-history-info h4 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.yc-history-info p {
    font-size: 1rem;
    opacity: 0.9;
    color: #fff;
}

.yc-history-timeline {
    position: relative;
    padding: 2rem 0;
}

.yc-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0.125rem;
    background: linear-gradient(180deg, #ec6935 0%, rgba(236, 105, 53, 0.3) 100%);
    transform: translateX(-50%);
}

.yc-timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.yc-timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.yc-timeline-year {
    flex: 0 0 50%;
    text-align: right;
    padding-right: 3rem;
    font-size: 2rem;
    font-weight: 700;
    color: #ec6935;
    padding-top: 0.5rem;
}

.yc-timeline-item:nth-child(odd) .yc-timeline-year {
    text-align: left;
    padding-right: 0;
    padding-left: 3rem;
    padding-top: 0.5rem;
}

.yc-timeline-dot {
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 1rem;
    height: 1rem;
    background: #ec6935;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 0.25rem rgba(236, 105, 53, 0.3);
}

.yc-timeline-content {
    flex: 0 0 50%;
    padding-left: 3rem;
    padding-top: 0.5rem;
}

.yc-timeline-item:nth-child(odd) .yc-timeline-content {
    padding-left: 0;
    padding-right: 3rem;
    text-align: right;
    padding-top: 0.5rem;
}

.yc-timeline-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

.yc-timeline-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(236, 105, 53, 0.2);
    border-color: #ec6935;
}

.yc-timeline-card h4 {
    font-size: 1.25rem;
    color: #ec6935;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.yc-timeline-card p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.8;
}

.yc-timeline-icon {
    position: absolute;
    bottom: 1rem;
    font-size: 1.25rem;
    color: #ec6935;
}

.yc-timeline-item:nth-child(odd) .yc-timeline-icon.layui-icon-right {
    transform: rotate(135deg);
}

.yc-timeline-item:nth-child(even) .yc-timeline-icon.layui-icon-right {
    transform: rotate(45deg);
}

.yc-timeline-item:nth-child(odd) .yc-timeline-icon {
    left: 1rem;
}

.yc-timeline-item:nth-child(even) .yc-timeline-icon {
    right: 1rem;
}

@media (max-width: 992px) {
    .yc-history-image {
        height: 15rem;
    }
    
    .yc-history-info h3 {
        font-size: 3rem;
    }
    
    .yc-history-info h3 span {
        font-size: 3.5rem;
    }
    
    .yc-history-info h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .yc-history {
        padding: 2rem 0;
    }
    
    .yc-history-header {
        margin-bottom: 2rem;
    }
    
    .yc-history-image {
        height: 12rem;
        border-radius: 0.5rem;
    }
    
    .yc-history-info {
        width: 100%;
        padding: 0 1rem;
    }
    
    .yc-history-info h3 {
        font-size: 2rem;
    }
    
    .yc-history-info h3 span {
        font-size: 2.5rem;
    }
    
    .yc-history-info h4 {
        font-size: 1.125rem;
    }
    
    .yc-history-info p {
        font-size: 0.875rem;
    }
    
    .yc-timeline-line {
        left: 1rem;
    }
    
    .yc-timeline-item,
    .yc-timeline-item:nth-child(odd) {
        flex-direction: column;
        padding-left: 3rem;
        padding-right: 0;
        text-align: left;
    }
    
    .yc-timeline-year,
    .yc-timeline-item:nth-child(odd) .yc-timeline-year {
        flex: none;
        text-align: left;
        padding: 0;
        padding-left: 0;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .yc-timeline-dot,
    .yc-timeline-item:nth-child(odd) .yc-timeline-dot {
        left: 1rem;
        transform: translateX(-50%);
    }
    
    .yc-timeline-content,
    .yc-timeline-item:nth-child(odd) .yc-timeline-content {
        flex: none;
        width: 100%;
        padding: 0;
        text-align: left;
    }
    
    .yc-timeline-card {
        padding: 1rem;
    }
    
    .yc-timeline-card h4 {
        font-size: 1.125rem;
    }
    
    .yc-timeline-card p {
        font-size: 0.875rem;
    }
    
    .yc-timeline-icon {
        display: none;
    }
}

/* ========== 公司团队页面样式 ========== */
.yc-team {
    padding: 4rem 0;
    background-color: #fff;
}

.yc-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.yc-section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.yc-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: #ec6935;
    border-radius: 0.125rem;
}

.yc-mt-10 {
    margin-top: 6rem;
}

/* 公司团队网格 */
.yc-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.yc-team-item {
    transition: all 0.3s ease;
}

.yc-team-item:hover {
    transform: translateY(-0.5rem);
}

.yc-team-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.yc-team-card:hover {
    box-shadow: 0 0.5rem 2rem rgba(236, 105, 53, 0.2);
    border-color: #ec6935;
}

.yc-team-image {
    position: relative;
    padding-top: 113.8%;
    overflow: hidden;
}

.yc-team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.yc-team-card:hover .yc-team-image img {
    transform: scale(1.05);
}

.yc-team-info {
    padding: 1.5rem;
    text-align: center;
}

.yc-team-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    overflow: hidden;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.yc-team-info p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 4.5rem;
}

/* 顾问团队网格 */
.yc-advisor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-bottom: 4rem;
}

.yc-advisor-item {
    transition: all 0.3s ease;
}

.yc-advisor-item:hover {
    transform: translateY(-0.5rem);
}

.yc-advisor-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.yc-advisor-card:hover {
    box-shadow: 0 0.5rem 2rem rgba(236, 105, 53, 0.2);
    border-color: #ec6935;
}

.yc-advisor-image {
    position: relative;
    padding-top: 113.8%;
    overflow: hidden;
}

.yc-advisor-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.yc-advisor-card:hover .yc-advisor-image img {
    transform: scale(1.05);
}

.yc-advisor-info {
    padding: 1.25rem;
    text-align: center;
}

.yc-advisor-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    overflow: hidden;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.yc-advisor-info p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 2.8rem;
}

/* 合作院校机构 */
.yc-partners {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.yc-partner-carousel {
    position: relative;
    margin-top: 2rem;
    padding: 0 6rem;
}

.yc-partner-swiper {
    position: relative;
    max-width: 100%;
}

.swiper-slide {
    padding: 0 1rem;
    box-sizing: border-box;
}

.yc-partner-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.yc-partner-card:hover {
    box-shadow: 0 0.5rem 2rem rgba(236, 105, 53, 0.2);
    border-color: #ec6935;
}

.yc-partner-image {
    position: relative;
    width: 100%;
    padding-top: 60.9%;
    overflow: hidden;
}

.yc-partner-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.yc-partner-card:hover .yc-partner-image img {
    transform: scale(1.1);
}

.yc-partner-card h4 {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: nowrap;
}

/* Swiper 导航按钮样式 */
.swiper-button-prev,
.swiper-button-next {
    width: 3rem;
    height: 3rem;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev {
    left: -1.5rem;
}

.swiper-button-next {
    right: -1.5rem;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #ec6935;
    color: #fff;
    border-color: #ec6935;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.25rem;
    font-weight: bold;
}

/* 响应式 - 平板 */
@media (max-width: 992px) {
    .yc-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yc-advisor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 响应式 - 手机 */
@media (max-width: 768px) {
    .yc-team {
        padding: 2rem 0;
    }
    
    .yc-partners {
        padding: 2rem 0;
    }
    
    .yc-section-header h2 {
        font-size: 1.75rem;
    }
    
    .yc-mt-10 {
        margin-top: 3rem;
    }
    
    .yc-team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .yc-advisor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .yc-partner-image {
        height: 10rem;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 1rem;
    }
}

/* 响应式 - 小手机 */
@media (max-width: 480px) {
   
    .yc-team-info {
        padding: 1rem;
    }
    
    .yc-advisor-info {
        padding: 1rem;
    }
}

/* ========== 联系我们页面样式 ========== */
.yc-contact-page {
    padding: 4rem 0;
    background-color: #fff;
}

.yc-platform-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.yc-message-section {
    padding: 4rem 0;
    background-color: #fff;
}

.yc-contact-section {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    margin-bottom: 0;
}

.yc-contact-info {
    flex: 1;
    background: linear-gradient(135deg, #ec6935 0%, #f5a623 100%);
    border-radius: 1rem;
    padding: 3rem;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.yc-contact-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.yc-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.yc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.yc-contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yc-contact-icon::before {
    content: '';
    width: 1rem;
    height: 1rem;
    background: #fff;
    border-radius: 50%;
}

.yc-contact-item:nth-child(1) .yc-contact-icon::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ec6935'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center/contain no-repeat;
    background-color: transparent;
}

.yc-contact-item:nth-child(2) .yc-contact-icon::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ec6935'%3E%3Cpath d='M17 4h-3V2h-4v2H7v18h10V4zm-4 16h-2v-2h2v2zm0-4h-2V9h2v7z'/%3E%3C/svg%3E") center/contain no-repeat;
    background-color: transparent;
}

.yc-contact-item:nth-child(3) .yc-contact-icon::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ec6935'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center/contain no-repeat;
    background-color: transparent;
}

.yc-contact-item:nth-child(4) .yc-contact-icon::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ec6935'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") center/contain no-repeat;
    background-color: transparent;
}

.yc-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.yc-contact-text .label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.yc-contact-text .value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.yc-contact-image {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: stretch;
}

.yc-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 平台账号区域 */
.yc-platform-section {
    margin-bottom: 0;
}

.yc-platform-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.yc-platform-carousel {
    position: relative;
    margin-top: 0;
    padding: 0 2rem;
}

.yc-platform-swiper {
    width: 100%;
}

.yc-platform-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.yc-platform-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.5rem 2rem rgba(236, 105, 53, 0.2);
    border-color: #ec6935;
}

.yc-platform-qr {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.yc-platform-qr img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yc-platform-info {
    padding: 1rem;
    text-align: center;
    background: #fafafa;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yc-platform-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.5rem;
}

.yc-platform-info p {
    font-size: 0.9375rem;
    color: #333;
    margin: 0;
}

.yc-message-wrapper {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.yc-message-decoration {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 15rem;
    height: 15rem;
    background: linear-gradient(135deg, rgba(236, 105, 53, 0.1) 0%, rgba(245, 166, 35, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.yc-decoration-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ec6935'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.3;
}

.yc-message-form {
    position: relative;
    z-index: 1;
}

.yc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.yc-form-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.yc-form-item:hover {
    border-color: #ec6935;
    box-shadow: 0 0.5rem 1.5rem rgba(236, 105, 53, 0.1);
}

.yc-form-item-full {
    grid-column: 1 / -1;
}

.yc-form-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #ec6935 0%, #f5a623 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yc-form-icon .layui-icon {
    font-size: 1.5rem;
    color: #fff;
}

.yc-form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.yc-form-label {
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
}

.yc-captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.yc-captcha-wrapper .yc-form-input {
    flex: 1;
    min-width: 0;
}

.yc-captcha {
    flex-shrink: 0;
}

.yc-captcha img {
    border-radius: 0.5rem;
    cursor: pointer;
    vertical-align: middle;
    height: 2.75rem;
    width: auto;
    object-fit: cover;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.yc-captcha img:hover {
    transform: scale(1.02);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .yc-captcha-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .yc-captcha {
        flex-shrink: 0;
    }
    
    .yc-captcha img {
        height: 2rem;
        width: 5.625rem;
    }
}

.yc-form-input {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background: transparent;
    box-sizing: border-box;
}

.yc-form-input:focus {
    outline: none;
    border-bottom-color: #ec6935;
}

.yc-form-input::placeholder {
    color: #ccc;
}

textarea.yc-form-input {
    resize: none;
    min-height: 120px;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

textarea.yc-form-input:focus {
    border-color: #ec6935;
}

.yc-form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* 统一按钮样式 */
.yc-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 3rem;
    background: linear-gradient(135deg, #ec6935 0%, #f5a623 100%);
    color: #fff;
    border: none;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
}

.yc-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.yc-button:hover::before {
    left: 100%;
}

.yc-button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.75rem 2rem rgba(236, 105, 53, 0.4);
}

.yc-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.yc-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

.yc-form-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 3rem;
    background: linear-gradient(135deg, #ec6935 0%, #f5a623 100%);
    color: #fff;
    border: none;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.yc-form-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.yc-form-button:hover::before {
    left: 100%;
}

.yc-form-button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.75rem 2rem rgba(236, 105, 53, 0.4);
}

.yc-form-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.yc-form-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* 联系我们响应式 */
@media (max-width: 768px) {
    .yc-contact-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .yc-contact-info {
        padding: 2rem;
    }
    
    .yc-platform-carousel {
        margin-top: 1.5rem;
        padding: 0;
        padding-bottom: 4rem;
    }
    
    .yc-platform-carousel .swiper-button-prev,
    .yc-platform-carousel .swiper-button-next {
        top: auto !important;
        bottom: -0.5rem !important;
        transform: none !important;
        width: 2.5rem !important;
        height: 2.5rem !important;
        margin-top: 0 !important;
        z-index: 10;
    }
    
    .yc-platform-carousel .swiper-button-prev {
        left: calc(50% - 4rem) !important;
    }
    
    .yc-platform-carousel .swiper-button-next {
        right: calc(50% - 4rem) !important;
    }
    
    .yc-platform-carousel .swiper-button-prev:hover,
    .yc-platform-carousel .swiper-button-next:hover {
        transform: none !important;
    }
    
    .yc-message-wrapper {
        padding: 2rem;
        margin: 1.5rem 0.5rem 0;
    }
    
    .yc-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .yc-form-item {
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .yc-form-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .yc-form-icon .layui-icon {
        font-size: 1.25rem;
    }
    
    .yc-form-submit {
        margin-top: 1.5rem;
    }
    
    .yc-form-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .yc-contact-page {
        padding: 2.5rem 0;
    }
    
    .yc-contact-info {
        padding: 1.5rem;
    }
    
    .yc-contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .yc-message-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }
    
    .yc-form-item {
        padding: 0.875rem;
    }
    
    .yc-form-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .yc-form-icon .layui-icon {
        font-size: 1.125rem;
    }
    
    .yc-form-label {
        font-size: 0.8125rem;
    }
    
    .yc-form-input {
        font-size: 0.9375rem;
        padding: 0.5rem 0;
    }
    
    textarea.yc-form-input {
        min-height: 100px;
        padding: 0.5rem;
    }
    
    .yc-captcha img {
        height: 2.25rem;
    }
    
    .yc-form-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* 图片轮播样式 */
.yc-advantage-image-slider {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.yc-advantage-image-slider .swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.yc-advantage-image-slider .swiper-slide {
    position: relative;
    height: 400px;
}

.yc-advantage-image-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease;
}

/* 鼠标悬停时图片亮度变化 */
.yc-advantage-section:hover .yc-advantage-image-slider .swiper-slide img {
    filter: brightness(1.1);
}

.yc-advantage-image-slider .swiper-button-prev,
.yc-advantage-image-slider .swiper-button-next {
    width: 3rem;
    height: 3rem;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.yc-advantage-image-slider .swiper-button-prev {
    left: 1rem;
}

.yc-advantage-image-slider .swiper-button-next {
    right: 1rem;
}

.yc-advantage-image-slider .swiper-button-prev:hover,
.yc-advantage-image-slider .swiper-button-next:hover {
    background: #ec6935;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.yc-advantage-image-slider .swiper-button-prev::after,
.yc-advantage-image-slider .swiper-button-next::after {
    font-size: 1.25rem;
    font-weight: bold;
}

.yc-advantage-image-slider .swiper-pagination {
    bottom: 1rem;
}

.yc-advantage-image-slider .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.yc-advantage-image-slider .swiper-pagination-bullet-active {
    background: #ec6935;
    border-color: #ec6935;
}

/* 底部 page 效果 */
.yc-page-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    text-align: center;
}

.yc-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.yc-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.yc-page-description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.yc-page-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.yc-action-btn {
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    color: #ec6935;
    border: 1px solid #ec6935;
}

.yc-action-btn:hover {
    background: #ec6935;
    color: #fff;
}

/* 响应式设计 - 底部 page */
@media (max-width: 768px) {
    .yc-page-section {
        padding: 2rem 0;
    }
    
    .yc-page-title {
        font-size: 1.5rem;
    }
    
    .yc-page-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .yc-page-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .yc-action-btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
}

/* 响应式设计 - 轮播 */
@media (max-width: 991px) {
    .yc-advantage-image-slider .swiper-slide {
        height: 300px;
    }
    
    /* 手机端统一将图片放在下面 */
    .yc-advantage-section {
        flex-direction: column;
        text-align: center;
    }
    
    /* 确保所有图片容器在下方 */
    .yc-advantage-content-left,
    .yc-advantage-content-right {
        width: 100% !important;
    }
    
    /* 图片在左侧的模块（偶数项） */
    .yc-advantage-section:nth-child(even) .yc-advantage-content-left {
        order: 2 !important;
    }
    
    .yc-advantage-section:nth-child(even) .yc-advantage-content-right {
        order: 1 !important;
    }
    
    /* 图片在右侧的模块（奇数项） */
    .yc-advantage-section:nth-child(odd) .yc-advantage-content-left {
        order: 1 !important;
    }
    
    .yc-advantage-section:nth-child(odd) .yc-advantage-content-right {
        order: 2 !important;
    }
}

@media (max-width: 767px) {
    .yc-advantage-image-slider .swiper-slide {
        height: 250px;
    }
    
    .yc-advantage-image-slider .swiper-button-prev,
    .yc-advantage-image-slider .swiper-button-next {
        width: 2.5rem;
        height: 2.5rem;
        border: 1px solid #ddd;
        background: #fff;
    }
    
    .yc-advantage-image-slider .swiper-button-prev::after,
    .yc-advantage-image-slider .swiper-button-next::after {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .yc-advantage-image-slider .swiper-slide {
        height: 200px;
    }
}

/* ==================== 招商加盟页面样式 ==================== */

/* 招商加盟模块 */
.yc-franchise {
    padding: 4rem 0;
    background: #f9f9f9;
}

.yc-franchise-content {
    margin-top: 3rem;
}

/* 招商加盟区块 */
.yc-franchise-section {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.yc-franchise-section-reverse {
    flex-direction: row-reverse;
}

/* 招商加盟图片 */
.yc-franchise-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.yc-franchise-image:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.15);
}

.yc-franchise-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.yc-franchise-image:hover img {
    transform: scale(1.05);
}

.yc-franchise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 105, 53, 0.8) 0%, rgba(245, 166, 35, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yc-franchise-image:hover .yc-franchise-overlay {
    opacity: 1;
}

.yc-franchise-overlay-content {
    text-align: center;
    color: #fff;
}

.yc-franchise-overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.yc-franchise-arrow {
    font-size: 2rem;
    font-weight: 700;
    animation: arrow-pulse 1.5s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* 招商加盟信息 */
.yc-franchise-info {
    flex: 1;
}

.yc-franchise-info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.yc-franchise-info-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(236, 105, 53, 0.1);
}

.yc-franchise-info-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.yc-franchise-info-title i {
    font-size: 1.5rem;
    color: #ec6935;
}

.yc-franchise-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yc-franchise-info-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.yc-franchise-info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ec6935;
    font-weight: 700;
}

/* 在线留言 */
.yc-franchise-message {
    margin-top: 4rem;
    padding: 3rem;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.yc-franchise-message-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.yc-franchise-message-left {
    flex: 0 0 35%;
}

.yc-franchise-message-left h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.yc-franchise-message-left p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.yc-franchise-message-right {
    flex: 1;
}

/* 表单样式 */
.yc-franchise-form {
    width: 100%;
}

.yc-form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.yc-form-group {
    flex: 1;
    position: relative;
}

.yc-form-group-full {
    flex: 1 1 100%;
}

.yc-form-group-captcha {
    max-width: 300px;
}

.yc-form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.yc-form-input:focus {
    outline: none;
    border-color: #ec6935;
    box-shadow: 0 0 0 3px rgba(236, 105, 53, 0.1);
}

.yc-form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.yc-form-textarea:focus {
    outline: none;
    border-color: #ec6935;
    box-shadow: 0 0 0 3px rgba(236, 105, 53, 0.1);
}

.yc-form-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 3rem;
    background: linear-gradient(135deg, #ec6935 0%, #f5a623 100%);
    color: #fff;
    border: none;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.yc-form-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.yc-form-button:hover::before {
    left: 100%;
}

.yc-form-button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.75rem 2rem rgba(236, 105, 53, 0.4);
}

.yc-form-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.yc-form-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* 验证码 */
.yc-captcha-img {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.yc-captcha-img img {
    height: 2.5rem;
    border-radius: 0.25rem;
}

.yc-form-input-captcha {
    padding-right: 8rem;
}

/* 自定义选择器 */
.yc-custom-select {
    position: relative;
    width: 100%;
}

.yc-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yc-select-trigger:hover {
    border-color: #ec6935;
}

.yc-custom-select.open .yc-select-trigger {
    border-color: #ec6935;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.yc-select-value {
    font-size: 0.875rem;
    color: #666;
}

.yc-select-trigger i {
    font-size: 1rem;
    color: #999;
    transition: transform 0.3s ease;
}

.yc-custom-select.open .yc-select-trigger i {
    transform: rotate(180deg);
    color: #ec6935;
}

.yc-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ec6935;
    border-top: none;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.yc-custom-select.open .yc-select-options {
    max-height: 200px;
}

.yc-select-option {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yc-select-option:hover {
    background: #f8f9fa;
    color: #ec6935;
}

.yc-select-option.selected {
    background: #fff9f5;
    color: #ec6935;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .yc-franchise-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .yc-franchise-section-reverse {
        flex-direction: column;
    }
    
    .yc-franchise-image {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .yc-franchise-message-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .yc-franchise-message-left {
        flex: 0 0 100%;
    }
    
    .yc-form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .yc-form-group-captcha {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .yc-franchise {
        padding: 3rem 0;
    }
    
    .yc-franchise-section {
        margin-bottom: 3rem;
    }
    
    .yc-franchise-message {
        padding: 2rem;
    }
    
    .yc-franchise-message-left h3 {
        font-size: 1.5rem;
    }
    
    .yc-franchise-phone {
        font-size: 1.25rem;
    }
    
    .yc-form-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .yc-franchise {
        padding: 2rem 0;
    }
    
    .yc-franchise-content {
        margin-top: 2rem;
    }
    
    .yc-franchise-message {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .yc-franchise-info-item {
        padding: 1.25rem;
    }
    
    .yc-franchise-info-title {
        font-size: 1.125rem;
    }
    
    .yc-form-input,
    .yc-form-textarea {
        padding: 0.875rem 1rem;
    }
}

/* 招商代理页面样式 */
.yc-beer-agent {
    padding: 4rem 0;
    margin-top: 1rem;
}

.yc-beer-agent-content {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.yc-beer-agent-left {
    flex: 0 0 350px;
    order: 1;
}

.yc-beer-agent-right {
    flex: 1;
    order: 2;
}

/* 联系卡片 */
.yc-agent-contact-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.yc-agent-card-header {
    background: #ec6935;  
    padding: 1.5rem;
    text-align: center;
}

.yc-agent-card-header h3 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.yc-agent-card-body {
    padding: 2rem;
}

.yc-agent-contact-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.yc-agent-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.yc-agent-phone i {
    font-size: 1.5rem;
    color: #ec6935;
}

.yc-agent-phone a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.yc-agent-phone a:hover {
    color: #ec6935;
}

/* 表单样式 */
.yc-agent-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.yc-agent-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.yc-agent-form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.yc-agent-required {
    color: #ec6935;
}

.yc-agent-input,
.yc-agent-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.yc-agent-input:focus,
.yc-agent-textarea:focus {
    outline: none;
    border-color: #ec6935;
    box-shadow: 0 0 0 3px rgba(236, 105, 53, 0.1);
}

.yc-agent-textarea {
    resize: vertical;
    min-height: 100px;
}

.yc-agent-captcha-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.yc-agent-captcha-input {
    flex: 1;
}

.yc-agent-captcha-img {
    flex: 0 0 7.5rem;
}

.yc-agent-captcha-img img {
    width: 100%;
    height: 2.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.yc-agent-captcha-img img:hover {
    transform: scale(1.05);
}

.yc-agent-submit {
    background: linear-gradient(135deg, #ec6935 0%, #f5a623 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.yc-agent-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.5rem rgba(236, 105, 53, 0.3);
}

.yc-agent-submit:active {
    transform: translateY(0);
}

/* 详情卡片 */
.yc-agent-details-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.yc-agent-section {
    margin-bottom: 2.5rem;
}

.yc-agent-section:last-child {
    margin-bottom: 0;
}

.yc-agent-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ec6935;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.yc-agent-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: #ec6935;
    border-radius: 50%;
}

.yc-agent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yc-agent-list li {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.yc-agent-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #ec6935;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 响应式布局 - 招商代理页面 */
@media (max-width: 1024px) {
    .yc-beer-agent-content {
        flex-direction: column !important;
    }
    
    .yc-beer-agent-content .yc-beer-agent-right {
        flex: 1;
        order: 1 !important;
    }
    
    .yc-beer-agent-content .yc-beer-agent-left {
        flex: 1;
        max-width: 100%;
        order: 2 !important;
    }
}

@media (max-width: 768px) {
    .yc-beer-agent {
        padding: 2rem 0;
    }
    
    .yc-beer-agent-content {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .yc-agent-card-body {
        padding: 1.5rem;
    }
    
    .yc-agent-card-header {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .yc-agent-captcha-row {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .yc-agent-captcha-img {
        flex: 0 0 5.625rem;
    }
    
    .yc-agent-captcha-img img {
        width: 100%;
        height: 2rem;
    }
    
    .yc-agent-input {
        padding: 0.5rem 0.75rem;
    }
}

/* 新闻列表页面样式 */
.yc-news-list {
    padding: 0 0 2rem;
}

.yc-news-search {
    margin: 1.5rem 0 2rem;
}

.yc-page-search-box {
    position: relative;
    max-width: 500px;
}

.yc-page-search-input {
    width: 100%;
    padding: 1rem 4rem 1rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.yc-page-search-input:focus {
    outline: none;
    border-color: #ec6935;
    box-shadow: 0 0 0 3px rgba(236, 105, 53, 0.1);
}

.yc-page-search-button {
    position: absolute;
    right: 0;
    top: 0;
    width: 4rem;
    height: 100%;
    background: #ec6935;
    color: #fff;
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: none;
}

.yc-page-search-button:hover {
    background: #d85a2a;
    transform: none;
}

.yc-page-search-button:hover i {
    transform: rotate(90deg);
}

.yc-page-search-button i {
    transition: transform 0.3s ease;
}

.yc-news-featured {
    margin-bottom: 4rem;
}

.yc-news-carousel {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.yc-news-slide {
    display: flex;
    align-items: center;
    height: 400px;
    position: relative;
}

.yc-news-slide-image {
    flex: 0 0 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.yc-news-slide-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    border: 0;
    min-width: 100%;
    min-height: 100%;
}

.yc-news-slide:hover .yc-news-slide-image img {
    transform: scale(1.05);
}

.yc-news-slide-content {
    flex: 1;
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.yc-news-date {
    display: inline-block;
    background: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.yc-news-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.yc-news-slide:hover .yc-news-title {
    color: #ec6935;
}

.yc-news-excerpt {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3.2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    border: 2px solid #ec6935;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #ec6935;
    width: 30px;
    border-radius: 6px;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #333;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-prev {
    left: 1rem;
}

.swiper-button-next {
    right: 1rem;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #ec6935;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.yc-newslist-grid {
    margin-bottom: 3rem;
}

.yc-newslist-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.yc-newslist-item {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.yc-newslist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.1);
}

.yc-newslist-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.yc-newslist-item-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.yc-newslist-item-image::after {
    content: "";
    display: block;
    padding-top: 66.67%; /* 3:2 宽高比 */
}

.yc-newslist-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    border: 0;
}

.yc-newslist-item:hover .yc-newslist-item-image img {
    transform: scale(1.05);
}

.yc-newslist-item-content {
    padding: 1.5rem;
}

.yc-newslist-item-date {
    display: inline-block;
    background: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.yc-newslist-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.8rem;
}

.yc-newslist-item:hover .yc-newslist-item-title {
    color: #ec6935;
}

.yc-newslist-item-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ec6935;
    transition: all 0.3s ease;
}

.yc-newslist-item:hover .yc-newslist-item-more {
    transform: translateX(5px);
}

.yc-newslist-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.yc-pagination-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.5rem;
    border-radius: 2rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.yc-pagination-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yc-pagination-box a:hover:not(.yc-pagination-disabled):not(.disabled) {
    background: #ec6935;
    color: #fff;
}

.yc-pagination-box a.yc-pagination-disabled,
.yc-pagination-box a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.yc-pagination-box .active,
.yc-pagination-box .page-num-current {
    background: #ec6935;
    color: #fff;
}

.yc-pagination-box .page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yc-pagination-box .page-num:hover:not(.yc-pagination-disabled):not(.disabled) {
    background: #ec6935;
    color: #fff;
}

/* 响应式布局 - 新闻列表页面 */
@media (max-width: 1024px) {
    .yc-news-slide {
        flex-direction: column;
        height: auto;
    }
    
    .yc-news-slide-image {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
    }
    
    .yc-news-slide-image::after {
        content: "";
        display: block;
        padding-top: 56.25%; /* 16:9 宽高比 */
    }
    
    .yc-news-slide-content {
        padding: 2rem;
    }
    
    .yc-newslist-items {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .yc-news-list {
        padding: 0 0 2rem;
    }
    
    .yc-news-search {
        margin: 1.5rem 0 2rem;
    }
    
    .yc-page-search-box {
        max-width: 100%;
    }
    
    .yc-page-search-input {
        padding: 0.75rem 3.5rem 0.75rem 1.25rem;
    }
    
    .yc-page-search-button {
        width: 3.5rem;
    }
    
    .yc-news-featured {
        margin-bottom: 2rem;
    }
    
    .yc-news-slide-content {
        padding: 1.5rem;
    }
    
    .yc-news-title {
        font-size: 1.25rem;
    }
    
    .yc-newslist-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .yc-newslist-item-image::after {
        padding-top: 75%; /* 4:3 宽高比，适合小屏幕 */
    }
}

@media (max-width: 480px) {
    .yc-news-slide-image {
        flex: 0 0 auto;
        height: auto;
    }
    
    .yc-news-slide-image::after {
        padding-top: 66.67%; /* 3:2 宽高比 */
    }
    
    .yc-news-slide-content {
        padding: 1.25rem;
    }
    
    .yc-news-title {
        font-size: 1.125rem;
    }
    
    .yc-news-excerpt {
        font-size: 0.875rem;
    }
    
    .yc-newslist-items {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.75rem;
    }
    
    .yc-pagination-box {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .yc-pagination-box a {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
}

/* 品类单页样式 */
.yc-product-category {
    margin-top: -1px;
}

/* 品类内容 */
.yc-category-content {
    padding: 4rem 0;
    background: #f9f9f9;
}

/* 品类网格 */
.yc-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* 品类项 */
.yc-category-item {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.yc-category-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ec6935, #ff9a6b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.yc-category-item:hover::before {
    transform: scaleX(1);
}

.yc-category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.yc-category-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

.yc-category-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.yc-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.yc-category-item:hover .yc-category-image img {
    transform: scale(1.05);
}

.yc-category-text {
    flex: 0 0 300px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yc-category-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.yc-category-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yc-category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 2px solid #ec6935;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ec6935;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.yc-category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 105, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.yc-category-btn:hover::before {
    left: 100%;
}

.yc-category-btn:hover {
    background: #ec6935;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(236, 105, 53, 0.3);
}

.yc-category-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.yc-category-item:hover .yc-category-btn i {
    transform: translateX(10px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .yc-category-link {
        flex-direction: column;
    }
    
    .yc-category-image {
        height: 200px;
    }
    
    .yc-category-text {
        flex: none;
        width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .yc-category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .yc-category-content {
        padding: 3rem 0;
    }
    
    .yc-section-title h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .yc-category-content {
        padding: 2rem 0;
    }
    
    .yc-category-text {
        padding: 1.25rem;
    }
    
    .yc-category-name {
        font-size: 1.25rem;
    }
    
    .yc-category-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
    }
}

/* 新闻详情页面样式 */
.yc-news-detail {
    padding: 3rem 0 4rem;
}

.yc-news-detail .yc-container {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.yc-detail-main {
    flex: 0 0 65%;
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.yc-detail-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.yc-detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.yc-detail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.yc-detail-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #999;
}

.yc-detail-date i {
    font-size: 1rem;
}

.yc-detail-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

/* 社交分享按钮样式调整 */
.yc-detail-share .social-share {
    font-size: 16px;
}

.yc-detail-share .social-share .social-share-icon {
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 32px;
    margin: 0 4px;
    /* 统一颜色 */
    color: #ec6935 ;
    border-color: #fff !important;
}
.yc-detail-share .social-share .social-share-icon:hover {
    background: #ec6935;
    color: #fff;
}
/* 二维码 z-index 调整 */
.yc-detail-share .social-share .social-share-icon .wechat-qrcode {
    z-index: 1;
}

.yc-detail-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-top: 1.5rem;
}

.yc-detail-content p {
    margin-bottom: 1.5rem;
}

.yc-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.yc-detail-content h2,
.yc-detail-content h3,
.yc-detail-content h4 {
    color: #333;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.yc-detail-content ul,
.yc-detail-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.yc-detail-content li {
    margin-bottom: 0.5rem;
}

.yc-detail-content blockquote {
    border-left: 4px solid #ec6935;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f9f9f9;
    border-radius: 0 0.5rem 0.5rem 0;
}

.yc-sidebar-news {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.yc-detail-prev-next {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.yc-detail-prev-next a {
    display: flex;
    flex-direction: column;
    padding: 0.875rem 1rem;
    background: #f9f9f9;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yc-detail-prev-next a:hover:not(.disabled) {
    background: #ec6935;
    color: #fff;
}

.yc-detail-prev-next a:hover:not(.disabled) .label,
.yc-detail-prev-next a:hover:not(.disabled) .title {
    color: #fff;
}

.yc-detail-prev-next .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.yc-detail-prev-next .label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.yc-detail-prev-next .title {
    font-size: 0.9375rem;
    color: #333;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.yc-detail-back {
    text-align: center;
}

.yc-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #ec6935;
    color: #fff;
    border-radius: 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yc-btn-back:hover {
    background: #666;
    color: #fff;
    transform: translateY(-2px);
}

.yc-detail-sidebar {
    flex: 1;
    position: sticky;
    top: 6rem;
}

.yc-sidebar-sticky {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.yc-sidebar-title {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ec6935;
}

.yc-sidebar-title h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.yc-sidebar-title span {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
}

.yc-sidebar-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yc-sidebar-news-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.yc-sidebar-news-item:last-child {
    border-bottom: none;
}

.yc-sidebar-news-link {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yc-sidebar-news-link:hover {
    transform: translateX(5px);
}

.yc-sidebar-news-link:hover .yc-sidebar-news-title {
    color: #ec6935;
}

.yc-sidebar-news-date {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 4rem;
    background: #f9f9f9;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.yc-sidebar-news-date .day {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ec6935;
    line-height: 1;
}

.yc-sidebar-news-date .year-month {
    font-size: 0.625rem;
    color: #999;
    margin-top: 0.25rem;
}

.yc-sidebar-news-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.yc-sidebar-news-title {
    font-size: 1.125rem;
    font-weight: normal;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    margin-bottom: 0
}

/* 响应式布局 - 新闻详情页面 */
@media (max-width: 1024px) {
    .yc-detail-main {
        flex: 0 0 70%;
    }
}
@media (max-width: 912px) {
    .yc-news-detail .yc-container {
        flex-direction: column;
    }
    .yc-detail-main {
        flex: none;
        width: 100%;
    }
    .yc-detail-sidebar {
        flex: none;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .yc-news-detail .yc-container {
        flex-direction: column;
    }
    
    .yc-detail-main {
        flex: none;
        width: 100%;
    }
    
    .yc-detail-sidebar {
        flex: none;
        width: 100%;
    }
    
    .yc-detail-main {
        padding: 1.5rem;
    }
    
    .yc-detail-title {
        font-size: 1.5rem;
    }
    
    .yc-detail-prev-next {
        grid-template-columns: 1fr;
    }
    
    .yc-detail-sidebar {
        position: static;
    }
    
    .yc-sidebar-sticky {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .yc-news-detail {
        padding: 2rem 0 2rem;
    }
    
    .yc-detail-main {
        padding: 1rem;
        border-radius: 0.5rem;
    }
    
    .yc-detail-title {
        font-size: 1.25rem;
    }
    
    .yc-detail-meta {
        align-items: center;
    }
    
    .yc-sidebar-news-date {
        width: 3rem;
        height: 3rem;
    }
    
    .yc-sidebar-news-date .day {
        font-size: 1rem;
    }
}

/* 产品列表页面样式 */
.yc-product-list {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.yc-product-list-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.yc-product-list-item {
    position: relative;
    background: #fff;
    border-radius: 0.9375rem;
    overflow: hidden;
    box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 20rem;
}

.yc-product-list-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ec6935, #ff9a6b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.yc-product-list-item:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
}

.yc-product-list-item:hover::before {
    transform: scaleX(1);
}

.yc-product-list-link {
    display: flex;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.yc-product-list-image {
    width: 26.875rem;
    height: 100%;
    position: relative;
    background: url(../images/product_img.jpg) center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.yc-product-list-image-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yc-product-list-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.yc-product-list-item:hover .yc-product-list-image img {
    transform: scale(1.05);
}

.yc-product-list-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yc-product-list-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yc-product-list-excerpt {
    font-size: 0.9375rem;
    color: #666;
    margin: 0.5rem 0;
    overflow: hidden;
    min-height: 3.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.yc-product-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 2px solid #ec6935;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ec6935;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.yc-product-list-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 105, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.yc-product-list-btn:hover::before {
    left: 100%;
}

.yc-product-list-btn:hover {
    background: #ec6935;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(236, 105, 53, 0.3);
}

.yc-product-list-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.yc-product-list-item:hover .yc-product-list-btn i {
    transform: translateX(10px);
}

.yc-product-pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.yc-pagination-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 产品分类导航折叠展开样式 */
.yc-product-nav-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    cursor: pointer;
    user-select: none;
}

.yc-product-nav-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: #ec6935;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.yc-product-nav-header.expanded .yc-product-nav-toggle-icon {
    transform: rotate(180deg);
}

.yc-product-nav-content {
    max-height: 600px;
    overflow: visible;
}

.yc-product-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .yc-product-list {
        padding: 3rem 0;
    }
    
    .yc-product-list-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .yc-product-list-item {
        height: auto;
    }
    
    .yc-product-list-link {
        flex-direction: column;
    }
    
    .yc-product-list-image {
        width: 100%;
        height: 15rem;
    }
    
    .yc-product-list-content {
        padding: 1.5rem;
    }
    
    .yc-product-list-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .yc-product-list {
        padding: 2rem 0;
    }
    
    .yc-product-list-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .yc-product-list-item {
        height: auto;
    }
    
    .yc-product-list-image {
        height: 16.875rem;
    }
    
    .yc-product-list-image-inner {
        padding: 0 10%;
    }
    
    .yc-product-list-content {
        padding: 1.25rem;
    }
    
    .yc-product-list-title {
        font-size: 1rem;
    }
    
    .yc-product-list-excerpt {
        font-size: 0.875rem;
    }
    
    .yc-pagination-box a {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
    
    .yc-product-nav-header {
        display: flex;
    }
    
    .yc-product-nav-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .yc-product-nav-content.expanded {
        max-height: 600px;
    }
}

@media (max-width: 480px) {
    .yc-product-list {
        padding: 1.5rem 0;
    }
    
    .yc-product-list-item {
        height: auto;
    }
    
    .yc-product-list-image {
        height: 15rem;
    }
    
    .yc-product-list-image-inner {
        padding: 5%;
    }
    
    .yc-product-list-content {
        padding: 1rem;
    }
}

/* 产品详情页面样式 */
.yc-product-detail {
    padding: 4rem 0;
    background: #f9f9f9;
}

.yc-product-detail-content {
    display: flex;
    gap: 3rem;
}

.yc-product-detail-left {
    width: 18.875rem;
}

.yc-sidebar-sticky {
    position: sticky;
    top: 2rem;
    background: #fff;
    padding: 1.5rem;
}

.yc-sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.yc-product-search {
    margin-bottom: 1.5rem;
}

.yc-page-search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.yc-page-search-input {
    width: 100%;
    padding: 0.6rem 3rem 0.6rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    transition: border-color 0.3s ease;
}

.yc-page-search-input:focus {
    outline: none;
    border-color: #ec6935;
}

.yc-page-search-button {
    position: absolute;
    right: 0;
    top: 0;
    width: 3rem;
    height: 100%;
    background: #ec6935;
    color: #fff;
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: none;
}

.yc-page-search-button:hover {
    background: #d85a2a;
    transform: none;
}

.yc-page-search-button:hover i {
    transform: rotate(90deg);
}

.yc-page-search-button i {
    transition: transform 0.3s ease;
}



.yc-product-nav-list li {
    margin-bottom: 0.25rem;
}

.yc-product-nav-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.yc-product-nav-list li.active a {
    color: #ec6935;
    font-weight: 500;
}

.yc-product-nav-list a:hover {
    color: #ec6935;
}

.yc-product-nav-list li.active a i {
    color: #ec6935;
}

.yc-product-detail-right {
    flex: 1;
}

.yc-product-box {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.yc-product-detail-info {
    display: flex;
    gap: 3rem;
    padding: 1.5rem;
}

.yc-product-line {
    height: 1px;
    background: #e6e7ed;
    margin: 0 2rem;
}

.yc-detail-article {
    padding: 2rem;
}

.yc-product-image-slider {
    flex: 0 0 50%;
}

.yc-product-swiper {
    border-radius: 0.9375rem;
    overflow: hidden;
}

.yc-product-image {
    position: relative;
    background: url(../images/product_img.jpg) center no-repeat;
    background-size: cover;
    border-radius: 0.9375rem;
    overflow: hidden;
    min-height: 400px;
}

.yc-product-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yc-product-pic a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.yc-product-pic img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.yc-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.yc-product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.yc-product-specs {
    margin-bottom: 2rem;
}

.yc-product-specs p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
}

.yc-product-specs span {
    font-weight: 600;
    color: #333;
}

.yc-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 2px solid #ec6935;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ec6935;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.yc-product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 105, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.yc-product-btn:hover::before {
    left: 100%;
}

.yc-product-btn:hover {
    background: #ec6935;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(236, 105, 53, 0.3);
}

.yc-product-btn i {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

.yc-product-content {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

.yc-product-equipment {
    background: #fff;
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 3rem;
}

.yc-equipment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 2rem;
}

.yc-equipment-item:nth-child(1),
.yc-equipment-item:nth-child(2) {
    grid-column: span 3;
    grid-row: span 1;
}

.yc-equipment-item:nth-child(3),
.yc-equipment-item:nth-child(4),
.yc-equipment-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
}

.yc-equipment-item {
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

.yc-equipment-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    border: 0;
}

.yc-equipment-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.yc-equipment-item::after {
    content: "";
    display: block;
    padding-top: 50%; 
}

.yc-related-products {
    background: #f9f9f9;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

.yc-related-products-slider {
    margin-top: 2rem;
}

.yc-related-product-item {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.yc-related-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.yc-related-product-image {
    position: relative;
    overflow: hidden;
}

.yc-related-product-image::after {
    content: "";
    display: block;
    padding-top: 66.67%; /* 3:2 宽高比 */
}

.yc-related-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    border: 0;
}

.yc-related-product-item:hover .yc-related-product-image img {
    transform: scale(1.05);
}

.yc-related-product-info {
    padding: 1.5rem;
    text-align: center;
}

.yc-related-product-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .yc-product-detail-content {
        gap: 2rem;
    }
        
    .yc-product-detail-info {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .yc-product-detail {
        padding: 3rem 0;
    }
    
    .yc-product-detail-content {
        flex-direction: column;
    }
        .yc-product-detail-left {
        flex: none;
        width: 100%;
    }
    
    .yc-sidebar-sticky {
        position: static;
    }
    
    .yc-product-detail-info {
        flex-direction: column;
    }
    
    .yc-product-image-slider {
        flex: none;
        width: 100%;
    }
    
    .yc-product-line {
        margin: 0 1.5rem;
    }
    
    .yc-detail-article {
        padding: 2rem 1.5rem;
    }
    
    .yc-product-content, .yc-product-equipment, .yc-related-products {
        padding: 2rem;
    }
}

/* 产业布局页面样式 */
.industry-banner {
    position: relative;
    background: linear-gradient(135deg, #ec6935 0%, #f98e60 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.industry-banner .banner-container {
    position: relative;
    z-index: 2;
}

.industry-banner h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.industry-banner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-breadcrumb {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
}

.banner-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-breadcrumb a:hover {
    opacity: 0.8;
}

.banner-breadcrumb span {
    margin: 0 0.5rem;
}

.banner-breadcrumb .active {
    opacity: 0.7;
}

/* 发展规划模块 */
.yc-industry-plan {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.yc-industry-plan-content {
    margin-top: 3rem;
}



/* 发展目标 */
.yc-industry-plan-goals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.yc-industry-plan-goal {
    background: #fff;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.yc-industry-plan-goal:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.12);
}

.yc-industry-plan-goal-icon {
    width: 60px;
    height: 60px;
    background: #ec6935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #fff;
}

.yc-industry-plan-goal h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.yc-industry-plan-goal p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 全国布局模块 */
.yc-industry-map-section {
    padding: 4rem 0;
}

.yc-industry-map-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 3rem;
}

.yc-industry-map-main {
    position: relative;
    flex: 1;
}

.yc-industry-map-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    max-height: 400px;
    object-fit: contain;
}

.yc-industry-map-factories {
    flex: 1;
    min-width: 300px;
    max-width: 540px;
    position: relative;
}

.yc-industry-factory-swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
}

.yc-industry-factory-item {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.yc-industry-factory-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15);
}

.yc-industry-factory-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.yc-industry-factory-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    border: 0;
}

.yc-industry-factory-item:hover .yc-industry-factory-image img {
    transform: scale(1.02);
}

.yc-industry-factory-info {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
}

.yc-industry-factory-info h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.yc-industry-factory-info p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

/* Swiper 样式 */
.yc-industry-factory-swiper .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.yc-industry-factory-swiper .swiper-button-prev,
.yc-industry-factory-swiper .swiper-button-next {
    color: #ec6935;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: absolute;
    bottom: 12px;
    top: auto;
    transform: none;
    z-index: 10;
}

.yc-industry-factory-swiper .swiper-button-prev::after,
.yc-industry-factory-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: bold;
}

.yc-industry-factory-swiper .swiper-button-prev {
    left: calc(50% - 80px);
}

.yc-industry-factory-swiper .swiper-button-next {
    right: calc(50% - 80px);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .industry-banner h2 {
        font-size: 2.5rem;
    }
    
    .yc-industry-plan-goals {
        gap: 1.5rem;
    }
    
    .yc-industry-map-content {
        gap: 2rem;
    }
    
    .yc-industry-map-image {
        max-width: 500px;
        max-height: 350px;
    }
    
    .yc-industry-map-marker-dot {
        width: 10px;
        height: 10px;
    }
    
    .yc-industry-map-marker-pulse {
        width: 25px;
        height: 25px;
    }
    
}

@media (max-width: 992px) {
    .industry-banner {
        padding: 4rem 0;
    }
    
    .industry-banner h2 {
        font-size: 2rem;
    }
    
    .yc-industry-plan-goals {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .yc-industry-plan-goal {
        padding: 2rem;
    }
    
    .yc-industry-plan-goal-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .yc-industry-map-content {
        flex-direction: column;
        align-items: center;
    }
    
    .yc-industry-map-main {
        width: 100%;
        max-width: 600px;
    }
    
    .yc-industry-map-image {
        max-width: 600px;
        max-height: 300px;
    }
    
    .yc-industry-map-factories {
        width: 100%;
        max-width: 540px;
        margin-top: 2rem;
    }
    
    .yc-industry-factory-swiper {
        padding-bottom: 55px;
    }
    
    .yc-industry-factory-swiper .swiper-button-prev,
    .yc-industry-factory-swiper .swiper-button-next {
        width: 32px;
        height: 32px;
    }
    
    .yc-industry-factory-swiper .swiper-button-prev::after,
    .yc-industry-factory-swiper .swiper-button-next::after {
        font-size: 12px;
    }
    
    .yc-industry-factory-swiper .swiper-button-prev {
        left: calc(50% - 70px);
    }
    
    .yc-industry-factory-swiper .swiper-button-next {
        right: calc(50% - 70px);
    }
    
}

@media (max-width: 768px) {
    .industry-banner {
        padding: 3rem 0;
    }
    
    .industry-banner h2 {
        font-size: 1.5rem;
    }
    
    .industry-banner p {
        font-size: 1rem;
    }
    
    .yc-industry-plan {
        padding: 3rem 0;
    }
    
    .yc-industry-plan-goals {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .yc-industry-plan-goal {
        padding: 2.5rem;
    }
    
    .yc-industry-map-section {
        padding: 3rem 0;
    }
    
    .yc-industry-map-image {
        max-width: 100%;
        max-height: 200px;
    }
    
    .yc-industry-map-marker-dot {
        width: 6px;
        height: 6px;
    }
    
    .yc-industry-map-marker-pulse {
        width: 15px;
        height: 15px;
    }
    
    .yc-industry-map-factories {
        width: 100%;
        margin-top: 1.5rem;
    }
    
    .yc-industry-factory-swiper {
        padding-bottom: 50px;
    }
    
    .yc-industry-factory-swiper .swiper-button-prev,
    .yc-industry-factory-swiper .swiper-button-next {
        width: 30px;
        height: 30px;
        bottom: 10px;
    }
    
    .yc-industry-factory-swiper .swiper-button-prev::after,
    .yc-industry-factory-swiper .swiper-button-next::after {
        font-size: 11px;
    }
    
    .yc-industry-factory-swiper .swiper-button-prev {
        left: calc(50% - 60px);
    }
    
    .yc-industry-factory-swiper .swiper-button-next {
        right: calc(50% - 60px);
    }
    
    .yc-industry-factory-swiper .swiper-pagination {
        bottom: 16px;
    }
    
}

@media (max-width: 480px) {
    .industry-banner h2 {
        font-size: 1.25rem;
    }
    
    .yc-industry-plan-goal {
        padding: 2rem;
    }
    
    .yc-industry-plan-goal-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .yc-industry-map-image {
        max-height: 150px;
    }
    
    .yc-industry-map-marker-dot {
        width: 5px;
        height: 5px;
    }
    
    .yc-industry-map-marker-pulse {
        width: 12px;
        height: 12px;
    }
    
    .yc-industry-factory-image {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .yc-product-detail {
        padding: 2rem 0;
    }
    
    .yc-sidebar-sticky {
        padding: 1.5rem;
    }
    
    .yc-product-detail-info {
        padding: 1.5rem;
    }
    
    .yc-product-line {
        margin: 0 1rem;
    }
    
    .yc-detail-article {
        padding: 1.5rem 1rem;
    }
    
    .yc-product-title {
        font-size: 1.5rem;
    }
    
    .yc-product-content, .yc-product-equipment, .yc-related-products {
        padding: 1.5rem;
    }
        .yc-product-detail-left {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .yc-product-detail-info {
        padding: 1rem;
    }
    
    .yc-product-line {
        margin: 0 0.5rem;
    }
    
    .yc-detail-article {
        padding: 1rem 0.5rem;
    }
    
    .yc-product-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .yc-product-specs p {
        font-size: 1rem;
    }
    
    .yc-product-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .yc-product-content, .yc-product-equipment, .yc-related-products {
        padding: 1rem;
    }
}

/* 搜索页面样式 */
.yc-searchpage {
    padding: 4rem 0 6rem;
    background: #f8f9fa;
}

.yc-sresult-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.yc-sresult-tab {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #666;
    transition: all 0.3s ease;
    background: transparent;
}

.yc-sresult-tab:hover {
    color: #ec6935;
    background: rgba(236, 105, 53, 0.05);
}

.yc-sresult-tab.active {
    background: linear-gradient(135deg, #ec6935, #ff9a6b);
    color: #fff;
    box-shadow: 0 0.25rem 0.75rem rgba(236, 105, 53, 0.3);
}

.yc-sresult-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.yc-sresult-item {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.yc-sresult-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.yc-sresult-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

.yc-sresult-image {
    flex: 0 0 35%;
    position: relative;
    overflow: hidden;
}

.yc-sresult-image::after {
    content: "";
    display: block;
    padding-top: 50%;
}

.yc-sresult-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    border: 0;
}

.yc-sresult-item:hover .yc-sresult-image img {
    transform: scale(1.05);
}

.yc-sresult-content {
    flex: 1;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.yc-sresult-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.yc-sresult-link:hover .yc-sresult-title {
    color: #ec6935;
}

.yc-sresult-excerpt {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.yc-sresult-excerpt mark {
    background-color: rgba(236, 105, 53, 0.2);
    color: #ec6935;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

.yc-sresult-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yc-sresult-type {
    font-size: 0.8125rem;
    color: #999;
    padding: 0.375rem 0.875rem;
    background: #f5f5f5;
    border-radius: 1.25rem;
}

.yc-sresult-arrow {
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, #ec6935, #ff9a6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.yc-sresult-arrow i {
    color: #fff;
    font-size: 0.875rem;
}

.yc-sresult-item:hover .yc-sresult-arrow {
    transform: translateX(5px);
}

.yc-sresult-empty {
    text-align: center;
    padding: 6rem 0;
}

.yc-sresult-empty-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f5f5f5, #eee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yc-sresult-empty-icon i {
    font-size: 3rem;
    color: #ccc;
}

.yc-sresult-empty h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.yc-sresult-empty p {
    font-size: 0.9375rem;
    color: #999;
}

.yc-sresult-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .yc-searchpage {
        padding: 3rem 0 4rem;
    }
    
    .yc-sresult-list {
        grid-template-columns: 1fr;
    }
    
    .yc-sresult-link {
        flex-direction: column;
    }
    
    .yc-sresult-image {
        flex: none;
        width: 100%;
    }
    
    .yc-sresult-image::after {
        padding-top: 45%;
    }
    
    .yc-sresult-content {
        padding: 1.25rem;
    }
    
    .yc-sresult-title {
        font-size: 1.125rem;
    }
    
    .yc-sresult-excerpt {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .yc-sresult-tabs {
        width: 100%;
        gap: 0.375rem;
    }
    
    .yc-sresult-tab {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        text-align: center;
    }
    
    .yc-sresult-image::after {
        padding-top: 50%;
    }
    
    .yc-sresult-content {
        padding: 1rem;
    }
    
    .yc-sresult-title {
        font-size: 1rem;
    }
    
    .yc-sresult-excerpt {
        font-size: 0.8125rem;
    }
    
    .yc-pagination-box a {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .yc-searchpage {
        padding: 2rem 0 3rem;
    }
    
    .yc-sresult-tab {
        padding: 0.625rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .yc-sresult-image::after {
        padding-top: 55%;
    }
    
    .yc-sresult-content {
        padding: 1rem;
    }
    
    .yc-sresult-type {
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
    }
    
    .yc-sresult-arrow {
        width: 1.875rem;
        height: 1.875rem;
    }
}