@charset "utf-8";

/* 公共部分 */

body{
    font-family:'Microsoft YaHei',serif;
}
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.yp-content{
    width:1200px;
    margin:auto;
}
/*
!* html 响应式布局设定 *!

!* 屏幕宽度在900以上的 *!
@media screen and (min-width: 900px) {
    html{font-size: 36px;}
}

!*手机横屏或者平板电脑*!
@media screen and (min-width: 600px) and (max-width: 900px) {
    html{font-size:32px;}
}

!* 屏幕宽度在480-600之间的大屏手机 *!
@media screen and (min-width: 480px) and (max-width: 600px) {
    html{font-size: 20px;}
}

!*手机  三星s4手机 360*640 iPhone5 320px*!
@media screen and (max-device-width: 480px){
    html{font-size: 16px;}
}*/
