@charset "utf-8";
/*
@名称: base
@功能: 重设浏览器默认样式
*/
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
  width: 100%;
  height: 100%;
  color: #000;
  background: #ececec;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* HTML5 媒体文件跟 img 保持一致 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
body {
  width: 100%;
  height: 100%;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body,
button,
input,
select,
textarea {
  font: 12px/1.5 'STHeiti', 'Microsoft YaHei', '宋体', arial;
}
input,
select,
textarea {
  font-size: 100%;
}
textarea {
  vertical-align: bottom;
}
/* 去掉各Table cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align*/
th {
  text-align: inherit;
}
/* 去除默认边框 */
fieldset,
img {
  border: 0;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
  display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}
/* 去掉列表前的标识, li 会继承 */
ol,
ul {
  list-style: none;
}
/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,
th {
  text-align: left;
}
/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}
q:before,
q:after {
  content: '';
}
/* 统一上标和下标 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
a {
  cursor: pointer;
}
/* 让链接在 hover 状态下显示下划线 */
a:hover {
  text-decoration: underline;
}
/* 默认不显示下划线，保持页面简洁 */
ins,
a {
  text-decoration: none;
}
/* 将i,em元素样式正常化 */
i,
em {
  font-style: normal;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
*:focus {
  outline: none !important;
}
/* 清理浮动 */
.fn-clear:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.fn-clear {
  *zoom: 1;
  /* for IE6 IE7 */
}
/* 隐藏, 通常用来与 JS 配合 */
body .fn-hide {
  display: none;
}
/* 设置内联, 减少浮动带来的bug */
.fn-left,
.fn-right {
  display: inline;
}
.fn-left {
  float: left;
}
.fn-right {
  float: right;
}
/*无数据时显示*/
.nodata {
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
}
/*浮动*/
.fl {
  float: left;
}
.fr {
  float: right;
}
/*定位*/
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.visible {
  overflow: visible!important;
}
/*分割 */
.hr_10 {
  height: 10px;
  background: inherit;
}
.arrow {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 12px;
  height: 6px;
  transition: all linear 0.2s;
}
.arrow.up {
  background: url(../images/arrow.png) no-repeat left top;
}
.arrow.down {
  background: url(../images/arrow.png) no-repeat left -6px;
}
/* 双飞翼布局 */
.wings:after {
  content: '';
  display: block;
  clear: both;
}
.wings .w-c {
  float: left;
  width: 100%;
}
.wings .w-l {
  float: left;
  margin-left: -100%;
}
.wings .w-r {
  float: left;
  width: 100px;
  margin-left: -100px;
}
/* 左边距243px */
.ml-243 {
  margin-left: 243px;
}
.p10 {
  padding: 10px;
}
.pt10 {
  padding-top: 10px;
}
.pb10 {
  padding-bottom: 10px;
}
.ptb10 {
  padding: 10px 0;
}
.pr10 {
  padding-right: 10px;
}
.pl10 {
  padding-left: 10px;
}
.plr5 {
  padding: 0 5px;
}
.plr10 {
  padding: 0 10px;
}
.p20 {
  padding: 20px;
}
.pt20 {
  padding-top: 20px;
}
.pb20 {
  padding-bottom: 20px;
}
.ptb20 {
  padding: 20px 0;
}
.pr20 {
  padding-right: 20px;
}
.pl20 {
  padding-left: 20px;
}
.plr20 {
  padding: 0 20px;
}
.m10 {
  margin: 10px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mtb10 {
  margin: 10px 0;
}
.mr10 {
  margin-right: 10px;
}
.ml10 {
  margin-left: 10px;
}
.ml5 {
  margin-left: 5px;
}
.ml15 {
  margin-left: 15px;
}
.mlr10 {
  margin: 0 10px;
}
.m20 {
  margin: 20px;
}
.mt20 {
  margin-top: 20px;
}
.mt50 {
  margin-top: 50px;
}
.mt80 {
  margin-top: 80px;
}
.mb20 {
  margin-bottom: 20px;
}
.mtb20 {
  margin: 20px 0;
}
.mr20 {
  margin-right: 20px;
}
.ml20 {
  margin-left: 20px;
}
.ml30 {
  margin-left: 30px;
}
.ml40 {
  margin-left: 40px;
}
.mlr20 {
  margin: 0 20px;
}
.ml50 {
  margin-left: 50px;
}
.ml100 {
  margin-left: 100px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/* 2个中文的label宽度 */
.c2-label {
  width: 50px !important;
}
/* 4个中文的label宽度 */
.c3-label {
  width: 80px !important;
}
/* 4个中文的label宽度 */
.c4-label {
  width: 90px !important;
}
/* 5个中文的label宽度 */
.c5-label {
  width: 100px !important;
}
/* 6个中文的label宽度 */
.c6-label {
  width: 110px !important;
}
/* 7个中文的label宽度 */
.c7-label {
  width: 120px !important;
}
/* 8个中文的label宽度 */
.c8-label {
  width: 130px !important;
}
/* 9个中文的label宽度 */
.c9-label {
  width: 140px !important;
}
/* 10个中文的label宽度 */
.c10-label {
  width: 150px !important;
}
/* 红色 */
.red {
  color: red;
}
/* 绿色 */
.green {
  color: green;
}
.blue {
  color: #1a75ca;
}
/* 页面内容 */
.contentbox {
  padding: 15px 25px;
}
/* 页面主体 */
#fansbox {
  border: 1px solid #d1d1d1;
  border-left: none;
  min-height: 500px;
  margin-right: 10px;
  background: #fff;
}
.iconfont {
  font-family: "iconfont";
  font-size: 16px;
  font-style: normal;
}
.fz12 {
  font-size: 12px;
}
.fz14 {
  font-size: 14px;
}
.fz16 {
  font-size: 16px;
}
.c666 {
  color: #666;
}
.fb {
  font-weight: bold;
}
.noborder {
  border: none !important;
}
input.short {
  width: 50px !important;
}
input.short2 {
  width: 80px !important;
}
input.long {
  width: 220px !important;
}
input.long2 {
  width: 300px!important;
}
input.long3 {
  width: 420px!important;
}
input.date {
  width: 70px !important;
}
input.time {
  width: 105px !important;
}
.vt {
  vertical-align: top;
}
.vm {
  vertical-align: middle;
}
.vb {
  vertical-align: bottom;
}
.w960 {
  width: 960px;
}
.shop-logo {
  width: 100px;
  height: 100px;
}
#loading-box {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 40px;
  margin-left: -102px;
  margin-top: -102px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  text-align: center;
  z-index: 2000;
}
#loading-box .load-img {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin: 0px auto;
  width: 50px;
  height: 50px;
}
#loading-box .msg {
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
}
#loading-box.hidden {
  display: none;
}
#loading-box.modal {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0;
  border-radius: 0px;
}
#task-wp {
  position: fixed;
  z-index: 2000;
  right: 15px;
  top: 55px;
}
#task-wp #ring.anima {
  animation: ringing 2.0s 5 ease 1.0s;
}
#task-wp .task-box {
  display: none;
  padding: 20px;
  width: 320px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
}
#task-wp .tasks {
  overflow: auto;
}
#task-wp:hover .task-box {
  display: block;
}
#task-wp .task {
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  padding: 15px 0 5px;
  border-bottom: 1px dashed #e9e9e9;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#task-wp .task input[type="checkbox"] {
  vertical-align: top;
  margin-right: 6px;
}
#task-wp .task label {
  cursor: pointer;
}
#task-wp .icon {
  position: relative;
  cursor: pointer;
  background: #fff;
  border: 1px solid #1a75ca;
  border-radius: 2px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#task-wp .icon i {
  font-size: 20px;
  color: #1a75ca;
}
#task-wp .icon em {
  position: absolute;
  top: -10px;
  right: -15px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #eb3733;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}
@media (min-height: 600px) and (max-height: 700px) {
  #task-wp .tasks {
    max-height: 450px;
  }
}
@media (min-height: 700px) and (max-height: 800px) {
  #task-wp .tasks {
    max-height: 550px;
  }
}
@media (min-height: 800px) and (max-height: 900px) {
  #task-wp .tasks {
    max-height: 650px;
  }
}
@media (min-height: 900px) and (max-height: 1000px) {
  #task-wp .tasks {
    max-height: 750px;
  }
}
@media screen and (min-height: 1000px) {
  #task-wp .tasks {
    max-height: 850px;
  }
}
#no-power {
  width: 100%;
  margin: 100px auto;
}
#no-power .erroricon,
#no-power .errortext {
  width: 30%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #999;
}
#no-power .erroricon img {
  width: 50px;
}
@keyframes ringing {
  0% {
    -webkit-transform: rotate(-15deg);
  }
  2% {
    -webkit-transform: rotate(15deg);
  }
  4% {
    -webkit-transform: rotate(-18deg);
  }
  6% {
    -webkit-transform: rotate(18deg);
  }
  8% {
    -webkit-transform: rotate(-22deg);
  }
  10% {
    -webkit-transform: rotate(22deg);
  }
  12% {
    -webkit-transform: rotate(-18deg);
  }
  14% {
    -webkit-transform: rotate(18deg);
  }
  16% {
    -webkit-transform: rotate(-12deg);
  }
  18% {
    -webkit-transform: rotate(12deg);
  }
  20% {
    -webkit-transform: rotate(0deg);
  }
}
.customer-pop {
  z-index: 1010;
}
@font-face {
  font-family: 'iconfont';
  /* project id 14463 */
  src: url('//at.alicdn.com/t/font_14463_dqrt7pgj9q4fs9k9.eot');
  src: url('//at.alicdn.com/t/font_14463_dqrt7pgj9q4fs9k9.eot?#iefix') format('embedded-opentype'), url('//at.alicdn.com/t/font_14463_dqrt7pgj9q4fs9k9.woff') format('woff'), url('//at.alicdn.com/t/font_14463_dqrt7pgj9q4fs9k9.ttf') format('truetype'), url('//at.alicdn.com/t/font_14463_dqrt7pgj9q4fs9k9.svg#iconfont') format('svg');
}
