/*
* @Author: dell
* @Date:   2017-08-03 22:09:22
* @Last Modified by:   tony
* @Last Modified time: 2017-09-25 10:55:37
*/


/* 大屏幕（大桌面显示器，大于等于 1200px） */
/*@import url(../../web/css/PcMax.css) screen and (min-width: 1200px);*/

/* 中等屏幕（桌面显示器，大于1024小于1200） */
/*@import url(../../web/css/Pc.css) screen and (min-width: 1024px) and (max-width:1200px);*/

/* 小屏幕（平板，大于640小于1024） */
@import url(../../web/css/Pad.css) screen and (min-width: 640px) and (max-width: 1024px);

/* 超小屏幕（手机，小于 640px） */
@import url(../../web/css/Mobile.css) screen and (max-width: 640px);




@media  only screen and (-webkit-min-device-pixel-ratio: 1.3),only screen and (-o-min-device-pixel-ratio: 13/10),only screen and (min-resolution: 120dpi) {
    /* Your code to swap higher DPI images */

}

@media (device-height:480px) and (-webkit-min-device-pixel-ratio:2){
  /*iphone4*/
  .ghost-center p {
    padding: 0;
    font-size: 0.9rem;
  }
}

@media (device-height:568px) and (-webkit-min-device-pixel-ratio:2){
  /*iphone5*/
  .ghost-center p {
    padding: 0;
    font-size: 0.9rem;
  }
}

@media (device-height:667px) and (-webkit-min-device-pixel-ratio:2){
  /*iphone6*/
  .join_step .join_step_c {
    height: 180px;
  }
}

@media (device-height:736px) and (-webkit-min-device-pixel-ratio:2){
  /*iphone6+*/

}

@media only screen and (max-device-width:240px) {
  /* 240px的宽度Styles */
}
@media only screen and (min-device-width:241px) and (max-device-width:360px) {
  /* 360px的宽度Styles */
}
@media only screen and (min-device-width:361px) and (max-device-width:480px) {
  /* 480px的宽度Styles */
}



