/*
* name: responsive stylesheet
* version: v1.1.3
* update: 手机wrap默认padding改为4%
* data: 2015-03-12
*/

/* import responsive stylesheet */
@import  screen and (max-width: 64em);
@import  screen and (max-width: 40em);

/* hide template textarea */
.unpcpush textarea, .pcpush textarea, .mobilepush textarea, .unmobilepush textarea{display: none;}

/*
* pcmode
*/
body:after {
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  content: 'pc';
}
.pcmode:after { content: 'pc' !important;}
.unpcpush, .mobilepush { display: none;}

/*
* padmode
*/
@media screen and (max-width: 64em) {

  body:after {
    content: 'pad';
  }
  body{ user-select: none;-webkit-user-select: none;}
  body,input,textarea,button,select {font-family: inherit;font-size:14px;}
  .wrap{padding-left:2%;padding-right:2%;max-width: none;}
  .pcpush{display: none;}
  .unpcpush{display: block;}

}

/*
* mobilemode
*/
@media screen and (max-width: 40em) {

  body:after {
    content: 'mobile';
  }
  body,input,textarea,button,select {font-size:16px;}
  .wrap{padding-left:4%;padding-right:4%; }
  .unmobilepush{display: none;}
  .mobilepush{display:block;}
  img[data-src]{opacity: 1;}

}
