/* 英文版桌面浏览器布局修正
   仅在 viewport 宽度 ≥ 600px（桌面浏览器）时生效；
   真实手机宽度 < 600px，此规则不触发，原有布局完全不变。 */

@media (min-width: 600px) {

    html, body {
        max-width: 540px !important;
        margin: 0 auto !important;
        position: relative;
        box-shadow: 0 0 30px rgba(0,0,0,0.1);
        background: #fff;
    }

    /* 顶部公告条 / 头部 等 width:100% 的元素跟随约束 */
    .header, .alltips, .search2 {
        max-width: 540px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 底部固定导航条：在桌面浏览器把它居中并限宽 */
    .footer {
        max-width: 540px !important;
        left: 50% !important;
        transform: translateX(-50%);
    }

    /* fixed/absolute 元素可能用 right/left 锚定，桌面对齐到内容容器边缘 */
    .getops {
        right: calc(50% - 270px) !important;
    }
}
