

.product-range-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* 标题样式 */
.main-title {
    font-size: 36px; !important
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* 产品横幅图 */
.product-banner {
    width: 100%;
    margin: 30px 0;
    text-align: center;
}

.product-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 合作伙伴标题 */
.partner-title {
    font-size: 36px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #333;
    margin: 40px 0 30px;
    line-height: 1.3;
}

/* 合作伙伴大图 */
.partner-image {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.partner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 移动端适配 */
@media only screen and (max-width: 768px) {
    .product-range-container {
        padding: 5px;
    }
    
    /* 标题大小调整 */
    .main-title,
    .partner-title {
        font-size: 23px !important; /* 手机端缩小 */
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }
    
    /* 图片间距调整 */
    .product-banner,
    .partner-image {
        margin: 10px 0;
    }
    
    /* 移除所有固定宽度高度 */
    img[width="1412"],
    img[width="1491"] {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
}
