/* rem数值--以640宽的标准下的数值 */
/* CSS Rest */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
span,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input,
select,
button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  outline: none!important;
  font-family: 'Microsoft Yahei';
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:before,
q:after {
  content: '';
}
abbr,
acronym {
  border: 0;
}
html,
body {
  height: 100%;
  font-family: 'Microsoft Yahei';
}
/* media */
/* ---------------------single CSS----------------------- */
/* display */
.none {
  display: none!important;
}
.di {
  display: inline;
}
.db {
  display: block;
}
.dib {
  display: inline-block;
}
/* if the element is block level(eg. div, li), using 'inline_any' instead */
/* width */
.w {
  width: 100%;
}
.w0 {
  width: 0;
}
.w40 {
  width: 40%;
}
.w50 {
  width: 50%;
}
.w60 {
  width: 60%;
}
.h {
  height: 100%;
}
/* 宽度边距 */
.m5 {
  margin: 0.125rem;
}
.m10 {
  margin: 0.25rem;
}
.m20 {
  margin: 0.5rem;
}
.m30 {
  margin: 0.75rem;
}
.mt10 {
  margin-top: 0.25rem;
}
.mt20 {
  margin-top: 0.5rem;
}
.mt30 {
  margin-top: 0.75rem;
}
.mb10 {
  margin-bottom: 0.25rem;
}
.mb20 {
  margin-bottom: 0.5rem;
}
.mb30 {
  margin-bottom: 0.75rem;
}
.ml10 {
  margin-left: 0.25rem;
}
.ml20 {
  margin-left: 0.5rem;
}
.ml30 {
  margin-left: 0.75rem;
}
.mr5 {
  margin-right: 0.125rem;
}
.mr10 {
  margin-right: 0.25rem;
}
.mr20 {
  margin-right: 0.5rem;
}
.mr30 {
  margin-right: 0.75rem;
}
.p10 {
  padding: 0.25rem;
}
.p20 {
  padding: 0.5rem;
}
.p30 {
  padding: 0.75rem;
}
.p40 {
  padding: 1rem;
}
.pt10 {
  padding-top: 0.25rem;
}
.pt20 {
  padding-top: 0.5rem;
}
.pt30 {
  padding-top: 0.75rem;
}
.pb10 {
  padding-bottom: 0.25rem;
}
.pb20 {
  padding-bottom: 0.5rem;
}
.pb30 {
  padding-bottom: 0.75rem;
}
.pl10 {
  padding-left: 0.25rem;
}
.pl20 {
  padding-left: 0.5rem;
}
.pl30 {
  padding-left: 0.75rem;
}
.pr10 {
  padding-right: 0.25rem;
}
.pr20 {
  padding-right: 0.5rem;
}
.pr30 {
  padding-right: 0.75rem;
}
/* font-family */
.fw {
  font-family: 'Microsoft Yahei';
}
/* font-style */
.n {
  font-weight: normal;
  font-style: normal;
}
.b {
  font-weight: bold;
}
.i {
  font-style: italic;
}
/* text-align */
.tc {
  text-align: center;
}
.tr {
  text-align: right;
}
.tl {
  text-align: left;
}
.tj {
  text-align: justify;
}
/* text-decoration */
.tdl {
  text-decoration: underline;
}
.tdn,
.tdn:hover,
.tdn a:hover,
a.tdl:hover {
  text-decoration: none;
}
/* letter-spacing */
.lt-1 {
  letter-spacing: -1px;
}
.lt0 {
  letter-spacing: 0;
}
.lt1 {
  letter-spacing: 1px;
}
/* white-space */
.nowrap {
  white-space: nowrap;
}
/* word-wrap */
.bk {
  word-wrap: break-word;
}
/* vertical-align */
.vm {
  vertical-align: middle;
}
.vtb {
  vertical-align: text-bottom;
}
.vb {
  vertical-align: bottom;
}
.vt {
  vertical-align: top;
}
.vn {
  vertical-align: -2px;
}
/* float */
.fl {
  float: left;
}
.fr {
  float: right;
}
/* clear */
.cl {
  clear: both;
}
/* position */
.pr {
  position: relative;
}
.pa {
  position: absolute;
}
.top {
  top: 0;
}
.bottom {
  bottom: 0;
}
.left {
  left: 0;
}
.right {
  right: 0;
}
/*z-index*/
.zx1 {
  z-index: 1;
}
.zx2 {
  z-index: 2;
}
/* cursor */
.poi {
  cursor: pointer;
}
.def {
  cursor: default;
}
/* overflow */
.ovh {
  overflow: hidden;
}
.ova {
  overflow: auto;
}
/* visibility */
.vh {
  visibility: hidden;
}
.vv {
  visibility: visible;
}
/* zoom */
.z {
  *zoom: 1;
}
/* flexbox */
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-1 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* ------------------- multiply CSS ------------------ */
/* 块状元素水平居中 */
.auto {
  margin-left: auto;
  margin-right: auto;
}
/* 清除浮 动*/
.fix {
  *zoom: 1;
}
.fix:after {
  display: table;
  content: '';
  clear: both;
}
/* 基于display:table-cell的自适应布局 */
.cell {
  display: table-cell;
  *display: inline-block;
  width: 2000px;
  *width: auto;
}
/* 双栏自适应cell部分连续英文字符换行 */
.cell_bk {
  display: table;
  width: 100%;
  table-layout: fixed;
  word-wrap: break-word;
}
/* 单行文字溢出虚点显 示*/
.ell {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
/* css3过渡动画效果 */
.trans {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
/* 大小不定元素垂直居中 */
.dib_vm {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
/* 加载中背景图片 - 如果您使用该CSS小库，务必修改此图片地址 */
.loading {
  background: url(http://www.zhangxinxu.com/study/image/loading.gif) no-repeat center;
}
/* 无框文本框文本域 */
.bd_none {
  border: 0;
  outline: none;
}
/* 绝对定位隐藏 */
.abs_out {
  position: absolute;
  left: -999em;
  top: -999em;
}
.abs_clip {
  position: absolute;
  clip: rect(0 0 0 0);
}
/* 按钮禁用 */
.disabled {
  color: #acacac!important;
  border-color: #acacac!important;
  text-shadow: 1px 1px #fff!important;
  outline: 0!important;
  cursor: default!important;
  pointer-events: none;
}
.disabled:hover {
  text-decoration: none!important;
}
/*inline-block与float等宽列表*/
.inline_box {
  font-size: 1em;
  letter-spacing: -0.25em;
  font-family: Arial;
}
.inline_two,
.inline_three,
.inline_four,
.inline_five,
.inline_six,
.inline_any {
  display: inline-block;
  *display: inline;
  letter-spacing: 0;
  vertical-align: top;
  *zoom: 1;
}
.float_two,
.float_three,
.float_four,
.float_five,
.float_six {
  float: left;
}
.inline_two,
.float_two {
  width: 49.9%;
}
.inline_three,
.float_three {
  width: 33.3%;
}
.inline_four,
.float_four {
  width: 24.9%;
}
.inline_five,
.float_five {
  width: 19.9%;
}
.inline_six,
.float_six {
  width: 16.6%;
}
.inline_fix {
  display: inline-block;
  width: 100%;
  height: 0;
  overflow: hidden;
}
/* color */
.color-005eda {
  color: #005eda;
}
.color-666 {
  color: #666;
}
.color-fff {
  color: #fff;
}
/* bg */
.bg-262626 {
  background-color: #262626;
}
/* border */
.border-none {
  border: none;
}
.boxb {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.boxc {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/* font-size */
.f16 {
  font-size: .4rem;
}
.f18 {
  font-size: .45rem;
}
.f14 {
  font-size: .35rem;
}
/* loading */
.loading,
.AjaxLoading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #ffffff;
  z-index: 99;
}
.AjaxLoading {
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 96;
}
.loading div,
.AjaxLoading div {
  color: #ffffff;
}
.loading .icon,
.AjaxLoading .icon {
  width: 4rem;
  height: 4rem;
  margin: 50% auto;
  background: url("../image/loadingShadow.png") no-repeat center center;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
/* toast 提示框 */
.toast {
  position: fixed;
  bottom: 20%;
  width: 100%;
  min-width: 120px;
  height: auto;
  border-radius: 5px;
  font: 14px/35px microsoft yahei;
  color: #fff;
  text-align: center;
  z-index: 9999;
}
.toast .prompt {
  display: inline-block;
  padding: 0 20px;
  border-radius: 5px;
}
.toast .prompt .icon {
  display: inline-block;
  width: 23px;
  height: 23px;
  margin: 0 5px -6px 0;
  background: url(../image/main_icon.png) no-repeat 0 -55px;
  background-size: 179px 179px;
}
.toast .prompt .i_suc {
  background-position: 0 -55px;
}
.toast .prompt .i_fail {
  background-position: -30px -55px;
}
.toast .prompt .i_sigh {
  background-position: -55px -55px;
}
.toast .pmt_default {
  background: rgba(0, 0, 0, 0.8);
}
.toast .pmt_success {
  background: rgba(103, 218, 118, 0.95);
}
.toast .pmt_failure {
  background: rgba(102, 102, 102, 0.95);
}
.toast .pmt_sigh {
  background: rgba(254, 174, 71, 0.8);
}
.toast.active {
  display: inline-block;
}
