
/*屏幕大于1200px (大屏幕电脑) */
@media screen and (min-width: 1200px) {
    body, .template1,
    .template3 .temp3_menu-nav,
    .template2Bg  {
        width: 100%;
        min-width: 1200px;
    }
}

/*屏幕在1024px到1199之间(中屏幕电脑)*/
@media screen and (min-width: 1024px) and ( max-width: 1199px) {
    body, .template1,
    .template3 .temp3_menu-nav,
    .template2Bg  {
        width: 100%;
        min-width: 1200px;
    }
}

/*屏幕在768px到1023之间(小屏幕-pad)*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
    body, .template1,
    .template2,
    .template3,
    .template3 .temp3_menu-nav,
    .template2Bg {
        width: 100%;
        min-width: 1200px;
        /* padding: 0 15px;
        box-sizing: border-box; */
    }
}

/*屏幕在480px到768之间(主要是手机屏幕)*/
@media screen and (max-width: 768px) {
    body, .template1,
    .template3 .temp3_menu-nav,
    .template2Bg  {
        width: 100%;
        min-width: 1200px;
    }
}