/* CSS Document */

/*iPad横板显屏 @media screen and (max-device-width: 1024px) and (orientation: landscape) */
/*iPad竖板显屏 @media screen and (max-device-width: 768px) and (orientation: portrait) */



 
/* CSS Document */


/********************************************** 宽度320px~480px之间样式设定 *********************************************/


@media screen and (min-width: 320px) and (max-width: 480px) {
	
   html{font-size:62.5%; /* 10÷16=62.5% */} 

   body{font-size:12px;font-size:1.2em ; /* 12÷10=1.2 */}
   
  .swiper-container { /*  width: 320px; height: 480px;*/  width:100%; height: 100%;  }
  
  
   /*四大保障开始*/
  .sdbz_1{ width:40%; float:left; margin-left:4%; background:#f8f8f8; padding:2%; margin-top:4%; color:#5e5e5e;}
   
  .sdbz_nr{ font-size:0.6em; margin-top:1%;}
  
  /*四大保障结束*/
  
   #array{ left:150px;}

   .diz8{ font-size:2.4em; color:#fff; text-align:center; position:absolute; top:83%;}
		
   .diz8 p{ font-size:0.5em;}


	}    



/********************************************** 宽度480px~768px之间样式设定 *********************************************/


@media screen and (min-width: 480px) and (max-width: 768px) {

	html{font-size:62.5%; /* 10÷16=62.5% */} 
		
	body{font-size:18px;font-size:1.8em ; /* 12÷10=1.2 */}
		
	/*.hou{top:59%;}*/

	
	}    



/********************************************** 宽度大于768px样式设定 *********************************************/


















 
 