
/* Why Choose Anpviz 响应式布局 */
.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 顶部横幅 */
.top-banner {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.top-banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 标题区域 */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* 图文内容区块 */
.content-media-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 10px;
}

.content-media-block.reverse {
    flex-direction: row-reverse;
}

.media-item {
    flex: 1;
    min-width: 0;
}

.media-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-item {
    flex: 1;
    min-width: 0;
}

.text-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

/* 移动端适配 */
@media only screen and (max-width: 768px) {
    .why-choose-container {
        padding: 15px;
    }
    
    .section-title h2 {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .content-media-block {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 10px;
    }
    
    .content-media-block.reverse {
        flex-direction: column;
    }
    
    .text-item p {
        font-size: 16px;
        text-align: left;
    }
    
    /* 图片在移动端稍微缩小间距 */
    .media-item {
        margin-bottom: 15px;
    }
}
