
/* 产品类别区域 */
.products-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.products-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 40px);
    height: 2px;
    background-color: #e0e0e0;
}

.products-divider {
    display: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    row-gap: 40px;
}

.product-category-item {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-category-item:hover {
    transform: translateY(-5px);
}

.category-image-wrapper {
    width: 100%;
    height: 232px;
    overflow: hidden;
    /*border: 1px solid #f0f0f0;*/
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-category-item:hover .category-image {
    transform: scale(1.05);
}


.subcategory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.product-category-item:hover .subcategory-overlay {
    opacity: 1;
    visibility: visible;
}

.subcategory-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    max-height: 85%;
    overflow-y: auto;
    width: 80%;
}

.subcategory-item {
    display: block;
    padding: 12px 20px;
    /*color: #ffffff;*/
    color: #5b5a5a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
}

.subcategory-item:last-child {
    border-bottom: none;
}

.subcategory-item:hover {
    /*color: #ff5500;*/
    color: #f90122;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    font-weight: bold;
    padding-left: 30px;
}

.subcategory-item.active {
    color: #ffffff;
    background: rgba(215, 31, 36, 0.6);
}

.subcategory-list::-webkit-scrollbar {
    width: 3px;
}

.subcategory-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.subcategory-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.subcategory-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.8);
}

.category-info {
    text-align: center;
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}


.category-more {
    font-size: 14px;
    color: #999;
    transition: color 0.3s ease;
}

.product-category-item:hover .category-more {
    color: #d71f24;
}

/* 响应式设计 */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1000px) {
    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products-title {
        font-size: 28px;
    }

    .category-image-wrapper {
        height: 240px;
    }

    .category-name {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 40px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-title {
        font-size: 24px;
    }

    .category-image-wrapper {
        height: 300px;
    }

    .category-name {
        font-size: 18px;
    }
}
/**/


/* 合作之旅区域 */
.cooperate-journey-section {
    width: 100%;
    background-color: #3a3a3a;
    position: relative;
    overflow: hidden;
}

.cooperate-journey-container {
    max-width: 1600px;
    margin: 0 auto;
    height: 280px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.cooperate-journey-content {
    flex: 1;
    z-index: 2;
    /*padding-right: 400px;*/
    margin-left: 200px;
}

.cooperate-journey-title {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cooperate-journey-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.cooperate-journey-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cooperate-journey-btn:hover {
    background-color: #ffffff;
    color: #3a3a3a;
}

.cooperate-journey-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0.3;
    background-image: url('/public/image/cooperate_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 响应式设计 */
@media (max-width: 1000px) {
    .cooperate-journey-container {
        height: auto;
        padding: 40px 20px;
    }

    .cooperate-journey-content {
        padding-right: 0;
    }

    .cooperate-journey-title {
        font-size: 26px;
    }

    .cooperate-journey-subtitle {
        font-size: 14px;
    }

    .cooperate-journey-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .cooperate-journey-bg {
        width: 100%;
        opacity: 0.15;
    }
}

@media (max-width: 768px) {
    .cooperate-journey-container {
        padding: 30px 20px;
    }

    .cooperate-journey-title {
        font-size: 22px;
    }

    .cooperate-journey-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .cooperate-journey-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}
/**/


/* 客户好评区域 */
.reviews-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.reviews-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 40px);
    height: 2px;
    background-color: #e0e0e0;
}

.reviews-divider {
    display: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.review-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.review-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

.review-content {
    flex: 1;
}

.review-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-author {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 1000px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-title {
        font-size: 28px;
    }

    .reviews-grid {
        gap: 30px;
    }

    .review-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }

    .reviews-title {
        font-size: 24px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .review-item {
        gap: 15px;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .review-text {
        font-size: 13px;
    }

    .review-author {
        font-size: 13px;
    }
}
/**/

/* ...   ... */

/* 产品分类容器 */
.product-category-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.product-category-container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

/* 左侧分类导航 */
.category-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.category-sidebar-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d71f24;
}

.category-nav {
    display: flex;
    flex-direction: column;
}

.category-nav-item {
    margin-bottom: 2px;
}

.category-nav-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.category-nav-primary:hover {
    background-color: #e8e8e8;
    color: #ffffff;
}

.category-nav-primary.active {
    background-color: #666;
    color: #ffffff;
}

.category-nav-primary .category-name {
    font-size: 15px;
    font-weight: 500;
    /*color: #ffffff;*/
}
.category-nav-primary.active .category-name {
    color: #ffffff;
}

.category-nav-primary .category-icon {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.category-nav-primary.active .category-icon {
    transform: rotate(45deg);
}

.category-nav-secondary {
    display: none;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-top: none;
}

.category-nav-secondary.show {
    display: block;
}

.category-nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px 10px 25px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f5f5f5;
}

.category-nav-link:last-child {
    border-bottom: none;
}

.category-nav-link:hover {
    color: #d71f24;
    background-color: #fafafa;
}

.category-nav-link.active {
    color: #d71f24;
    background-color: #fff5f5;
    font-weight: 500;
}

.category-nav-link .arrow {
    margin-right: 8px;
    font-size: 12px;
    color: #999;
}

.category-nav-link:hover .arrow,
.category-nav-link.active .arrow {
    color: #d71f24;
}

/* 右侧产品列表区域 */
.product-list-area {
    flex: 1;
}

.product-list-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.products-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item {
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #ffffff;
}

.product-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.product-image-wrapper {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-info {
    padding: 15px;
    text-align: left;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.product-more {
    font-size: 13px;
    color: #999;
    transition: color 0.3s ease;
}

.product-item:hover .product-more {
    color: #d71f24;
}

/* 加载状态 */
.loading-state {
    text-align: center;
    padding: 50px;
    color: #999;
    font-size: 16px;
}

/* 无数据状态 */
.no-data-state {
    text-align: center;
    padding: 50px;
    color: #999;
    font-size: 16px;
    grid-column: 1 / -1;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .products-grid-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 1000px) {
    .product-category-section {
        padding: 60px 0;
    }

    .product-category-container {
        flex-direction: column;
        gap: 30px;
    }

    .category-sidebar {
        width: 100%;
    }

    .category-sidebar-title {
        font-size: 24px;
    }

    .product-list-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .product-category-section {
        padding: 40px 0;
    }

    .products-grid-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-grid-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image-wrapper {
        height: 250px;
    }
}

/* ...   ... */


/* 产品短介绍容器 */
.product-short-intro-section {
    width: 100%;
    background-color: #f7f7f7;
    padding: 30px 0;
}

.product-short-intro-container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
}

/* 左侧产品图片轮播 */
.product-image-carousel {
    width: calc(66.666% - 25px);
    flex-shrink: 0;
}

.product-image-carousel .product-image-swiper {
    width: 100%;
    height: 600px;
    /*border-radius: 8px;*/
    overflow: hidden;
    background-color: #f8f8f8;
}

.product-image-carousel .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slide-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.product-slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 轮播导航样式 */
.product-image-carousel .swiper-pagination {
    bottom: 20px;
}

.product-image-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.product-image-carousel .swiper-pagination-bullet-active {
    background-color: #d71f24;
    width: 24px;
    border-radius: 5px;
}

.product-image-carousel .swiper-button-prev,
.product-image-carousel .swiper-button-next {
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-image-carousel .swiper-button-prev:hover,
.product-image-carousel .swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-image-carousel .swiper-button-prev::after,
.product-image-carousel .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* 右侧产品短描述 */
.product-description-area {
    width: calc(33.333% - 25px);
    display: flex;
    flex-direction: column;
    background-color: #f7f7f7;
    padding: 30px 0;
    border-radius: 8px;
    height: 600px;
    max-height: 600px;
    overflow: hidden;
    position: relative;
}

.product-description-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    flex-shrink: 0;
}


.product-short-content {
    flex: 1;
    overflow-y: visible;
    overflow-x: visible;
    margin-bottom: 0;
    padding-right: 0;
    padding-bottom: 15px;
    position: relative;
    min-width: 0;
    color: #666!important;
}

/*.product-short-content::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 10px;*/
/*    height: 60px;*/
/*    background: linear-gradient(to bottom, transparent, #f9f9f9);*/
/*    pointer-events: none;*/
/*    opacity: 0;*/
/*    transition: opacity 0.3s ease;*/
/*}*/

.product-short-content.has-overflow::after {
    opacity: 1;
}

.product-short-content::-webkit-scrollbar {
    width: 6px;
}

.product-short-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.product-short-content::-webkit-scrollbar-thumb {
    background-color: #d71f24;
    border-radius: 3px;
}

.product-short-content::-webkit-scrollbar-thumb:hover {
    background-color: #b81820;
}

.product-short-content p {
    /*font-size: 14px;*/
    /*color: #666;*/
    /*line-height: 1.8;*/
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-short-content ul,
.product-short-content ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.product-short-content li {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.product-short-content img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}

.no-content-text {
    font-size: 14px;
    color: #999;
    text-align: center;
    padding: 40px 0;
}


/* 联系我们按钮 */
.product-contact-btn-wrapper {
    flex-shrink: 0;
    padding-top: 20px;
    margin-top: auto;
    /*border-top: 1px solid #e0e0e0;*/
    background-color: #f9f9f9;
    position: relative;
    z-index: 2;
}

.product-contact-btn {
    display: block;
    width: 40%;
    padding: 14px 30px;
    background-color: #d71f24;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.product-contact-btn:hover {
    background-color: #b81820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 31, 36, 0.3);
}

.product-contact-btn:active {
    transform: translateY(0);
}


/* 响应式设计 */
@media (max-width: 1200px) {
    .product-image-carousel .product-image-swiper {
        height: 500px;
    }

    .product-description-title {
        font-size: 22px;
    }
}

@media (max-width: 1000px) {
    .product-short-intro-section {
        padding: 40px 0;
    }

    .product-short-intro-container {
        flex-direction: column;
        gap: 30px;
    }

    .product-image-carousel {
        width: 100%;
    }

    .product-description-area {
        width: 100%;
    }

    .product-image-carousel .product-image-swiper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .product-short-intro-section {
        padding: 30px 0;
    }

    .product-short-intro-container {
        gap: 20px;
    }

    .product-image-carousel .product-image-swiper {
        height: 350px;
    }

    .product-description-area {
        padding: 20px;
    }

    .product-description-title {
        font-size: 20px;
    }

    .product-short-content p,
    .product-short-content li {
        font-size: 13px;
    }

    .product-contact-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-image-carousel .product-image-swiper {
        height: 300px;
    }

    .product-description-title {
        font-size: 18px;
    }

    .product-contact-btn-wrapper {
        position: sticky;
        bottom: 0;
        background-color: #f9f9f9;
        padding: 15px 0 0 0;
    }
}

/* ...   ... */

/* 右侧产品详情 */
.product-detail-area {
    /*width: calc(33.333% - 25px);*/
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 40px;
}

.product-detail-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    /*border-bottom: 2px solid #d71f24;*/
    flex-shrink: 0;
}

.product-detail-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    /*margin-bottom: 30px;*/
    /*padding-right: 10px;*/
    scrollbar-width: thin;
    scrollbar-color: #d71f24 #f0f0f0;
    color: #666!important;

}

.product-detail-content::-webkit-scrollbar {
    width: 6px;
}

.product-detail-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.product-detail-content::-webkit-scrollbar-thumb {
    background-color: #d71f24;
    border-radius: 3px;
}

.product-detail-content::-webkit-scrollbar-thumb:hover {
    background-color: #b81820;
}

.product-detail-content p {
    /*font-size: 14px;*/
    /*color: #666;*/
    /*line-height: 1.8;*/
    /*margin-bottom: 12px;*/
}

/*.product-detail-content ul,*/
/*.product-detail-content ol {*/
/*    padding-left: 20px;*/
/*    margin-bottom: 12px;*/
/*}*/

/*.product-detail-content li {*/
/*    font-size: 14px;*/
/*    color: #666;*/
/*    line-height: 1.8;*/
/*    margin-bottom: 8px;*/
/*}*/

/*.product-detail-content img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*    margin: 15px 0;*/
/*    border-radius: 4px;*/
/*}*/

/*.product-detail-content table {*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*    margin: 15px 0;*/
/*}*/

/*.product-detail-content table td,*/
/*.product-detail-content table th {*/
/*    padding: 8px 12px;*/
/*    border: 1px solid #e0e0e0;*/
/*    font-size: 14px;*/
/*    color: #666;*/
/*}*/

/*.product-detail-content table th {*/
/*    background-color: #f5f5f5;*/
/*    font-weight: 600;*/
/*    color: #333;*/
/*}*/


/* 热门推荐 */
.hot-recommend-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    flex-shrink: 0;
}

.hot-recommend-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.hot-recommend-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hot-recommend-item {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.hot-recommend-item:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.hot-recommend-image-wrapper {
    width: 100%;
    height: 100px;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot-recommend-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hot-recommend-item:hover .hot-recommend-image-wrapper img {
    transform: scale(1.05);
}

.hot-recommend-info {
    padding: 8px;
    text-align: center;
}

.hot-recommend-name {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot-recommend-more {
    font-size: 11px;
    color: #999;
    transition: color 0.3s ease;
}

.hot-recommend-item:hover .hot-recommend-more {
    color: #d71f24;
}

.hot-recommend-loading {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 13px;
    grid-column: 1 / -1;
}

.hot-recommend-empty {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 13px;
    grid-column: 1 / -1;
}

/* 响应式设计 */
@media (max-width: 1400px) {
    .hot-recommend-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .hot-recommend-image-wrapper {
        height: 90px;
    }
}

@media (max-width: 1000px) {
    .hot-recommend-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .hot-recommend-image-wrapper {
        height: 80px;
    }

    .hot-recommend-name {
        font-size: 11px;
    }

    .hot-recommend-more {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .hot-recommend-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .hot-recommend-image-wrapper {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .hot-recommend-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ...   ... */


