/* 微信开发页面优化样式 */

/* 零售行业痛点区域 */
.WeChat {
    background: #fff;
    padding: 60px 0;
}

.WeChat .IndexService_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.WeChat .IndexService_content_title {
    text-align: center;
    margin-bottom: 50px;
}

.WeChat .IndexService_content_title dd {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.WeChat .IndexService_content_title dt {
    font-size: 15px;
    color: #666;
    line-height: 24px;
}

/* 痛点卡片布局 */
.WeChat .WeChat_content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.WeChat .WeChat_content_list {
    flex: 0 0 calc(25% - 23px);
    max-width: 260px;
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.WeChat .WeChat_content_list:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: #fff;
}

.WeChat .WeChat_content_list dd {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.WeChat .WeChat_content_list dd img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.WeChat .WeChat_content_list dt {
    font-size: 14px;
    color: #555;
    line-height: 22px;
    min-height: 44px;
}

/* 粉丝经济区域 */
.WeChat .WeChat_fan {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
}

.WeChat .WeChat_fan dd {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
}

.WeChat .WeChat_fan dt {
    display: inline-block;
}

.WeChat .WeChat_fan dt img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

/* 微商城优势区域 */
.Mall {
    background: #f8f9fa;
    padding: 60px 0;
}

.Mall .IndexService_content_title {
    text-align: center;
    margin-bottom: 50px;
}

.Mall .IndexService_content_title dd {
    font-size: 28px;
    color: #45a993;
    font-weight: 600;
    margin-bottom: 15px;
}

.Mall .IndexService_content_title dt {
    font-size: 15px;
    color: #666;
    line-height: 24px;
    max-width: 800px;
    margin: 0 auto;
}

/* 微商城优势卡片 */
.Mall .Mall_content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.Mall .WeChat_content_list {
    flex: 0 0 calc(25% - 23px);
    max-width: 260px;
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.Mall .WeChat_content_list:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(69,169,147,0.2);
}

.Mall .WeChat_content_list dd {
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Mall .WeChat_content_list dd img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.Mall .WeChat_content_list dt {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.Mall .WeChat_content_list p {
    font-size: 14px;
    color: #666;
    line-height: 22px;
    flex: 1;
}

/* 相关案例区域优化 */
.app_case {
    background: #f6f6f6;
    padding: 50px 0;
}

.app_case .IndexService_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app_case .app_case_title {
    font-size: 28px;
    color: #333333;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 600;
}

.app_case .IndexCase_content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.66%;
    flex-wrap: wrap;
}

.app_case .IndexCase_content .IndexCase_content_list {
    flex: 0 0 23%;
    max-width: 280px;
}

/* 响应式布局 */
@media screen and (max-width: 1200px) {
    .WeChat .WeChat_content_list,
    .Mall .WeChat_content_list {
        flex: 0 0 calc(50% - 15px);
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .WeChat,
    .Mall {
        padding: 40px 0;
    }
    
    .WeChat .IndexService_content_title dd,
    .Mall .IndexService_content_title dd {
        font-size: 22px;
    }
    
    .WeChat .WeChat_content,
    .Mall .Mall_content {
        gap: 20px;
    }
    
    .WeChat .WeChat_content_list,
    .Mall .WeChat_content_list {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .WeChat .WeChat_fan {
        margin-top: 40px;
        padding: 30px 15px;
    }
    
    .WeChat .WeChat_fan dd {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .Mall .WeChat_content_list dt {
        font-size: 16px;
    }
}

/* 移除owl-carousel的影响 */
.WeChat .carousel.owl-carousel,
.Mall .carousel.owl-carousel {
    display: flex !important;
}

.WeChat .carousel .owl-stage-outer,
.Mall .carousel .owl-stage-outer {
    overflow: visible !important;
}

.WeChat .carousel .owl-stage,
.Mall .carousel .owl-stage {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    transform: none !important;
}

.WeChat .carousel .owl-item,
.Mall .carousel .owl-item {
    width: auto !important;
    flex: 0 0 calc(25% - 23px) !important;
    max-width: 260px !important;
}

@media screen and (max-width: 1200px) {
    .WeChat .carousel .owl-item,
    .Mall .carousel .owl-item {
        flex: 0 0 calc(50% - 15px) !important;
        max-width: 400px !important;
    }
}

@media screen and (max-width: 768px) {
    .WeChat .carousel .owl-item,
    .Mall .carousel .owl-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
