﻿/* media */
/* 横屏 */


@-ms-viewport {
    width: device-width;
}

@media screen and (orientation:landscape){
    
}
/* 竖屏 */
@media screen and (orientation:portrait){
    
}





/* 窗口宽度<480,设计宽度=320 */
@media screen and (max-width:479px){
    
}

/* 窗口宽度<640,设计宽度=480 */
@media screen and (max-width:639px){
    
}
/* 窗口宽度<768,设计宽度=640 */
@media screen and (max-width:767px){
    .visible-xs {
        display: block !important;
    }
    .hidden-xs {
        display: none !important;
    }
    
}

/* 平板  sm */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
             width: 7.5rem;
             margin-right: auto;
             margin-left: auto;
         }
         
         .visible-sm {
            display: block !important;
        }
        .hidden-sm {
            display: none !important;
        }
        .topbar p{ margin:0;display:inline-block;font-size:13px;color:#4c4c4c;}
        .m-search {margin-top: 0.10rem;}
        .m-nav li a{padding: 0 0.05rem;color:#fff;font-size:0.13rem;font-family:"Microsoft YaHei";}
         
       
        .row-fix30{margin-left:0;margin-right:-0.12rem;*zoom: 1;}
        .block{margin: 0 0.02rem;width: 2.5rem;overflow:hidden;}

}

@media (min-width: 992px) and (max-width: 1199px) {
     .container {
             width: 9.7rem;
			 margin:0 auto;
         }
         .visible-md {
            display: block !important;
        }
        .hidden-md {
            display: none !important;
        }
        
        .row-fix{margin-left:-0.15rem;margin-right:-0.15rem;*zoom: 1;}
        .row-fix0{margin-left:0.02rem;margin-right:-0.12rem;*zoom: 1;}
        .row-fix3{margin-left:0;margin-right:-0.24rem;*zoom: 1;}
        .row-fix30{margin-left:0;margin-right:-0.16rem;*zoom: 1;}
        .visible-lg {
            display: block !important;
        }
        .hidden-lg {
            display: none !important;
        }
        [class*="span"] {
            float: left;
            min-height: 1px;
            margin-left: 0;}
    
            .span2{
                width:1.35rem;
            }
            .span4{
                width:2.3rem;
            }
            .span10{
                width:1.2rem;
            }

            .m-nav li a{ padding:0 0.14rem;color:#fff;font-size:0.14rem;font-family:"Microsoft YaHei";}
            .block{margin:0 0.04rem;width:3.2rem;overflow:hidden;}
            .g-ft .col02{width:2rem;padding-left:0.6rem;}
            .g-ft .col03,.g-ft select{width:1.8rem;}
         
            
}

@media (min-width: 1200px) {
	.container{ width: 11.7rem;margin:0 auto;}
    .row-fix{margin-left:-0.15rem;margin-right:-0.15rem;*zoom: 1;}
    .row-fix0{margin-left:-0.1rem;margin-right:-0.2rem;*zoom: 1;}
     .row-fix30{margin-left:-0.26rem;margin-right:-0.38rem;*zoom: 1;}
    .row-fix3{margin-left:-0.36rem;margin-right:-1.3rem;*zoom: 1;}
    .row-fix4{margin-left:-0.4rem;margin-right:-0.2rem;*zoom: 1;}
    .row-fix5{margin-left:-0.5rem;margin-right:-0.6rem;*zoom: 1;}

    .visible-lg {
        display: block !important;
    }
    .hidden-lg {
        display: none !important;
    }
    [class*="span"] {
        float: left;
        min-height: 1px;
        margin-left: 0;}

        .span2{
            width:1.35rem;
        }
        .span4{
            width:2.3rem;
        }
        .span10{
            width:1.2rem;
        }

}
/* windows UI 贴靠 */
@media screen and (-ms-view-state:snapped){
    
}
/* 打印 */
@media print{
    
}