/*1. @import (reference) "文件路径";
　　将引入的文件作为样式库使用，因此文件中样式不会被直接编译为css样式规则。当前样式文件通过extend和mixins的方式引用样式库的内容。
2. @import (inline) "文件路径";
　　用于引入与less不兼容的css文件，通过inline配置告知编译器不对引入的文件进行编译处理，直接输出到最终输出。注意：引入的文件和当前文件会被编译为一个样式样式
3. @import (less) "文件路径";
　　默认使用该配置项，表示引入的文件为less文件。
4. @import (css) "文件路径";
　　表示当前操作为CSS中的@import操作。当前文件会输出一个样式文件，而被引入的文件自身为一个独立的样式文件
5. @import (once) "文件路径";
　　默认使用该配置项，表示对同一个资源仅引入一次。
6. @import (multiple) "文件路径";
　　表示对同一资源可引入多次。*/
/*界面主题色*/
/* 背景色 */
/*聚焦色*/
/* 主题字色 */
/*按钮色*/
/* 主要按钮色 */
/* 配合按钮色 */
/* 空心按钮 */
/*字体颜色*/
/* 深色字体 */
/* 整体字色 */
/* 比整体字色浅10% */
/* 比整体字色浅30% */
/*线条颜色*/
/* 主要边框线条颜色，如输入框边框 */
/* 分割线颜色 */
/*输入框*/
/* 登陆注册等弹框输入框、按钮高度 */
/* 普通输入框、按钮高度 */
/*提示性颜色*/
/* 错误 */
/* 成功 */
/* 警告 */
input:-moz-placeholder,
textarea:-moz-placeholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #D4D4D4;
}
input,
button {
  font-family: "Microsoft YaHei";
  border: medium none;
  overflow: visible;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
textarea {
  margin: 0;
  padding: 0;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
}
ul,
li,
dl,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-weight: normal;
}
i,
em {
  font-style: normal;
}
button {
  border: none;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
input,
button,
select,
textarea {
  outline: none;
}
textarea {
  resize: none;
}
a,
a:hover {
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
body {
  min-width: 1200px;
  margin: 0;
  background: #f7f7f7;
  color: #526885;
  font: 14px/1.5 'tahoma', 'arial', 'Hiragino Sans GB', 'microsoft yahei';
}
input,
select {
  outline: medium none;
}
input.disable {
  background-color: #eaeaea !important;
}
*html .clearfix {
  height: 1%;
}
* + html .clearfix {
  height: 1%;
}
.wrap {
  margin: 0 auto;
  width: 1200px;
}
.hide {
  display: none;
}
.bgw {
  background: #fff;
}
.blank0,
.clear {
  clear: both;
  visibility: hidden;
  font-size: 0;
  height: 0;
  line-height: 0;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  zoom: 1;
}
* {
  -webkit-box-sizing: initial;
  -moz-box-sizing: initial;
  box-sizing: initial;
}
