/* CSS Document */

/*共用*/

*{
	margin: 0;
	padding: 0;
}
body{_font-family:'Microsoft YaHei' !important; font-family:'Microsoft YaHei'; max-width:700px; margin:0 auto;}


/*更多选择标签*/
em,i{ font-style:normal;}

/*列表,图像,A重置*/
ul{ list-style:none;}
img{ border:0 none;}
a{ text-decoration:none; outline:none;}

.warp{ width:95%; margin:0 auto;/*margin-bottom:10px;*/}

html {
    font-size: 62.5%;
	 /*10 ÷ 16 × 100% = 62.5%*/
	 /*62.5%=10px*/
	 /*举例50px=0.5rem*/
	 /*相对于父级进行rem*/
	 /*14px=1.4em=0.14rem*/
}


/*媒体查询*/
@media (min-width:721px) {
    html { font-size: 937.5%;}
}
@media (min-width:541px) and (max-width:720px){
    html { font-size: 1400%;}
}
@media (min-width:481px) and (max-width:540px){
    html { font-size: 1054%;}
}
@media (min-width:361px) and (max-width:480px){
    html { font-size: 938%;}
}
@media screen and (-webkit-min-device-pixel-ratio: 3) and (max-width:414px){
    html { font-size: 808%;}
}
@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width:375px){
    html { font-size: 732%;}
}
@media (min-width:321px) and (max-width:360px){
    html { font-size: 706%;}
}
@media (max-width:320px){
    html { font-size: 625%;}
}
/*媒体查询 end*/

/*共用 end*/
