/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
/* html, body, div, span, applet, object, iframe,
 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
 a, abbr, acronym, address, big, cite, code,
 del, dfn, em, img, ins, kbd, q, s, samp,
 small, strike, strong, sub, sup, tt, var,
 b, u, i, center,
 dl, dt, dd, ol, ul, li,
 fieldset, form, label, legend,
 table, caption, tbody, tfoot, thead, tr, th, td,
 article, aside, canvas, details, embed,
 figure, figcaption, footer, header,
 menu, nav, output, ruby, section, summary,
 time, mark, audio, video, input {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 100%;
   vertical-align: baseline;
 } */

 body{font-size:1rem;-webkit-text-size-adjust:none;-webkit-tap-highlight-color:transparent;}
 ul, h1, h2, h3 {margin: 0;}/* 为了解决bootstrap内部样式*/
 .ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
 .flex{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;}
 .a_c{-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;}
 .j_s{-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}
 .wrap{-webkit-flex-wrap:wrap;-webkit-box-lines:multiple;-ms-flex-wrap:wrap;-moz-flex-wrap:wrap;flex-wrap:wrap;}
 .j_c{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}
 .column{-webkit-box-orient:vertical;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;}
 .a_j{-webkit-box-align:end;-ms-flex-align:end;-webkit-align-items:flex-end;align-items:flex-end;}
 .a_c_s{-webkit-align-content:space-between;-ms-flex-line-pack:space-between;align-content:space-between;}
 .j_e{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;}
 .align-items_flex-start{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;}
 .align-items_flex-end{-webkit-box-align:end;-ms-flex-align:end;-webkit-align-items:flex-end;align-items:flex-end;}
 /* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,menu,nav,section{display:block;}
table{border-collapse:collapse;border-spacing:0;}
a{color:inherit;text-decoration:none;cursor:pointer;-webkit-backface-visibility:hidden;user-select:none;}
a:hover{text-decoration:none;color:inherit;}
a:active {text-decoration:none;color:inherit;}
a:focus {text-decoration:none;color:inherit;}
input,select,textarea{outline:0;}
li{list-style:none;}
::-webkit-scrollbar{width:5px;height:5px;}
::-webkit-scrollbar-track-piece{-webkit-border-radius:6px;background-color:rgba(0,0,0,.2);}
::-webkit-scrollbar-thumb:vertical{height:5px;-webkit-border-radius:6px;background-color:rgba(125,125,125,.7);}
::-webkit-scrollbar-thumb:horizontal{width:5px;-webkit-border-radius:6px;background-color:rgba(125,125,125,.7);}
html{font-size:20px;}
/* 屏幕大于700px的时候执行 */
@media screen and (min-width: 720px) {
  html { font-size: 8px; }
}
/* 屏幕大于800px的时候执行 */
@media screen and (min-width: 800px) {
  html { font-size: 10px; }
}
/* 屏幕大于900px的时候执行 */
@media screen and (min-width: 900px) {
  html { font-size: 12px; }
}
/* 屏幕大于1000px的时候执行 */
@media screen and (min-width: 1000px) {
  html { font-size: 14px; }
}
/* 屏幕大于1200px的时候执行 */
@media screen and (min-width: 1200px) {
  html { font-size:16px; }
}
/* 屏幕大于1300px的时候执行 */
@media screen and (min-width: 1300px) {
    html { font-size:18px; }
}
/* 屏幕大于1440px的时候执行 */
@media screen and (min-width:1440px){
	html{font-size:20px;}
}
/* 屏幕大于1500px的时候执行 */
@media screen and (min-width:1500px){
	html{font-size:22px;}
}
/* 屏幕大于1700px的时候执行 */
@media screen and (min-width:1700px){
	html{font-size:24px;}
}
.notText{
    -moz-user-select:none; /*火狐*/
    -webkit-user-select:none; /*webkit浏览器*/
    -ms-user-select:none; /*IE10*/
    -khtml-user-select:none; /*早期浏览器*/
    user-select:none;
}
/* 移动端 */
.no-touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}