@charset "utf-8";
/*标准色值*/
/*主色*/
/*辅色*/
/*文本色值*/
/*背景色值*/
/*边框色值*/
/*图标*/
/*按钮颜色*/
/*标准色值*/
.primary {
  color: #ff6000;
}
.assist {
  color: #ff4e00;
}
/*文本色值*/
.font-gray-base {
  color: #000000;
}
.font-gray-darker {
  color: #333333;
}
.font-gray-dark {
  color: #494949;
}
.font-gray-light {
  color: #696969;
}
.font-gray-lighter {
  color: #b2b2b2;
}
/*背景色值*/
.background-base {
  background: #f3f3f3;
}
.background-light {
  background: #f6f6f6;
}
.background-lighter {
  background: #fafafa;
}
/*边框颜色*/
.border-base {
  border-color: #cfcfcf;
}
.border-light {
  border-color: #dadada;
}
.border-lighter {
  border-color: #e6e6e6;
}
/*搜索边框、子区块边框*/
.border-primary {
  border-color: #ff6000;
}
/*区块背景*/
.background-white {
  background: #ffffff;
}
.background-primary {
  background: #ff6000;
}
/*a标签默认*/
a {
  color: #333333;
}
a:hover {
  color: #ff6000;
}
body {
  color: #333333;
}
/*图标*/
.icon {
  background: url('../img/icon.png') no-repeat;
}
.icon.icon-new {
  width: 16px;
  height: 20px;
  display: inline-block;
  background-position: 0 0;
}
.icon.icon-arrow {
  width: 15px;
  height: 7px;
  display: inline-block;
  background-position: 0 -27px;
}
.icon.icon-warn {
  width: 55px;
  height: 65px;
  display: inline-block;
  background-position: 0 -40px;
}
.icon.icon-arrow-down {
  width: 20px;
  height: 10px;
  display: inline-block;
  background-position: 0 -112px;
}
.icon.icon-license {
  width: 20px;
  height: 15px;
  display: inline-block;
  background-position: 0 -129px;
}
.icon.icon-email {
  width: 20px;
  height: 15px;
  display: inline-block;
  background-position: -25px -129px;
}
.icon.icon-phone {
  width: 15px;
  height: 15px;
  display: inline-block;
  background-position: -50px -129px;
}
.icon.icon-weixin {
  width: 25px;
  height: 15px;
  display: inline-block;
  background-position: -68px -128px;
}
.icon.icon-weixin-white {
  width: 34px;
  height: 26px;
  display: inline-block;
  background-position: 0 -151px;
}
.icon.icon-weixin-large {
  width: 46px;
  height: 30px;
  display: inline-block;
  background-position: 0 -182px;
}
.icon.icon-weixin-middle {
  width: 42px;
  height: 32px;
  display: inline-block;
  background-position: 0 -282px;
}
.icon.icon-home {
  width: 26px;
  height: 26px;
  display: inline-block;
  background-position: 0 -211px;
}
.icon.icon-home-middle {
  width: 30px;
  height: 30px;
  display: inline-block;
  background-position: 0 -245px;
}
.icon.icon-home-yellow {
  width: 26px;
  height: 26px;
  display: inline-block;
  background-position: 0 -318px;
}
/*mixin*/
.btn {
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background: #ff6000;
  color: #ffffff;
}
.btn-primary:hover {
  background: #ff4e00;
  color: #ffffff;
}
.btn-success {
  background: #08be14;
  color: #ffffff;
}
.btn-success:hover {
  background: #08be14;
  color: #ffffff;
}
.btn-white {
  background: #ffffff;
  color: #ff6000;
}
input[type="button"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}
