﻿/*!
 * Copyright Tangyang.
 * Licensed under the MIT license
 */
@charset "UTF-8";

/**
 * 初始化浏览器默认样式
 **/
html,
body,
div,
ol,
ul,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
p,
span,
table,
th,
td,
form {
  margin: 0;
  padding: 0;
}

body,
input,
button,
select,
textarea {
  font: 12px/1.5 Arial, "Lantinghei SC", "Open Sans", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
a img {
  border: 0;
}

a {
  color: inherit;
  *color: #333;
  outline: medium none;
  text-decoration: none;
  outline: none;
}

a.blue {
  color: #13af50;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a.blue:hover {
  color: #0073c3;
}

a:hover {
  text-decoration: none;
  color: #2a9a10;
}

button,
input {
  outline: none;
}

label {
  cursor: pointer;
}

ul li,
.ol li {
  list-style: none;
}

em,
cite,
i {
  font-style: normal;
}
/*全部英文字符下自动换行*/
p {
  text-wrap-mode:wrap;
}
/*全部英文字符下自动换行*/

/* 去除Chrome等浏览器文本框默认发光边框 */
input:focus,
textarea:focus {
  outline: none;
}

/* 去除IE10+浏览器文本框后面的小叉叉 */
input::-ms-clear {
  display: none;
}

/* 禁止多行文本框textarea拖拽 */
textarea {
  resize: none;
}

/* ==全局通用样式== */
/* 避免因子元素浮动而导致的父元素高度缺失能问题 */
.clearFix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearFix {
  zoom: 1;
}

/* 浮动 */
.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

/*几种常用字体颜色*/
.color-sub {
  color: #0bc575;
}

.color-primary {
  color: #0073c3;
}

.color-success {
  color: #0073c3;
}

.color-info {
  color: #3ebceb;
}

.color-warning {
  color: #f19c2e;
}

.color-danger {
  color: #d36111;
}

.color-link {
  color: #333;
}

/* 鼠标样式，可以根据需要按序添加 */
.pointer {
  cursor: pointer;
}

/* 显示/隐藏 */
.show {
  display: block !important;
}

.hide {
  display: none !important;
}

/* 相对定位 */
.pos-re {
  position: relative;
}

.pos-ab {
  position: absolute;
}

/*文字对齐方式*/
.align_center,
.align-center {
  text-align: center !important;
}

.align_left,
.align-left {
  text-align: left !important;
}

.align_right,
.align-right {
  text-align: right !important;
}

/* 灰色 */
.grays {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 3.5+ */
  -webkit-filter: grayscale(100%);
  /* chrome+ */
  filter: grayscale(100%);
  /* 未来浏览器 */
  -webkit-filter: gray;
  filter: gray;
  /* ie6-8 */
  filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
  /*ie6-9 */
}

/* 通用容器，定义页面宽度 具有 n, m, w 三个级别 */
/*学校web*/
.wn {
  width: 1140px;
  margin: 0 auto;
}

/*width－normal   width:1000px;*/
.w1100 {
  width: 1100px;
  margin: 0 auto;
}

/*width－normal*/
.wn1140 {
  width: 1140px;
  margin: 0 auto;
}

.wsp {
  width: 1150px;
  margin: 0 auto;
}

/*width-special*/
/*平台*/
.wmn {
  width: 1200px;
  margin: 0 auto;
}

.wmin {
  width: 1000px;
  margin: 0 auto;
}

.wbig {
  width: 1400px;
  margin: 0 auto;
}

/* 文本属性：字号、颜色、粗细、正斜 */
/* 字号 */
.f12 {
  font-size: 12px !important;
}

.f13 {
  font-size: 13px !important;
}

.f14 {
  font-size: 14px !important;
}

.f15 {
  font-size: 15px !important;
}

.f16 {
  font-size: 16px !important;
}

.f18 {
  font-size: 18px !important;
}

.f20 {
  font-size: 20px !important;
}

.f24 {
  font-size: 24px !important;
}

.f26 {
  font-size: 26px !important;
}

/*底部分割线*/
.border-dashed {
  border-bottom: dashed 1px #e2e3ea !important;
}

.border-solid {
  border-bottom: solid 1px #e2e3ea !important;
}

.border-dotted {
  border-bottom: dotted 1px #e2e3ea !important;
}

/* 颜色 */
/*字体颜色*/
.gray-font-h {
  color: #000000;
}

.gray-font-m {
  color: #333333;
}

.gray-font-l {
  color: #888888;
}

/*主色*/
.m-green {
  color: #0073c3;
}

/*浅色背景－深*/
.gray-bg-h {
  color: #e2e3ea;
}

/*浅色背景－中*/
.gray-bg-m {
  color: #f6f7f9;
}

/*浅色背景－浅*/
.gray-bg-l {
  color: #fafafb;
}

/* 粗细 */
.bold {
  font-weight: bold;
}

.normalWeight {
  font-weight: normal;
}

/* 正斜 */
.italic {
  font-style: italic;
}

/* 外边距样式，作用于元素的上下外边距，上下各具有 n, m, w 三个级别 */
.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.m40 {
  margin: 40px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mtb5 {
  margin: 5px 0 !important;
}

.mtb10 {
  margin: 10px 0 !important;
}

.mtb15 {
  margin: 15px 0 !important;
}

.mtb20 {
  margin: 20px 0 !important;
}

.mtb25 {
  margin: 25px 0 !important;
}

.mtb30 {
  margin: 30px 0 !important;
}

.mtb40 {
  margin: 40px 0 !important;
}

.mlr5 {
  margin: 0 5px !important;
}

.mlr10 {
  margin: 0 10px !important;
}

.mlr15 {
  margin: 0 15px !important;
}

.mlr20 {
  margin: 0 20px !important;
}

.mlr25 {
  margin: 0 25px !important;
}

.mlr30 {
  margin: 0 30px !important;
}

.mlr40 {
  margin: 0 40px !important;
}

/* 内边距样式，作用于元素的上下内边距，上下各具有 n, m, w 三个级别 */
.p0 {
  padding: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p40 {
  padding: 40px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.ptb5 {
  padding: 5px 0 !important;
}

.ptb10 {
  padding: 10px 0 !important;
}

.ptb15 {
  padding: 15px 0 !important;
}

.ptb20 {
  padding: 20px 0 !important;
}

.ptb25 {
  padding: 25px 0 !important;
}

.ptb30 {
  padding: 30px 0 !important;
}

.ptb40 {
  padding: 40px 0 !important;
}

.plr5 {
  padding: 0 5px !important;
}

.plr10 {
  padding: 0 10px !important;
}

.plr15 {
  padding: 0 15px !important;
}

.plr20 {
  padding: 0 20px !important;
}

.plr25 {
  padding: 0 25px !important;
}

.plr30 {
  padding: 0 30px !important;
}

.plr40 {
  padding: 0 40px !important;
}

.hide {
  display: none;
}

.show {
  display: block;
}

/* ==== loding 2015-4-8 ===*/
/*.loding{background-image:url("../img/loding.gif");background-repeat:no-repeat;background-position:center center;background-size:20px;}
.loding2{background-image:url("../img/loding2.gif")!important;background-color:#3499DA !important;background-repeat:no-repeat;background-position:center center;background-size:20px;} */
/* ==== 按钮 Buttons  2015-1-12==== */
.lang-btn {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  background-color: #3499DA;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #FFF;
  border: none;
  letter-spacing: 1px;
  overflow: hidden;
  text-align: center;
  border-radius: 2px;
}

/* 无背景按钮 */
.lang-cancel {
  background: 0;
  color: #2d3e50;
}

/* 取消按钮 */
.lang-btn-none {
  background: #e4e9ed;
  color: #2d3e50;
}

.lang-btn-none:hover {
  background: #e4e9ed;
  color: #2d3e50;
}

.lang-btn-c {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  background: #e4e9ed;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #2d3e50;
  border: 0;
  letter-spacing: 1px;
  overflow: hidden;
  text-align: center;
  border-radius: 2px;
}

/* 修改按钮的默认状态 */
.lang-btn:active {
  outline: 0;
  box-shadow: none;
}

.lang-btn:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.lang-btn:hover {
  text-decoration: none;
}

/* 火狐兼容 */
.lang-btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* 成功 */
.lang-btn-success {
  background-color: #4a993e;
}

/* 错误 */
.lang-btn-eroor {
  background-color: #b33630;
}

/* 不可提交状态 */
.lang-btn-disabled {
  background-color: #ddd;
  color: #777;
  cursor: default;
}

/* 展示 */
.lang-btn-show {
  background-color: #e4e9ed;
  color: #2d3e50;
  cursor: default;
}

/* 关联 */
.lang-btn-relating {
  background-color: #b8c5ce;
  color: #2d3e50;
}

/* 按钮文字 */
.lang-btn .lang-btn-content {
  padding: 0 30px;
  display: block;
}

/* 大的 */
.lang-btn-big .lang-btn-content {
  padding: 0 45px;
}

/* 巨大的 */
.lang-btn-huge {
  height: 50px;
  line-height: 50px;
}

.lang-btn-huge .lang-btn-content {
  padding: 0 45px;
}

/* 按钮的颜色 */
.lang-btn-col-blue {
  background: #3499DA;
  color: #fff;
}

.lang-btn-col-blue:hover {
  background: #3da2e3;
  color: #fff;
}

/* 固定宽度的 */
.lang-btn-fixed-small {
  width: 100px;
}

.lang-btn-fixed-small .lang-btn-content {
  padding: 0;
}

.lang-btn-fixed-big {
  width: 160px;
}

.lang-btn-fixed-big .lang-btn-content {
  padding: 0;
}

.lang-btn-fixed-Large {
  width: 100%;
}

.lang-btn-fixed-Large .lang-btn-content {
  padding: 0;
}

/* 小字号按钮 举报弹出框再用 */
.submit-button {
  width: 80px;
  height: 40px;
  background: #3499da;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  line-height: 40px;
  border: 0;
  border-radius: 2px;
}

.submit-button:hover {
  background: #3da2e3;
  -webkit-transition: all .4s ease-in-out 0s;
  transition: all .4s ease-in-out 0s;
}

.submit-button:active {
  background: #2e93d4;
}

.mini-button-disabble {
  width: 80px;
  height: 40px;
  background: #b8c5ce;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  line-height: 40px;
  border: 0;
  border-radius: 2px;
}

.mini-button-disabble:hover {
  background: #c8d4db;
  -webkit-transition: all .4s ease-in-out 0s;
  transition: all .4s ease-in-out 0s;
}

.mini-button-disabble:active {
  background: #a9b9c3;
}

/* 按钮 Buttons END */
/* ==== 表单 Input 框 2015-2-28==== 以前的颜色b8c4ce*/
.lang-input {
  padding: 14px 15px;
  height: 20px;
  border: #e4e9ed 1px solid;
  border-radius: 2px;
  background: #fff;
  color: #5d6d7e;
  font-size: 16px;
  line-height: 20px;
  box-sizing: content-box;
}

.lang-input:focus {
  border: 1px solid #3498db;
  box-shadow: 0 0 4px rgba(41, 128, 185, 0.4);
}

/* 焦点/成功 */
.lang-input-on,
.lang-input-success {
  border: #3498db 1px solid;
  box-shadow: 0 0 4px rgba(41, 128, 185, 0.4);
  color: #34495e;
}

/* 错误 */
.lang-input-error {
  border: #fcab2b 1px solid;
  box-shadow: 0 0 4px rgba(252, 171, 43, 0.4);
}

/* textarea使用 */
.h164 {
  height: 130px;
}

.lh20 {
  line-height: 24px;
}

.lang-must {
  position: absolute;
  right: 11px;
  color: #FD8335 !important;
  line-height: 50px !important;
}

/* 表单 Input 框 END */
/* ====注册输入框 2015-1-12==== */
.login-icon {
  display: block;
  height: 40px;
  width: 100%;
  border-bottom: #e9ecee 1px solid;
  margin-top: 30px;
}

/* 输入框活动状态/成功 */
.login-on,
.login-success {
  border-bottom: #3498db 1px solid;
}

.login-on .log-input,
.login-error .log-input,
.login-success .log-input {
  color: #5d6d7e;
}

.login-on .iconfont,
.login-success .iconfont {
  color: #3A99D8;
}

/* 错误 */
.login-error {
  border-bottom: #fcab2b 1px solid;
}

.login-error .iconfont {
  color: #fcab2b;
}

/* 登录输入框 */
.log-input {
  border: none;
  height: 20px;
  font-size: 16px;
  padding: 10px 2.5%;
  line-height: 20px;
  color: #b8c4ce;
  background: #fff;
  width: 90%;
}

/*30/400=7.5%,360/400=90%,10/400=2.5%*/
.log-input-half {
  border: none;
  height: 20px;
  font-size: 16px;
  padding: 10px 5%;
  line-height: 20px;
  color: #b8c4ce;
  background: #fff;
  width: 80%;
}

/*30/200=15%,160/200=80%,10/200=5%*/
.log-input::-moz-placeholder {
  color: #b8c4ce;
}

.log-input::-ms-input-placeholder {
  color: #b8c4ce;
}

.log-input::-webkit-input-placeholder {
  color: #b8c4ce;
}

.log-input:placeholder {
  color: #b8c4ce;
}

textarea::-moz-placeholder {
  color: #b8c4ce;
}

textarea::-ms-input-placeholder {
  color: #b8c4ce;
}

textarea::-webkit-input-placeholder {
  color: #b8c4ce;
}

textarea:placeholder {
  color: #b8c4ce;
}

/* 注册输入框 end */
/*message 提醒消息*/
#ajax-hook {
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 100%;
}

.globalInfoTip {
  z-index: 20;
  height: 60px;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.globalInfoTip p {
  text-align: center;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  padding: 15px 0;
  color: #FFF;
  position: relative;
}

.globalInfoTip .infoTipBack {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3498db;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
}

/* 没有任何内容的时候提示 */
.kong {
  width: 100%;
  background: url("../img/serch-null.png") no-repeat center center;
  height: 700px;
}

/*字体图标*/
/*.iconfont, [class^="icon-"], [class*=" icon-"] {
  font-family:"iconfont" !important;
  font-size:16px;
  color: #b8c4ce;
  font-style:normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}*/
[id^="xunlei_com"],
[id*="xunlei_com"] {
  display: none !important;
}

/*school-web所有图标*/
.school-icons,
.col-name,
.icon-left,
.wawaTips-info .icon-l,
.wawaTips-danger .icon-l,
.wawaTips-warning .icon-l,
.wawaTips-success .icon-l,
.wawaTips-default .icon-l,
.icon-top,
.wawaTips-info .icon-t,
.wawaTips-danger .icon-t,
.wawaTips-warning .icon-t,
.wawaTips-success .icon-t,
.wawaTips-default .icon-t,
.wawaTips-info .icon-info,
.wawaTips-danger .icon-info,
.wawaTips-warning .icon-info,
.wawaTips-success .icon-info,
.wawaTips-default .icon-info,
.share_list li i,
.share_icons,
.icon_weixin,
.icon_pengyouquan,
.icon_qq,
.icon_qqzone,
.icon_xinlang,
.icon_wawa,
.wrap_share .shareTips i,
.shareTips_wrap i,
.icon-dialog-close,
.icon-dialog-close-small {
  display: inline-block;
  background-image: url(../images/school-web-icons.png);
  background-size: 400px 400px;
  overflow: hidden;
  *zoom: 1;
  vertical-align: middle;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {

  .school-icons,
  .col-name,
  .icon-left,
  .wawaTips-info .icon-l,
  .wawaTips-danger .icon-l,
  .wawaTips-warning .icon-l,
  .wawaTips-success .icon-l,
  .wawaTips-default .icon-l,
  .icon-top,
  .wawaTips-info .icon-t,
  .wawaTips-danger .icon-t,
  .wawaTips-warning .icon-t,
  .wawaTips-success .icon-t,
  .wawaTips-default .icon-t,
  .wawaTips-info .icon-info,
  .wawaTips-danger .icon-info,
  .wawaTips-warning .icon-info,
  .wawaTips-success .icon-info,
  .wawaTips-default .icon-info,
  .share_list li i,
  .share_icons,
  .icon_weixin,
  .icon_pengyouquan,
  .icon_qq,
  .icon_qqzone,
  .icon_xinlang,
  .icon_wawa,
  .wrap_share .shareTips i,
  .shareTips_wrap i,
  .icon-dialog-close,
  .icon-dialog-close-small {
    background-image: url(../images/school-web-icons@2x.png);
  }
}

.icon-user {
  display: inline-block;
  background-image: url(../images/icon_user.png);
  background-size: 400px 200px;
  overflow: hidden;
  *zoom: 1;
  vertical-align: middle;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  .icon-user {
    background-image: url(../images/icon_user@2x.png);
  }
}

.schoolMoudel_icons {
  display: inline-block;
  background-image: url(../images/school_icons.png);
  background-size: 400px 400px;
  overflow: hidden;
  *zoom: 1;
  vertical-align: middle;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  .schoolMoudel_icons {
    background-image: url(../images/school_icons@2x.png);
  }
}

.paper_icons {
  display: inline-block;
  background-image: url(../images/paper_icon.png);
  background-size: 400px 400px;
  overflow: hidden;
  *zoom: 1;
  vertical-align: middle;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  .paper_icons {
    background-image: url(../images/paper_icon@2x.png);
  }
}

/*平台所有图标*/
.m-icons {
  display: inline-block;
  background-image: url(../images/m-icons.png);
  background-size: 600px 600px;
  overflow: hidden;
  *zoom: 1;
  vertical-align: middle;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  .m-icons {
    background-image: url(../images/m-icons@2x.png);
  }
}

/*标题*/
.col-title,
.col-title-default {
  font-weight: normal;
  color: #000000;
}

.col-title .fr,
.col-title-default .fr {
  font-weight: normal;
  font-size: 12px;
  color: #333333;
}

.col-title .fr .a,
.col-title-default .fr .a {
  line-height: inherit;
}

.col-title-default {
  font-size: 18px;
  line-height: 30px;
}

/*bottons*/
.btn,
.btn-mx,
.btn-gray-inline,
.btn-l,
.btn-green-border,
.btn-lx {
  display: inline-block;
  border-radius: 3px;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-mx,
.btn-gray-inline {
  height: 24px;
  line-height: 24px;
  vertical-align: middle;
}

.btn-l,
.btn-green-border {
  height: 40px;
  line-height: 40px;
  vertical-align: middle;
  font-size: 15px;
}

.btn-gray-inline {
  background-color: #e2e3ea;
  border-radius: 2px;
  cursor: pointer;
  padding: 2px;
}

.btn-green-border {
  border: solid 1px #9de3b9;
  width: 100%;
  color: #0073c3;
}

.btn-green-border:hover {
  border-color: #0073c3;
}

/*about frameset*/
/*1000的左右分栏*/
.insider-main {
  width: 820px;
  float: left;
  position: relative;
  overflow: hidden;
}

.insider-asider {
  width: 270px;
  float: right;
  margin-top: 1px;
}

.insider-asider-box {
  border: solid 1px #e2e3ea;
  padding: 10px 15px;
  margin-top: -1px;
}

.col-name {
  width: 76px;
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 20px;
  background-position: -72px 0;
  font-weight: normal;
  padding-left: 10px;
}

.app-ad img {
  width: 100%;
}

/*1050的左右分栏*/
.insider-asider1050 {
  width: 275px;
  float: left;
}

.insider-main1050 {
  width: 750px;
  float: right;
}

/**
 * CSS Global -  header
 * author: Simiii@simiii.com;
 * date: 2016-4-15;
**/
/*shortcut*/
.main_icons,
.header_icon,
.icon_f,
.icon_bird,
.icon_in,
.icon_g,
.icon_tel,
.icon_mail,
.icon_en,
.icon_e,
.icon_logo,
.icon_tel_mini,
.icon_location_mini,
.icon_mail_mini,
.icon_tel_mini_g,
.icon_location_mini_g,
.icon_mail_mini_g,
.searchBar {
  background-image: url(../images/icons.png);
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  background-size: 400px 400px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {

  .main_icons,
  .header_icon,
  .icon_f,
  .icon_bird,
  .icon_in,
  .icon_g,
  .icon_tel,
  .icon_mail,
  .icon_en,
  .icon_e,
  .icon_logo,
  .icon_tel_mini,
  .icon_location_mini,
  .icon_mail_mini,
  .icon_tel_mini_g,
  .icon_location_mini_g,
  .icon_mail_mini_g,
  .searchBar {
    background-image: url(../images/icons@2x.png);
  }
}

.header_icon,
.icon_f,
.icon_bird,
.icon_in,
.icon_g,
.icon_tel,
.icon_mail {
  width: 24px;
  height: 24px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 3px;
}

.header_icon:hover,
.icon_f:hover,
.icon_bird:hover,
.icon_in:hover,
.icon_g:hover,
.icon_tel:hover,
.icon_mail:hover {
  background-color: #fff;
}

.icon_f {
  background-position: 0 0;
}

.icon_bird {
  background-position: -24px 0;
}

.icon_in {
  background-position: -48px 0;
}

.icon_g {
  background-position: -72px 0;
}

.icon_tel {
  background-position: -96px 0;
}

.icon_mail {
  background-position: -120px 0;
}

.icon_en {
  width: 20px;
  height: 13px;
  margin-right: 5px;
  background-position: 0 -24px;
}

.icon_e {
  width: 20px;
  height: 13px;
  margin-right: 5px;
  background-position: -20px -24px;
}

.icon_logo {
  width: 250px;
  height: 60px;
  background-position: 0 -50px;
}

.icon_tel_mini {
  width: 16px;
  height: 16px;
  background-position: -144px 0;
}

.icon_location_mini {
  width: 16px;
  height: 16px;
  background-position: -160px 0;
}

.icon_mail_mini {
  width: 16px;
  height: 16px;
  background-position: -176px 0;
}

.icon_tel_mini_g {
  width: 16px;
  height: 16px;
  background-position: -144px -16px;
}

.icon_location_mini_g {
  width: 16px;
  height: 16px;
  background-position: -160px -16px;
}

.icon_mail_mini_g {
  width: 16px;
  height: 16px;
  background-position: -176px -16px;
}

.searchBar {
  display: block;
  width: 24px;
  height: 24px;
  background-position: -40px -24px;
  position: absolute;
  right: 7px;
  top: 5px;
  cursor: pointer;
}

.arrow_white_left {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 0;
  position: absolute;
  left: -8px;
  top: 50%;
  margin-top: -4px;
  z-index: 10;
}

.arrow_white_right {
  display: block;
  width: 8px;
  height: 8px;
  border-left: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 0;
  position: absolute;
  right: -8px;
  top: 50%;
  margin-top: -4px;
  z-index: 10;
}

.arrow_white_top {
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 0;
  position: absolute;
  left: 50%;
  top: -8px;
  margin-left: -4px;
  z-index: 10;
}

.arrow_white_bottom {
  display: block;
  width: 8px;
  height: 8px;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  bottom: -8px;
  margin-left: -4px;
  z-index: 10;
}

/**
 * CSS Global -  header
 * author: Simiii@simiii.com;
 * date: 2016-10-15;
**/
/*shortcut*/
.shortcut {
  height: 32px;
  line-height: 32px;
  vertical-align: middle;
  background-color: #eee;
  font-size: 12px;
  color: #666;
  font-family: Arial;
}

.header_search {
  width: 260px;
  height: 34px;
  box-sizing: border-box;
  border: solid 1px #7aa6c8;
  border-radius: 30px;
  padding: 0 15px;
}

.main_nav {
  background-color: #0073c3;
  line-height: 45px;
  vertical-align: middle;
  height: 45px;
  font-size: 16px;
}

.container {
  font-family: Arial;
}

/**
 * CSS Global - header
 * author: Simiii@simiii.com;
 * date: 2016-4-15;
**/
/*shortcut*/
.footer {
  text-align: center;
  font-size: 12px;
  padding: 30px;
  border-top: solid 4px #eee;
}

.friend_links {
  font-size: 13px;
  line-height: 200%;
}

.friend_links .fl_name {
  display: block;
  float: left;
  width: 10em;
  font-weight: bold;
}

.friend_links ul li {
  float: left;
  margin-right: 10px;
}

/**
 * CSS tk frame styles
 * author: Sumii@sumii.cn;
 * data: 2016-05-31;
 **/
.w {
  width: 1000px;
  margin: 0 auto;
}

.gray_bg {
  background-color: #f3f3f3;
}

.pl25md {
  padding-left: 25px !important;
}

@media (min-width: 320px) and (max-width: 767px) {
  .w {
    width: 100%;
  }

  .pl25md {
    padding-left: 0 !important;
  }
}

@media (min-width: 768px) {
  .w {
    width: 100%;
  }

  .pl25md {
    padding-left: 0 !important;
  }
}

@media (min-width: 992px) {
  .w {
    width: 960px;
  }

  .pl25md {
    padding-left: 25px !important;
  }
}

@media (min-width: 1200px) {
  .w {
    width: 1000px;
  }

  .pl25md {
    padding-left: 25px !important;
  }
}

.index_caption {
  font-size: 20px;
  font-family: Arial;
  padding: 20px 0;
}

.proBoxDetail {
  padding: 15px;
  background-color: #f3f3f3;
}

.proBoxDetail h5 {
  margin-bottom: 15px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}

.index_col_list li {
  float: left;
  padding: 0 15px;
  border-right: solid 1px #dedede;
}

.index_col_list li a {
  font-size: 14px;
  color: #888;
}

.index_col_list li a:hover {
  color: #0073c3;
}

.index_more {
  font-size: 14px;
  color: #888;
  line-height: 28px;
  vertical-align: middle;
  display: inline-block;
  padding-left: 15px;
}

.index_more:hover {
  color: #0073c3;
}

.index_about {
  background-color: #f3f3f3;
  padding: 20px 0;
}

.index_about_board {
  background-color: #fff;
  padding: 20px;
  position: relative;
}

.index_about_p {
  font-size: 14px;
  margin: 15px 0;
  font-family: Arial;
  overflow: hidden;
  color: #555;
  text-align: justify;
}

.index_about_more {
  position: absolute;
  bottom: 20px;
  left: 20;
  font-family: Arial;
}

.main_footer {
  background-color: #181818;
  color: #fff;
  padding: 40px 0;
}

.main_footer .footer_nav {
  margin-top: 15px;
  font-size: 14px;
  font-family: Arial;
  line-height: 2em;
}

.main_footer .footer_nav a {
  color: #aaa;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main_footer .footer_nav a:hover {
  color: #fff;
}

.footer_input {
  border: solid 1px #333;
  background-color: transparent;
  padding: 8px;
  line-height: 14px;
  vertical-align: middle;
  width: 100%;
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  font-family: Arial;
  box-sizing: border-box;
}

.copyright {
  background-color: #000;
  text-align: center;
  color: #666;
  font-family: Arial;
  line-height: 200%;
}

.pageAsider {
  background-image: url(../images/asider_bg.png);
  background-repeat: repeat-x;
  margin-top: -55px;
}

.asider-cap {
  font-size: 18px;
  font-family: Arial;
  font-weight: bold;
  line-height: 40px;
  vertical-align: middle;
  color: #0073c3;
}
.asider-cap:after{
    content:" + ";
    width: 20px;
    height: 10px;
    display: inline-block;
    position: relative;
    float: right;
}

.asiderHandler {
  font-size: 12px;
  color: #666;
  text-decoration: underline;
}

.pm_caption {
  font-size: 20px;
  font-family: Arial;
}

.asiderOpen {
  display: block !important;
}

.pro_caption {
  font-size: 20px;
  font-family: Arial;
  line-height: 1.2em;
}

/**
 * CSS Global -  list
 * author: Simiii@simiii.com;
 * date: 2016-6-15;
**/
.asider-nav {
  font-size: 14px;
  font-family: Arial;
  line-height: 42px;
  margin-top: 20px;
}

.asider-nav li {
  border-bottom: dotted 1px #ddd;
}

.asider-nav li.two a {
  padding-left: 15px;
}

.asider-nav li.on a {
  background-color: #f3f3f3;
}

.asider-nav a {
  color: #333;
  display: block;
  padding: 0 5px;
}

.asider-nav a:hover {
  background-color: #f3f3f3;
}

.pro_props {
  font-size: 14px;
  font-family: Arial;
  margin-top: 10px;
}

.pro_props span {
  color: #888;
}

.tradeItem {
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
  margin-bottom: 10px;
}

.tradeItem h5 {
  font-size: 14px;
  line-height: 18px;
  vertical-align: middle;
  margin: 10px 0;
  height: 54px;
  overflow: hidden;
}

.tradeItem:hover {
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

/**
 * CSS Global - school-web wawaButttons
 * date: 2015-11-9;
**/
.bigPadding,
.big-padding {
  padding: 0 60px !important;
}

.wawaBtn,
.wawaBtn-xl,
.btn-primary-xl,
.btn-gray-xl,
.btn-border-xl,
.btn-primary-border-xl,
.btn-border-sub-xl,
.btn-orange-xl,
.wawaBtn-l,
.btn-primary-l,
.btn-gray-l,
.btn-border-l,
.btn-primary-border-l,
.btn-border-sub-l,
.btn-orange-l,
.wawaBtn-xm,
.btn-primary-xm,
.btn-gray-xm,
.btn-border-xm,
.btn-primary-border-xm,
.btn-border-sub-xm,
.btn-orange-xm,
.wawaBtn-m,
.btn-primary-m,
.btn-gray-m,
.btn-border-m,
.btn-primary-border-m,
.btn-border-sub-m,
.btn-orange-m,
.wawaBtn-s,
.btn-primary-s,
.btn-gray-s,
.btn-border-s,
.btn-primary-border-s,
.btn-border-sub-s,
.btn-orange-s,
.wawaBtn-xs,
.btn-primary-xs,
.btn-gray-xs,
.btn-border-xs,
.btn-primary-border-xs,
.btn-border-sub-xs,
.btn-orange-xs {
  display: inline-block;
  padding: 0 1.6em;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
  text-align: center;
  border-radius: 2px;
  border: none;
  background-color: transparent;
  margin: 0;
  overflow: hidden;
  outline: none;
  background-color: transparent;
  box-shadow: none;
}

.wawaBtn:disabled,
.wawaBtn-xl:disabled,
.btn-primary-xl:disabled,
.btn-gray-xl:disabled,
.btn-border-xl:disabled,
.btn-primary-border-xl:disabled,
.btn-border-sub-xl:disabled,
.btn-orange-xl:disabled,
.wawaBtn-l:disabled,
.btn-primary-l:disabled,
.btn-gray-l:disabled,
.btn-border-l:disabled,
.btn-primary-border-l:disabled,
.btn-border-sub-l:disabled,
.btn-orange-l:disabled,
.wawaBtn-xm:disabled,
.btn-primary-xm:disabled,
.btn-gray-xm:disabled,
.btn-border-xm:disabled,
.btn-primary-border-xm:disabled,
.btn-border-sub-xm:disabled,
.btn-orange-xm:disabled,
.wawaBtn-m:disabled,
.btn-primary-m:disabled,
.btn-gray-m:disabled,
.btn-border-m:disabled,
.btn-primary-border-m:disabled,
.btn-border-sub-m:disabled,
.btn-orange-m:disabled,
.wawaBtn-s:disabled,
.btn-primary-s:disabled,
.btn-gray-s:disabled,
.btn-border-s:disabled,
.btn-primary-border-s:disabled,
.btn-border-sub-s:disabled,
.btn-orange-s:disabled,
.wawaBtn-xs:disabled,
.btn-primary-xs:disabled,
.btn-gray-xs:disabled,
.btn-border-xs:disabled,
.btn-primary-border-xs:disabled,
.btn-border-sub-xs:disabled,
.btn-orange-xs:disabled,
.wawaBtn.disabled,
.disabled.wawaBtn-xl,
.disabled.btn-primary-xl,
.disabled.btn-gray-xl,
.disabled.btn-border-xl,
.disabled.btn-primary-border-xl,
.disabled.btn-border-sub-xl,
.disabled.btn-orange-xl,
.disabled.wawaBtn-l,
.disabled.btn-primary-l,
.disabled.btn-gray-l,
.disabled.btn-border-l,
.disabled.btn-primary-border-l,
.disabled.btn-border-sub-l,
.disabled.btn-orange-l,
.disabled.wawaBtn-xm,
.disabled.btn-primary-xm,
.disabled.btn-gray-xm,
.disabled.btn-border-xm,
.disabled.btn-primary-border-xm,
.disabled.btn-border-sub-xm,
.disabled.btn-orange-xm,
.disabled.wawaBtn-m,
.disabled.btn-primary-m,
.disabled.btn-gray-m,
.disabled.btn-border-m,
.disabled.btn-primary-border-m,
.disabled.btn-border-sub-m,
.disabled.btn-orange-m,
.disabled.wawaBtn-s,
.disabled.btn-primary-s,
.disabled.btn-gray-s,
.disabled.btn-border-s,
.disabled.btn-primary-border-s,
.disabled.btn-border-sub-s,
.disabled.btn-orange-s,
.disabled.wawaBtn-xs,
.disabled.btn-primary-xs,
.disabled.btn-gray-xs,
.disabled.btn-border-xs,
.disabled.btn-primary-border-xs,
.disabled.btn-border-sub-xs,
.disabled.btn-orange-xs {
  cursor: default !important;
}

.wawaBtn i,
.wawaBtn-xl i,
.btn-primary-xl i,
.btn-gray-xl i,
.btn-border-xl i,
.btn-primary-border-xl i,
.btn-border-sub-xl i,
.btn-orange-xl i,
.wawaBtn-l i,
.btn-primary-l i,
.btn-gray-l i,
.btn-border-l i,
.btn-primary-border-l i,
.btn-border-sub-l i,
.btn-orange-l i,
.wawaBtn-xm i,
.btn-primary-xm i,
.btn-gray-xm i,
.btn-border-xm i,
.btn-primary-border-xm i,
.btn-border-sub-xm i,
.btn-orange-xm i,
.wawaBtn-m i,
.btn-primary-m i,
.btn-gray-m i,
.btn-border-m i,
.btn-primary-border-m i,
.btn-border-sub-m i,
.btn-orange-m i,
.wawaBtn-s i,
.btn-primary-s i,
.btn-gray-s i,
.btn-border-s i,
.btn-primary-border-s i,
.btn-border-sub-s i,
.btn-orange-s i,
.wawaBtn-xs i,
.btn-primary-xs i,
.btn-gray-xs i,
.btn-border-xs i,
.btn-primary-border-xs i,
.btn-border-sub-xs i,
.btn-orange-xs i {
  margin-right: 3px;
  margin-top: -2px;
}

.big-radius {
  border-radius: 50px;
}

a.block,
button.block,
input.block {
  width: 100%;
  display: block;
}

.wawaBtn-xl,
.btn-primary-xl,
.btn-gray-xl,
.btn-border-xl,
.btn-primary-border-xl,
.btn-border-sub-xl,
.btn-orange-xl {
  height: 46px;
  font-size: 18px;
}

a.wawaBtn-xl,
a.btn-primary-xl,
a.btn-gray-xl,
a.btn-border-xl,
a.btn-primary-border-xl,
a.btn-border-sub-xl,
a.btn-orange-xl {
  line-height: 46px;
}

.wawaBtn-l,
.btn-primary-l,
.btn-gray-l,
.btn-border-l,
.btn-primary-border-l,
.btn-border-sub-l,
.btn-orange-l {
  height: 40px;
  font-size: 18px;
}

a.wawaBtn-l,
a.btn-primary-l,
a.btn-gray-l,
a.btn-border-l,
a.btn-primary-border-l,
a.btn-border-sub-l,
a.btn-orange-l {
  line-height: 40px;
}

.wawaBtn-xm,
.btn-primary-xm,
.btn-gray-xm,
.btn-border-xm,
.btn-primary-border-xm,
.btn-border-sub-xm,
.btn-orange-xm {
  height: 36px;
  font-size: 15px;
}

a.wawaBtn-xm,
a.btn-primary-xm,
a.btn-gray-xm,
a.btn-border-xm,
a.btn-primary-border-xm,
a.btn-border-sub-xm,
a.btn-orange-xm {
  line-height: 36px;
}

.wawaBtn-m,
.btn-primary-m,
.btn-gray-m,
.btn-border-m,
.btn-primary-border-m,
.btn-border-sub-m,
.btn-orange-m {
  height: 34px;
  font-size: 13px;
}

a.wawaBtn-m,
a.btn-primary-m,
a.btn-gray-m,
a.btn-border-m,
a.btn-primary-border-m,
a.btn-border-sub-m,
a.btn-orange-m {
  line-height: 34px;
}

.wawaBtn-s,
.btn-primary-s,
.btn-gray-s,
.btn-border-s,
.btn-primary-border-s,
.btn-border-sub-s,
.btn-orange-s {
  height: 30px;
  font-size: 12px;
}

a.wawaBtn-s,
a.btn-primary-s,
a.btn-gray-s,
a.btn-border-s,
a.btn-primary-border-s,
a.btn-border-sub-s,
a.btn-orange-s {
  line-height: 30px;
}

.wawaBtn-xs,
.btn-primary-xs,
.btn-gray-xs,
.btn-border-xs,
.btn-primary-border-xs,
.btn-border-sub-xs,
.btn-orange-xs {
  height: 24px;
  font-size: 12px;
}

a.wawaBtn-xs,
a.btn-primary-xs,
a.btn-gray-xs,
a.btn-border-xs,
a.btn-primary-border-xs,
a.btn-border-sub-xs,
a.btn-orange-xs {
  line-height: 24px;
}

.btn-primary,
.btn-primary-xl,
.btn-primary-l,
.btn-primary-m,
.btn-primary-xm,
.btn-primary-s,
.btn-primary-xs {
  background-color: #0073c3;
  color: #fff;
}

.btn-primary:disabled,
.btn-primary-xl:disabled,
.btn-primary-l:disabled,
.btn-primary-m:disabled,
.btn-primary-xm:disabled,
.btn-primary-s:disabled,
.btn-primary-xs:disabled,
.btn-primary.disabled,
.disabled.btn-primary-xl,
.disabled.btn-primary-l,
.disabled.btn-primary-m,
.disabled.btn-primary-xm,
.disabled.btn-primary-s,
.disabled.btn-primary-xs {
  opacity: 0.5;
  filter: alpha(opacity=0.5);
}

.btn-primary:disabled:hover,
.btn-primary-xl:disabled:hover,
.btn-primary-l:disabled:hover,
.btn-primary-m:disabled:hover,
.btn-primary-xm:disabled:hover,
.btn-primary-s:disabled:hover,
.btn-primary-xs:disabled:hover,
.btn-primary.disabled:hover,
.disabled.btn-primary-xl:hover,
.disabled.btn-primary-l:hover,
.disabled.btn-primary-m:hover,
.disabled.btn-primary-xm:hover,
.disabled.btn-primary-s:hover,
.disabled.btn-primary-xs:hover {
  background-color: #0073c3;
}

.btn-primary:hover,
.btn-primary-xl:hover,
.btn-primary-l:hover,
.btn-primary-m:hover,
.btn-primary-xm:hover,
.btn-primary-s:hover,
.btn-primary-xs:hover {
  background-color: #007cd2;
  color: #fff;
}

.btn-gray,
.btn-gray-xl,
.btn-gray-l,
.btn-gray-xm,
.btn-gray-m,
.btn-gray-s,
.btn-gray-xs {
  background-color: #b3bdcb;
  color: #fff;
}

.btn-gray:disabled,
.btn-gray-xl:disabled,
.btn-gray-l:disabled,
.btn-gray-xm:disabled,
.btn-gray-m:disabled,
.btn-gray-s:disabled,
.btn-gray-xs:disabled,
.btn-gray.disabled,
.disabled.btn-gray-xl,
.disabled.btn-gray-l,
.disabled.btn-gray-xm,
.disabled.btn-gray-m,
.disabled.btn-gray-s,
.disabled.btn-gray-xs {
  opacity: 0.5;
  filter: alpha(opacity=0.5);
}

.btn-gray:disabled:hover,
.btn-gray-xl:disabled:hover,
.btn-gray-l:disabled:hover,
.btn-gray-xm:disabled:hover,
.btn-gray-m:disabled:hover,
.btn-gray-s:disabled:hover,
.btn-gray-xs:disabled:hover,
.btn-gray.disabled:hover,
.disabled.btn-gray-xl:hover,
.disabled.btn-gray-l:hover,
.disabled.btn-gray-xm:hover,
.disabled.btn-gray-m:hover,
.disabled.btn-gray-s:hover,
.disabled.btn-gray-xs:hover {
  background-color: #b3bdcb;
}

.btn-gray:hover,
.btn-gray-xl:hover,
.btn-gray-l:hover,
.btn-gray-xm:hover,
.btn-gray-m:hover,
.btn-gray-s:hover,
.btn-gray-xs:hover {
  background-color: #c2cad5;
}

.btn-border,
.btn-border-xl,
.btn-border-l,
.btn-border-xm,
.btn-border-m,
.btn-border-s,
.btn-border-xs {
  border: 1px solid #d4d6de;
  color: #383e45;
}

.btn-border:disabled,
.btn-border-xl:disabled,
.btn-border-l:disabled,
.btn-border-xm:disabled,
.btn-border-m:disabled,
.btn-border-s:disabled,
.btn-border-xs:disabled,
.btn-border.disabled,
.disabled.btn-border-xl,
.disabled.btn-border-l,
.disabled.btn-border-xm,
.disabled.btn-border-m,
.disabled.btn-border-s,
.disabled.btn-border-xs {
  opacity: 0.5;
  filter: alpha(opacity=0.5);
}

.btn-border:disabled:hover,
.btn-border-xl:disabled:hover,
.btn-border-l:disabled:hover,
.btn-border-xm:disabled:hover,
.btn-border-m:disabled:hover,
.btn-border-s:disabled:hover,
.btn-border-xs:disabled:hover,
.btn-border.disabled:hover,
.disabled.btn-border-xl:hover,
.disabled.btn-border-l:hover,
.disabled.btn-border-xm:hover,
.disabled.btn-border-m:hover,
.disabled.btn-border-s:hover,
.disabled.btn-border-xs:hover {
  border: 1px solid #d4d6de;
  background-color: #fff;
  color: #383e45;
}

.btn-border:hover,
.btn-border-xl:hover,
.btn-border-l:hover,
.btn-border-xm:hover,
.btn-border-m:hover,
.btn-border-s:hover,
.btn-border-xs:hover {
  border-color: #0073c3;
  background-color: #0073c3;
  color: #fff;
}

a.btn-border-xl {
  line-height: 44px;
}

a.btn-border-l {
  line-height: 38px;
}

a.btn-border-xm {
  line-height: 34px;
}

a.btn-border-m {
  line-height: 32px;
}

a.btn-border-s {
  line-height: 28px;
}

a.btn-border-xs {
  line-height: 22px;
}

.btn-primary-border,
.btn-primary-border-xl,
.btn-primary-border-l,
.btn-primary-border-xm,
.btn-primary-border-m,
.btn-primary-border-s,
.btn-primary-border-xs {
  border: 1px solid #0073c3;
  color: #0073c3;
}

.btn-primary-border:disabled,
.btn-primary-border-xl:disabled,
.btn-primary-border-l:disabled,
.btn-primary-border-xm:disabled,
.btn-primary-border-m:disabled,
.btn-primary-border-s:disabled,
.btn-primary-border-xs:disabled,
.btn-primary-border.disabled,
.disabled.btn-primary-border-xl,
.disabled.btn-primary-border-l,
.disabled.btn-primary-border-xm,
.disabled.btn-primary-border-m,
.disabled.btn-primary-border-s,
.disabled.btn-primary-border-xs {
  opacity: 0.5;
  filter: alpha(opacity=0.5);
}

.btn-primary-border:disabled:hover,
.btn-primary-border-xl:disabled:hover,
.btn-primary-border-l:disabled:hover,
.btn-primary-border-xm:disabled:hover,
.btn-primary-border-m:disabled:hover,
.btn-primary-border-s:disabled:hover,
.btn-primary-border-xs:disabled:hover,
.btn-primary-border.disabled:hover,
.disabled.btn-primary-border-xl:hover,
.disabled.btn-primary-border-l:hover,
.disabled.btn-primary-border-xm:hover,
.disabled.btn-primary-border-m:hover,
.disabled.btn-primary-border-s:hover,
.disabled.btn-primary-border-xs:hover {
  border: 1px solid #0073c3;
  background-color: #fff;
  color: #0073c3;
}

.btn-primary-border:hover,
.btn-primary-border-xl:hover,
.btn-primary-border-l:hover,
.btn-primary-border-xm:hover,
.btn-primary-border-m:hover,
.btn-primary-border-s:hover,
.btn-primary-border-xs:hover {
  border-color: #0073c3;
  background-color: #0073c3;
  color: #fff;
}

a.btn-primary-border-xl {
  line-height: 44px;
}

a.btn-primary-border-l {
  line-height: 38px;
}

a.btn-primary-border-xm {
  line-height: 34px;
}

a.btn-primary-border-m {
  line-height: 32px;
}

a.btn-primary-border-s {
  line-height: 28px;
}

a.btn-primary-border-xs {
  line-height: 22px;
}

.btn-border-sub,
.btn-border-sub-xl,
.btn-border-sub-l,
.btn-border-sub-xm,
.btn-border-sub-m,
.btn-border-sub-s,
.btn-border-sub-xs {
  border: 1px solid #dedee7;
  color: #7f8188;
}

.btn-border-sub:disabled,
.btn-border-sub-xl:disabled,
.btn-border-sub-l:disabled,
.btn-border-sub-xm:disabled,
.btn-border-sub-m:disabled,
.btn-border-sub-s:disabled,
.btn-border-sub-xs:disabled,
.btn-border-sub.disabled,
.disabled.btn-border-sub-xl,
.disabled.btn-border-sub-l,
.disabled.btn-border-sub-xm,
.disabled.btn-border-sub-m,
.disabled.btn-border-sub-s,
.disabled.btn-border-sub-xs {
  opacity: 0.5;
  filter: alpha(opacity=0.5);
}

.btn-border-sub:disabled:hover,
.btn-border-sub-xl:disabled:hover,
.btn-border-sub-l:disabled:hover,
.btn-border-sub-xm:disabled:hover,
.btn-border-sub-m:disabled:hover,
.btn-border-sub-s:disabled:hover,
.btn-border-sub-xs:disabled:hover,
.btn-border-sub.disabled:hover,
.disabled.btn-border-sub-xl:hover,
.disabled.btn-border-sub-l:hover,
.disabled.btn-border-sub-xm:hover,
.disabled.btn-border-sub-m:hover,
.disabled.btn-border-sub-s:hover,
.disabled.btn-border-sub-xs:hover {
  border: 1px solid #dedee7;
  background-color: #fff;
  color: #7f8188;
}

.btn-border-sub:hover,
.btn-border-sub-xl:hover,
.btn-border-sub-l:hover,
.btn-border-sub-xm:hover,
.btn-border-sub-m:hover,
.btn-border-sub-s:hover,
.btn-border-sub-xs:hover {
  border-color: #0bc575;
  background-color: #0bc575;
  color: #fff;
}

a.btn-border-sub-xl {
  line-height: 44px;
}

a.btn-border-sub-l {
  line-height: 38px;
}

a.btn-border-sub-xm {
  line-height: 34px;
}

a.btn-border-sub-m {
  line-height: 32px;
}

a.btn-border-sub-s {
  line-height: 28px;
}

a.btn-border-sub-xs {
  line-height: 22px;
}

.btn-orange,
.btn-orange-xl,
.btn-orange-l,
.btn-orange-xm,
.btn-orange-m,
.btn-orange-s,
.btn-orange-xs {
  background-color: #F19049;
  color: #fff;
}

.btn-orange:hover,
.btn-orange-xl:hover,
.btn-orange-l:hover,
.btn-orange-xm:hover,
.btn-orange-m:hover,
.btn-orange-s:hover,
.btn-orange-xs:hover {
  background-color: #ed731a;
}

.btn-orange:disabled,
.btn-orange-xl:disabled,
.btn-orange-l:disabled,
.btn-orange-xm:disabled,
.btn-orange-m:disabled,
.btn-orange-s:disabled,
.btn-orange-xs:disabled,
.btn-orange.disabled,
.disabled.btn-orange-xl,
.disabled.btn-orange-l,
.disabled.btn-orange-xm,
.disabled.btn-orange-m,
.disabled.btn-orange-s,
.disabled.btn-orange-xs {
  background-color: #e3e7ec;
  color: #888888;
  cursor: default;
}

.btn-orange:disabled:hover,
.btn-orange-xl:disabled:hover,
.btn-orange-l:disabled:hover,
.btn-orange-xm:disabled:hover,
.btn-orange-m:disabled:hover,
.btn-orange-s:disabled:hover,
.btn-orange-xs:disabled:hover,
.btn-orange.disabled:hover,
.disabled.btn-orange-xl:hover,
.disabled.btn-orange-l:hover,
.disabled.btn-orange-xm:hover,
.disabled.btn-orange-m:hover,
.disabled.btn-orange-s:hover,
.disabled.btn-orange-xs:hover {
  background-color: #e3e7ec;
  color: #888888;
}

.buttonGroup {
  margin-left: 1px;
  font-size: 0;
}

.buttonGroup a,
.buttonGroup button {
  border-radius: 0;
  margin-left: -1px;
  letter-spacing: 0;
  word-spacing: 0;
}

.buttonGroup a:hover,
.buttonGroup button:hover {
  position: relative;
  z-index: 1;
}

.buttonGroup a:first-child,
.buttonGroup button:first-child {
  border-radius: 3px 0 0 3px;
}

.buttonGroup a:last-child,
.buttonGroup button:last-child {
  border-radius: 0 3px 3px 0;
}

.big_radius a:first-child,
.big_radius button:first-child {
  border-radius: 30px 0 0 30px;
}

.big_radius a:last-child,
.big_radius button:last-child {
  border-radius: 0 30px 30px 0;
}

.wawaBg,
.wawaTips-info,
.wawaTips-danger,
.wawaTips-warning,
.wawaTips-success,
.wawaTips-default {
  position: relative;
  display: inline-block;
  padding: 5px 0.6em;
  box-sizing: border-box;
  cursor: pointer;
  vertical-align: middle;
  text-align: left;
  border-radius: 3px;
  border: none;
  outline: none;
  line-height: 36px;
  line-height: 24px;
  font-size: 14px;
}

.wawaBg.block,
.block.wawaTips-info,
.block.wawaTips-danger,
.block.wawaTips-warning,
.block.wawaTips-success,
.block.wawaTips-default {
  display: block !important;
}

.icon-left,
.wawaTips-info .icon-l,
.wawaTips-danger .icon-l,
.wawaTips-warning .icon-l,
.wawaTips-success .icon-l,
.wawaTips-default .icon-l {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  left: -6px;
  width: 6px;
  height: 10px;
}

.icon-top,
.wawaTips-info .icon-t,
.wawaTips-danger .icon-t,
.wawaTips-warning .icon-t,
.wawaTips-success .icon-t,
.wawaTips-default .icon-t {
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: -6px;
  width: 10px;
  height: 6px;
}

.wawaTips-info {
  background-color: #d9edf7;
  color: #518aa6;
}

.wawaTips-info .icon-l {
  background-position: -190px -90px;
}

.wawaTips-info .icon-t {
  background-position: -122px -90px;
}

.wawaTips-info .icon-info {
  width: 20px;
  height: 19px;
  background-position: -110px -161px;
}

.wawaTips-danger {
  background-color: #f2dede;
  color: #b94a48;
}

.wawaTips-danger .icon-l {
  background-position: -184px -90px;
}

.wawaTips-danger .icon-t {
  background-position: -132px -90px;
}

.wawaTips-danger .icon-info {
  width: 20px;
  height: 19px;
  background-position: -110px -180px;
}

.wawaTips-warning {
  background-color: #fcf8e3;
  color: #b07f14;
}

.wawaTips-warning .icon-l {
  background-position: -178px -90px;
}

.wawaTips-warning .icon-t {
  background-position: -142px -90px;
}

.wawaTips-warning .icon-info {
  width: 20px;
  height: 18px;
  background-position: -110px -199px;
}

.wawaTips-success {
  background-color: #dff0d8;
  color: #3c8020;
}

.wawaTips-success .icon-l {
  background-position: -172px -90px;
}

.wawaTips-success .icon-t {
  background-position: -152px -90px;
}

.wawaTips-success .icon-info {
  width: 20px;
  height: 19px;
  background-position: -110px -217px;
}

.wawaTips-default {
  background-color: #eeeeee;
  color: #a6a6a6;
}

.wawaTips-default .icon-l {
  background-position: -196px -90px;
}

.wawaTips-default .icon-t {
  background-position: -162px -90px;
}

.wawaTips-default .icon-info {
  width: 20px;
  height: 20px;
  background-position: -110px -235px;
}

/**
 * CSS Global - header
 * author: Simiii@simiii.com;
 * date: 2016-4-15;
**/
/*shortcut*/
.footer {
  text-align: center;
  font-size: 12px;
  padding: 30px;
  border-top: solid 4px #eee;
}

.friend_links {
  font-size: 13px;
  line-height: 200%;
}

.friend_links .fl_name {
  display: block;
  float: left;
  width: 10em;
  font-weight: bold;
}

.friend_links ul li {
  float: left;
  margin-right: 10px;
}

/**
 * CSS Global - school-web header
 * author: Simiii@simiii.com;
 * QQ: 253173068;
 * date: 2015-10-15;
**/
/*shortcut*/
/*top翻页*/
.btn-turn-pages {
  position: absolute;
  right: 0;
  top: 0;
}

.btn-turn-pages a {
  font-size: 13px;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  vertical-align: middle;
  padding: 0 1.5em;
  border-radius: 2px;
  background-color: #e2e3ea;
  margin-left: 1px;
  color: #333333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-turn-pages a:hover {
  color: #fff;
  background-color: #0073c3;
}

/*bottom 翻页*/
.m-flip {
  text-align: center;
  margin-top: 20px;
}

.m-flip .m-flip-ellipsis {
  color: #333333;
  line-height: 22px;
  display: inline-block;
  vertical-align: top;
  padding: 0 3px;
  font-size: 14px;
}

.m-flip a {
  cursor: pointer;
  display: inline-block;
  line-height: 32px;
  padding: 0 12px;
  text-align: center;
  background-color: #f6f7f9;
  border-radius: 16px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 14px;
  font-family: Arial;
  color: #333333;
}

.m-flip a:hover {
  background-color: #1cba6e;
  color: #fff;
}

.m-flip a.prev,
.m-flip a.next {
  display: block;
  float: left;
  padding: 0 25px;
}

.m-flip a.next {
  float: right;
}

.m-flip a.on {
  background-color: #0073c3;
  color: #fff;
}

.m-flip.mini .m-flip-ellipsis {
  line-height: 18px;
}

.m-flip.mini a {
  line-height: 28px;
  font-size: 13px;
  padding: 0 10px;
}

.flip_showMore {
  padding: 15px 0;
  text-align: center;
}

.flip_showMore a {
  display: inline-block;
  height: 32px;
  line-height: 30px;
  box-sizing: border-box;
  text-align: center;
  padding: 0 4em;
  border-radius: 16px;
  border: solid 1px #c9ced4;
  color: #b0b6bd;
  cursor: pointer;
  font-size: 14px;
}

.flip_showMore a:hover {
  border-color: #0073c3;
  color: #0073c3;
}

/**
 * CSS module-share list
 * author: Simiii@simiii.com;
 * QQ: 253173068;
 * date: 2015-10-15;
**/
.share_list li {
  border-bottom: dotted 1px #e2e3ea;
}

.share_list li:last-child {
  border: none;
}

.share_list li a {
  display: block;
  padding: 10px 15px;
}

.share_list li a:hover {
  background-color: #f6f7f9;
}

.share_list li h3 {
  margin-left: 41px;
  font-size: 12px;
  color: #888888;
  font-weight: normal;
}

.share_list li h2 {
  margin-left: 41px;
  font-size: 14px;
  color: #333333;
  font-weight: normal;
  line-height: 1.2em;
}

.share_list li i {
  float: left;
  width: 36px;
  height: 36px;
}

.share_icons,
.icon_weixin,
.icon_pengyouquan,
.icon_qq,
.icon_qqzone,
.icon_xinlang,
.icon_wawa {
  width: 36px;
  height: 36px;
}

.icon_weixin {
  background-position: 0 -149px;
}

.icon_pengyouquan {
  background-position: 0 -185px;
}

.icon_qq {
  background-position: 0 -221px;
}

.icon_qqzone {
  background-position: 0 -257px;
}

.icon_xinlang {
  background-position: 0 -293px;
}

.icon_wawa {
  background-position: 0 -329px;
}

.bdsharebuttonbox .astyle {
  background-image: none !important;
  z-index: 3333;
  width: 190px;
}

.bdsharebuttonbox ul li {
  padding: 10px 15px;
}

.bdsharebuttonbox ul li a {
  margin: 0 !important;
}

.bdsharebuttonbox ul li a:hover {
  filter: Alpha(opacity=30);
  background: #fff;
  background: rgba(255, 255, 255, 0.3) none repeat scroll 0 0 !important;
}

.wrap_share {
  display: block;
  padding: 5px;
  overflow: hidden;
  height: 240px;
}

.wrap_share .picbox {
  height: 220px;
}

.wrap_share .picbox img {
  width: 100%;
  height: 100%;
}

.wrap_share .save_div a {
  width: 100%;
  display: block;
  line-height: 20px;
}

.wrap_share .shareTips {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.wrap_share .shareTips .appenshare {
  color: #fff;
  vertical-align: middle;
  line-height: 36px;
}

.wrap_share .shareTips i {
  float: left;
  width: 36px;
  height: 36px;
  margin: 0 3px;
}

.wrap_share .shareTips a {
  width: 38px;
  height: 38px;
}

.code_dialog {
  padding-bottom: 15px;
  width: 200px;
  text-align: center;
}

.code_dialog img {
  width: 100%;
  padding-bottom: 5px;
}

.code_dialog .code_dialogBox a {
  width: 22px;
  height: 22px;
}

.shareTips_wrap .shareTitle {
  font-size: 14px;
  color: #07a958;
  display: block;
  height: 38px;
  line-height: 38px;
  vertical-align: middle;
  margin-right: 10px;
}

.shareTips_wrap span {
  display: block;
  float: left;
  position: relative;
}

.shareTips_wrap a.astyle {
  width: 23px;
  height: 23px;
  line-height: 20px;
  height: 20px;
  left: 0;
  top: 0;
  margin: 0 !important;
  padding-left: 0 !important;
}

.shareTips_wrap i {
  float: left;
  width: 21px;
  height: 21px;
  margin: 0 3px;
}

.share_box {
  width: 40px;
  height: 150px;
  background-color: #f4942c;
  border-radius: 50px 50px 5px 5px;
  position: absolute;
  right: 40px;
  top: 190px;
}

.share_box .share_iconBox {
  margin: 15px 0 5px 0;
  text-align: center;
}

.share_box .share_testBox {
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  color: #fff;
  width: 20px;
  word-wrap: break-word;
  line-height: 16px;
}

.share_wrapBox {
  position: fixed;
  z-index: 999;
  top: 71%;
  right: 0;
  border-radius: 5px 0 0 5px;
  box-sizing: content-box;
  background-color: #f4942c;
  width: 40px;
  height: 50px;
  animation: mymove 0.3s ease-in-out 0.4s;
  -moz-animation: mymove 0.3s ease-in-out 0.4s;
  /* Firefox */
  -webkit-animation: mymove 0.3s ease-in-out 0.4s;
  /* Safari 和 Chrome */
  -o-animation: mymove 0.3s ease-in-out 0.4s;
  /* Opera */
}

.share_wrapBox .share_iconBox {
  margin: 5px;
  text-align: center;
}

.share_wrapBox .share_testBox {
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

@keyframes mymove {
  0% {
    right: -41px;
  }

  100% {
    right: 0;
  }
}

@-webkit-keyframes mymove

/* Safari 和 Chrome */
  {
  0% {
    right: -41px;
  }

  100% {
    right: 0;
  }
}

.gray_share .shareTips_wrap i {
  background-image: url(../images/main_ico2.png);
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  width: 21px;
  height: 21px;
  background-size: auto auto;
}

.gray_share a {
  cursor: pointer;
}

.gray_share .icon_pengyouquan {
  background-position: 0 -299px;
}

.gray_share .icon_qqzone {
  background-position: -25px -299px;
}

.gray_share .icon_qq {
  background-position: -50px -299px;
}

.gray_share .icon_xinlang {
  background-position: -75px -299px;
}

/**
 * CSS module - dialog
 * author: Simiii@simiii.com;
 * QQ: 253173068;
 * date: 2015-10-27;
**/
.blackWrap {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url(../images/ieblackbg.png) \9;
  position: fixed;
  *position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow: auto;
}

.dialogWrap {
  z-index: 10000;
  background-color: #fff;
  width: 300px;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0;
}

.icon-dialog-close {
  width: 20px;
  height: 20px;
  background-position: -158px -44px;
  position: absolute;
  top: -10px;
  right: -25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.icon-dialog-close:hover {
  background-position: -158px -64px;
}

.icon-dialog-close-small {
  width: 12px;
  height: 12px;
  background-position: -178px -44px;
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
}

.icon-dialog-close-small:hover {
  background-position: -178px -56px;
}

.confirm_buttons {
  padding: 10px 0;
  text-align: center;
}

.confirm_buttons a,
.confirm_buttons button {
  margin: 0 10px;
  padding: 0 4em !important;
}

.confirm_content {
  padding: 15px 20px;
}

.confirm_content .confirm_text {
  margin-left: 72px;
}

.confirm_content .confirm_text h2 {
  font-size: 22px;
  color: #000000;
  line-height: 1.5em;
  font-weight: normal;
}

.confirm_content .confirm_text p {
  text-align: justify;
  text-justify: distribute-all-lines;
  text-justify: inter-ideograph;
  font-size: 14px;
  color: #333333;
  padding-top: 10px;
  padding-right: 10px;
}

.confirm_content .confirm_text p span {
  color: #f19d20;
}

.confirm_content i {
  width: 64px;
  float: left;
  margin-top: 5px;
  display: block;
  margin-left: -10px;
}

.role_dialog_box {
  display: none;
}

.dialogHeader {
  background-color: #2f72d2;
  border-radius: 3px 3px 0 0;
}

.dialogHeader h1 {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
}

.dialogHeader h2 {
  padding-top: 3px;
  font-size: 12px;
  color: #fcf8e3;
  line-height: 1.5em;
  font-weight: normal;
}

.products_details .props_caption {
  font-size: 20px;
  color: #999;
  margin-top: 20px;
}

.article_cap {
  font-size: 22px;
  text-align: center;
  font-weight: bold;
}

.article_sub_cap {
  font-size: 14px;
  color: #999;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}

.artDetails {
  font-size: 15px;
  margin: 15px 0;
  line-height: 1.6em;
}

.artDetails img {
  max-width: 100%;
}

.honor_caption {
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 5px 0;
}







.pagination {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  overflow: hidden;
}

.pagination a {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  cursor: pointer;
}

.pagination a.page-num-current {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}



.coolbg {
  background: #181818;
  border: none;
  color: #fff;
}

.coolbg:hover {
  color: #2CA445;
}

.searchBar {
  border: none;
  background-color: #fff;
}

.col-xs-6 .thumbnail {
  max-height: 304px;
}

.col-xs-6 .thumbnail a>img {
  height: 145px;
  width: auto;
  margin: 0 auto;
}

.asider-cap {
  cursor: pointer
}

.tolpro {
  padding: 10px 5px;
  margin: 2px 0;
}

.tolpro .icon-bar {
  background-color: #0073c3 !important;
}