/* video-ipad.css - iPad 专属适配规则 */

/* ========== 基础适配：所有 iPad 机型 (768px ≤ 宽度 ≤ 1024px) ========== */
@media only screen and (min-width: 768px) and (max-width: 1024px) {

 .partner-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ========== iPad 竖屏适配 (宽度 ≤ 768px) ========== */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
.main-nav{overflow-x:visible}
 .partner-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ========== iPad 横屏适配 (宽度 ≥ 1024px) ========== */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
 .partner-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

/* ========== 适配 iPad Pro (11英寸/12.9英寸) 大屏 ========== */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
 .partner-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ========== 触控优化：取消 hover 效果 (iPad 无鼠标) ========== */
@media (hover: none) and (pointer: coarse) {
 
}