@charset "UTF-8";
/* 公共样式 */
::-webkit-scrollbar:horizontal {
  height: 0;
}

::-webkit-scrollbar {
  width: 0;
}

::-webkit-scrollbar-track {
  opacity: 0;
}

::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #eee;
}

::-webkit-scrollbar-thumb:active {
  background-color: #eee;
}

input::-webkit-input-placeholder {
  color: #999;
}

input:-moz-placeholder {
  color: #999;
}

input::-moz-placeholder {
  color: #999;
}

input:-ms-input-placeholder {
  color: #999;
}

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

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

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

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: "PingFang SC Regular", "Helvetica Neue", "Hiragino Sans GB", "Segoe UI", "Microsoft YaHei", 微软雅黑, sans-serif;
}

textarea, button, input, select {
  outline: none;
  border: 0;
}

input:focus, textarea:focus {
  outline: none;
}

a, b, span, i, u, s, label {
  display: inline-block;
}

a:active, a:focus {
  outline: none;
}

a, u, s {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

[ui-view] {
  height: 100%;
}

.rootview {
  height: -webkit-calc(100% - 50px) !important;
  height: -moz-calc(100% - 50px) !important;
  height: calc(100% - 50px) !important;
}

img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.parent:after {
  content: "";
  display: table;
  clear: both;
}

.element:before {
  content: "";
  display: table;
}

.hidFont {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hidFont2 {
  display: -webkit-box;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.pz {
  position: relative;
  z-index: 100;
}

.pr {
  position: relative;
}

.click {
  cursor: pointer;
}

.wide {
  width: 100%;
}

.high {
  height: 100%;
}

.lf {
  float: left;
}

.rf {
  float: right;
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.tc {
  text-align: center;
}

.whiteBg {
  background-color: #FFF;
}

.demiBold {
  font-family: "PingFang SC Medium";
  font-weight: 500;
}

.bold {
  font-family: "PingFang SC Semibold";
  font-weight: bold;
}

.lh14 {
  line-height: 14px;
}

.lh15 {
  line-height: 15px;
}

.lh16 {
  line-height: 16px;
}

.lh18 {
  line-height: 18px;
}

.lh20 {
  line-height: 20px;
}

.lh22 {
  line-height: 22px;
}

.lh24 {
  line-height: 24px;
}

.lh26 {
  line-height: 26px;
}

.lh28 {
  line-height: 28px;
}

.lh30 {
  line-height: 30px;
}

.lh32 {
  line-height: 32px;
}

.lh34 {
  line-height: 34px;
}

.lh36 {
  line-height: 36px;
}

.lh38 {
  line-height: 38px;
}

.lh40 {
  line-height: 40px;
}

.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs18 {
  font-size: 18px;
}

.fs20 {
  font-size: 20px;
}

.fs22 {
  font-size: 22px;
}

.fs24 {
  font-size: 24px;
}

.fs26 {
  font-size: 26px;
}

.fs28 {
  font-size: 28px;
}

.fs30 {
  font-size: 30px;
}

.red {
  color: #D0021B;
}

.blue {
  color: #1989FA;
}

.green {
  color: #1F8200;
}

.black {
  color: #333;
}

.blackMinor {
  color: #606266;
}

.greyMain {
  color: #999;
}

.white {
  color: #FFF;
}

.do-color {
  color: #888;
}

.primary {
  color: #1989FA;
}

.success {
  color: #5cb85c;
}

.info {
  color: #5bc0de;
}

.warning {
  color: #f0ad4e;
}

.danger {
  color: #d9534f;
}

.link {
  color: #337ab7;
}

.grey {
  color: #A6AAAE;
}

.orange {
  color: #F79034;
}

.lightGreen {
  color: #52C41A;
}

.theme {
  color: #25CED1;
}

.mt5 {
  margin-top: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mr15 {
  margin-right: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mr20 {
  margin-right: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mr25 {
  margin-right: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mr30 {
  margin-right: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mr40 {
  margin-right: 40px;
}

.pad5 {
  padding: 5px;
}

.pt5 {
  padding-top: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.pl5 {
  padding-left: 5px;
}

.pr5 {
  padding-right: 5px;
}

.plr5 {
  padding-left: 5px;
  padding-right: 5px;
}

.ptb5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.pad10 {
  padding: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pr10 {
  padding-right: 10px;
}

.plr10 {
  padding-left: 10px;
  padding-right: 10px;
}

.ptb10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pad15 {
  padding: 15px;
}

.pt15 {
  padding-top: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pl15 {
  padding-left: 15px;
}

.pr15 {
  padding-right: 15px;
}

.plr15 {
  padding-left: 15px;
  padding-right: 15px;
}

.ptb15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.pad20 {
  padding: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.plr20 {
  padding-left: 20px;
  padding-right: 20px;
}

.ptb20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pad25 {
  padding: 25px;
}

.pt25 {
  padding-top: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pl25 {
  padding-left: 25px;
}

.pr25 {
  padding-right: 25px;
}

.plr25 {
  padding-left: 25px;
  padding-right: 25px;
}

.ptb25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pad40 {
  padding: 40px;
}

.four-line {
  position: relative;
}
.four-line:after {
  content: "";
  width: -webkit-calc(200% - 2px);
  width: -moz-calc(200% - 2px);
  width: calc(200% - 2px);
  height: -webkit-calc(200% - 2px);
  height: -moz-calc(200% - 2px);
  height: calc(200% - 2px);
  border: 1px solid #E4E7ED;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scale(0.5, 0.5);
  -moz-transform: scale(0.5, 0.5);
  -ms-transform: scale(0.5, 0.5);
  -o-transform: scale(0.5, 0.5);
  transform: scale(0.5, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.straight-line {
  position: relative;
}
.straight-line:before {
  content: "";
  height: 1px;
  background-color: #E4E7ED;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0.5);
  -moz-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  -o-transform: scaleY(0.5);
  transform: scaleY(0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.line-bottom {
  position: relative;
}
.line-bottom:before {
  content: "";
  height: 1px;
  background-color: #E4E7ED;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.level-line {
  position: relative;
}
.level-line:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #E4E7ED;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.line-middle {
  width: 100%;
  height: 1px;
  background-color: #E4E7ED;
}

.hsh-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.hsh-flex.vertical {
  flex-direction: column;
}

.hsh-flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hsh-flex-upDown {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hsh-flex-about {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hsh-flex-both {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hsh-flex-both-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hsh-flex-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.hsh-flex-equal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.hsh-flex-line-break {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hsh-flex-many {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.hsh-flex-many-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.hsh-flex-four-sides-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.img36 {
  width: 36px;
  height: 36px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.img36 img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.boy {
  width: 8px;
  height: 12px;
  margin: 0 5px;
  background: url("../images/icon/ic_boy.png") no-repeat center;
  background-size: 100%;
}

.girl {
  width: 8px;
  height: 12px;
  margin: 0 5px;
  background: url("../images/icon/ic_girl.png") no-repeat center;
  background-size: 100%;
}

.select-icon {
  width: 14px;
  height: 14px;
  background: url("../images/icon/ic_select.png") no-repeat center;
  background-size: 100%;
  cursor: pointer;
}
.select-icon.active {
  background: url("../images/icon/ic_checked.png") no-repeat center;
  background-size: 100%;
}

.overflow-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.overflow-more {
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.overflow-2 {
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*屏幕背景*/
.hsh-screenBg {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: #F0F2F5;
  overflow-y: auto;
}

.loading {
  background-color: #FFF;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 14px;
  flex-direction: column;
}
.loading .loading-icon {
  width: 60px;
  height: 60px;
}
.loading .text {
  margin-top: 10px;
  color: #999;
  font-size: 14px;
}

/*黑色向下括号箭头*/
.arrow-down {
  width: 10px;
  height: 10px;
  margin-left: 6px;
  background: url("../images/ic_nav_open.png") no-repeat center;
  background-size: 100%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}
.arrow-down.open {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*页面圆返回按钮*/
.returnIcon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background: url("../images/icon/ic_company_back.png") no-repeat center;
  background-size: 100%;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.open-btn {
  width: 14px;
  height: 14px;
  background: url("../images/icon/ic_company_open.png") no-repeat center;
  background-size: 100%;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.open-btn.active {
  background: url("../images/icon/ic_company_collapse.png") no-repeat center;
  background-size: 100%;
}

/*滚动条样式*/
.scrollBarStyle {
  overflow-y: scroll;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}

/*头部样式*/
.header {
  width: 100%;
  height: 50px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 4px 0 #dadada;
  box-shadow: 0 2px 4px 0 #dadada;
  position: relative;
  z-index: 1001;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header .head-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 20px;
}
.header .head-icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.header .head-title {
  font-size: 18px;
  color: #333;
  font-weight: 500px;
}
.header .newsTips {
  width: 68px;
  height: 50px;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .newsTips:hover, .header .newsTips.active {
  background-color: #F0F2F5;
}
.header .newsTips:hover .pop-news, .header .newsTips.active .pop-news {
  display: block;
}
.header .newsTips .pop-news {
  display: none;
}
.header .newsTips .icon {
  width: 18px;
  height: 24px;
  background: url("../images/icon/ic_nav_notice.png") no-repeat center;
  background-size: 100%;
  cursor: pointer;
  position: relative;
}
.header .newsTips .number {
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  margin-right: -4px;
  border-radius: 7px;
  background-color: #D0021B;
  font-family: "PingFang SC Medium";
  font-size: 8px;
  color: #FFF;
  position: absolute;
  top: -8px;
  right: -50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.header .screenTips {
  width: 58px;
  height: 50px;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .screenTips:hover, .header .screenTips.active {
  background-color: #F0F2F5;
}
.header .screenTips .icon {
  width: 100%;
  height: 100%;
  background: url(../images/icon/ic_nav_screen.png?v=1.0) no-repeat center;
  background-size: 20px 20px;
  cursor: pointer;
  position: relative;
}
.header .screenTips .icon.home-icon {
  background: url(../../images/home/blue/ic_nav_home.png) no-repeat center;
  background-size: 20px 20px;
}
.header .screenTips .icon.decoration-icon {
  background: url(../../images/home/blue/ic_header_decoration.png) no-repeat center;
  background-size: 20px 20px;
}
.header .iconTips {
  width: 58px;
  height: 50px;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .iconTips:hover, .header .iconTips.active {
  background-color: #F0F2F5;
}
.header .iconTips .pop-news {
  display: none;
}
.header .iconTips .icon {
  width: 100%;
  height: 100%;
  background: url(../images/icon/ic_nav_notice.png?v=1.0) no-repeat center;
  background-size: 18px 24px;
  cursor: pointer;
  position: relative;
}
.header .iconTips .number {
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  margin-right: -4px;
  border-radius: 9px;
  background-color: #D0021B;
  font-family: "PingFang SC Medium";
  font-size: 8px;
  color: #FFF;
  position: absolute;
  top: 4px;
  right: 4px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.header .userTips {
  width: 100px;
  height: 50px;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .userTips .head-name {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background-color: #535353;
  font-family: "PingFang SC Medium";
  font-size: 14px;
  color: #FFF;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header .userTips .head-name img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  vertical-align: top;
}
.header .userTips .mark {
  height: 14px;
  line-height: 14px;
  padding: 0 5px;
  border-radius: 7px;
  background-color: #D0021B;
  white-space: nowrap;
  font-family: "PingFang SC Medium";
  font-size: 9px;
  color: #FFF;
  position: absolute;
  top: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
}
.header .userTips .mark.certified {
  background-color: #52C41A;
}
.header .userTips .mark.attestation {
  background-color: #F79034;
}
.header .userTips:hover, .header .userTips.active {
  background-color: #F0F2F5;
}
.header .userTips:hover .pop-modal, .header .userTips.active .pop-modal {
  display: block;
}
.header .userTips .pop-modal {
  display: none;
  top: 50px;
}

.pop-news {
  display: none;
  width: 350px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #E4E7ED;
  cursor: default;
  position: absolute;
  top: 50px;
  right: -58px;
  z-index: 10;
}
.pop-news .news-list {
  padding: 0 20px;
}
.pop-news .news-list li {
  padding: 20px 0;
}
.pop-news .tabs-head {
  width: 100%;
  height: 36px;
  background-color: #F0F2F5;
}
.pop-news .tabs-head .tabs-item {
  width: 100%;
  cursor: pointer;
  position: relative;
}
.pop-news .tabs-head .tabs-item.active {
  background-color: #FFF;
}
.pop-news .tabs-head .tabs-item.active .fs14-2 {
  font-family: "PingFang SC Medium";
  color: #25CED1;
}
.pop-news .tabs-head .tabs-item .number {
  margin-top: -10px;
  margin-left: -8px;
  position: static;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.pop-news .tabs-content {
  width: 100%;
  height: 206px;
  overflow-y: scroll;
}
.pop-news .tabs-content .tabs-panel {
  width: 100%;
  padding: 12px 20px 0;
}
.pop-news .tabs-content .tabs-panel .msg-item .msg-date {
  font-size: 12px;
  color: #25CED1;
}
.pop-news .tabs-content .tabs-panel .msg-item .msg-content {
  font-size: 12px;
  color: #333;
}
.pop-news .tabs-content .tabs-panel .msg-item .msg-content .msg-tips {
  color: #25CED1;
}
.pop-news .tabs-content .tabs-panel .msg-item .msg-content .remain-days {
  color: #D0021B;
  padding-left: 2px;
  padding-right: 2px;
  font-weight: 600;
}
.pop-news .tabs-footer {
  width: 100%;
  height: 36px;
}
.pop-news .tabs-footer .see-icon {
  width: 8px;
  height: 8px;
  background: url("../images/icon/ic_nav_allnews.png") no-repeat center;
  background-size: 100%;
}

.pop-timer {
  width: 160px;
  height: 40px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #E4E7ED;
  position: absolute;
  top: 50px;
  z-index: 10;
}
.pop-timer ul {
  padding: 0px 0;
}
.pop-timer ul li {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.pop-timer ul li .nav-icon {
  width: 14px;
  height: 14px;
}
.pop-timer ul li .nav-icon.download {
  background: url("../../images/ic_nav_download.png") no-repeat center;
  background-size: 100%;
}
.pop-timer ul li .nav-icon {
  width: 14px;
  height: 14px;
}
.pop-timer ul li .nav-icon.inviteuser {
  background: url("../../images/ic_header_inviteuser.png") no-repeat center;
  background-size: 100%;
}
.pop-timer ul li:hover {
  background-color: #F0F2F5;
}

.pop-modal {
  /*display: none;*/
  width: 160px;
  border-radius: 4px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #E4E7ED;
  position: absolute;
  top: 32px;
  z-index: 10;
}
.pop-modal ul {
  padding: 0px 0;
  border-radius: 4px;
  background-color: #FFF;
}
.pop-modal ul li {
  width: 100%;
  height: 34px;
  line-height: 34px;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.pop-modal ul li .nav-icon {
  width: 14px;
  height: 14px;
}
.pop-modal ul li .nav-icon.person {
  background: url("../images/icon/ic_nav_person.png") no-repeat center;
  background-size: 100%;
}
.pop-modal ul li .nav-icon.quit {
  background: url("../images/icon/ic_nav_quit.png") no-repeat center;
  background-size: 100%;
}
.pop-modal ul li .label {
  width: 100%;
  text-align: left;
  font-size: 12px;
  color: #333;
}
.pop-modal ul li:hover {
  background-color: #F0F2F5;
}
.pop-modal ul li.on {
  background-color: #F0F2F5;
}
.pop-modal ul li.on .ml5.fs14-2 {
  color: #25CED1;
}
.pop-modal ul li.active .label {
  background: url("../../images/icon/ic_work_tick.png") no-repeat right;
  background-size: 13px;
  color: #25CED1;
}

/* 内容左侧*/
.sideBar {
  display: flex;
  width: 250px;
  height: -webkit-calc(100% - 50px);
  height: -moz-calc(100% - 50px);
  height: calc(100% - 50px);
  background-color: #EFF2FA;
  float: left;
  border-right: 1px solid #E4E7ED;
  transition: width 1s ease;
}
.sideBar.collopse {
  width: 70px;
}
.sideBar .menu-left {
  width: 70px;
  background: #FFF;
  position: relative;
  overflow: auto;
  flex-shrink: 0;
}
.sideBar .menu-left .expand-collopse {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 74px;
  cursor: pointer;
}
.sideBar .menu-left .expand-collopse .button-icon {
  width: 28px;
  height: 28px;
  background: #EFF2FA;
}
.sideBar .menu-left .expand-collopse .button-icon .icon {
  width: 28px;
  height: 28px;
  background-size: 100%;
  background-image: url("../../images/icon/ic_nav_hide.png");
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}
.sideBar .menu-left .expand-collopse .button-icon .icon.collopse {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sideBar .menu-left .menu-icon-nav {
  padding-left: 12px;
  background: #FFF;
}
.sideBar .menu-left .menu-icon-nav li {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sideBar .menu-left .menu-icon-nav li img {
  width: 23px;
  height: 23px;
}
.sideBar .menu-left .menu-icon-nav li.active {
  background: #25CED1;
}
.sideBar .current-menu {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 70px;
  transform: translate(0, -50%);
  background: #344040;
  z-index: 10000;
}
.sideBar .current-menu .arrow-left {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 13px solid #344040;
  border-bottom: 10px solid transparent;
  left: -10px;
  top: 13px;
  position: fixed;
}
.sideBar .current-menu .text {
  padding: 0 20px;
  line-height: 46px;
  width: auto;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
}
.sideBar .menu-right {
  width: 180px;
  overflow: auto;
  transition: width 1s ease;
}
.sideBar .menu-right.collopse {
  width: 0px;
}
.sideBar .menu-right .menu-group {
  padding-bottom: 15px;
  padding-top: 15px;
  font-size: 16px;
  font-weight: 600;
  width: 148px;
  margin: 0 0 0 16px;
}
.sideBar .menu-right .menu-nav, .sideBar .menu-right .sub-menu-nav, .sideBar .menu-right .sub-item {
  width: 148px;
  margin: 0 0 0 16px;
}
.sideBar .menu-right .menu-nav li, .sideBar .menu-right .sub-menu-nav li, .sideBar .menu-right .sub-item li {
  width: 100%;
  min-height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}
.sideBar .menu-right .menu-nav li .text, .sideBar .menu-right .menu-nav li .sub-text, .sideBar .menu-right .sub-menu-nav li .text, .sideBar .menu-right .sub-menu-nav li .sub-text, .sideBar .menu-right .sub-item li .text, .sideBar .menu-right .sub-item li .sub-text {
  width: 100%;
  height: 50px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sideBar .menu-right .menu-nav li .text:before, .sideBar .menu-right .menu-nav li .sub-text:before, .sideBar .menu-right .sub-menu-nav li .text:before, .sideBar .menu-right .sub-menu-nav li .sub-text:before, .sideBar .menu-right .sub-item li .text:before, .sideBar .menu-right .sub-item li .sub-text:before {
  content: "";
  width: 3px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}
.sideBar .menu-right .menu-nav li .text.active, .sideBar .menu-right .menu-nav li .sub-text.active, .sideBar .menu-right .sub-menu-nav li .text.active, .sideBar .menu-right .sub-menu-nav li .sub-text.active, .sideBar .menu-right .sub-item li .text.active, .sideBar .menu-right .sub-item li .sub-text.active {
  background-color: #DADFE7;
}
.sideBar .menu-right .menu-nav li .text.active:before, .sideBar .menu-right .menu-nav li .sub-text.active:before, .sideBar .menu-right .sub-menu-nav li .text.active:before, .sideBar .menu-right .sub-menu-nav li .sub-text.active:before, .sideBar .menu-right .sub-item li .text.active:before, .sideBar .menu-right .sub-item li .sub-text.active:before {
  background-color: #1989FA;
}
.sideBar .menu-right .menu-nav li .text.on .arrow-icon, .sideBar .menu-right .menu-nav li .sub-text.on .arrow-icon, .sideBar .menu-right .sub-menu-nav li .text.on .arrow-icon, .sideBar .menu-right .sub-menu-nav li .sub-text.on .arrow-icon, .sideBar .menu-right .sub-item li .text.on .arrow-icon, .sideBar .menu-right .sub-item li .sub-text.on .arrow-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sideBar .menu-right .menu-nav li .menu-icon, .sideBar .menu-right .sub-menu-nav li .menu-icon, .sideBar .menu-right .sub-item li .menu-icon {
  width: 20px;
  height: 20px;
  padding: 0;
  margin-right: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sideBar .menu-right .menu-nav li .menu-icon img, .sideBar .menu-right .sub-menu-nav li .menu-icon img, .sideBar .menu-right .sub-item li .menu-icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.sideBar .menu-right .menu-nav li .arrow-icon, .sideBar .menu-right .sub-menu-nav li .arrow-icon, .sideBar .menu-right .sub-item li .arrow-icon {
  width: 12px;
  height: 12px;
  padding: 0;
  background: url("../images/icon/ic_nav_open.png") no-repeat center;
  background-size: 100% 100%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
  -moz-transition: -moz-transition 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  -o-transition: -o-transition 0.5s;
}
.sideBar .menu-right .menu-nav li .menu-name, .sideBar .menu-right .menu-nav li .sub-menu-name, .sideBar .menu-right .sub-menu-nav li .menu-name, .sideBar .menu-right .sub-menu-nav li .sub-menu-name, .sideBar .menu-right .sub-item li .menu-name, .sideBar .menu-right .sub-item li .sub-menu-name {
  width: 100%;
  padding-left: 30px;
  color: #222;
  font-size: 14px;
  font-weight: 600;
}
.sideBar .menu-right .menu-nav li span, .sideBar .menu-right .sub-menu-nav li span, .sideBar .menu-right .sub-item li span {
  width: 100%;
  padding-left: 30px;
}
.sideBar .menu-right .sub-menu-nav {
  margin: 0;
}
.sideBar .menu-right .sub-menu-nav li {
  position: relative;
}
.sideBar .menu-right .sub-menu-nav li:before {
  content: "";
  width: 3px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}
.sideBar .menu-right .sub-menu-nav li.on {
  background-color: #25CED1;
  color: #FFF;
}
.sideBar .menu-right .sub-menu-nav li.active .sub-text .arrow-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sideBar .menu-right .sub-menu-nav li .sub-text ~ .sub-item li span {
  padding-left: 68px;
}

/*内容右侧*/
.pageContainer {
  height: 100%;
  overflow-x: hidden;
  padding: 10px;
  overflow-y: auto;
}
.pageContainer.fullscreen {
  left: -1px;
  transition: left 0.6s cubic-bezier(0.26, 0.86, 0.44, 0.985);
}
.pageContainer .pageMenu {
  width: 100%;
  height: 40px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}
.pageContainer .pageMenu .clickLeft {
  width: 40px;
  height: 40px;
  background: url("../images/icon/ic_left.png") no-repeat center;
  background-size: 20px;
  border-right: 1px solid #E4E7ED;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.pageContainer .pageMenu .clickRight {
  width: 40px;
  height: 40px;
  background: url("../images/icon/ic_right.png") no-repeat center;
  background-size: 20px;
  border-left: 1px solid #E4E7ED;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.pageContainer .pageMenu .clickDown {
  width: 40px;
  height: 40px;
  background: url("../images/icon/ic_dropdown.png") no-repeat center;
  background-size: 10px 11px;
  border-left: 1px solid #E4E7ED;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.pageContainer .pageMenu .clickDown ul {
  padding: 5px 0;
  border: 1px solid #E4E7ED;
  border-radius: 2px;
  background-color: #FFF;
  position: absolute;
  top: 40px;
  right: 0;
}
.pageContainer .pageMenu .clickDown ul li {
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
  white-space: nowrap;
  font-size: 14px;
  color: #333;
}
.pageContainer .pageMenu .clickDown ul li:hover {
  background-color: #F0F2F5;
}
.pageContainer .pageMenu .menuBar {
  width: -webkit-calc(100% - 120px);
  width: -moz-calc(100% - 120px);
  width: calc(100% - 120px);
  height: 40px;
  cursor: auto;
  overflow: hidden;
  position: relative;
}
.pageContainer .pageMenu .menuBar .menuBarContainer {
  white-space: nowrap;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.pageContainer .pageMenu .menuBar .menuBarContainer .menuItem {
  height: 40px;
  padding: 10px 40px 10px 20px;
  cursor: pointer;
  position: relative;
}
.pageContainer .pageMenu .menuBar .menuBarContainer .menuItem span {
  font-size: 14px;
  line-height: 20px;
  vertical-align: top;
}
.pageContainer .pageMenu .menuBar .menuBarContainer .menuItem .menuItem_close {
  width: 16px;
  height: 16px;
  background: url("../images/icon/ic_close.png") no-repeat center;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pageContainer .pageMenu .menuBar .menuBarContainer .menuItem .menuItem_close:hover {
  background-color: #DBD9D9;
  border-radius: 50%;
}
.pageContainer .pageMenu .menuBar .menuBarContainer .menuItem.active {
  background-color: #F0F2F5;
  z-index: 2;
}
.pageContainer .pageMenu .menuBar .menuBarContainer .menuItem.active .line {
  display: none;
}
.pageContainer .pageMenu .menuBar .menuBarContainer .menuItem .line {
  width: 1px;
  height: 14px;
  background-color: #DBD9D9;
  position: absolute;
  top: 50%;
  left: -1px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
}
.pageContainer .pageTitle {
  padding: 25px 25px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pageContainer .pageTitle .label {
  font-family: "PingFang SC Medium";
  font-size: 20px;
  color: #333;
}
.pageContainer .pageContent {
  width: 100%;
  height: 100%;
}
.pageContainer .pageContent .tree-module {
  width: 300px;
  height: 100%;
  background-color: #FFF;
  margin-right: 10px;
  padding: 5px;
  float: left;
}
.pageContainer .pageContent .tree-module .tree-search {
  width: 100%;
  padding: 10px 10px 10px 10px;
  border-bottom: 1px solid #E4E7ED;
}
.pageContainer .pageContent .tree-module .tree-search .controls.input-search-button {
  margin-left: 16px;
  height: 34px;
  width: 262px;
  display: flex;
  box-sizing: border-box;
  border: 1px solid #DADADA;
}
.pageContainer .pageContent .tree-module .tree-search .controls.input-search-button input {
  width: 220px;
  height: 32px;
  line-height: 32px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.pageContainer .pageContent .tree-module .tree-search .controls.input-search-button i {
  width: 40px;
  height: 32px;
  background-color: #EFF3F6;
}
.pageContainer .pageContent .tree-module .tree-panel {
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
}
.pageContainer .pageContent .tree-module .tree-panel .tree-header {
  height: 41px;
  padding: 0 10px;
  border-bottom-color: #E4E7ED;
}
.pageContainer .pageContent .tree-module .tree-panel .tree-header .allFolder-icon {
  width: 16px;
  height: 14px;
  background: url("../images/icon/ic_company_allfolder.png") no-repeat center;
  background-size: 100%;
}
.pageContainer .pageContent .tree-module .tree-panel .tree-header .role-app-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background: url("../images/icon/ic_role_app.png") no-repeat center;
  background-size: 100%;
}
.pageContainer .pageContent .tree-module .tree-panel .tree-header .controls.button {
  min-width: 54px;
  height: 28px;
  line-height: 26px;
  font-size: 12px;
  border: solid 1px;
}
.pageContainer .pageContent .tree-module .tree-panel .tree-header .add-btn {
  width: 34px;
  height: 34px;
  margin-right: -6px;
  background: url("../images/icon/ic_company_add.png") no-repeat center;
  background-size: 100%;
  cursor: pointer;
  position: relative;
}
.pageContainer .pageContent .tree-module .tree-panel .tree-header .add-btn .pop-role {
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.pageContainer .pageContent .tree-module .tree-panel .tree-header .add-btn .pop-role .controls.button {
  height: 40px;
  line-height: 38px;
  font-size: 14px;
}
.pageContainer .pageContent .tree-module .tree-panel .tree-header .arrow-icon {
  width: 20px;
  height: 20px;
  margin-right: -4px;
  background: url("../images/ic_nav_open.png") no-repeat center;
  background-size: 12px;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
  -moz-transition: -moz-transition 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  -o-transition: -o-transition 0.5s;
}
.pageContainer .pageContent .tree-module .tree-panel .tree-header .arrow-icon.active {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pageContainer .pageContent .tree-module .tree-panel .tree-content {
  height: -webkit-calc(100% - 70px);
  height: -moz-calc(100% - 70px);
  height: calc(100% - 70px);
}
.pageContainer .pageContent .tree-module .tree-search ~ .tree-panel {
  height: -webkit-calc(100% - 85px);
  height: -moz-calc(100% - 85px);
  height: calc(100% - 85px);
}
.pageContainer .pageContent .tree-list {
  overflow-y: auto;
  height: 100%;
}
.pageContainer .pageContent .list-module {
  width: -webkit-calc(100% - 310px);
  width: -moz-calc(100% - 310px);
  width: calc(100% - 310px);
  height: 100%;
  float: left;
  overflow-y: scroll;
}
.pageContainer .pageContent .list-module .tableContainer .table-icon {
  width: 18px;
  height: 18px;
  margin: 0 auto;
}
.pageContainer .pageContent .list-module .tableContainer .table-icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.pageContainer .pageContent .page-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #FFF;
  height: 60px;
}
.pageContainer .pageContent .page-header.edit-dialog {
  margin-bottom: 10px;
}
.pageContainer .pageContent .page-header .title {
  font-family: "PingFang SC Medium";
  font-size: 20px;
  color: #333;
  width: auto;
  display: block;
  padding-left: 16px;
}
.pageContainer .pageContent .page-header .nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 16px;
}
.pageContainer .pageContent .page-header .nav .nav-item {
  color: #25CED1;
  cursor: pointer;
  font-size: 12px;
}
.pageContainer .pageContent .page-header .nav .nav-split {
  margin-left: 5px;
  margin-right: 5px;
  color: #999;
  font-size: 10px;
  font-weight: bold;
}
.pageContainer .pageContent .page-header .nav .nav-title {
  font-size: 12px;
  color: #333;
  width: auto;
  display: block;
}
.pageContainer .pageContent .page-header .buttons {
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 16px;
}
.pageContainer .pageContent .page-footer {
  width: 100%;
  text-align: center;
  padding: 20px 30px;
}
.pageContainer .pageContent .page-footer .align-center {
  width: 100%;
  padding-top: 10px;
  display: flex;
  justify-content: center;
}
.pageContainer .pageContent .page-footer .align-center .controls.button {
  width: 120px;
  margin-right: 25px;
}
.pageContainer .pageContent .page-footer .align-center .controls.button:last-child {
  margin-right: 0;
}
.pageContainer .pageContent .searchBar {
  display: flex;
  width: 100%;
  padding: 0px 16px 10px 16px;
  background-color: #FFF;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.pageContainer .pageContent .searchBar .addBtn {
  width: 45px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  margin-right: 10px;
  border-radius: 4px;
  border: 1px solid #E4E7ED;
  font-size: 18px;
  color: #D7D7D7;
  cursor: pointer;
  float: left;
  margin-top: 10px;
}
.pageContainer .pageContent .searchBar .controls {
  width: 238px;
  margin-right: 10px;
  margin-top: 5px;
}
.pageContainer .pageContent .searchBar .controls:last-child {
  margin-right: 0;
}
.pageContainer .pageContent .searchBar .controls.combo-input-search-button {
  width: 280px;
}
.pageContainer .pageContent .searchBar .controls.icon-button, .pageContainer .pageContent .searchBar .controls.combo-radiobutton {
  width: auto;
}
.pageContainer .pageContent .searchBar .controls.dateField.range {
  width: 220px;
}
.pageContainer .pageContent .searchBar .controls.combobox {
  width: 150px;
}
.pageContainer .pageContent .searchBar .controls.button {
  width: auto;
}
.pageContainer .pageContent .searchBar .controls.column-button {
  width: 40px;
}
.pageContainer .pageContent .searchBar .controls.input-search-button {
  padding-left: 15px;
  width: 160px;
}
.pageContainer .pageContent .searchBar .controls.rf {
  margin-left: 10px;
  margin-right: 0;
  float: right;
}
.pageContainer .pageContent .searchBar .controls.rf:last-child {
  margin-left: 0;
}
.pageContainer .pageContent .searchBar .controls.rf.input-search-button {
  padding-left: 15px;
  padding-right: 0;
}
.pageContainer .pageContent .searchBar .nav-bar {
  height: 32px;
  margin-right: 40px;
  position: relative;
  cursor: pointer;
}
.pageContainer .pageContent .searchBar .nav-bar .fs16-1 {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.pageContainer .pageContent .searchBar .nav-bar .fs16-1:after {
  content: "";
  max-width: 64px;
  width: 100%;
  height: 2px;
  background-color: transparent;
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 10;
}
.pageContainer .pageContent .searchBar .nav-bar.active .fs16-1 {
  font-family: "PingFang SC Medium";
  color: #25CED1;
}
.pageContainer .pageContent .searchBar .nav-bar.active .fs16-1:after {
  background-color: #25CED1;
}
.pageContainer .pageContent .searchBar .item {
  width: 100%;
  height: 50px;
}
.pageContainer .pageContent .searchBar .label {
  font-size: 12px;
  color: #333;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 5px;
}
.pageContainer .pageContent .searchBar .label.rect-box {
  height: 32px;
  line-height: 32px;
  border-left: 1px solid #DADADA;
  background-color: #F9FAFC;
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  padding: 0 10px 0 10px;
  margin-right: 0px;
  min-width: 60px;
  text-align: center;
}
.pageContainer .pageContent .searchBar .buttons {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 0px;
}
.pageContainer .pageContent .searchBar .buttons .controls {
  margin-right: 10px;
}
.pageContainer .pageContent .searchBar .buttons .controls:last-child {
  margin-right: 0;
}
.pageContainer .pageContent .highSearchBar {
  display: flex;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  background-color: #FFF;
  word-spacing: -1em;
  flex-direction: row;
  align-items: center;
}
.pageContainer .pageContent .highSearchBar .content {
  background: #EFF3F6;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
}
.pageContainer .pageContent .highSearchBar .content .label {
  font-size: 12px;
  color: #333;
  margin-right: 10px;
  line-height: 32px;
  margin-top: 16px;
}
.pageContainer .pageContent .highSearchBar .content .controls {
  width: 200px;
  margin-right: 10px;
  margin-top: 16px;
}
.pageContainer .pageContent .highSearchBar .content .controls:last-child {
  margin-right: 0;
}
.pageContainer .pageContent .highSearchBar .content .controls.combo-input-search-button {
  width: 300px;
}
.pageContainer .pageContent .highSearchBar .content .controls.icon-button, .pageContainer .pageContent .highSearchBar .content .controls.combo-radiobutton {
  width: auto;
}
.pageContainer .pageContent .highSearchBar .content .controls.dateField.range {
  width: 230px;
}
.pageContainer .pageContent .highSearchBar .content .controls.combobox {
  width: 150px;
}
.pageContainer .pageContent .highSearchBar .content .controls.button {
  width: auto;
}
.pageContainer .pageContent .highSearchBar .content .controls.input-search-button {
  padding-left: 15px;
  width: 160px;
}
.pageContainer .pageContent .highSearchBar .content .controls.rf {
  margin-left: 10px;
  margin-right: 0;
  float: right;
}
.pageContainer .pageContent .highSearchBar .content .controls.rf:last-child {
  margin-left: 0;
}
.pageContainer .pageContent .highSearchBar .content .controls.rf.input-search-button {
  padding-left: 15px;
  padding-right: 0;
}
.pageContainer .pageContent .digital {
  height: 16px;
  line-height: 16px;
  padding: 0 8px;
  margin-left: 5px;
  border-radius: 8px;
  background-color: #E4E7ED;
  font-size: 12px;
  color: #999;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.pageContainer .pageContent .tabBar {
  width: 100%;
  background-color: #fff;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 5px;
}
.pageContainer .pageContent .tabBar .content {
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #DADADA;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.pageContainer .pageContent .tabBar .content .tabItem {
  color: #606266;
  font-size: 12px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  flex-shrink: 0;
  /* margin-left: 10px; */
  margin-right: -1px;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: -1px;
  border: solid 1px #DADADA;
  min-width: 88px;
  text-align: center;
  background-color: #EFF3F6;
}
.pageContainer .pageContent .tabBar .content .tabItem.active {
  color: #25CED1;
  font-weight: 500;
  border-top: solid 2px #25CED1;
  background-color: #FFF;
  border-bottom: solid 1px #FFF;
}
.pageContainer .pageContent .tabBar .content .tabItem .num {
  display: inline-block;
  width: 29px;
  height: 16px;
  border-radius: 8px;
  background-color: #E4E7ED;
  font-size: 14px;
  line-height: 16px;
  font-size: 12px;
  text-align: center;
  font-family: PingFangSC-Medium;
  /* margin-left: -40px; */
  position: relative;
  bottom: 2px;
  margin-left: 5px;
}
.pageContainer .pageContent .summaryBar {
  width: 100%;
  padding-left: 16px;
  background-color: #fff;
  padding-bottom: 10px;
}
.pageContainer .pageContent .summaryBar .text {
  color: #222;
  font-size: 12px;
}
.pageContainer .pageContent .summaryBar .num {
  color: #25CED1;
  font-size: 16px;
  font-weight: bold;
}
.pageContainer .pageContent .split_line {
  width: 100%;
  height: 10px;
}
.pageContainer .pageContent .number {
  height: 16px;
  line-height: 16px;
  padding: 0 8px;
  margin-left: 5px;
  border-radius: 8px;
  background-color: #E4E7ED;
  font-size: 12px;
  color: #999;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.pageContainer .pageContent .listPage {
  width: 100%;
  background-color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: space-between;
  align-content: space-between;
}
.pageContainer .pageContent .listPage .tableContainer {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.pageContainer .pageContent .listPage .pageButton {
  padding: 20px 15px;
}
.pageContainer .pageContent .listPage .pageButton .rf {
  float: right;
}
.pageContainer .pageContent .listPage .pageButton:after {
  content: "";
  display: table;
  clear: both;
}
.pageContainer .pageContent .page-body {
  width: 100%;
  margin-bottom: 10px;
  padding: 30px 25px 40px;
  background-color: #FFF;
}
.pageContainer .searchBar ~ .navbar ~ .listPage {
  min-height: -webkit-calc(100% - 146px);
  min-height: -moz-calc(100% - 146px);
  min-height: calc(100% - 146px);
}
.pageContainer .pageMenu ~ .tab-page {
  height: -webkit-calc(100% - 40px);
  height: -moz-calc(100% - 40px);
  height: calc(100% - 40px);
}
.pageContainer .pageTitle ~ .tab-page {
  height: -webkit-calc(100% - 63px);
  height: -moz-calc(100% - 63px);
  height: calc(100% - 63px);
}
.pageContainer .pageTitle ~ .tab-page .pageContent {
  overflow-y: visible;
}
.pageContainer .pageTitle ~ .tab-page .pageContent .listPage {
  margin-bottom: 10px;
}
.pageContainer.mainContainer {
  width: 1200px;
  margin: 0 auto;
}
.pageContainer.mainContainer .pageTitle {
  padding: 15px 0 20px;
}
.pageContainer .hsh-main {
  width: 1200px;
  margin: 0 auto;
}
.pageContainer .hsh-main .pageTitle {
  padding: 15px 0 20px;
}
.pageContainer .mainBar {
  width: 980px;
}

.hsh-dialog .personal-data-left {
  margin-right: 30px;
  text-align: center;
}
.hsh-dialog .personal-data-left .userImg {
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #535353;
  font-family: "PingFang SC Medium";
  font-size: 38px;
  color: #FFF;
}
.hsh-dialog .personal-data-left > * {
  white-space: nowrap;
}
.hsh-dialog .personal-data-left .button {
  height: 32px;
  line-height: 30px;
  margin: 0 5px;
  border: 1px solid #DCDFE6;
  font-family: "PingFang SC Medium";
  font-size: 13px;
  color: #25CED1;
}
.hsh-dialog .personal-data-right {
  width: 700px;
}
.hsh-dialog .personal-data-right .controls.hsh-textarea {
  height: 120px;
}
.hsh-dialog .personal-data-right .controls.button {
  width: 120px;
  margin-right: 25px;
}
.hsh-dialog .personal-data-right .controls.combobox .drop-icon {
  background: url("../../images/ic_mine_shape.png") no-repeat center;
  background-size: 8px;
}

.navbar {
  width: 100%;
  height: 56px;
  line-height: 54px;
  padding: 0 25px;
  background-color: #FFF;
  border-bottom: 2px solid #E4E7ED;
  display: flex;
}
.navbar .label {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  position: relative;
}
.navbar .label:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 5;
}
.navbar .active .label {
  font-family: "PingFang SC Medium";
  color: #1989FA;
}
.navbar .active .label:after {
  background-color: #1989FA;
}

.controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.label {
  height: 32px;
  line-height: 32px;
  font-size: 12px;
  color: #666;
}
.controls.button {
  min-width: 60px;
  height: 32px;
  line-height: 32px;
  padding: 0 12px;
  margin-right: 10px;
  background-color: #FFF;
  border-radius: 0px;
  border: 1px solid #DADADA;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.button.icon {
  min-width: 32px;
}
.controls.button:last-child {
  margin-right: 0;
}
.controls.button.btn-primary {
  border-color: #25CED1;
  color: #25CED1;
  background-color: #FFF;
}
.controls.button.btn-danger {
  border-color: #D0021B;
  color: #D0021B;
  background-color: #FFF;
}
.controls.button.btn-success {
  border-color: #5cb85c;
  background-color: #5cb85c;
  color: #FFF;
}
.controls.button.btn-info {
  border-color: #5bc0de;
  color: #5bc0de;
  background-color: #FFF;
}
.controls.button.btn-warning {
  border-color: #f0ad4e;
  color: #f0ad4e;
  background-color: #FFF;
}
.controls.button.btn-link {
  border-color: #337ab7;
  color: #337ab7;
  background-color: #FFF;
}
.controls.button.active {
  border-color: #25CED1;
  color: #25CED1;
  background-color: #FFF;
}
.controls.button.cancel {
  border-color: #25CED1;
  color: #25CED1;
}
.controls.button.tint-active {
  border-color: #CAE3FC;
  background-color: #E6F1FC;
  color: #25CED1;
}
.controls.button.import {
  border-color: #25CED1;
  background-color: #25CED1;
  color: #FFF;
}
.controls.button.grey {
  background-color: #CCD6E6;
  border-color: #CCD6E6;
}
.controls.button.default {
  border-color: #D7D7D7;
  color: #999;
}
.controls.button.red {
  border-color: #D0021B;
  background-color: #D0021B;
  color: #FFF;
}
.controls.button .icon-add {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_work_add.png") no-repeat center;
  background-size: 100%;
}
.controls.button .download-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_task_import.png") no-repeat center;
  background-size: 100%;
}
.controls.button .export-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_api_export.png") no-repeat center;
  background-size: 100%;
}
.controls.button .transfer-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_module_transfer.png") no-repeat center;
  background-size: 100%;
}
.controls.button .delete-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_task_delete.png") no-repeat center;
  background-size: 100%;
}
.controls.button .gengUs-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_module_update.png") no-repeat center;
  background-size: 100%;
}
.controls.button .setting_icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_set_white.png") no-repeat center;
  background-size: 100%;
}
.controls.button .xls-export-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_export.png") no-repeat center;
  background-size: 100%;
}
.controls.button .open-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_open.png") no-repeat center;
  background-size: 100%;
}
.controls.button .close-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_close.png") no-repeat center;
  background-size: 100%;
}
.controls.button .text {
  margin-left: 5px;
  font-size: 12px;
  margin-right: 5px;
}
.controls.combobox {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border-radius: 0px;
  background-color: #FFF;
  border: 1px solid #DADADA;
  cursor: pointer;
  position: relative;
}
.controls.combobox:hover {
  border-color: #C0C4CC;
}
.controls.combobox.openDrop {
  border-color: #25CED1;
}
.controls.combobox.openDrop .drop-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.controls.combobox .label-field {
  font-size: 12px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: block;
  line-height: 30px;
  width: 0;
  flex: 1;
}
.controls.combobox .label-field.placeholder {
  color: #999;
}
.controls.combobox.enabled {
  background-color: #F3f3f3;
}
.controls.combobox.enabled .label-field {
  color: #999;
}
.controls.combobox .drop-list {
  width: 100% !important;
  max-height: 272px;
  margin-top: 32px;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  overflow-y: auto;
  position: absolute;
  left: 0;
  z-index: 100000;
}
.controls.combobox .drop-list .search-box {
  width: 100%;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.combobox .drop-list .search-box:hover {
  background-color: #FFF;
}
.controls.combobox .drop-list .search-box .icon {
  width: 30px;
  background: url("../images/icon/ic_search.png") no-repeat center;
  background-size: 14px;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.combobox .drop-list .search-box input {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  padding-left: 2px;
  font-size: 12px;
  color: #333;
}
.controls.combobox .drop-list li {
  height: 32px;
  padding-left: 10px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.combobox .drop-list li span {
  display: inline-block;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.controls.combobox .drop-list li:hover {
  background-color: #25CED1;
  color: #FFF;
}
.controls.combobox .drop-list li.on {
  background-color: #25CED1;
  font-family: "PingFang SC Medium";
  color: #FFF;
}
.controls.combobox .drop-list::-webkit-scrollbar:horizontal {
  height: 8px;
}
.controls.combobox .drop-list::-webkit-scrollbar {
  width: 8px;
}
.controls.checked-combobox {
  width: 100%;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 0px;
  border: 1px solid #DADADA;
  cursor: pointer;
  position: relative;
}
.controls.checked-combobox:hover {
  border-color: #C0C4CC;
}
.controls.checked-combobox.openDrop {
  border-color: #25CED1;
}
.controls.checked-combobox.openDrop .drop-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.controls.checked-combobox .label-field {
  width: 100%;
  font-size: 12px;
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.checked-combobox .label-field.items-show {
  padding-bottom: 4px;
}
.controls.checked-combobox .label-field .placeholder {
  color: #999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.checked-combobox .label-field .items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.controls.checked-combobox .label-field .items .item {
  margin-top: 4px;
  margin-right: 10px;
  padding-left: 8px;
  padding-right: 6px;
  background-color: #f4f4f5;
  border: 1px solid #e9e9eb;
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.checked-combobox .label-field .items .item .text {
  margin-right: 6px;
  font-size: 12px;
  color: #333;
}
.controls.checked-combobox .label-field .items .item .del {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background-image: url("../images/icon/ic_checked_combobox_delete.png");
  background-size: 100%;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.checked-combobox .label-field .items .item .del:hover {
  background-image: url("../images/icon/ic_checked_combobox_delete_over.png");
  background-size: 100%;
}
.controls.checked-combobox.enabled {
  background-color: #F3f3f3;
}
.controls.checked-combobox.enabled .label-field {
  color: #999;
}
.controls.checked-combobox .drop-list {
  width: 100% !important;
  max-height: 272px;
  margin-top: 32px !important;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  overflow-y: auto;
  position: absolute;
  left: 0;
  z-index: 100000;
}
.controls.checked-combobox .drop-list li {
  line-height: 32px;
  padding-left: 15px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.controls.checked-combobox .drop-list li:hover {
  background-color: #25CED1;
  color: #FFF;
}
.controls.checked-combobox .drop-list li.on {
  background-color: #25CED1;
  font-family: "PingFang SC Medium";
  color: #FFF;
}
.controls.checked-combobox .drop-list li.on .selected {
  display: block;
}
.controls.checked-combobox .drop-list li .selected {
  display: none;
  width: 24px;
  margin-right: 10px;
  background: url(../images/icon/ic_combobox_select.png) no-repeat center;
  background-size: 12px 9px;
}
.controls.checked-combobox .drop-list::-webkit-scrollbar:horizontal {
  height: 8px;
}
.controls.checked-combobox .drop-list::-webkit-scrollbar {
  width: 8px;
}
.controls.dateField {
  width: 100%;
  height: 32px;
  border-radius: 0px;
  border: 1px solid #DADADA;
  cursor: pointer;
  position: relative;
  background-color: #fff;
}
.controls.dateField .labelField {
  width: 100%;
  padding: 0 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.dateField .icon {
  width: 14px;
  height: 14px;
  background: url(../images/icon/ic_date_two.png) no-repeat center;
  background-size: 100%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.dateField .date {
  width: 100%;
  height: 100%;
  padding: 0 5px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.controls.dateField .line {
  width: 10px;
  height: 2px;
  background-color: #333;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.dateField.enabled {
  background-color: #F3f3f3;
}
.controls.dateField.enabled .date {
  color: #999;
  background: transparent;
}
.controls.dateField.enabled .line {
  background-color: #ddd;
}
.controls.dateField.range .drop {
  width: 582px;
}
.controls.dateField.range .date {
  text-align: center;
}
.controls.dateField.datetime.range .drop {
  width: 822px;
}
.controls.dateField.datetime .drop {
  width: 412px;
}
.controls.dateField.datetime .drop .box {
  width: 100%;
  margin-right: 16px;
  margin-top: 23px;
  float: left;
}
.controls.dateField.datetime .drop .box:last-child {
  margin-right: 0;
}
.controls.dateField.datetime .drop .box .title {
  line-height: normal;
  text-align: center;
  font-size: 12px;
  color: #333;
}
.controls.dateField.datetime .drop .box .bar {
  width: 100%;
  height: 220px;
  padding: 0 15px;
  margin-top: 15px;
  border-radius: 2px;
  border-top: solid 1px #D7D7D7;
  overflow: hidden;
  position: relative;
}
.controls.dateField.datetime .drop .box .bar .item-picker {
  height: 210px;
}
.controls.dateField.datetime .drop .box .bar ul {
  width: 100%;
}
.controls.dateField.datetime .drop .box .bar ul li {
  line-height: 30px;
  height: 30px;
  text-align: center;
  margin-top: 0;
  font-size: 12px;
  color: #C0C4CC;
  cursor: pointer;
}
.controls.dateField.datetime .drop .box .bar ul li.selected {
  color: #333;
}
.controls.dateField.dateField-width {
  width: 100%;
}
.controls.dateField .centerline:before {
  content: "";
  width: 1px;
  height: 100%;
  border-left: 1px solid #E4E4E4;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.controls.dateField .drop {
  margin-top: 32px;
  margin-bottom: 0px;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  position: absolute;
  background-color: #FFF;
  z-index: 100000;
}
.controls.dateField .drop .datetime-content {
  width: 100%;
  position: relative;
}
.controls.dateField .drop .datetime-footer {
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  border-top: 1px solid #D7D7D7;
  font-size: 12px;
}
.controls.dateField .drop .datetime-footer div:first-child {
  font-size: 12px;
  color: #25CED1;
}
.controls.dateField .drop .datetime-footer div:last-child {
  font-size: 12px;
  color: #303133;
}
.controls.dateField .drop .date-module {
  width: 290px;
  padding: 5px 5px;
}
.controls.dateField .drop .date-module .year-month {
  width: 100%;
  height: 30px;
  font-size: 12px;
  color: #606266;
  position: relative;
  line-height: 30px;
}
.controls.dateField .drop .date-module .year-month .pre-button {
  position: absolute;
  top: 0;
  left: 0;
}
.controls.dateField .drop .date-module .year-month .pre-button .pre-year {
  float: left;
  width: 30px;
  text-align: center;
}
.controls.dateField .drop .date-module .year-month .pre-button .pre-year:hover {
  color: #25CED1;
}
.controls.dateField .drop .date-module .year-month .pre-button .pre-month {
  width: 30px;
  height: 30px;
  text-align: center;
  float: left;
}
.controls.dateField .drop .date-module .year-month .pre-button .pre-month:hover {
  color: #25CED1;
}
.controls.dateField .drop .date-module .year-month .next-button {
  position: absolute;
  top: 0;
  right: 0;
}
.controls.dateField .drop .date-module .year-month .next-button .next-year {
  width: 30px;
  height: 30px;
  text-align: center;
  float: right;
}
.controls.dateField .drop .date-module .year-month .next-button .next-year:hover {
  color: #25CED1;
}
.controls.dateField .drop .date-module .year-month .next-button .next-month {
  float: right;
  width: 30px;
  text-align: center;
}
.controls.dateField .drop .date-module .year-month .next-button .next-month:hover {
  color: #25CED1;
}
.controls.dateField .drop .date-module .year-month .text {
  clear: both;
  margin: 0 auto;
  width: 120px;
  text-align: center;
}
.controls.dateField .drop .date-module .weeks {
  width: 100%;
  margin-bottom: 5px;
}
.controls.dateField .drop .date-module .weeks ul {
  width: 100%;
  height: 30px;
  border-bottom: solid 1px #D7D7D7;
}
.controls.dateField .drop .date-module .weeks ul li {
  margin-top: 0;
  color: #606266;
  cursor: default;
}
.controls.dateField .drop .date-module ul {
  width: 100%;
}
.controls.dateField .drop .date-module ul:after {
  content: "";
  display: table;
  clear: both;
}
.controls.dateField .drop .date-module ul.months {
  padding-left: 20px;
  padding-right: 20px;
  border-top: solid 1px #EEE;
  margin-top: 15px;
}
.controls.dateField .drop .date-module ul.months .month {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
  color: #606266;
  float: left;
}
.controls.dateField .drop .date-module ul.months .month:hover {
  color: #25CED1;
}
.controls.dateField .drop .date-module ul.months .month.selected {
  color: #25CED1;
}
.controls.dateField .drop .date-module ul li {
  width: 40px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
  color: #C0C4CC;
  float: left;
}
.controls.dateField .drop .date-module ul li.days {
  color: #606266;
}
.controls.dateField .drop .date-module ul li.days:hover {
  color: #25CED1;
}
.controls.dateField .drop .date-module ul li.days.selected {
  background-color: #F2F6FC;
}
.controls.dateField .drop .date-module ul li.days.disable {
  color: #C0C4CC;
}
.controls.dateField .drop .date-module ul li.days.over {
  background-color: #F2F6FC;
}
.controls.dateField .drop .date-module ul li.active {
  font-weight: 700;
  color: #25CED1;
}
.controls.dateField .drop .date-module ul li.over-start-date {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.controls.dateField .drop .date-module ul li.over-end-date {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.controls.dateField .drop .date-module ul li.start-date {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding-left: 5px;
  padding-top: 2.5px;
}
.controls.dateField .drop .date-module ul li.start-date div {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  background-color: #25CED1;
  color: #FFF;
}
.controls.dateField .drop .date-module ul li.end-date {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-left: 10px;
  padding-top: 2.5px;
}
.controls.dateField .drop .date-module ul li.end-date div {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  background-color: #25CED1;
  color: #FFF;
}
.controls.hsh-time {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border-radius: 0px;
  border: 1px solid #DADADA;
  background: #FFF;
  cursor: pointer;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.hsh-time .icon {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  background: url("../images/icon/ic_time.png") no-repeat center;
  background-size: 100%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.hsh-time .time {
  width: 100%;
  height: 100%;
  padding: 0 5px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.controls.hsh-time .text {
  font-size: 12px;
  color: #333;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.hsh-time.range .time {
  text-align: center;
}
.controls.hsh-time .timer-picker {
  width: 280px;
  height: 306px;
  background-color: #FFF;
  border-radius: 2px;
  border: 1px solid #E4E7ED;
  cursor: default;
  position: absolute;
  left: 0;
  z-index: 99999;
}
.controls.hsh-time .timer-picker.top {
  -webkit-box-shadow: 0 -2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 -2px 12px 0 rgba(0, 0, 0, 0.06);
  bottom: 32px;
}
.controls.hsh-time .timer-picker.bottom {
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  top: 32px;
}
.controls.hsh-time .timer-picker .timer-picker-content {
  padding: 15px;
  overflow: hidden;
}
.controls.hsh-time .timer-picker .timer-picker-content .box {
  width: 100%;
  margin-right: 16px;
  float: left;
}
.controls.hsh-time .timer-picker .timer-picker-content .box.range {
  width: 116px;
}
.controls.hsh-time .timer-picker .timer-picker-content .box:last-child {
  margin-right: 0;
}
.controls.hsh-time .timer-picker .timer-picker-content .box .title {
  line-height: normal;
  text-align: center;
  font-size: 12px;
  color: #333;
}
.controls.hsh-time .timer-picker .timer-picker-content .box .bar {
  width: 100%;
  height: 210px;
  padding: 0 10px;
  margin-top: 10px;
  border-radius: 2px;
  border: 1px solid #D7D7D7;
  overflow: hidden;
  position: relative;
}
.controls.hsh-time .timer-picker .timer-picker-content .box .bar.second .item-picker {
  width: 33.33%;
}
.controls.hsh-time .timer-picker .timer-picker-footer {
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  border-top: 1px solid #D7D7D7;
  font-size: 12px;
}
.controls.hsh-time .timer-picker .timer-picker-footer div:first-child {
  font-size: 14px;
  color: #25CED1;
}
.controls.hsh-time .timer-picker .timer-picker-footer div:last-child {
  font-size: 12px;
  color: #333;
}
.controls.hsh-input {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border-radius: 0px;
  border: 1px solid #DADADA;
  font-size: 12px;
  color: #333;
}
.controls.hsh-input:hover {
  border-color: #C0C4CC;
}
.controls.hsh-input:focus {
  border-color: #25CED1;
}
.controls.hsh-input.red-color {
  color: #D0021B;
}
.controls.hsh-input.enabled {
  color: #999;
  background-color: #F3f3f3;
}
.controls.hsh-textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 10px;
  border-radius: 0px;
  border: 1px solid #DADADA;
  font-size: 12px;
  color: #333;
  resize: none;
}
.controls.hsh-textarea:hover {
  border-color: #C0C4CC;
}
.controls.hsh-textarea:focus {
  border-color: #25CED1;
}
.controls.hsh-textarea.enabled {
  color: #999;
  background-color: #F3f3f3;
}
.controls.hsh-mutil-combobox {
  width: 100%;
  height: 32px;
  padding-right: 15px;
  border-radius: 0px;
  border: 1px solid #DADADA;
  cursor: pointer;
  position: relative;
}
.controls.hsh-mutil-combobox .combobox-input {
  width: 100%;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 5px;
  background-size: 14px;
  vertical-align: top;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.controls.hsh-mutil-combobox.openDrop {
  border-color: #25CED1;
}
.controls.hsh-mutil-combobox.openDrop .drop-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.controls.hsh-mutil-combobox .drop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0px;
  overflow: hidden;
  position: absolute;
  top: 32px;
  left: 0;
  z-index: 9999;
}
.controls.hsh-mutil-combobox .drop.top {
  bottom: 32px;
}
.controls.hsh-mutil-combobox .drop.bottom {
  top: 32px;
}
.controls.hsh-mutil-combobox .drop .list {
  width: 150px;
  height: 242px;
  overflow-y: scroll;
  background-color: #FFF;
  border-left: 1px solid #E4E7ED;
  border-top: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
}
.controls.hsh-mutil-combobox .drop .list:last-child {
  border-right: 1px solid #E4E7ED;
}
.controls.hsh-mutil-combobox .drop .list li {
  width: 100%;
  height: 32px;
  line-height: 32px;
  padding-left: 15px;
  padding-right: 10px;
  cursor: pointer;
}
.controls.hsh-mutil-combobox .drop .list li .item {
  height: 32px;
  padding-right: 15px;
  font-size: 12px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.controls.hsh-mutil-combobox .drop .list li .item.arrow {
  background: url("../images/icon/ic_arrow_right.png") no-repeat right;
  background-size: 14px;
}
.controls.hsh-mutil-combobox .drop .list li:hover {
  background-color: #25CED1;
  color: #FFF;
}
.controls.hsh-mutil-combobox .drop .list li.selected {
  background-color: #25CED1;
  color: #FFF;
}
.controls.hsh-mutil-combobox .drop .list li .sub-list {
  width: 150px;
  height: 242px;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  position: absolute;
  top: -1px;
  left: 149px;
  z-index: 5;
}
.controls.hsh-mutil-combobox .drop .list li .sub-list li {
  width: 100%;
  height: 32px;
  line-height: 32px;
  padding: 0 20px;
  cursor: pointer;
}
.controls.hsh-mutil-combobox .drop .list li .sub-list li .item {
  padding-right: 15px;
  font-size: 12px;
  color: #333;
}
.controls.hsh-mutil-combobox .drop .list li .sub-list li .item.arrow {
  background: url("../images/icon/ic_arrow_right.png") no-repeat right;
  background-size: 14px;
}
.controls.hsh-mutil-combobox .drop .list li .sub-list li:hover {
  background-color: #25CED1;
  color: #FFF;
}
.controls.hsh-mutil-combobox .drop .list li .sub-list li.selected {
  background-color: #25CED1;
  color: #FFF;
}
.controls.hsh-mutil-combobox .drop .list::-webkit-scrollbar {
  width: 0;
}
.controls.number {
  width: 120px;
  height: 32px;
  border-radius: 0px;
  border: 1px solid #DADADA;
  vertical-align: top;
  overflow: hidden;
}
.controls.number .clickBtn {
  width: 32px;
  height: 32px;
  line-height: 26px;
  text-align: center;
  background-color: #F5F7FA;
  cursor: not-allowed;
}
.controls.number .clickBtn.cut {
  background: #F5F7FA url("../images/icon/ic_cut_prohibit.png") no-repeat center;
  background-size: 16px;
  background-position: center;
}
.controls.number .clickBtn.add {
  background: #F5F7FA url("../images/icon/ic_plus_prohibit.png") no-repeat center;
  background-size: 12px;
  background-position: center;
}
.controls.number .clickBtn.active {
  cursor: pointer;
}
.controls.number .clickBtn.active.cut {
  background: #F5F7FA url("../images/icon/ic_cut.png") no-repeat center;
  background-size: 16px;
  background-position: center;
}
.controls.number .clickBtn.active.add {
  background: #F5F7FA url("../images/icon/ic_plus.png") no-repeat center;
  background-size: 12px;
  background-position: center;
}
.controls.number input {
  width: 54px;
  height: 100%;
  text-align: center;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
  font-size: 12px;
  color: #333;
}
.controls.progress-bar {
  width: 150px;
  height: 12px;
  border-radius: 6px;
  background-color: #F0F2F5;
}
.controls.progress-bar .progress {
  max-width: 100%;
  height: 12px;
  border-radius: 6px;
  background-color: #25CED1;
  position: relative;
}
.controls.progress-bar .progress .slider {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #E4E7ED;
  cursor: pointer;
  position: absolute;
  top: -4px;
  right: 0px;
  z-index: 10;
}
.controls.switchButton {
  width: 40px;
  height: 20px;
  background-color: #D7D7D7;
  border-radius: 20px;
  padding-top: 2px;
  padding-left: 2px;
  cursor: pointer;
}
.controls.switchButton.on {
  background-color: #25CED1;
}
.controls.switchButton.on .button {
  left: 20px;
}
.controls.switchButton .button {
  width: 16px;
  height: 16px;
  background-color: #FFF;
  border-radius: 8px;
  position: relative;
  -webkit-transition: left 0.5s;
  -o-transition: left 0.5s;
  -moz-transition: left 0.5s;
  transition: left 0.5s;
}
.controls.yesNoLabelButton {
  width: 50px;
  height: 20px;
  background-color: #D7D7D7;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
}
.controls.yesNoLabelButton.on {
  background-color: #25CED1;
}
.controls.yesNoLabelButton.on .button {
  left: 32px;
}
.controls.yesNoLabelButton.on .text {
  left: 0px;
}
.controls.yesNoLabelButton .text {
  line-height: 20px;
  text-align: center;
  width: 32px;
  color: #FFF;
  left: 16px;
  font-size: 12px;
  position: absolute;
}
.controls.yesNoLabelButton .button {
  width: 16px;
  height: 16px;
  background-color: #FFF;
  border-radius: 8px;
  position: absolute;
  top: 2px;
  left: 2px;
  -webkit-transition: left 0.5s;
  -o-transition: left 0.5s;
  -moz-transition: left 0.5s;
  transition: left 0.5s;
}
.controls.list-item {
  width: 100%;
}
.controls.list-item .item {
  height: 22px;
  line-height: 20px;
  text-align: center;
  padding: 0 6px;
  margin-right: 15px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.controls.list-item .item.border-color {
  border-color: #D7D7D7;
}
.controls.list-item .item.item-width-sm {
  min-width: 72px;
}
.controls.list-item .item.item-md {
  height: 40px;
  line-height: 38px;
  padding: 0 10px;
  margin-right: 30px;
  font-size: 16px;
}
.controls.list-item .item.item-sm {
  height: 32px;
  line-height: 30px;
  margin-right: 15px;
  font-size: 14px;
}
.controls.list-item .item:hover {
  border-color: #D7D7D7;
  background-color: #F9FAFC;
}
.controls.list-item .item.default {
  border-color: #D7D7D7;
  color: #999;
}
.controls.list-item .item.select-active {
  border-color: #25CED1;
  color: #25CED1;
}
.controls.list-item .item.active {
  border-color: #25CED1;
  background-color: #25CED1;
  color: #FFF;
}
.controls.list-item .item.tint-active {
  border-color: #CAE3FC;
  background-color: #E6F1FC;
  color: #25CED1;
}
.controls.tag-label {
  width: 100%;
}
.controls.tag-label .tag {
  height: 32px;
  line-height: 30px;
  padding-left: 10px;
  padding-right: 6px;
  margin-right: 10px;
  border-radius: 0px;
  border: 1px solid #A3D0FD;
  background-color: #E6F1FC;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.tag-label .tag .name {
  width: 100px;
  margin-right: 6px;
  background-color: #E6F1FC;
  font-size: 12px;
  color: #25CED1;
}
.controls.tag-label .tag .icon-guanbi {
  width: 16px;
  height: 16px;
  margin: 7px 0;
  background: url("../images/icon/ic_del.png") no-repeat center;
  background-size: 12px;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.tag-label .tag .icon-guanbi svg {
  display: none;
}
.controls.tag-label .tag .icon-guanbi:hover {
  background: url("../images/icon/ic_del_hover.png") no-repeat center;
  background-size: 13px;
}
.controls.tag-label .btn-add-tag {
  display: block;
  width: 90px;
  height: 32px;
  line-height: 30px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.controls.tag-label .btn-add-tag .icon-tianjia {
  width: 12px;
  height: 12px;
  margin: 9px 0;
  background: url("../images/icon/ic_plus.png") no-repeat center;
  background-size: 10px;
  vertical-align: top;
}
.controls.tag-label .btn-add-tag .icon-tianjia svg {
  display: none;
}
.controls.tag-label .add-tag-desc {
  line-height: 22px;
  margin-left: 10px;
  color: #a0a0a0;
  clear: both;
}
.controls.radio-button {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.controls.radio-button .radio-icon {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  background: url("../images/icon/ic_checkbox.png") no-repeat center;
  background-size: 100%;
}
.controls.radio-button .radio-icon.active {
  background: url("../images/icon/ic_checkbox_checked.png") no-repeat center;
  background-size: 100%;
}
.controls.radio-button .button-label {
  font-size: 12px;
  color: #333;
}
.controls.combo-radiobutton {
  border-radius: 0px;
}
.controls.combo-radiobutton .radio-list {
  min-width: 68px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  padding: 0 12px;
  border: 1px solid #DADADA;
  border-left: 0;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  position: relative;
}
.controls.combo-radiobutton .radio-list:first-child {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0px 0 0 0px;
  border-left: 1px solid #E4E7ED;
}
.controls.combo-radiobutton .radio-list:last-child {
  border-radius: 0 0px 0px 0;
}
.controls.combo-radiobutton .radio-list.active, .controls.combo-radiobutton .radio-list:hover {
  -webkit-box-shadow: -1px 0 0 0 #25CED1;
  box-shadow: -1px 0 0 0 #25CED1;
  background-color: #25CED1;
  border-color: #25CED1;
  color: #FFF;
}
.controls.combo-radiobutton .radio-list.active {
  font-family: "PingFang SC Medium";
}
.controls.combo-radiobutton .radio-list.most-active {
  background-color: #25CED1;
  color: #FFF;
}
.controls.combo-checkbox {
  width: 100%;
}
.controls.combo-checkbox .checkbox {
  min-width: 50px;
  width: 50px;
  height: 32px;
  line-height: 30px;
  text-align: center;
  margin-right: 10px;
  border-radius: 0px;
  border: 1px solid #E4E7ED;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  position: relative;
}
.controls.combo-checkbox .checkbox:last-child {
  margin-right: 0;
}
.controls.combo-checkbox .checkbox:after {
  content: "";
  display: none;
  width: 9px;
  height: 9px;
  background: url("../images/icon/ic_checked.png") no-repeat center;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.controls.combo-checkbox .checkbox.active {
  border-color: #25CED1;
}
.controls.combo-checkbox .checkbox.active:after {
  display: block;
}
.controls.combo-input-search-button {
  width: 100%;
  height: 32px;
  border-radius: 0px;
  border: 1px solid #E4E7ED;
}
.controls.combo-input-search-button .combo-box {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: 1px solid #E4E7ED;
  background-color: #F9FAFC;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.combo-input-search-button .combo-box .combo {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.combo-input-search-button .combo-box .combo .lab {
  margin-right: 6px;
  white-space: nowrap;
  font-size: 12px;
  color: #333;
  min-width: 50px;
}
.controls.combo-input-search-button .combo-box .combo .arrow {
  width: 14px;
  height: 14px;
  background: url("../images/icon/ic_down.png") no-repeat center;
  background-size: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.combo-input-search-button .combo-box .combo.openDrop .arrow {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.controls.combo-input-search-button .combo-box .drop {
  width: 100% !important;
  -webkit-box-shadow: 0 0 5px #DADADA;
  box-shadow: 0 0 5px #DADADA;
  background-color: #FFF;
  border-radius: 0px;
  position: absolute;
  top: 32px;
  left: 0;
  z-index: 10;
}
.controls.combo-input-search-button .combo-box .drop .tag {
  width: 100%;
  height: 32px;
  line-height: 32px;
  padding: 0 12px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.controls.combo-input-search-button .combo-box .drop .tag:hover {
  background-color: #25CED1;
  color: #FFF;
}
.controls.combo-input-search-button .inputBox {
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
.controls.combo-input-search-button .inputBox input {
  width: 100%;
  height: 100%;
  vertical-align: top;
  font-size: 12px;
  color: #333;
}
.controls.combo-input-search-button .search-btn {
  width: 36px;
  height: 100%;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 1px solid #E4E7ED;
  background: #F9FAFC url("../images/icon/ic_search.png") no-repeat center;
  background-size: 14px;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.input-search-button {
  width: 100%;
  height: 32px;
  border-radius: 0px;
  border: 1px solid #DADADA;
  background-color: #FFF;
  display: flex;
}
.controls.input-search-button .search-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.input-search-button .icon {
  width: 40px;
  height: 100%;
  background: url("../images/icon/ic_search.png") no-repeat center;
  background-size: 14px;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.input-search-button input {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  font-size: 12px;
  color: #333;
  padding-left: 10px;
}
.controls.input-search-button .search-result {
  width: 100%;
  background-color: #FFF;
  border: 1px solid #DADADA;
  border-radius: 0px;
  position: relative;
  left: 0;
  z-index: 100;
  overflow-y: auto;
}
.controls.input-search-button .search-result .search-result-list {
  width: 100%;
}
.controls.input-search-button .search-result .search-result-list li {
  width: 100%;
  line-height: 32px;
  padding: 0 10px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.controls.input-search-button .search-result .search-result-list li a {
  width: 100%;
}
.controls.input-search-button .search-result .search-result-list li:hover {
  background-color: #25CED1;
  color: #FFF;
}
.controls.input-search-button .drop-search-list {
  width: 100%;
  padding: 5px 0;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  border-radius: 4px;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 100;
}
.controls.input-search-button .drop-search-list li {
  width: 100%;
  line-height: 32px;
  padding: 0 10px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.controls.input-search-button .drop-search-list li a {
  width: 100%;
}
.controls.input-search-button .drop-search-list li:hover {
  background-color: #F0F2F5;
}
.controls.page {
  line-height: 28px;
  text-align: center;
  padding: 10px 0 10px;
  margin-right: 16px;
  font-size: 12px;
  color: #333;
}
.controls.page a {
  display: inline-block;
  min-width: 30px;
  height: 30px;
  margin: 0 1px;
  vertical-align: middle;
  padding-left: 5px;
  cursor: pointer;
}
.controls.page a:hover {
  text-decoration: none;
  color: #25CED1;
}
.controls.page .prev {
  background: url("../images/icon/ic_prev.png") no-repeat center;
  background-size: 14px;
}
.controls.page .prev.active {
  background: url("../images/icon/ic_prev_prohibit.png") no-repeat center;
  background-size: 14px;
  cursor: not-allowed;
}
.controls.page .next {
  background: url("../images/icon/ic_next.png") no-repeat center;
  background-size: 14px;
}
.controls.page .next.active {
  background: url("../images/icon/ic_next_prohibit.png") no-repeat center;
  background-size: 14px;
  cursor: not-allowed;
}
.controls.page .on {
  color: #25CED1;
}
.controls.page .end {
  margin-right: 10px;
}
.controls.page .inputPage {
  display: inline-block;
  width: 60px;
  height: 30px;
  text-align: center;
  margin: 0 5px;
  outline: none;
  vertical-align: bottom;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
  font-size: 12px;
  color: #333;
}
.controls.page:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #E4E7ED;
}
.controls.page .ok {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 15px;
  vertical-align: middle;
  cursor: pointer;
  background-color: #FFF;
}
.controls.page .ok:hover {
  color: #25CED1;
}
.controls.page .toLabel {
  display: inline-block;
  line-height: 30px;
  vertical-align: middle;
  font-size: 12px;
  color: #333;
}
.controls.page .all {
  margin-right: 15px;
}
.controls.page .sizes-box {
  margin: 0 10px;
}
.controls.page .sizes-box .sizes {
  width: 60px;
  height: 30px;
  padding-left: 10px;
  padding-right: 5px;
  margin: 0 5px;
  border-radius: 0px;
  border: 1px solid #E4E7ED;
  cursor: pointer;
  position: relative;
}
.controls.page .sizes-box .sizes .icon {
  width: 14px;
  height: 30px;
  background: url("../images/icon/ic_down.png") no-repeat center;
  background-size: 100%;
  position: absolute;
  right: 5px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}
.controls.page .sizes-box .sizes .icon.open {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.controls.page .sizes-box .sizes input {
  width: 100%;
  height: 100%;
  padding-right: 16px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.controls.page .sizes-box .sizes .sizes-list {
  width: 100%;
  background-color: #FFF;
  border-radius: 3px;
  border: 1px solid #E4E7ED;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 10;
}
.controls.page .sizes-box .sizes .sizes-list .list {
  width: 100%;
}
.controls.page .sizes-box .sizes .sizes-list .list li {
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  color: #333;
}
.controls.page .sizes-box .sizes .sizes-list .list li:hover {
  background-color: #25CED1;
  color: #FFF;
}
.controls.imagesupload {
  max-width: 342px;
  width: 100%;
  padding-bottom: 5px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.controls.imagesupload .img, .controls.imagesupload .add-img {
  width: 94px;
  height: 94px;
  margin-right: 20px;
  margin-bottom: 15px;
  border: 1px solid #E4E7ED;
  position: relative;
}
.controls.imagesupload .img img, .controls.imagesupload .add-img img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.controls.imagesupload .img .delete, .controls.imagesupload .add-img .delete {
  width: 16px;
  height: 16px;
  background: url(../images/icon/ic_delete.png) no-repeat center;
  background-size: 8px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10;
}
.controls.imagesupload .img .delete:hover, .controls.imagesupload .add-img .delete:hover {
  background-color: #DBD9D9;
  border-radius: 50%;
}
.controls.imagesupload .add-img {
  line-height: 92px;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  color: #D7D7D7;
  cursor: pointer;
}
.controls.imageupload, .controls.videoupload {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  border: 1px solid #E4E7ED;
  position: relative;
  cursor: pointer;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.controls.imageupload.change .cover, .controls.videoupload.change .cover {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.controls.imageupload.change .cover .text, .controls.videoupload.change .cover .text {
  background-color: #ffffff;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 14px;
}
.controls.imageupload.change .placeholder, .controls.videoupload.change .placeholder {
  position: absolute;
  bottom: 0px;
  font-size: 10px;
  color: #999;
  background: #FFF;
  width: 100%;
  text-align: center;
}
.controls.imageupload .placeholder, .controls.videoupload .placeholder {
  position: absolute;
  bottom: 0px;
  font-size: 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  text-align: center;
}
.controls.imageupload video, .controls.videoupload video {
  width: 100%;
  height: 100%;
}
.controls.imageupload.img-mini, .controls.videoupload.img-mini {
  width: 32px;
  height: 32px;
}
.controls.imageupload.img-mini .cover, .controls.videoupload.img-mini .cover {
  background-color: rgba(0, 0, 0, 0.3);
}
.controls.imageupload.img-mini .cover .text, .controls.videoupload.img-mini .cover .text {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  line-height: 40px;
  height: 40px;
  width: 40px;
  font-size: 12px;
  color: #fff;
}
.controls.imageupload.img-sm, .controls.videoupload.img-sm {
  width: 120px;
  height: 120px;
}
.controls.imageupload.img-md, .controls.videoupload.img-md {
  width: 150px;
  height: 150px;
}
.controls.imageupload.img-lg, .controls.videoupload.img-lg {
  width: 200px;
  height: 200px;
}
.controls.imageupload img, .controls.videoupload img {
  width: 80%;
  height: 80%;
}
.controls.imageupload .cover, .controls.videoupload .cover {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ffffff;
}
.controls.imageupload .cover .text, .controls.videoupload .cover .text {
  text-align: center;
  height: 50px;
  width: 50px;
  font-size: 24px;
  line-height: 50px;
  color: #999;
}
.controls.imageupload .delete, .controls.videoupload .delete {
  width: 16px;
  height: 16px;
  background: url(../images/icon/ic_delete.png) no-repeat center;
  background-size: 8px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10;
}
.controls.imageupload .delete:hover, .controls.videoupload .delete:hover {
  background-color: #DBD9D9;
  border-radius: 50%;
}
.controls.videoupload.img-sm .text {
  margin-top: 15px;
}
.controls.videoupload.img-md .text {
  margin-top: 60px;
}
.controls.videoupload.img-lg .text {
  margin-top: 85px;
}
.controls.text-editor {
  width: 100%;
  height: 32px;
  border-radius: 0px;
  border: 1px solid #DADADA;
}
.controls.text-editor input {
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  border-radius: 0px;
  font-size: 12px;
  color: #333;
}
.controls.text-editor .text {
  display: block;
  width: 100%;
  min-height: 30px;
  line-height: 30px;
  padding: 0 10px;
  font-size: 12px;
  color: #333;
}
.controls.popupButton {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border-radius: 0px;
  border: 1px solid #DADADA;
  cursor: pointer;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.popupButton:hover {
  border-color: #C0C4CC;
}
.controls.popupButton .label {
  width: 100%;
  height: 100%;
  font-size: 12px;
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.popupButton.openDrop {
  border-color: #25CED1;
}
.controls.popupButton.openDrop .drop-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.controls.popupButton .drop-icon {
  width: 14px;
  height: 14px;
  background: url(../images/icon/ic_down.png) no-repeat center;
  background-size: 100% 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.popupButton .drop-button-list {
  width: 100% !important;
  max-height: 240px;
  border: solid 1px #E4E7ED;
  background-color: #FFF;
  overflow-y: auto;
  border-radius: 0px;
  position: absolute;
  left: 0;
  z-index: 100000;
}
.controls.popupButton .drop-button-list li {
  line-height: 32px;
  padding: 0 10px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.controls.popupButton .drop-button-list li:hover, .controls.popupButton .drop-button-list li.on {
  background-color: #25CED1;
  color: #FFF;
}
.controls.combotree {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border-radius: 0px;
  border: 1px solid #E4E7ED;
  cursor: pointer;
  position: relative;
  background: #FFF;
}
.controls.combotree:hover {
  border-color: #C0C4CC;
}
.controls.combotree.openDrop {
  border-color: #25CED1;
}
.controls.combotree.openDrop .drop-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.controls.combotree.combobox-width-xs {
  width: 88px;
}
.controls.combotree.combobox-width {
  width: 100%;
}
.controls.combotree.combobox-width-auto {
  width: auto;
}
.controls.combotree .label-field {
  width: 100%;
  line-height: 30px;
  font-size: 12px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.controls.combotree .label-field.placeholder {
  color: #999;
}
.controls.combotree .tree-drop {
  width: 100% !important;
  margin-top: 32px;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  position: absolute;
  left: 0;
  z-index: 100000;
}
.controls.combotree .tree-drop .tree-body {
  width: 100%;
  height: 320px;
  overflow-y: auto;
}
.controls.combotree .tree-drop .tree-body.radio {
  height: 360px;
}
.controls.combotree .tree-drop .tree-footer {
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  border-top: 1px solid #E4E7ED;
  font-size: 12px;
}
.controls.combotree .tree-drop .tree-footer div:first-child {
  font-size: 14px;
  color: #25CED1;
}
.controls.combotree .tree-drop .tree-footer div:last-child {
  font-size: 12px;
  color: #333;
}
.controls.rateField {
  width: 100%;
}
.controls.rateField .starContent {
  margin-right: 10px;
  cursor: pointer;
}
.controls.rateField .starContent .star_disable {
  position: absolute;
  pointer-events: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.rateField .starContent .slider {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}
.controls.rateField .starContent .slider .star_active {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.rateField .point {
  font-size: 14px;
  color: rgb(255, 153, 0);
}
.controls.calendar {
  width: 820px;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.controls.calendar .date-header {
  width: 100%;
  padding: 10px 20px;
  border-bottom: 1px solid #E4E7ED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.controls.calendar .date-header .title {
  font-size: 12px;
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.calendar .date-header .radio-list {
  height: 28px;
  line-height: 26px;
  font-size: 12px;
}
.controls.calendar .date-body {
  width: 100%;
  padding: 12px 20px 35px;
}
.controls.calendar .date-body .weeks {
  width: 100%;
}
.controls.calendar .date-body .weeks ul {
  width: 100%;
  height: 48px;
}
.controls.calendar .date-body .weeks ul li {
  height: 48px;
  line-height: 48px;
  padding: 0;
  text-align: center;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #E4E7ED;
  cursor: default;
}
.controls.calendar .date-body .weeks ul li:last-child {
  border-right: none;
}
.controls.calendar .date-body ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.controls.calendar .date-body ul li {
  width: 111px;
  height: 85px;
  padding: 8px;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
  font-size: 17px;
  color: #333;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.calendar .date-body ul li:nth-child(7n) {
  border-right: 1px solid #E4E7ED;
}
.controls.calendar .date-body ul li:hover {
  background-color: #f2f8fe;
}
.controls.calendar .date-body ul li.today {
  color: #409eff;
}
.controls.calendar .date-body ul li.active {
  background-color: #f2f8fe;
  color: #25CED1;
}
.controls.calendar .date-body ul li.pre, .controls.calendar .date-body ul li.next {
  color: #c0c4cc;
}
.controls.hsh-select-box {
  display: inline-block;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.06);
}
.controls.hsh-select-box .select-list {
  width: 100%;
  padding: 5px 0;
}
.controls.hsh-select-box .select-list .row {
  height: 34px;
  padding: 0 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.hsh-select-box .select-list .row:hover {
  background-color: #E9F7FE;
}
.controls.hsh-select-box .select-list .row.active {
  background-color: #E9F7FE;
}
.controls.hsh-select-box .select-list .row.active .label {
  color: #25CED1;
}
.controls.hsh-select-box .select-list .row.active .select {
  background: url("../images/icon/ic_checked.png") no-repeat center;
  background-size: 100%;
}
.controls.hsh-select-box .select-list .row .select {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background: url("../images/icon/ic_select.png") no-repeat center;
  background-size: 100%;
}
.controls.hsh-select-box .select-list .row .label {
  font-size: 14px;
  color: #999;
}
.controls.hsh-select-box .select-foot {
  padding: 10px;
  border-top: 1px solid #E4E7ED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.hsh-select-box .select-foot .label {
  font-size: 14px;
  color: #25CED1;
  cursor: pointer;
}
.controls.net {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #E4E7ED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.net .net-prepend {
  padding: 0 15px;
  background-color: #F5F7FA;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  white-space: nowrap;
  font-size: 14px;
  color: #999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.net input {
  width: 100%;
  padding: 0 15px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  font-size: 14px;
  color: #999;
}
.controls.icon-button {
  min-width: 80px;
  height: 32px;
  line-height: 30px;
  padding: 0 12px;
  background-color: #FFF;
  border-radius: 0px;
  border: 1px solid #E4E7ED;
  cursor: pointer;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.icon-button.button-blue {
  background-color: #1989FA;
  border-color: #1989FA;
}
.controls.icon-button.button-blue .icon-add {
  background: url("../images/icon/ic_api_add.png") no-repeat center;
  background-size: 100%;
}
.controls.icon-button.button-blue .transfer-icon {
  background: url("../images/icon/ic_module_transfer_white.png") no-repeat center;
  background-size: 100%;
}
.controls.icon-button.button-blue .text {
  color: #FFF;
}
.controls.icon-button.button-red {
  background-color: #D0021B;
  border-color: #D0021B;
}
.controls.icon-button.button-red .delete-icon {
  background: url("../images/icon/ic_task_delete_white.png") no-repeat center;
  background-size: 100%;
}
.controls.icon-button.button-red .text {
  color: #FFF;
}
.controls.icon-button.button-grey {
  background-color: #F0F2F5;
  border-color: #F0F2F5;
}
.controls.icon-button .icon-add {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_work_add.png") no-repeat center;
  background-size: 100%;
}
.controls.icon-button .download-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_task_import.png") no-repeat center;
  background-size: 100%;
}
.controls.icon-button .export-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_api_export.png") no-repeat center;
  background-size: 100%;
}
.controls.icon-button .transfer-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_module_transfer.png") no-repeat center;
  background-size: 100%;
}
.controls.icon-button .delete-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_task_delete.png") no-repeat center;
  background-size: 100%;
}
.controls.icon-button .gengUs-icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_module_update.png") no-repeat center;
  background-size: 100%;
}
.controls.icon-button .setting_icon {
  width: 12px;
  height: 12px;
  background: url("../images/icon/ic_set.png") no-repeat center;
  background-size: 100%;
}
.controls.icon-button .text {
  margin-left: 5px;
  font-size: 12px;
  color: #999;
}
.controls.input-number {
  width: 100%;
  height: 32px;
  border-radius: 0px;
  border: 1px solid #E4E7ED;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.input-number input {
  width: 100%;
  padding: 0 10px;
  border-radius: 0px;
  font-size: 12px;
  color: #333;
}
.controls.input-number .unit {
  display: flex;
  align-items: center;
  margin-right: 10px;
  font-size: 12px;
  color: #A6AAAE;
  white-space: nowrap;
}
.controls.input-number .buttonGroup {
  width: 40px;
  background-color: #FBFBFB;
  border-left: 1px solid #E4E7ED;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.input-number .buttonGroup .arrow-up {
  width: 100%;
  height: 15px;
  border-bottom: 1px solid #D8DCE6;
  background: url("../images/icon/ic_finance_up.png") no-repeat center;
  background-size: 12px;
  cursor: not-allowed;
}
.controls.input-number .buttonGroup .arrow-up.active {
  background: url("../images/icon/ic_finance_up_active.png") no-repeat center;
  background-size: 12px;
  cursor: pointer;
}
.controls.input-number .buttonGroup .arrowDown {
  width: 100%;
  height: 15px;
  background: url("../images/icon/ic_finance_down.png") no-repeat center;
  background-size: 12px;
  cursor: not-allowed;
}
.controls.input-number .buttonGroup .arrowDown.active {
  background: url("../images/icon/ic_finance_down_active.png") no-repeat center;
  background-size: 12px;
  cursor: pointer;
}
.controls.input-number.enabled {
  background-color: #F3f3f3;
}
.controls.input-number.enabled input {
  color: #999;
  background-color: #F3f3f3;
}
.controls.input-number.enabled .buttonGroup {
  width: 40px;
  background-color: #FBFBFB;
  border-left: 1px solid #E4E7ED;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.input-number.enabled .buttonGroup .arrow-up {
  width: 100%;
  height: 15px;
  border-bottom: 1px solid #D8DCE6;
  background: url("../images/icon/ic_finance_up.png") no-repeat center;
  background-size: 12px;
  cursor: not-allowed;
}
.controls.input-number.enabled .buttonGroup .arrowDown {
  width: 100%;
  height: 15px;
  background: url("../images/icon/ic_finance_down.png") no-repeat center;
  background-size: 12px;
  cursor: not-allowed;
}
.controls.search-combobox {
  width: 100%;
  position: relative;
}
.controls.search-combobox .search-combobox-input {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.search-combobox .search-combobox-input .hsh-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.controls.search-combobox .search-combobox-input .button {
  width: 80px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.controls.search-combobox .search-combobox-input .button.btn-primary {
  background-color: #20A0FF;
  border-color: #20A0FF;
}
.controls.search-combobox .search-combobox-drop {
  position: absolute;
  left: -1px;
  right: -1px;
  top: 42px;
  z-index: 10;
}
.controls.search-combobox .search-combobox-drop ul {
  padding: 10px 0;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.controls.search-combobox .search-combobox-drop ul li {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.controls.search-combobox .search-combobox-drop ul li:hover {
  background-color: #F0F2F5;
}
.controls .icon-box {
  min-width: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls .icon-box .drop-icon {
  width: 14px;
  height: 14px;
  margin-left: 5px;
  background: url(../images/icon/ic_down.png) no-repeat center;
  background-size: 100% 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls .icon-box .drop-del {
  display: none;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  background: url(../images/icon/ic_del2.png) no-repeat center;
  background-size: 100% 100%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.export-button {
  position: relative;
}
.controls.export-button .button {
  min-width: 80px;
  height: 32px;
  line-height: 32px;
  padding: 0 12px;
  margin-right: 0px;
  border-radius: 0px;
  background-color: #25CED1;
  color: #FFF;
  font-size: 12px;
  cursor: pointer;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.export-button .export-popup {
  width: 140px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
  border: 1px solid #e4e7ed;
  position: absolute;
  top: 32px;
  z-index: 10000;
  background-color: #fff;
  border-radius: 0px;
}
.controls.export-button .export-popup.align-left {
  left: 0px;
}
.controls.export-button .export-popup.align-right {
  right: 0px;
}
.controls.export-button .export-popup .export-popup-item {
  width: 100%;
  height: 32px;
  line-height: 32px;
  padding-left: 0px;
}
.controls.export-button .export-popup .export-popup-item.active {
  background-color: #F0F2F5;
}
.controls.export-button .export-popup .export-popup-item .checkbox {
  background-image: url("../images/icon/ic_checkbox.png");
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.controls.export-button .export-popup .export-popup-item .checkbox.selected {
  background-image: url("../images/icon/ic_checkbox_checked.png");
}
.controls.export-button .export-popup .export-popup-item span {
  margin-left: 10px;
  font-size: 12px;
  color: #333;
}
.controls.export-button .export-popup .export-popup-item.custom {
  height: 105px;
}
.controls.export-button .export-popup .export-popup-item .item {
  height: 32px;
  line-height: 32px;
  padding-left: 15px;
}
.controls.export-button .export-popup .export-popup-item .item span {
  font-size: 12px;
  color: #333;
}
.controls.export-button .export-popup .export-popup-item .item input {
  border: solid 1px #C0C4CC;
  font-size: 12px;
  width: 60px;
  height: 24px;
  margin-left: 10px;
  border-radius: 0px;
  text-align: center;
}
.controls.export-button .export-popup .footer {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
  margin-top: 5px;
  margin-right: 10px;
}
.controls.export-button .export-popup .footer .button {
  text-align: center;
  width: 72px;
  height: 32px;
  line-height: 32px;
}
.controls.column-button {
  position: relative;
  width: 40px;
  height: 32px;
  border-radius: 0px;
  border: 1px solid #E4E7ED;
  background-color: #25CED1;
  color: #FFF;
  font-size: 12px;
  cursor: pointer;
}
.controls.column-button .setting_icon {
  width: 100%;
  height: 100%;
  background: url(../images/icon/ic_set_white.png) no-repeat center;
  background-size: 12px;
}
.controls.column-button .popup {
  width: 140px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
  border: 1px solid #e4e7ed;
  position: absolute;
  right: 0px;
  top: 32px;
  z-index: 10000;
  background-color: #fff;
  border-radius: 0px;
}
.controls.column-button .popup .select-list {
  width: 100%;
}
.controls.column-button .popup .select-list .row {
  height: 34px;
  padding: 0 15px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.column-button .popup .select-list .row:hover {
  background-color: #E9F7FE;
}
.controls.column-button .popup .select-list .row.active {
  background-color: #E9F7FE;
}
.controls.column-button .popup .select-list .row.active .label {
  color: #25CED1;
}
.controls.column-button .popup .select-list .row.active .select {
  background: url("../images/icon/ic_checked.png") no-repeat center;
  background-size: 100%;
}
.controls.column-button .popup .select-list .row .select {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background: url("../images/icon/ic_select.png") no-repeat center;
  background-size: 100%;
}
.controls.column-button .popup .select-list .row .label {
  font-size: 12px;
  color: #999;
}
.controls.hsh-audio {
  width: 240px;
  height: 70px;
}
.controls.hsh-audio .hsh-audio-content {
  width: 100%;
  height: 100%;
  background-color: rgb(240, 242, 245);
  border: 0.5px solid rgb(218, 218, 218);
  display: flex;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}
.controls.hsh-audio .hsh-audio-content .audio-controls {
  display: flex;
  flex-direction: column;
  width: 320px;
}
.controls.hsh-audio .hsh-audio-content .audio-controls .audio-name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #333;
  font-size: 12px;
  text-align: left;
  font-family: PingFangSC-Medium;
  width: 170px;
}
.controls.hsh-audio .hsh-audio-content .audio-controls .audio-progress-bar {
  margin-top: 10px;
  position: relative;
  height: 2px;
  border-radius: 1px;
  background-color: rgb(204, 204, 204);
}
.controls.hsh-audio .hsh-audio-content .audio-controls .audio-progress-bar .progress {
  background-color: rgb(25, 137, 250);
  width: 0%;
  height: 2px;
}
.controls.hsh-audio .hsh-audio-content .audio-controls .audio-progress-bar .progress_btn {
  position: absolute;
  margin-top: -14px;
  -webkit-transform: translateX(-6px);
  transform: translateX(-6px);
  width: 12px;
  height: 12px;
  left: 0%;
}
.controls.hsh-audio .hsh-audio-content .audio-controls .audio-progress-bar .progress_btn:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: rgb(25, 137, 250);
  border-radius: 50%;
  cursor: pointer;
  margin-left: 6px;
  margin-top: 8px;
}
.controls.hsh-audio .hsh-audio-content .audio-controls .time-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.controls.hsh-audio .hsh-audio-content .audio-controls .time-bar .play-time {
  color: rgb(96, 98, 102);
  font-size: 12px;
}
.controls.hsh-audio .hsh-audio-content .audio-controls .time-bar .end-time {
  color: rgb(96, 98, 102);
  font-size: 12px;
}
.controls.hsh-audio .hsh-audio-content .play-button {
  width: 24px;
  height: 24px;
  margin-top: 20px;
  margin-left: 24px;
  flex-shrink: 0;
}
.controls.hsh-video {
  width: 240px;
  height: 70px;
  display: flex;
  background-color: #f0f2f5;
  border: 0.5px solid #dadada;
}
.controls.hsh-video .video-player {
  width: 70px;
  height: 100%;
  flex-shrink: 0;
  padding: 10px;
  position: relative;
}
.controls.hsh-video .video-player video {
  background: #000;
  width: 100%;
  height: 100%;
}
.controls.hsh-video .video-player .play-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 25px;
  top: 25px;
  background-image: url("../../images/ic_play.png");
  background-size: 100%;
}
.controls.hsh-video .hsh-video-content {
  width: 170px;
  height: 100%;
  display: flex;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}
.controls.hsh-video .hsh-video-content .video-controls {
  display: flex;
  flex-direction: column;
  width: 110px;
}
.controls.hsh-video .hsh-video-content .video-controls .video-name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #333;
  font-size: 12px;
  text-align: left;
  font-family: PingFangSC-Medium;
  width: 140px;
}
.controls.hsh-video .hsh-video-content .video-controls .video-progress-bar {
  margin-top: 10px;
  position: relative;
  height: 2px;
  border-radius: 1px;
  background-color: rgb(204, 204, 204);
}
.controls.hsh-video .hsh-video-content .video-controls .video-progress-bar .progress {
  background-color: rgb(25, 137, 250);
  width: 0%;
  height: 2px;
}
.controls.hsh-video .hsh-video-content .video-controls .video-progress-bar .progress_btn {
  position: absolute;
  margin-top: -14px;
  -webkit-transform: translateX(-6px);
  transform: translateX(-6px);
  width: 12px;
  height: 12px;
  left: 0%;
}
.controls.hsh-video .hsh-video-content .video-controls .video-progress-bar .progress_btn:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: rgb(25, 137, 250);
  border-radius: 50%;
  cursor: pointer;
  margin-left: 6px;
  margin-top: 8px;
}
.controls.hsh-video .hsh-video-content .video-controls .time-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.controls.hsh-video .hsh-video-content .video-controls .time-bar .play-time {
  color: rgb(96, 98, 102);
  font-size: 12px;
}
.controls.hsh-video .hsh-video-content .video-controls .time-bar .end-time {
  color: rgb(96, 98, 102);
  font-size: 12px;
}
.controls.hsh-video .hsh-video-content .play-button {
  width: 24px;
  height: 24px;
  margin-top: 20px;
  margin-left: 15px;
  flex-shrink: 0;
}
.controls.hsh-file {
  width: 240px;
  height: 70px;
}
.controls.hsh-file .hsh-file-content {
  width: 100%;
  height: 100%;
  background-color: rgb(240, 242, 245);
  border: 0.5px solid rgb(218, 218, 218);
  display: flex;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}
.controls.hsh-file .hsh-file-content .file-controls {
  display: flex;
  width: 170px;
}
.controls.hsh-file .hsh-file-content .file-controls .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-right: 10px;
}
.controls.hsh-file .hsh-file-content .file-controls .icon img {
  width: 100%;
  height: 100%;
}
.controls.hsh-file .hsh-file-content .file-controls .file-name {
  font-size: 12px;
  color: #333;
  width: 140px;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.controls.hsh-file .hsh-file-content .down-button {
  width: 24px;
  height: 24px;
  margin-top: 20px;
  margin-left: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.tableContainer {
  width: 100%;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 2px 0 rgb(206, 216, 230);
  box-shadow: 0 0 2px 0 rgb(206, 216, 230);
  position: relative;
}
.tableContainer table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}
.tableContainer table thead {
  background-color: #EFF3F6;
}
.tableContainer table thead th {
  color: #3E3E3E;
  font-size: 12px;
}
.tableContainer table thead th.fixed {
  position: absolute;
  right: 0px;
  background-color: #EFF3F6;
  text-align: center;
}
.tableContainer table thead th.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}
.tableContainer table thead th.shadow::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: block;
  content: "";
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  z-index: -1;
}
.tableContainer table.left th, .tableContainer table.left td {
  text-align: left;
}
.tableContainer table.left th:last-child {
  text-align: center;
}
.tableContainer table.left th:first-child {
  text-align: center;
}
.tableContainer table.left tr td {
  padding: 10px 5px;
}
.tableContainer table.left tr td:first-child {
  text-align: center;
}
.tableContainer table tr {
  border-bottom: 1px solid #EBEEF5;
  min-height: 40px;
  height: 40px;
}
.tableContainer table tr:hover td {
  background-color: #E0ECFF;
}
.tableContainer table tr:hover td .fs14.black.demiBold {
  color: #1989FA;
}
.tableContainer table th, .tableContainer table td {
  text-align: center;
  font-size: 12px;
}
.tableContainer table th .select-icon, .tableContainer table td .select-icon {
  margin: 0 auto;
}
.tableContainer table th {
  height: 40px;
  line-height: 40px;
  font-weight: normal;
  color: #999;
}
.tableContainer table th span {
  vertical-align: top;
}
.tableContainer table th .arrowBox {
  width: 20px;
  height: 100%;
  padding-top: 12px;
}
.tableContainer table th .arrowBox:hover {
  background-color: #E5E5E5;
}
.tableContainer table th .up {
  display: block;
  width: 8px;
  height: 6px;
  margin: 0 auto 2px;
  background: url(../images/icon/ic_up_normal.png) no-repeat center;
  background-size: 7px 5px;
  cursor: pointer;
}
.tableContainer table th .up:hover {
  background: url(../images/icon/ic_up_hover.png) no-repeat center;
  background-size: 7px 5px;
}
.tableContainer table th .up.active {
  background: url(../images/icon/ic_up_active.png) no-repeat center;
  background-size: 7px 5px;
}
.tableContainer table th .down {
  display: block;
  width: 8px;
  height: 6px;
  margin: 0 auto;
  background: url(../images/icon/ic_dowm_normal.png) no-repeat center;
  background-size: 7px 5px;
  cursor: pointer;
}
.tableContainer table th .down:hover {
  background: url(../images/icon/ic_dowm_hover.png) no-repeat center;
  background-size: 7px 5px;
}
.tableContainer table th .down.active {
  background: url(../images/icon/ic_dowm_active.png) no-repeat center;
  background-size: 7px 5px;
}
.tableContainer table th .filter {
  display: inline-block;
  width: 30px;
  height: 100%;
}
.tableContainer table th .filter .icon {
  display: inline-block;
  width: 30px;
  height: 100%;
  background: url(../images/icon/ic_filter_normal.png) no-repeat center;
  background-size: 12px 10px;
  cursor: pointer;
}
.tableContainer table th .filter .icon:hover {
  background: url(../images/icon/ic_filter_hover.png) no-repeat center;
  background-size: 12px 10px;
}
.tableContainer table th .filter .icon.active {
  background: url(../images/icon/ic_filter_active.png) no-repeat center;
  background-size: 12px 10px;
}
.tableContainer table th .filter:hover {
  background-color: #E5E5E5;
}
.tableContainer table th .filter .popup {
  display: inline-block;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 40px;
  left: 715px;
}
.tableContainer table th .filter .popup .select-list {
  width: 100%;
}
.tableContainer table th .filter .popup .select-list .row {
  height: 34px;
  padding: 0 15px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tableContainer table th .filter .popup .select-list .row:hover {
  background-color: #E9F7FE;
}
.tableContainer table th .filter .popup .select-list .row.active {
  background-color: #E9F7FE;
}
.tableContainer table th .filter .popup .select-list .row.active .label {
  color: #25CED1;
}
.tableContainer table th .filter .popup .select-list .row.active .select {
  background: url("../images/icon/ic_checked.png") no-repeat center;
  background-size: 100%;
}
.tableContainer table th .filter .popup .select-list .row .select {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background: url("../images/icon/ic_select.png") no-repeat center;
  background-size: 100%;
}
.tableContainer table th .filter .popup .select-list .row .label {
  font-size: 12px;
  color: #999;
}
.tableContainer table th .filter .popup .select-foot {
  padding-left: 20px;
  padding-right: 20px;
  border-top: 1px solid #E4E7ED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tableContainer table th .filter .popup .select-foot .label {
  font-size: 12px;
  color: #25CED1;
  cursor: pointer;
}
.tableContainer table td {
  padding: 5px 0px;
  word-wrap: break-word;
  color: #606266;
  font-size: 12px;
  position: relative;
}
.tableContainer table td .red {
  color: #D0021B;
}
.tableContainer table td a {
  margin-right: 4px;
  margin-left: 4px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.tableContainer table td .btnGroup {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  align-items: center;
}
.tableContainer table td .btnGroup .operationBtn {
  margin: 0px 5px 0px;
  border-radius: 2px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 700;
}
.tableContainer table td .btnGroup .operationBtn.blueBtn {
  color: #25CED1;
}
.tableContainer table td .btnGroup .operationBtn.greyBtn {
  color: #CCD6E6;
}
.tableContainer table td .btnGroup .operationBtn.orangeBtn {
  color: #F79034;
}
.tableContainer table td .btnGroup .operationBtn.redBtn {
  color: #D0021B;
}
.tableContainer table td .btnGroup .operationBtn.greenBtn {
  color: #52C41A;
}
.tableContainer table td .btnGroup .more-buttons {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  margin: 10px 5px 0;
  font-weight: 700;
}
.tableContainer table td .btnGroup .more-buttons .drop-icon {
  width: 14px;
  height: 14px;
  background: url(../../images/ic_more_btn_arrow.png) no-repeat center;
  background-size: 60%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.tableContainer table td .btnGroup .more-buttons .drop-icon.open {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.tableContainer table td .btnGroup .more-buttons .popup-more-button {
  width: 100px;
  background-color: #FFF;
  border-radius: 4px;
  border: solid 1px #ECECEC;
  box-shadow: 0px 2px 28px 0px rgba(201, 201, 201, 0.5);
  position: absolute;
  right: 0px;
  z-index: 1;
}
.tableContainer table td .btnGroup .more-buttons .popup-more-button .item-btn {
  height: 32px;
  width: 100%;
  text-align: left;
  font-size: 12px;
  color: #25CED1;
  line-height: 32px;
  padding-left: 10px;
}
.tableContainer table td .btnGroup .more-buttons .popup-more-button .item-btn:hover {
  background-color: #EFF3F6;
}
.tableContainer table td .btnGroup .more-buttons .popup-more-button .item-btn.red {
  color: #C40000;
}
.tableContainer table td .btnGroup ~ .pop-modal {
  right: 20px;
}
.tableContainer table td.fixed {
  position: absolute;
  right: 0px;
  background-color: #FFF;
  padding: 0px;
}
.tableContainer table td.fixed .btnGroup {
  height: 100%;
  align-items: center;
}
.tableContainer table td.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}
.tableContainer table td.shadow::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: block;
  content: "";
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  z-index: -1;
}
.tableContainer table .checkbox {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  cursor: pointer;
}
.tableContainer table .checkbox .selected {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/icon/ic_select.png") no-repeat center;
  background-size: 100%;
}
.tableContainer table .checkbox .checked {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/icon/ic_tick2.png") no-repeat center;
  background-size: 100%;
}
.tableContainer table .checkbox .indeterminate {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/icon/ic_indeterminate.png") no-repeat center;
  background-size: 100%;
}
.tableContainer .scrollTable {
  width: 100%;
  overflow-x: auto;
}
.tableContainer .scrollTable::-webkit-scrollbar {
  height: 8px;
}
.tableContainer .operator {
  background-color: #FFF;
  position: absolute;
  right: 0;
  top: 0;
}
.tableContainer .freezeColumns {
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: 0;
}

.tableContainer::-webkit-scrollbar:horizontal {
  height: 8px;
}

.tableContainer::-webkit-scrollbar {
  width: 8px;
}

.table-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.table-footer .buttons {
  display: flex;
  flex-direction: row;
  padding-left: 16px;
  align-items: center;
}
.table-footer .buttons .checkbox {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  cursor: pointer;
  margin-right: 10px;
  margin-left: 14px;
}
.table-footer .buttons .checkbox .selected {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/icon/ic_select.png") no-repeat center;
  background-size: 100%;
}
.table-footer .buttons .checkbox .checked {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/icon/ic_tick2.png") no-repeat center;
  background-size: 100%;
}
.table-footer .buttons .checkbox .indeterminate {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/icon/ic_indeterminate.png") no-repeat center;
  background-size: 100%;
}
.table-footer .buttons .label {
  font-size: 12px;
  color: #333;
  margin-right: 20px;
  height: 32px;
  line-height: 32px;
}
.table-footer .buttons .controls.button {
  min-width: 60px;
}

.item-picker {
  width: 50%;
  height: 210px;
  position: relative;
}
.item-picker .scroll-panel {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.item-picker .scroll-panel ul {
  width: 100%;
}
.item-picker .scroll-panel ul li {
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  color: #C0C4CC;
  cursor: pointer;
}
.item-picker .scroll-panel ul li.selected {
  color: #606266;
}
.item-picker .scroll-panel::-webkit-scrollbar {
  width: 8px;
}
.item-picker .selected-item {
  width: 100%;
  height: 30px;
  border-top: 1px solid #D7D7D7;
  border-bottom: 1px solid #D7D7D7;
  cursor: pointer;
  position: absolute;
  top: 90px;
  z-index: 0;
  pointer-events: none;
}

.tree-panel {
  padding-top: 22px;
}
.tree-panel .tree-header {
  height: 50px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E4E7ED;
  font-size: 14px;
  color: #444;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tree-panel .tree-header .expand-button {
  width: 54px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 3px;
  background-color: #25CED1;
  font-family: "PingFang SC Medium";
  font-size: 12px;
  color: #FFF;
  cursor: pointer;
}
.tree-panel .tree-content {
  height: 200px;
  font-size: 12px;
  overflow-y: scroll;
}
.tree-panel .tree-content::-webkit-scrollbar:horizontal {
  height: 8px;
}
.tree-panel .tree-content::-webkit-scrollbar {
  width: 8px;
}

.tree .treeNodeCollose, .combotree .treeNodeCollose {
  width: 14px;
  height: 14px;
  margin: 10px 6px 10px 6px;
  background-image: url("../images/icon/collose.png");
  background-size: 100%;
  cursor: pointer;
  float: left;
}
.tree .treeNodeExpand, .combotree .treeNodeExpand {
  width: 14px;
  height: 14px;
  margin: 10px 6px 10px 6px;
  background-image: url("../images/icon/expand.png");
  background-size: 100%;
  cursor: pointer;
  float: left;
}
.tree .treeFolderCollose, .combotree .treeFolderCollose {
  width: 16px;
  height: 14px;
  background-image: url("../images/icon/folder_collose.png");
  background-size: 100%;
  float: left;
  margin-top: 10px;
  margin-right: 6px;
  margin-bottom: 10px;
}
.tree .treeFolderExpand, .combotree .treeFolderExpand {
  width: 16px;
  height: 14px;
  background-image: url("../images/icon/folder_expand.png");
  background-size: 100%;
  float: left;
  margin-top: 10px;
  margin-right: 6px;
  margin-bottom: 10px;
}
.tree .tree-node-content:hover, .combotree .tree-node-content:hover {
  background-color: #E0ECFF;
}
.tree .treeNode, .combotree .treeNode {
  width: 16px;
  height: 16px;
  float: left;
  background-image: url("../images/icon/node.png");
  background-size: 100%;
  margin-top: 9px;
  margin-right: 6px;
  margin-bottom: 9px;
}
.tree .checkBoxTreeNode, .combotree .checkBoxTreeNode {
  width: 16px;
  height: 16px;
  float: left;
  background-image: url("../images/icon/checkbox_tree_node.png");
  background-size: 100%;
  margin-top: 9px;
  margin-right: 6px;
  margin-bottom: 9px;
}
.tree .nodeChecked, .combotree .nodeChecked {
  width: 16px;
  height: 16px;
  float: left;
  background-image: url("../images/icon/ic_checked.png");
  background-size: 100%;
  margin-top: 9px;
  margin-right: 6px;
  margin-bottom: 9px;
}
.tree .nodeCheck, .combotree .nodeCheck {
  width: 16px;
  height: 16px;
  float: left;
  background-image: url("../images/icon/ic_select.png");
  background-size: 100%;
  margin-top: 9px;
  margin-right: 6px;
  margin-bottom: 9px;
}
.tree .folderChecked, .combotree .folderChecked {
  width: 16px;
  height: 16px;
  float: left;
  background-image: url("../images/icon/ic_folder_checked.png");
  background-size: 100%;
  margin-top: 9px;
  margin-right: 10px;
  margin-bottom: 9px;
}
.tree .folderCheck, .combotree .folderCheck {
  width: 16px;
  height: 16px;
  float: left;
  background-image: url("../images/icon/ic_folder_check.png");
  background-size: 100%;
  margin-top: 9px;
  margin-right: 10px;
  margin-bottom: 9px;
}
.tree .nodeLabel, .combotree .nodeLabel {
  color: #475669;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.tree .nodeNullIcon, .combotree .nodeNullIcon {
  width: 14px;
  height: 14px;
  margin: 10px 6px 10px 6px;
  cursor: pointer;
  float: left;
}

.noDataBar {
  padding: 100px 0;
  margin: 0 auto;
}
.noDataBar .iconNoData {
  display: block;
  width: 128px;
  height: 128px;
  margin: 0 auto;
  background: url("../images/icon/icon-fold.png") center no-repeat;
  background-size: 100%;
}
.noDataBar .noDataTip {
  margin-top: 10px;
  font-size: 14px;
  color: #999999;
  text-align: center;
}

.hsh-form {
  width: 100%;
  height: 100%;
}
.hsh-form.vertical .hsh-form-row, .hsh-form.vertical .hsh-form-grid {
  margin-bottom: 10px;
}
.hsh-form.vertical .hsh-form-row .hsh-form-item, .hsh-form.vertical .hsh-form-grid .hsh-form-item {
  flex-direction: column;
  align-items: flex-start;
}
.hsh-form.vertical .hsh-form-row .hsh-form-item .hsh-form-label, .hsh-form.vertical .hsh-form-grid .hsh-form-item .hsh-form-label {
  text-align: left;
}
.hsh-form.vertical .hsh-form-row .hsh-form-item .hsh-form-controls, .hsh-form.vertical .hsh-form-grid .hsh-form-item .hsh-form-controls {
  flex-direction: row;
  align-items: center;
}
.hsh-form.horizontal .hsh-form-row .hsh-form-item, .hsh-form.horizontal .hsh-form-grid .hsh-form-item {
  flex-direction: row;
  align-items: center;
}
.hsh-form .hsh-form-header {
  color: #25CED1;
  font-size: 12px;
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}
.hsh-form .hsh-form-header:before {
  content: "";
  width: 3px;
  height: 12px;
  position: absolute;
  top: 4px;
  background: #25CED1;
  margin-right: 10px;
}
.hsh-form .hsh-form-row {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.hsh-form .hsh-form-row:last-child {
  margin-bottom: 0;
}
.hsh-form .hsh-form-row .hsh-form-header {
  display: -webkit-box;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  font-size: 14px;
  color: #222;
  line-height: 32px;
}
.hsh-form .hsh-form-row .hsh-form-item {
  width: 100%;
  margin-left: 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.hsh-form .hsh-form-row .hsh-form-item.switchButton {
  border: 1px solid #E4E7ED;
  padding-top: 0px;
  border-radius: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.hsh-form .hsh-form-row .hsh-form-item.switchButton .hsh-form-label {
  float: left;
  margin-bottom: 0px;
  margin-left: 10px;
  min-width: 60px;
  text-align: right;
}
.hsh-form .hsh-form-row .hsh-form-item.switchButton .hsh-form-controls {
  float: right;
  margin-top: 0px;
  margin-right: 10px;
}
.hsh-form .hsh-form-row .hsh-form-item:first-child {
  margin-left: 0;
}
.hsh-form .hsh-form-row .hsh-form-item .hsh-form-label {
  font-size: 12px;
  color: #333;
  line-height: 32px;
  flex-shrink: 0;
  min-width: 75px;
  text-align: right;
}
.hsh-form .hsh-form-row .hsh-form-item .hsh-form-label.required:before {
  content: "*";
  color: red;
}
.hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls .hsh-error-msg {
  width: 100%;
  font-size: 12px;
  color: #ff0000;
  position: relative;
}
.hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls.invalid {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls.invalid .dateField, .hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls.invalid .hsh-input, .hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls.invalid .hsh-text, .hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls.invalid .combobox, .hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls.invalid .imageupload, .hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls.invalid .hsh-textarea, .hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls.invalid .hsh-mutil-combobox, .hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls.invalid .hsh-time {
  border: solid 1px #ff0000;
}
.hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls .hsh-tips-msg {
  width: 100%;
  font-size: 12px;
  color: #FE744B;
  position: relative;
}
.hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls .hsh-img-tips-msg {
  width: 100%;
  font-size: 12px;
  color: #bbbbbb;
  position: relative;
}
.hsh-form .hsh-form-row .hsh-form-item .hsh-form-controls-tips {
  color: #FE744B;
  font-size: 10px;
  margin-top: 6px;
}
.hsh-form .hsh-form-grid {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.hsh-form .hsh-form-grid:last-child {
  margin-bottom: 0;
}
.hsh-form .hsh-form-grid.column-2 .hsh-form-item {
  width: 20%;
}
.hsh-form .hsh-form-grid.column-3 .hsh-form-item {
  width: 33.3333%;
}
.hsh-form .hsh-form-grid.column-4 .hsh-form-item {
  width: 25%;
}
.hsh-form .hsh-form-grid.column-5 .hsh-form-item {
  width: 20%;
}
.hsh-form .hsh-form-grid .hsh-form-item {
  width: 100%;
  padding-left: 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 10px;
}
.hsh-form .hsh-form-grid .hsh-form-item.switchButton {
  border: 1px solid #E4E7ED;
  padding-top: 0px;
  border-radius: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.hsh-form .hsh-form-grid .hsh-form-item.switchButton .hsh-form-label {
  float: left;
  margin-bottom: 0px;
  margin-left: 10px;
  min-width: 60px;
  text-align: right;
}
.hsh-form .hsh-form-grid .hsh-form-item.switchButton .hsh-form-controls {
  float: right;
  margin-top: 0px;
  margin-right: 10px;
}
.hsh-form .hsh-form-grid .hsh-form-item .hsh-form-label {
  font-size: 12px;
  color: #333;
  line-height: 32px;
  flex-shrink: 0;
  min-width: 75px;
  text-align: right;
}
.hsh-form .hsh-form-grid .hsh-form-item .hsh-form-label.required:before {
  content: "*";
  color: red;
}
.hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls .hsh-error-msg {
  width: 100%;
  font-size: 12px;
  color: #ff0000;
  position: relative;
}
.hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls.invalid {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls.invalid .dateField, .hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls.invalid .hsh-input, .hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls.invalid .hsh-text, .hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls.invalid .combobox, .hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls.invalid .imageupload, .hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls.invalid .hsh-textarea, .hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls.invalid .hsh-mutil-combobox, .hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls.invalid .hsh-time {
  border: solid 1px #ff0000;
}
.hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls .hsh-tips-msg {
  width: 100%;
  font-size: 12px;
  color: #FE744B;
  position: relative;
}
.hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls .hsh-img-tips-msg {
  width: 100%;
  font-size: 12px;
  color: #bbbbbb;
  position: relative;
}
.hsh-form .hsh-form-grid .hsh-form-item .hsh-form-controls-tips {
  color: #FE744B;
  font-size: 10px;
  margin-top: 6px;
}
.hsh-form.viewer .hsh-form-row .hsh-form-item .hsh-form-label {
  color: #999;
}
.hsh-form.viewer .hsh-form-row .hsh-form-item .hsh-form-controls {
  color: #333;
}
.hsh-form.viewer .hsh-form-row .hsh-form-item .hsh-form-controls-tips {
  color: #FE744B;
  font-size: 10px;
  margin-top: 6px;
}

.hsh-alert .hsh-page {
  max-width: 640px;
  border-radius: 4px;
  background-color: #FFF;
  box-shadow: 0 9px 28px 8px rgba(0, 0, 0, 0.05), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1005;
}
.hsh-alert .hsh-page .hsh-header {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.hsh-alert .hsh-page .hsh-header .title {
  font-family: "PingFang SC Medium";
  font-size: 16px;
  color: #333;
}
.hsh-alert .hsh-page .hsh-header .close-btn {
  width: 16px;
  height: 16px;
  margin: 3px 0;
  background: url(../images/icon/ic_close_grey.png) no-repeat center;
  background-size: 12px;
  cursor: pointer;
  float: right;
}
.hsh-alert .hsh-page .hsh-content {
  width: 100%;
  padding: 12px 0 0;
}
.hsh-alert .hsh-page .hsh-content .msg-text {
  line-height: 22px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}
.hsh-alert .hsh-page .hsh-content .sys-msg-text {
  padding-top: 16px;
  font-size: 16px;
  color: #f58220;
  text-align: center;
}
.hsh-alert .hsh-page .hsh-content .sys-msg-text .icon-fail {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 18px;
  vertical-align: bottom;
  background: url("../images/icon/icon-uploadFail.png") no-repeat center;
  background-size: 100%;
}
.hsh-alert .hsh-page .hsh-footer {
  padding-top: 15px;
  overflow: hidden;
}
.hsh-alert .hsh-page .hsh-footer .close-btn {
  display: inline-block;
  margin-right: 20px;
  padding: 0 5px;
  font-size: 12px;
  color: #f58220;
  cursor: pointer;
}
.hsh-alert .hsh-page .hsh-footer .button-bar {
  overflow: hidden;
  width: 210px;
  margin: 0 auto;
  padding: 20px 0;
}
.hsh-alert .hsh-page .hsh-footer .align-center {
  margin: 0 auto;
  float: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.hsh-alert .hsh-page .hsh-footer .align-center .controls.button {
  min-width: 54px;
  height: 24px;
  line-height: 22px;
  margin-left: 10px;
  border-radius: 2px;
  font-size: 14px;
}
.hsh-alert .hsh-page .hsh-loading-content {
  min-width: 280px;
  height: 40px;
  line-height: 38px;
  padding: 0 15px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  color: #FFF;
  overflow: hidden;
}
.hsh-alert .hsh-page .hsh-loading-content .icon-loading {
  width: 26px;
  height: 40px;
  background: url(../images/icon/loading.gif) no-repeat center;
  background-size: 100%;
}
.hsh-alert .hsh-page .hsh-loading-content .icon-complete {
  display: block;
  width: 26px;
  height: 40px;
  background: url("../images/icon/icon-hook.gif") no-repeat center;
  background-size: 100%;
}
.hsh-alert .hsh-page .hsh-loading-content .icon-success {
  display: block;
  width: 26px;
  height: 40px;
  background: url("../images/icon/ic_success.png") no-repeat center;
  background-size: 60%;
}
.hsh-alert .hsh-page .hsh-loading-content .tip-text {
  margin-left: 10px;
  font-size: 14px;
}
.hsh-alert .hsh-page .hsh-loading-content .icon-line {
  width: 1px;
  height: 24px;
  margin: 8px 10px;
  background: url("../images/icon/icon-line.png") no-repeat center;
  background-size: 100%;
}
.hsh-alert .hsh-page .hsh-loading-content .icon-cancel {
  width: 15px;
  height: 20px;
  margin: 8px 0;
  background: url("../images/icon/icon-cancel.png") no-repeat center;
  background-size: 10px;
  cursor: pointer;
}
.hsh-alert .hsh-page .hsh-loading-content .error-icon {
  width: 14px;
  height: 14px;
  margin-top: 12px;
  background: url(../images/icon/ic_wrong.png) no-repeat center;
  background-size: 100%;
}
.hsh-alert .hsh-page .hsh-loading-content .warn-icon {
  width: 14px;
  height: 14px;
  margin-top: 12px;
  background: url(../images/icon/ic_warning.png) no-repeat center;
  background-size: 100%;
}
.hsh-alert .hsh-page .hsh-loading-content .close-btn {
  width: 16px;
  height: 16px;
  margin: 11px 0;
  background: url(../images/icon/ic_close_grey.png) no-repeat center;
  background-size: 10px;
  cursor: pointer;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -moz-transform 0.3s ease-out, -o-transform 0.3s ease-out;
  -webkit-transform: translate3d(0, -25%, 0);
  -o-transform: translate3d(0, -25%, 0);
  -moz-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
}

.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0;
  height: 100%;
}

.modal-content {
  height: 100%;
  position: relative;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.hsh-dialog {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999;
  overflow-x: hidden;
}
.hsh-dialog .hsh-page {
  padding-top: 10px;
  background-color: #FFF;
  border-radius: 4px;
  border: 1px solid #E4E7ED;
  position: absolute;
  top: 120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hsh-dialog .hsh-page.modal-xs {
  width: 400px;
}
.hsh-dialog .hsh-page.modal-sm {
  width: 600px;
}
.hsh-dialog .hsh-page.modal-md {
  width: 750px;
}
.hsh-dialog .hsh-page.modal-lg {
  width: 900px;
}
.hsh-dialog .hsh-page.modal-pc {
  width: 1140px;
}
.hsh-dialog .hsh-page .hsh-header {
  padding: 15px 30px;
  position: relative;
}
.hsh-dialog .hsh-page .hsh-header .title {
  font-family: "PingFang SC Medium";
  font-size: 18px;
  color: #333;
}
.hsh-dialog .hsh-page .hsh-header .close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 6px #CED0D2;
  box-shadow: 0 2px 6px #CED0D2;
  background: url(../images/icon/ic_work_close_circle.png) no-repeat center;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: -16px;
  z-index: 10;
}
.hsh-dialog .hsh-page .hsh-content {
  width: 100%;
  padding: 10px 30px 0;
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column {
  float: left;
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column:after {
  content: "";
  display: table;
  clear: both;
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column.p50 {
  width: 50%;
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column.p30 {
  width: 30%;
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column.w2-1 {
  width: 45%;
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column.w2-2 {
  width: -webkit-calc(90% + 40px);
  width: -moz-calc(90% + 40px);
  width: calc(90% + 40px);
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column.w3-1 {
  width: 30%;
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column.w3-2 {
  width: -webkit-calc(60% + 40px);
  width: -moz-calc(60% + 40px);
  width: calc(60% + 40px);
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column.w3-3 {
  width: -webkit-calc(90% + 80px);
  width: -moz-calc(90% + 80px);
  width: calc(90% + 80px);
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column.w4-1 {
  width: 20%;
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column.w4-2 {
  width: -webkit-calc(40% + 40px);
  width: -moz-calc(40% + 40px);
  width: calc(40% + 40px);
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column.w4-3 {
  width: -webkit-calc(60% + 80px);
  width: -moz-calc(60% + 80px);
  width: calc(60% + 80px);
}
.hsh-dialog .hsh-page .hsh-content .hsh-content-column.w4-4 {
  width: -webkit-calc(80% + 120px);
  width: -moz-calc(80% + 120px);
  width: calc(80% + 120px);
}
.hsh-dialog .hsh-page .hsh-content .searchBar {
  width: 100%;
  background: #FFF;
  display: flex;
  word-spacing: -1em;
  align-items: center;
}
.hsh-dialog .hsh-page .hsh-content .searchBar .dropdown, .hsh-dialog .hsh-page .hsh-content .searchBar .dropup {
  position: relative;
}
.hsh-dialog .hsh-page .hsh-content .searchBar .label {
  font-size: 12px;
  color: #333;
  margin-right: 10px;
  flex-shrink: 0;
}
.hsh-dialog .hsh-page .hsh-content .searchBar .label.rect-box {
  height: 32px;
  line-height: 32px;
  border-left: 1px solid #DADADA;
  background-color: #F9FAFC;
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  padding: 0 10px 0 10px;
  margin-right: 0px;
  min-width: 60px;
  text-align: center;
}
.hsh-dialog .hsh-page .hsh-content .searchBar .addBtn {
  width: 45px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #D7D7D7;
  font-size: 18px;
  color: #D7D7D7;
  cursor: pointer;
}
.hsh-dialog .hsh-page .hsh-content .searchBar .controls {
  width: 238px;
  float: left;
  margin-right: 10px;
}
.hsh-dialog .hsh-page .hsh-content .searchBar .controls:last-child {
  margin-right: 0;
}
.hsh-dialog .hsh-page .hsh-content .searchBar .controls.combo-input-search-button {
  width: 350px;
}
.hsh-dialog .hsh-page .hsh-content .searchBar .controls.dateField.range {
  width: 290px;
}
.hsh-dialog .hsh-page .hsh-content .searchBar .controls.combobox {
  width: 150px;
}
.hsh-dialog .hsh-page .hsh-content .searchBar .controls.button {
  width: auto;
}
.hsh-dialog .hsh-page .hsh-footer {
  width: 100%;
  text-align: center;
  padding: 20px 30px;
}
.hsh-dialog .hsh-page .hsh-footer .align-center {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hsh-dialog .hsh-page .hsh-footer .align-center .controls.button {
  width: 120px;
  margin-right: 25px;
}
.hsh-dialog .hsh-page .hsh-footer .align-center .controls.button:last-child {
  margin-right: 0;
}

.hsh-edit-page {
  padding: 15px 20px 15px 20px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 2px #CED8E6;
  box-shadow: 0 0 2px #CED8E6;
}
.hsh-edit-page .hsh-page-header {
  width: 100%;
  padding-bottom: 15px;
}
.hsh-edit-page .hsh-page-header .title {
  line-height: 28px;
  font-family: "PingFang SC Semibold";
  font-size: 20px;
  color: #333;
}
.hsh-edit-page .hsh-page-content {
  width: 100%;
  margin-top: 0px;
}
.hsh-edit-page .hsh-page-content .hsh-content-column {
  float: left;
}
.hsh-edit-page .hsh-page-content .hsh-content-column:after {
  content: "";
  display: table;
  clear: both;
}
.hsh-edit-page .hsh-page-content .hsh-content-column.p50 {
  width: 50%;
}
.hsh-edit-page .hsh-page-content .hsh-content-column.p30 {
  width: 30%;
}
.hsh-edit-page .hsh-page-content .hsh-content-column.w2-1 {
  width: 45%;
}
.hsh-edit-page .hsh-page-content .hsh-content-column.w2-2 {
  width: -webkit-calc(90% + 40px);
  width: -moz-calc(90% + 40px);
  width: calc(90% + 40px);
}
.hsh-edit-page .hsh-page-content .hsh-content-column.w3-1 {
  width: 30%;
}
.hsh-edit-page .hsh-page-content .hsh-content-column.w3-2 {
  width: -webkit-calc(60% + 40px);
  width: -moz-calc(60% + 40px);
  width: calc(60% + 40px);
}
.hsh-edit-page .hsh-page-content .hsh-content-column.w3-3 {
  width: -webkit-calc(90% + 80px);
  width: -moz-calc(90% + 80px);
  width: calc(90% + 80px);
}
.hsh-edit-page .hsh-page-content .hsh-content-column.w4-1 {
  width: 20%;
}
.hsh-edit-page .hsh-page-content .hsh-content-column.w4-2 {
  width: -webkit-calc(40% + 40px);
  width: -moz-calc(40% + 40px);
  width: calc(40% + 40px);
}
.hsh-edit-page .hsh-page-content .hsh-content-column.w4-3 {
  width: -webkit-calc(60% + 80px);
  width: -moz-calc(60% + 80px);
  width: calc(60% + 80px);
}
.hsh-edit-page .hsh-page-content .hsh-content-column.w4-4 {
  width: -webkit-calc(80% + 120px);
  width: -moz-calc(80% + 120px);
  width: calc(80% + 120px);
}

.hsh-page-footer {
  width: 100%;
  text-align: center;
  padding: 20px 30px;
}
.hsh-page-footer .align-center {
  width: 100%;
  padding-top: 10px;
  display: flex;
  justify-content: center;
}
.hsh-page-footer .align-center .controls.button {
  width: 120px;
  margin-right: 25px;
}
.hsh-page-footer .align-center .controls.button:last-child {
  margin-right: 0;
}

/*屏幕背景*/
.login-screenBg {
  width: 100%;
  height: 100%;
  background-color: #FAFCFE;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.login-screenBg .main {
  flex: 1;
  height: 100%;
}
.login-screenBg .main .viewContainer {
  background-image: url("../../images/ic_login_bg.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  flex: 1;
  height: 100%;
}
.login-screenBg .main .viewContainer.mobile {
  background-size: auto 100%;
}
.login-screenBg .main .viewContainer .loginview {
  width: 100%;
  height: 100%;
}
.login-screenBg .main .viewContainer .loginview > div {
  width: 100%;
  height: 100%;
}

.login-area {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 160px;
}
.login-area .login_content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.login-area .login_content .login_box {
  width: 372px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 13px 26px 26px 26px;
}
.login-area .login_content .login_box .tab-title {
  display: flex;
  justify-content: center;
  padding: 27px 0 20px 0px;
}
.login-area .login_content .login_box .tab-title .tab-item {
  font-size: 16px;
  text-align: center;
  font-family: "PingFang SC Medium";
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-area .login_content .login_box .tab-title .tab-item.active {
  color: #333;
}
.login-area .login_content .login_box .tab-title .tab-item.active:after {
  display: block;
  content: "";
  width: 24px;
  height: 4px;
  background-color: #25CED1;
  margin-top: 4px;
}
.login-area .login_content .login_box .line {
  width: 320px;
  height: 1px;
  background-color: rgb(228, 231, 237);
  margin-top: 12px;
}
.login-area .login_content .login_box .title_font {
  margin-top: 15px;
  color: rgb(153, 153, 153);
  font-size: 12px;
}
.login-area .login_content .login_box .row {
  margin-top: 16px;
}
.login-area .login_content .login_box .row .font {
  color: #333;
  font-size: 12px;
}
.login-area .login_content .login_box .row .input_box {
  margin-top: 8px;
  width: 100%;
  height: 40px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(228, 231, 237);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 16px 0px 16px;
}
.login-area .login_content .login_box .row .input_box .input {
  font-size: 12px;
  width: 100%;
  height: 100%;
}
.login-area .login_content .login_box .row .input_box.pl0 {
  padding-left: 0px;
}
.login-area .login_content .login_box .row .input_box .controls.combobox {
  border: none;
  border-right: 1px solid #e4e7ed;
  width: 100px;
  height: 38px;
}
.login-area .login_content .login_box .row .input_box .controls.combobox .label-field {
  line-height: 38px;
}
.login-area .login_content .login_box .row .input_box .controls.combobox .drop-list {
  margin-top: 39px;
}
.login-area .login_content .login_box .row .input_box .controls.combobox .drop-list li {
  height: 40px;
}
.login-area .login_content .login_box .row .input_box .controls.button {
  margin-right: -11px;
  cursor: default;
}
.login-area .login_content .login_box .row .input_box .controls.button.grey {
  background-color: #E4E7ED;
  border-color: #E4E7ED;
  color: #999;
}
.login-area .login_content .login_box .row .input_box .controls.button.active {
  background-color: #25CED1;
  border-color: #25CED1;
  color: #FFF;
}
.login-area .login_content .login_box .text_box {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-area .login_content .login_box .text_box .text {
  color: #25CED1;
  font-size: 12px;
}
.login-area .login_content .login_box .button_box {
  margin-top: 26px;
}
.login-area .login_content .login_box .button_box .login {
  width: 320px;
  height: 40px;
  background-color: #25CED1;
  text-align: center;
  line-height: 40px;
  color: rgb(255, 255, 255);
  font-size: 12px;
  cursor: pointer;
}
.login-area .login_content .login_box .button_box .controls.button {
  width: 100%;
  height: 40px;
  line-height: 38px;
}
.login-area .login_content .login_box .obtain-box {
  height: 38px;
  line-height: 38px;
  position: absolute;
  top: 50%;
  right: -16px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}
.login-area .login_content .login_box .obtain-box .obtainCode {
  width: 80px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: #E4E7ED;
  font-size: 12px;
  color: #999;
}
.login-area .login_content .login_box .obtain-box .obtainCode.active {
  background-color: #1989FA;
  color: #FFF;
  cursor: pointer;
}
.login-area .login_content .login_box .user-center {
  width: 200px;
  height: 160px;
  margin: 0 auto;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-area .login_content .login_box .user-center .header_img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: 20px;
  border: solid 1px #E4E7ED;
}
.login-area .login_content .login_box .user-center .name {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 2px;
}
.login-area .login_content .login_box .user-center .no {
  font-size: 12px;
  color: #999;
}
.login-area .login_content .login_box .current-group-app {
  height: 134px;
  width: 320px;
  background-color: #F0F2F5;
}
.login-area .login_content .login_box .current-group-app .group-info {
  height: 54px;
  padding-left: 12px;
}
.login-area .login_content .login_box .current-group-app .group-info .ic {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: solid 1px #E4E7ED;
}
.login-area .login_content .login_box .current-group-app .group-info .ic img {
  border-radius: 30px;
}
.login-area .login_content .login_box .current-group-app .app-info {
  width: 296px;
  height: 68px;
  background-color: #FFF;
  margin: 0 auto;
  position: relative;
}
.login-area .login_content .login_box .current-group-app .app-info .ic {
  margin-left: 16px;
  margin-right: 16px;
}
.login-area .login_content .login_box .current-group-app .app-info .ic img {
  width: 36px;
}
.login-area .login_content .login_box .current-group-app .app-info .app-name {
  flex-direction: column;
  align-items: flex-start;
}
.login-area .login_content .login_box .current-group-app .app-info .current {
  background-color: #DBEDFF;
  position: absolute;
  top: 0px;
  right: 0px;
  color: #25CED1;
  padding: 4px 8px;
}

.login-header {
  width: 100%;
  height: 50px;
  background-color: #FFF;
  position: relative;
  z-index: 1001;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.login-header .head-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 20px;
}
.login-header .head-icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.login-header .logoText {
  margin-left: 120px;
}

.login-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #FFF;
}
.login-footer .copyright {
  color: #999;
  font-size: 12px;
  margin-right: 10px;
}
.login-footer .beanhao {
  color: #999;
  font-size: 12px;
}
.login-footer .beanhao a {
  color: #999;
}

.overview-page {
  padding-bottom: 10px;
}
.overview-page .grid-header {
  font-size: 16px;
  color: #333;
  padding-left: 16px;
  font-weight: 600;
  background: #FFF;
  line-height: 40px;
}
.overview-page .grid {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  background: #FFF;
  padding-bottom: 16px;
  padding-right: 16px;
}
.overview-page .grid.user .grid-item {
  height: 100px;
}
.overview-page .grid .grid-item {
  width: 100%;
  background: #F0f2f5;
  margin-left: 16px;
  padding-bottom: 10px;
}
.overview-page .grid .grid-item .grid-item-title {
  margin-left: 16px;
  margin-top: 16px;
  font-size: 12px;
  color: #333;
}
.overview-page .grid .grid-item .grid-item-num {
  color: #25CED1;
  font-size: 18px;
  margin-left: 16px;
  line-height: 40px;
}
.overview-page .grid .grid-item .grid-item-num.grid-item-price {
  color: #D0021B;
}
.overview-page .grid .grid-item .grid-item-footer {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: space-between;
}
.overview-page .grid .grid-item .grid-item-footer .footer-left {
  display: flex;
}
.overview-page .grid .grid-item .grid-item-footer .footer-left .left-text {
  color: #999999;
  font-size: 12px;
}
.overview-page .grid .grid-item .grid-item-footer .footer-left .left-num {
  color: #333333;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
}
.overview-page .grid .grid-item .grid-item-footer .footer-right {
  display: flex;
}
.overview-page .grid .grid-item .grid-item-footer .footer-right .right-text {
  color: #999999;
  font-size: 12px;
}
.overview-page .grid .grid-item .grid-item-footer .footer-right .right-num {
  color: #333333;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.overview-page .grid .grid-item .grid-item-footer .footer-right .right-num.right-num-up {
  padding-left: 10px;
  color: #38BD61;
  font-size: 12px;
  background: url(../../images/icon/ic_home_increase.png) no-repeat;
  background-size: 5px 10px;
  background-position: 0px 4px;
  padding-left: 10px;
}
.overview-page .grid .grid-item .grid-item-footer .footer-right .right-num.right-num-dowm {
  padding-left: 10px;
  color: #D0021B;
  font-size: 12px;
  background: url(../../images/icon/ic_home_decrease.png) no-repeat;
  background-size: 5px 10px;
  background-position: 0px 4px;
  padding-left: 10px;
}
.overview-page.mobile .grid {
  flex-wrap: wrap;
  gap: 10px;
}
.overview-page .items {
  background-color: #fff;
  display: flex;
  margin-bottom: 10px;
  padding-bottom: 16px;
  padding-right: 16px;
}
.overview-page .items .item {
  width: 100%;
  position: relative;
  background: #F0f2f5;
  margin-left: 16px;
  padding-left: 16px;
}
.overview-page .items .item .item-title {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #333;
}
.overview-page .items .item .item-num {
  color: #25CED1;
  font-size: 22px;
  margin-bottom: 12px;
}
.overview-page .items .item .item-num.links {
  cursor: pointer;
  text-decoration: underline;
}
.overview-page .items .item .item-button {
  background-color: #25CED1;
  color: #FFF;
  font-size: 13px;
  width: 60px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  margin-left: 16px;
  margin-bottom: 20px;
}
.overview-page .item-chart {
  width: 100%;
  padding: 10px;
  height: 285px;
}
.overview-page .grid-menu {
  background-color: #fff;
  display: flex;
  margin-left: 10px;
  flex-wrap: wrap;
}
.overview-page .grid-menu .menu {
  width: 25%;
  height: 60px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.overview-page .grid-menu .menu .menu-text {
  font-size: 13px;
  color: #333;
}
.overview-page .grid-chart {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.overview-page .grid-chart .item-chart {
  width: calc(50% - 0px);
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.overview-page .grid-chart .item-chart:nth-child(even) {
  margin-left: 10px;
  width: calc(50% - 10px);
}
.overview-page .grid-chart .item-chart.bg-white {
  background: #FFF;
}
.overview-page .grid-chart .item-chart .chart-title {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}
.overview-page .grid-chart .item-chart .content-chart {
  background-color: #fff;
  display: inline-block;
  width: 100%;
  flex: 1;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header {
  display: flex;
  position: relative;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .year-month {
  position: absolute;
  left: 0;
  top: 0;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .month-year-field {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .month-year-field .arrow {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 11px solid #344040;
  border-bottom: 8px solid transparent;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .month-year-field .arrow.open {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.combo-radiobutton {
  border-radius: 0px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.combo-radiobutton .radio-list {
  min-width: 68px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  padding: 0 12px;
  background-color: #EFF3F6;
  border: 1px solid #EFF3F6;
  border-left: 0;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  cursor: pointer;
  position: relative;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.combo-radiobutton .radio-list:first-child {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0px 0 0 0px;
  border-left: 1px solid #EFF3F6;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.combo-radiobutton .radio-list:last-child {
  border-radius: 0 0px 0px 0;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.combo-radiobutton .radio-list.active, .overview-page .grid-chart .item-chart .content-chart .chart-header .controls.combo-radiobutton .radio-list:hover {
  -webkit-box-shadow: -1px 0 0 0 #25CED1;
  box-shadow: -1px 0 0 0 #25CED1;
  background-color: #25CED1;
  border-color: #25CED1;
  color: #FFF;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.combo-radiobutton .radio-list.active {
  font-family: "PingFang SC Medium";
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField {
  width: 90px;
  height: 32px;
  border-radius: 0px;
  border: none;
  cursor: pointer;
  position: relative;
  background-color: #fff;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .labelField {
  width: 100%;
  padding: 0 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .icon {
  width: 14px;
  height: 14px;
  background: url(../images/icon/ic_date_two.png) no-repeat center;
  background-size: 100%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: none;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .date {
  width: 100%;
  height: 100%;
  padding: 0 5px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .line {
  width: 10px;
  height: 2px;
  background-color: #333;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField.datetime.range .drop {
  width: 822px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField.datetime .drop {
  width: 412px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField.datetime .drop .box {
  width: 100%;
  margin-right: 16px;
  margin-top: 23px;
  float: left;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField.datetime .drop .box:last-child {
  margin-right: 0;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField.datetime .drop .box .title {
  line-height: normal;
  text-align: center;
  font-size: 12px;
  color: #333;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField.datetime .drop .box .bar {
  width: 100%;
  height: 220px;
  padding: 0 15px;
  margin-top: 15px;
  border-radius: 2px;
  border-top: solid 1px #D7D7D7;
  overflow: hidden;
  position: relative;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField.datetime .drop .box .bar .item-picker {
  height: 210px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField.datetime .drop .box .bar ul {
  width: 100%;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField.datetime .drop .box .bar ul li {
  line-height: 30px;
  height: 30px;
  text-align: center;
  margin-top: 0;
  font-size: 12px;
  color: #C0C4CC;
  cursor: pointer;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField.datetime .drop .box .bar ul li.selected {
  color: #333;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField.dateField-width {
  width: 100%;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .centerline:before {
  content: "";
  width: 1px;
  height: 100%;
  border-left: 1px solid #E4E4E4;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop {
  margin-top: 32px;
  margin-bottom: 0px;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  position: absolute;
  background-color: #FFF;
  z-index: 100000;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .datetime-content {
  width: 100%;
  position: relative;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .datetime-footer {
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  border-top: 1px solid #D7D7D7;
  font-size: 12px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .datetime-footer div:first-child {
  font-size: 12px;
  color: #25CED1;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .datetime-footer div:last-child {
  font-size: 12px;
  color: #303133;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module {
  width: 290px;
  padding: 5px 5px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month {
  width: 100%;
  height: 30px;
  font-size: 12px;
  color: #606266;
  position: relative;
  line-height: 30px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month .pre-button {
  position: absolute;
  top: 0;
  left: 0;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month .pre-button .pre-year {
  float: left;
  width: 30px;
  text-align: center;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month .pre-button .pre-year:hover {
  color: #25CED1;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month .pre-button .pre-month {
  width: 30px;
  height: 30px;
  text-align: center;
  float: left;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month .pre-button .pre-month:hover {
  color: #25CED1;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month .next-button {
  position: absolute;
  top: 0;
  right: 0;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month .next-button .next-year {
  width: 30px;
  height: 30px;
  text-align: center;
  float: right;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month .next-button .next-year:hover {
  color: #25CED1;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month .next-button .next-month {
  float: right;
  width: 30px;
  text-align: center;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month .next-button .next-month:hover {
  color: #25CED1;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .year-month .text {
  clear: both;
  margin: 0 auto;
  width: 120px;
  text-align: center;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .weeks {
  width: 100%;
  margin-bottom: 5px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .weeks ul {
  width: 100%;
  height: 30px;
  border-bottom: solid 1px #D7D7D7;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module .weeks ul li {
  margin-top: 0;
  color: #606266;
  cursor: default;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul {
  width: 100%;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul:after {
  content: "";
  display: table;
  clear: both;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul.months {
  padding-left: 20px;
  padding-right: 20px;
  border-top: solid 1px #EEE;
  margin-top: 15px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul.months .month {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
  color: #606266;
  float: left;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul.months .month:hover {
  color: #25CED1;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul.months .month.selected {
  color: #25CED1;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li {
  width: 40px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
  color: #C0C4CC;
  float: left;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.days {
  color: #606266;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.days:hover {
  color: #25CED1;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.days.selected {
  background-color: #F2F6FC;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.days.disable {
  color: #C0C4CC;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.days.over {
  background-color: #F2F6FC;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.active {
  font-weight: 700;
  color: #25CED1;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.over-start-date {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.over-end-date {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.start-date {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding-left: 5px;
  padding-top: 2.5px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.start-date div {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  background-color: #25CED1;
  color: #FFF;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.end-date {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-left: 10px;
  padding-top: 2.5px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.dateField .drop .date-module ul li.end-date div {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  background-color: #25CED1;
  color: #FFF;
}
.overview-page .grid-chart .item-chart .content-chart .chart-header .controls.icon-box {
  display: none;
  min-width: 0px;
}
.overview-page .grid-chart .item-chart .content-chart .tab-items {
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.overview-page .grid-chart .item-chart .content-chart .tab-items.left {
  margin-left: 20px;
  justify-content: flex-start;
}
.overview-page .grid-chart .item-chart .content-chart .tab-items .tab-item {
  width: 76px;
  height: 24px;
  font-size: 13px;
  color: #606266;
  text-align: center;
  line-height: 24px;
  border: #DADADA 1px solid;
  cursor: pointer;
  margin-left: -1px;
}
.overview-page .grid-chart .item-chart .content-chart .tab-items .tab-item.active {
  color: #fff;
  background: #25CED1;
  border: solid 1px #25CED1;
}
.overview-page .grid-chart .item-chart .content-chart .chart {
  width: 100%;
  height: calc(100% - 100px);
}
.overview-page .grid-chart .item-chart .content-chart .chart.curveCharts {
  height: calc(100% - 32px);
}
.overview-page .grid-chart .item-chart .content-chart .chart-item {
  width: 250px;
  height: 94px;
  background: #F0F2F5;
  padding-left: 16px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.overview-page .grid-chart .item-chart .content-chart .chart-item.total-count {
  background: url("../../images/icon/ic_station_number.png") no-repeat;
  background-size: 100%;
}
.overview-page .grid-chart .item-chart .content-chart .chart-item.total-count .text {
  color: #FFF;
}
.overview-page .grid-chart .item-chart .content-chart .chart-item.total-count .num {
  color: #FFF;
}
.overview-page .grid-chart .item-chart .content-chart .chart-item.offline-count {
  background: url("../../images/icon/ic_equipment_offline.png") no-repeat;
  background-size: 100%;
}
.overview-page .grid-chart .item-chart .content-chart .chart-item.offline-count .text {
  color: #FFF;
}
.overview-page .grid-chart .item-chart .content-chart .chart-item.offline-count .num {
  color: #FFF;
}
.overview-page .grid-chart .item-chart .content-chart .chart-item .text {
  color: #666666;
  font-size: 12px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-item .num {
  font-size: 28px;
  color: #333333;
  font-weight: 500;
}
.overview-page .grid-chart .item-chart .content-chart .chart-item.between {
  flex-direction: row;
  background: #FFF;
  justify-content: space-between;
  padding-left: 0px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-item.between .chart-item {
  width: 120px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-rate {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: flex-start;
  height: unset;
}
.overview-page .grid-chart .item-chart .content-chart .chart-rate .chart-rate-item {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(241, 244, 244);
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 10px 0 20px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-rate .chart-rate-item .info {
  flex: 1;
}
.overview-page .grid-chart .item-chart .content-chart .chart-rate .chart-rate-item .info .label {
  line-height: 18px;
  color: rgb(102, 102, 102);
  font-size: 12px;
}
.overview-page .grid-chart .item-chart .content-chart .chart-rate .chart-rate-item .info .value {
  line-height: 34px;
  color: rgb(51, 51, 51);
  font-size: 24px;
  font-weight: bold;
}
.overview-page .grid-chart .item-chart .content-chart .chart-rate .chart-rate-item .rate-chart {
  width: 100px;
  height: 100px;
}

.app-tips {
  border: solid 1px #FFA39E;
  background-color: #FFF1F0;
  font-size: 12px;
  color: #606266;
  display: flex;
  align-items: center;
  margin-right: 12px;
  height: 28px;
  border-radius: 28px;
  padding-left: 10px;
  padding-right: 10px;
}
.app-tips .tips-icon {
  width: 16px;
  height: 16px;
  background-image: url("../images/ic_tips_icon.png");
  margin-right: 6px;
  background-size: 100%;
}
.app-tips .remain-days {
  color: #D0021B;
  padding-left: 2px;
  padding-right: 2px;
  font-weight: 600;
}
.app-tips .recharge {
  color: #25CED1;
  cursor: pointer;
  margin-left: 20px;
}

.user-modal {
  width: 400px;
  padding: 0 16px;
  background-color: #FFF;
  box-shadow: 0 2px 6px rgba(213, 213, 213, 0.5);
  cursor: default;
  position: absolute;
  right: 0;
  top: 51px;
  z-index: 10;
  border-left: 0.5px solid #dadada;
  border-bottom: 0.5px solid #dadada;
  border-right: 0.5px solid #dadada;
}
.user-modal .blue {
  color: #25CED1;
}
.user-modal .grey {
  color: #999;
}
.user-modal .ic18 {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.user-modal .ic18 img {
  width: 100%;
  height: 100%;
}
.user-modal .info {
  padding: 26px 0;
  border-bottom: 1px solid #F1F1F1;
}
.user-modal .info .headImg img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.user-modal .info:last-child {
  border-bottom: 0;
}
.user-modal .info .sign {
  display: flex;
}
.user-modal .info .sign .box {
  height: 20px;
  line-height: 18px;
  padding: 0 6px;
  border: 1px solid #3CB254;
  background-color: #3CB254;
  font-size: 12px;
  color: #FFF;
}
.user-modal .info .sign .whiteBg {
  margin-left: 0;
  background-color: #FFF;
  color: #3CB254;
}
.user-modal .info .sign.blue .box {
  border-color: #25CED1;
  background-color: #25CED1;
}
.user-modal .info .sign.blue .whiteBg {
  background-color: #FFF;
  color: #25CED1;
}
.user-modal .info .sign.grey .box {
  border-color: #969DA9;
  background-color: #969DA9;
}
.user-modal .info .sign.grey .whiteBg {
  background-color: #FFF;
  color: #969DA9;
}
.user-modal .info .sign.red .box {
  border-color: #D0021B;
  background-color: #D0021B;
}
.user-modal .info .sign.red .whiteBg {
  background-color: #FFF;
  color: #D0021B;
}
.user-modal .img50 {
  width: 50px;
  height: 50px;
  background: #535353;
  border-radius: 50%;
}
.user-modal .img50 img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.user-modal .quit {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background: url("../images/icon/ic_nav_quit.png") no-repeat center/100%;
}
.user-modal .controls.combo-radiobutton .radio-list {
  width: 50px;
  min-width: 48px;
  height: 26px;
  line-height: 24px;
  border-color: #25CED1;
  color: #25CED1;
}
.user-modal .controls.combo-radiobutton .radio-list.active {
  background-color: #25CED1;
  color: #FFF;
}
.user-modal .list {
  width: 33.3333333333%;
  margin-top: 20px;
  cursor: pointer;
}
.user-modal .list.menu {
  display: flex;
}
.user-modal .list .num {
  text-decoration: underline;
}

.fee-items {
  display: flex;
  margin-bottom: 20px;
  min-width: 400px;
  justify-content: center;
}
.fee-items .fee-item {
  border: solid #F1F4F4 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}
.fee-items .fee-item:last-child {
  margin-right: 0px;
}
.fee-items .fee-item .icon {
  width: 100px;
  height: 100px;
  background-color: #F8FBFB;
  align-items: center;
  justify-content: center;
  display: flex;
}
.fee-items .fee-item .icon .icon-EB {
  width: 40px;
  height: 40px;
  background-image: url("../../images/fee/ic_EB.png");
  background-size: 100%;
}
.fee-items .fee-item .icon .icon-EV {
  width: 40px;
  height: 40px;
  background-image: url("../../images/fee/ic_EV.png");
  background-size: 100%;
}
.fee-items .fee-item .icon .icon-EBox {
  width: 40px;
  height: 40px;
  background-image: url("../../images/fee/ic_EBox.png");
  background-size: 100%;
}
.fee-items .fee-item .icon .icon-PB {
  width: 40px;
  height: 40px;
  background-image: url("../../images/fee/ic_PB.png");
  background-size: 100%;
}
.fee-items .fee-item .text {
  line-height: 30px;
  font-size: 12px;
  color: #333333;
}
.fee-items .fee-item:hover {
  border: solid #25CED1 1px;
}
.fee-items .fee-item:hover .icon {
  background-color: #F6FFFF;
}
.fee-items .fee-item:hover .icon .icon-EB {
  background-image: url("../../images/fee/ic_EB_over.png");
}
.fee-items .fee-item:hover .icon .icon-EV {
  background-image: url("../../images/fee/ic_EV_over.png");
}
.fee-items .fee-item:hover .icon .icon-EBox {
  background-image: url("../../images/fee/ic_EBox_over.png");
}
.fee-items .fee-item:hover .icon .icon-PB {
  background-image: url("../../images/fee/ic_PB_over.png");
}
.fee-items .fee-item:hover .text {
  color: #25CED1;
}

.order_info_box {
  width: 100%;
  background-color: rgb(239, 243, 246);
  padding: 20px;
}
.order_info_box .line {
  width: 1px;
  height: 24px;
  background-color: rgb(218, 218, 218);
  margin: 0 50px;
}

.user_box {
  padding: 4px 8px;
  background-color: rgb(239, 243, 246);
  display: flex;
  align-items: center;
}
.user_box .head_img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.device_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hsh-coupons {
  background-color: #FFEFEA;
  width: 300px;
  height: 90px;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
}
.hsh-coupons .activity_merge {
  position: relative;
  top: 0px;
  left: 0px;
  color: #FE744B;
  background-color: rgb(254, 248, 246);
  width: 90px;
  height: 20px;
  font-size: 10px;
  text-align: center;
}
.hsh-coupons .delete-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-image: url("../../images/icon/ic_coupon_del.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.hsh-coupons .hsh-coupons-content {
  display: flex;
  flex-direction: row;
}
.hsh-coupons .hsh-coupons-content .hsh-coupons-amount {
  margin-right: 10px;
  display: flex;
  margin-left: 10px;
}
.hsh-coupons .hsh-coupons-content .hsh-coupons-amount .hsh-coupons-currey {
  font-size: 14px;
  color: #FE744B;
  margin-top: 7px;
}
.hsh-coupons .hsh-coupons-content .hsh-coupons-amount .hsh-coupons-money {
  font-size: 30px;
  color: #FE744B;
  font-weight: bold;
}
.hsh-coupons .hsh-coupons-content .hsh-coupons-split {
  margin-right: 13px;
  border-right: dashed 1px #FE744B;
  height: 20px;
  margin-top: 10px;
}
.hsh-coupons .hsh-coupons-content .hsh-coupons-limit {
  display: flex;
  flex-direction: column;
}
.hsh-coupons .hsh-coupons-content .hsh-coupons-limit .hsh-coupons-limit-money {
  font-size: 12px;
  color: #FE744B;
  margin-top: 5px;
}
.hsh-coupons .hsh-coupons-content .hsh-coupons-limit .hsh-coupons-expired-date {
  font-size: 11px;
  color: #FE744B;
}
.hsh-coupons .hsh-coupons-footer {
  background-color: rgb(254, 248, 246);
  height: 24px;
  width: 260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-top: 2px;
}
.hsh-coupons .hsh-coupons-footer .hsh-coupons-name {
  font-size: 12px;
  color: #FF8F6F;
  padding-left: 6px;
  padding-right: 6px;
}
.hsh-coupons.buttons:hover .delete-btn {
  display: block;
}

.hsh-coupons-add {
  width: 40px;
  height: 84px;
  border: dashed 2px #FE744B;
  background-image: url("../../images/icon/ic_coupon_add.png");
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  cursor: pointer;
  border-radius: 4px;
}

.edit-domain {
  display: flex;
}
.edit-domain .domain {
  font-size: 12px;
  color: #333;
  font-weight: 600;
  margin-right: 10px;
}
.edit-domain .edit-button {
  width: 18px;
  height: 18px;
  background-image: url("../../images/icon/ic_code_edit.png");
  background-size: 100%;
  cursor: pointer;
}
.edit-domain .edit-button.submit {
  background-image: url("../../images/icon/ic_code_submit.png");
}

.hsh-licence {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hsh-licence ul {
  overflow: auto;
  padding: 0;
  margin: 0;
}
.hsh-licence ul li {
  list-style: none;
}
.hsh-licence .licence-no .items {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hsh-licence .licence-no .items .item {
  width: 38px;
  height: 38px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  display: inline-block;
  line-height: 36px;
  font-size: 18px;
  color: #000;
  text-align: center;
  margin-left: 5px;
  cursor: pointer;
  user-select: none;
}
.hsh-licence .licence-no .items .item:nth-last-child(1) {
  border: 2px dashed #00b520;
}
.hsh-licence .licence-no .items .item.active {
  border: 1px solid #f3483e;
  color: #f3483e;
}
.hsh-licence .keyboard-panel {
  position: absolute;
  z-index: 10;
  width: 493px;
  top: 45px;
  left: 0;
}
.hsh-licence .keyboard-panel .keyboard {
  background: #D0D5D9;
  padding: 5px 5px;
  padding-top: 3px;
  border-radius: 5px;
  box-shadow: 5px 5px 10px #9e9e9e;
  display: none;
}
.hsh-licence .keyboard-panel .keyboard ul li {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #fff;
  margin: 5px 3px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
  box-shadow: 2px 2px 3px #979797;
  user-select: none;
}
.hsh-licence .keyboard-panel .keyboard ul li .delete-btn {
  width: 90px;
  background: #c20000;
  float: right;
  color: #fff;
}
.hsh-licence .keyboard-panel .keyboard ul li:hover {
  box-shadow: 0px 0px 3px #f3483e;
  color: #f3483e;
}

.text_info {
  display: flex;
  margin-left: 5px;
  margin-right: 5px;
  align-items: center;
  font-size: 12px;
  color: #999;
}
.text_info .text_icon {
  width: 15px;
  height: 15px;
  font-family: Ionicons;
  background-color: #25CED1;
  text-align: center;
  line-height: 15px;
  border-radius: 50%;
  color: white;
  font-size: 6px;
  margin-left: 10px;
  margin-right: 5px;
}

.none_message_icon {
  width: 94px;
  height: 80px;
  background: url(../images/icon/ic_nodata_massage.png) no-repeat center/100%;
}

.personal-dialog .userImg {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #535353;
  font-family: "PingFang SC Medium";
  font-size: 50px;
  color: #FFF;
  position: relative;
}
.personal-dialog .userImg img {
  border-radius: 50%;
  z-index: 1;
}
.personal-dialog .userImg .user-head-edit {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url(../../images/icon/ic_head_change.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
  cursor: pointer;
}

.sharing-users {
  display: flex;
  flex-wrap: wrap;
}
.sharing-users .sharing-item {
  display: flex;
  align-items: center;
  height: 24px;
}
.sharing-users .sharing-item .sharing-name {
  margin-left: 6px;
  max-width: 200px;
}
.sharing-users .sharing-item .sharing-rate {
  margin-left: 6px;
}
.sharing-users .sharing-item .sharing-line {
  width: 1px;
  height: 10px;
  background: #D8E0E1;
  margin-left: 8px;
  margin-right: 8px;
}
.sharing-users .sharing-item:last-child .sharing-line {
  display: none;
}

.order-free {
  background: #25CED1;
  color: #FFF;
  border-radius: 20px;
  font-size: 12px;
  padding: 0 3px;
}

.order-freeze {
  background: #D0021B;
  color: #FFF;
  border-radius: 20px;
  font-size: 12px;
  padding: 0 3px;
}

.order-vin {
  background: #1989FA;
  color: #FFF;
  border-radius: 20px;
  font-size: 12px;
  padding: 0 3px;
}

.order-card {
  background: #606266;
  color: #FFF;
  border-radius: 20px;
  font-size: 12px;
  padding: 0 3px;
}

.order-coin {
  background: #6F0266;
  color: #FFF;
  border-radius: 20px;
  font-size: 12px;
  padding: 0 3px;
}

.virtual-user {
  background: #25CED1;
  color: #FFF;
  border-radius: 20px;
  font-size: 12px;
  padding: 0 3px;
}

.excel-icon {
  width: 26px;
  height: 32px;
  margin-right: 10px;
}

.ic16 {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  flex-shrink: 0;
  margin-left: 20px;
}
.ic16.down {
  background: url("../../images/icon/ic_card_download.png") no-repeat center/100%;
  cursor: pointer;
}
.ic16.del {
  background: url("../../images/icon/ic_card_del.png") no-repeat center/100%;
  cursor: pointer;
}

.password-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.password-items .password-item {
  width: 40px;
  height: 40px;
  border: solid 1px #bbb;
  font-size: 24px;
  text-align: center;
  margin-right: 10px;
}
.password-items .password-item.end {
  margin-right: 0px;
}

.controls.countryCombobox {
  padding: 0 10px;
  border-radius: 0px;
  background-color: #FFF;
  cursor: pointer;
  position: relative;
  border: none;
  border-right: 1px solid #e4e7ed;
  width: 80px;
  height: 38px;
}
.controls.countryCombobox:hover {
  border-color: #C0C4CC;
}
.controls.countryCombobox.openDrop {
  border-color: #25CED1;
}
.controls.countryCombobox.openDrop .drop-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.controls.countryCombobox .label-field {
  font-size: 12px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: block;
  line-height: 40px;
  width: 0;
  flex: 1;
}
.controls.countryCombobox .label-field.placeholder {
  color: #999;
}
.controls.countryCombobox.enabled .label-field {
  color: #999;
}
.controls.countryCombobox .drop-list {
  width: 320px;
  max-height: 272px;
  margin-top: 39px;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  overflow-y: auto;
  position: absolute;
  left: 0;
  z-index: 100000;
}
.controls.countryCombobox .drop-list .search-box {
  width: 100%;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.countryCombobox .drop-list .search-box:hover {
  background-color: #FFF;
}
.controls.countryCombobox .drop-list .search-box .icon {
  width: 30px;
  background: url("../images/icon/ic_search.png") no-repeat center;
  background-size: 14px;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.countryCombobox .drop-list .search-box input {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  padding-left: 2px;
  font-size: 12px;
  color: #333;
}
.controls.countryCombobox .drop-list li {
  height: 40px;
  padding-left: 10px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.countryCombobox .drop-list li span {
  display: inline-block;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.controls.countryCombobox .drop-list li:hover {
  background-color: #25CED1;
  color: #FFF;
}
.controls.countryCombobox .drop-list li.on {
  background-color: #25CED1;
  font-family: "PingFang SC Medium";
  color: #FFF;
}
.controls.countryCombobox .drop-list::-webkit-scrollbar:horizontal {
  height: 8px;
}
.controls.countryCombobox .drop-list::-webkit-scrollbar {
  width: 8px;
}
.controls.localComboBox {
  border-radius: 0px;
  background-color: #FFF;
  cursor: pointer;
  height: 32px;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}
.controls.localComboBox:hover {
  border-color: #C0C4CC;
}
.controls.localComboBox.openDrop {
  border-color: #25CED1;
}
.controls.localComboBox.openDrop .drop-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.controls.localComboBox .lang-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: url("../images/icon/ic_login_language.png") no-repeat center/100%;
}
.controls.localComboBox .label-field {
  font-size: 12px;
  color: #25CED1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: block;
  line-height: 40px;
  flex: 1;
}
.controls.localComboBox .label-field.placeholder {
  color: #999;
}
.controls.localComboBox.enabled .label-field {
  color: #999;
}
.controls.localComboBox .icon-box {
  min-width: 0px;
  margin-left: 6px;
}
.controls.localComboBox .icon-box .drop-icon {
  width: 10px;
  height: 10px;
  margin-left: 2px;
  background: url("../images/icon/ic_login_open.png") no-repeat center/100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.localComboBox .drop-list {
  min-width: 80px;
  max-height: 272px;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 32px;
  z-index: 100000;
}
.controls.localComboBox .drop-list .search-box {
  width: 100%;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.controls.localComboBox .drop-list .search-box:hover {
  background-color: #FFF;
}
.controls.localComboBox .drop-list .search-box .icon {
  width: 30px;
  background: url("../images/icon/ic_search.png") no-repeat center;
  background-size: 14px;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.controls.localComboBox .drop-list .search-box input {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  padding-left: 2px;
  font-size: 12px;
  color: #333;
}
.controls.localComboBox .drop-list li {
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls.localComboBox .drop-list li span {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.controls.localComboBox .drop-list li:hover {
  background-color: #25CED1;
  color: #FFF;
}
.controls.localComboBox .drop-list li.on {
  background-color: #25CED1;
  font-family: "PingFang SC Medium";
  color: #FFF;
}
.controls.localComboBox .drop-list::-webkit-scrollbar:horizontal {
  height: 8px;
}
.controls.localComboBox .drop-list::-webkit-scrollbar {
  width: 8px;
}

.imagesupload .delete {
  background-color: #DBD9D9 !important;
  border-radius: 50%;
}

.add-service {
  width: 100%;
  padding: 15px 20px;
  background-color: #FFF;
}
.add-service .form {
  width: 40%;
  padding-right: 40px;
}
.add-service .form .hsh-form-row .hsh-form-item {
  margin-left: 10px;
}
.add-service .form .video-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.add-service .form .video-bg .play-icon {
  width: 32px;
  height: 32px;
  background: url("../images/icon/ic_play.png") no-repeat center;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.add-service .form .controls .icon-box .drop-icon {
  background: url("../images/icon/ic_mine_shape.png") no-repeat center;
  background-size: 8px;
}
.add-service .form .input-bg {
  background-color: #F5F7FA;
}
.add-service .edit {
  width: 60%;
  margin-top: 48px;
}
.add-service .edit .edit-box {
  width: 100%;
  height: -webkit-calc(100% - 30px);
  height: -moz-calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 4px;
  border: 1px solid #CDCDCD;
}
.add-service .specs-box {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  border: 1px solid #D7D7D7;
}
.add-service .specs-box .mt15:first-child {
  margin-top: 0;
}
.add-service .specs-box .specs-row {
  width: 100%;
  padding: 10px;
  background-color: #F6F8FC;
  display: flex;
  flex-direction: row;
}
.add-service .specs-box .specs-row .label {
  font-size: 14px;
  color: #111111;
  line-height: 30px;
  margin-right: 10px;
}
.add-service .specs-box .specs-row .split-line {
  width: 1px;
  background-color: #E4E7ED;
  height: 14px;
  float: left;
  margin-right: 10px;
  margin-top: 8px;
}
.add-service .specs-box .specs-row .switchButton {
  float: left;
  margin-top: 7px;
  margin-right: 10px;
}
.add-service .specs-box .specs-row .setlevel {
  font-size: 14px;
  margin-top: 5px;
  color: #333333;
  margin-right: 10px;
  float: left;
}
.add-service .specs-box .specs-row .input-num {
  width: 50px;
  margin-right: 10px;
  height: 32px;
  line-height: 30px;
  background-color: #FFF;
  padding: 0 15px;
  border-radius: 4px;
  border: 1px solid #E4E7ED;
  font-size: 14px;
  color: #333;
  float: left;
}
.add-service .specs-box .specs-row .delBtn {
  margin: 4px 3px;
}
.add-service .specs-box .combobox {
  width: 120px;
  height: 32px;
  line-height: 30px;
  background-color: #FFF;
}
.add-service .specs-box .combobox .icon-box .drop-icon {
  background: url("libs/images/icon/ic_arrow_two.png") no-repeat center;
  background-size: 8px;
}
.add-service .specs-box .tag-label .labelValue {
  font-size: 14px;
  color: #111111;
  line-height: 30px;
  margin-left: 10px;
  margin-right: 10px;
}
.add-service .specs-box .tag-label .tag .name {
  background: transparent;
  font-size: 13px;
  color: #333;
}
.add-service .specs-box .tag-label .tag .icon-guanbi {
  width: 14px;
  height: 14px;
  margin: 8px 0;
  margin-left: 10px;
  background-image: url("../images/icon/ic_checked_combobox_delete.png");
  background-size: 100%;
}
.add-service .specs-box .tag-label .tag .icon-guanbi:hover {
  background-image: url("../images/icon/ic_checked_combobox_delete_over.png");
  background-size: 100%;
}
.add-service .specs-box .tag-label .btn-add-tag {
  width: auto;
  line-height: 32px;
  border: 0;
  font-size: 13px;
  color: #1989FA;
  position: relative;
}
.add-service .specs-box .add-eject {
  width: 264px;
  padding: 6px;
  background-color: #FFF;
  border: 1px solid #D7D7D7;
  -webkit-box-shadow: 0 -4px 4px #D7D7D7;
  box-shadow: 0 -4px 4px #D7D7D7;
  position: absolute;
  top: 34px;
  left: -8px;
}
.add-service .specs-box .add-eject:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid #FFF;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  top: -10px;
  left: 12px;
}
.add-service .specs-box .add-eject .combobox {
  width: 176px;
  margin-right: 5px;
}
.add-service .specs-box .add-eject .fs12 {
  line-height: 30px;
  padding: 0 5px;
  cursor: pointer;
}
.add-service .specs-box .drop-list {
  text-align: left;
  top: 32px;
  margin-top: 0px;
}
.add-service .specs-box .drop-list li:first-child {
  /*padding-left: 0;*/
}
.add-service .specs-box .drop-list .input-search-button {
  width: 100%;
  height: 32px;
  border: 0;
  border-bottom: 1px solid #D7D7D7;
}
.add-service .specs-box .drop-list .input-search-button .icon {
  background: url("../../images/icon/ic_search.png") no-repeat center;
  background-size: 14px;
}
.add-service .specs-box .drop-list li input {
  background-color: transparent;
}
.add-service .tableContainer .split-line {
  width: 1px;
  background-color: #E4E7ED;
  height: 14px;
  float: left;
  margin-right: 10px;
  margin-top: 8px;
}
.add-service .tableContainer .switchButton {
  float: left;
  margin-top: 7px;
  margin-right: 10px;
}
.add-service .tableContainer .setlevel {
  font-size: 14px;
  margin-top: 5px;
  color: #333333;
  margin-right: 10px;
  float: left;
}
.add-service .tableContainer .input-num {
  width: 50px;
  margin-right: 10px;
  height: 32px;
  line-height: 30px;
  background-color: #FFF;
  padding: 0 15px;
  border-radius: 4px;
  border: 1px solid #E4E7ED;
  font-size: 14px;
  color: #333;
  float: left;
}
.add-service .delBtn {
  width: 24px;
  height: 24px;
  background: url("../../images/icon/ic_delete1.png") no-repeat center;
  background-size: 12px;
  cursor: pointer;
}
.add-service .service-table {
  margin-top: 20px;
}
.add-service .service-table .tableContainer {
  margin-top: 22px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.add-service .service-table .table {
  width: 100%;
}
.add-service .service-table .table tr:hover td {
  background-color: transparent;
}
.add-service .service-table .table tr {
  border: 1px solid #EBEEF5;
}
.add-service .service-table .table th {
  background-color: #F6F8FC;
  font-family: "PingFang SC Medium";
  color: #333;
}
.add-service .service-table .table .hsh-input {
  width: 70px;
  height: 30px;
  text-align: center;
  padding: 0 6px;
  margin: 0 auto;
}
.add-service .selectIcon {
  width: 17px;
  height: 17px;
  margin-right: 12px;
  background: url("../../images/icon/ic_check_uncheck.png") no-repeat center;
  background-size: 100%;
  cursor: pointer;
  flex-shrink: 0;
}
.add-service .selectIcon.active {
  background: url("../../images/icon/ic_check_checked.png") no-repeat center;
  background-size: 100%;
}

.add-service ~ .hsh-flex-center .controls.button {
  width: 110px;
  margin-right: 25px;
}

.product-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
}
.product-list .list {
  margin-right: 15px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.product-list .list:last-child {
  margin-right: 0;
}
.product-list .list .img {
  width: 60px;
  height: 60px;
  margin-bottom: 2px;
}
.product-list .list .fs10 {
  color: #000;
}

.product-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.product-box .product-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-box .product-items .item {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #f5f5f5;
  padding-left: 8px;
  margin-top: 6px;
  padding-right: 12px;
}
.product-box .product-items .item .img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.product-box .product-items .item .info {
  height: 54px;
  margin-left: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.product-box .product-items .item .info .title {
  font-size: 12px;
  color: #333333;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.product-box .product-items .item .info .spec-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 6px;
}
.product-box .product-items .item .info .spec-box .spec {
  font-size: 10px;
  color: #888888;
}
.product-box .product-items .item .info .spec-box .num {
  font-size: 10px;
  color: #333;
  margin-right: 8px;
}
.product-box .product-items .item .info .price {
  text-align: left;
  font-size: 12px;
  color: #333;
  font-weight: bold;
}
.product-box .product-items .item:first-child {
  margin-top: 0px;
}
.product-box .expand-button {
  min-width: 65px;
  height: 20px;
  border: solid 1px #A3D0FD;
  border-radius: 10px;
  background-color: #E6F1FC;
  color: #1989FA;
  line-height: 20px;
  font-size: 12px;
  position: absolute;
  right: 5px;
  top: 36px;
  opacity: 0.5;
  cursor: pointer;
  text-align: center;
}
.product-box .expand-button:hover {
  opacity: 1;
}
.product-box .expand-button .icon {
  width: 10px;
  height: 10px;
  margin-left: 3px;
  background-image: url("../../images/icon/ic_cms_order_open.png");
  background-size: 100%;
}
.product-box .expand-button .icon.collopse {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.orderImg {
  width: 100%;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.orderImg img {
  width: 90px;
  height: 90px;
  display: block;
  margin-right: 10px;
  flex-shrink: 0;
}
.orderImg .goods_detail {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
}
.orderImg .goods_detail .name {
  color: rgb(51, 51, 51);
  font-size: 14px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.orderImg .goods_detail .spec {
  color: rgb(153, 153, 153);
  font-size: 12px;
  text-align: left;
}
.orderImg .goods_detail .type {
  display: flex;
  align-items: center;
}
.orderImg .goods_detail .type span {
  color: rgb(208, 2, 27);
  font-size: 11px;
  text-align: left;
  padding: 0 5px;
  border: 1px solid #D0021B;
  border-radius: 2px;
  margin-right: 8px;
}

.return-goods {
  width: 100%;
}
.return-goods li {
  width: 100%;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #DEDEDE;
  -webkit-box-shadow: 0 2px 4px rgba(239, 239, 239, 0.5);
  box-shadow: 0 2px 4px rgba(239, 239, 239, 0.5);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.return-goods li:last-child {
  margin-bottom: 0;
}
.return-goods li .img {
  width: 68px;
  height: 68px;
  margin-right: 10px;
}
.return-goods li .color2 {
  color: #222;
}
.return-goods li .controls.number {
  border: 0;
}
.return-goods li .controls.number input {
  border: 0;
}
.return-goods li .controls.number .clickBtn.cut {
  background: url("../../images/icon/ic_decrease_gray.png") no-repeat center;
  background-size: 100%;
}
.return-goods li .controls.number .clickBtn.cut.active {
  background: url("../../images/icon/ic_decrease.png") no-repeat center;
  background-size: 100%;
}
.return-goods li .controls.number .clickBtn.add {
  background: url("../../images/icon/ic_increase_gray.png") no-repeat center;
  background-size: 100%;
}
.return-goods li .controls.number .clickBtn.add.active {
  background: url("../../images/icon/ic_increase.png") no-repeat center;
  background-size: 100%;
}
.return-goods .selectIcon {
  width: 17px;
  height: 17px;
  margin-right: 12px;
  background: url("../../images/icon/ic_check_uncheck.png") no-repeat center;
  background-size: 100%;
  cursor: pointer;
  flex-shrink: 0;
}
.return-goods .selectIcon.active {
  background: url("../../images/icon/ic_check_checked.png") no-repeat center;
  background-size: 100%;
}

.commodity-img {
  width: 60px;
  height: 60px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.hsh-tip {
  overflow-x: auto;
}
.hsh-tip .tips {
  position: fixed;
  display: none;
  padding: 10px;
  background: #FFFFFF;
  border: 1px solid #25CED1;
  z-index: 1002;
  top: 0;
  transform: translateY(calc(-100% - 10px));
  box-shadow: 0px 2px 6px 0px rgb(213, 213, 213);
}
.hsh-tip .tips::before {
  width: 12px;
  height: 12px;
  content: "";
  border: 1px solid #25CED1;
  border-left: none;
  border-top: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, calc(50% + 1px)) rotate(45deg);
  z-index: 101;
  background: #FFFFFF;
}
.hsh-tip .tips::after {
  width: 100%;
  height: 30px;
  content: "";
  bottom: 0;
  display: block;
  position: absolute;
  left: 0;
  transform: translateY(100%);
}
.hsh-tip .tips .tips-content {
  max-height: 180px;
  overflow-y: auto;
}
.hsh-tip .tips .tips-content::-webkit-scrollbar {
  width: 2px;
}
.hsh-tip:hover {
  color: #25CED1;
}
.hsh-tip:hover .tips {
  display: unset;
  color: #606266;
}

.icon-btn {
  height: 24px;
  padding: 0 10px;
  border: 1px solid #25CED1;
  color: #25CED1;
  cursor: pointer;
}

.complaint_reply {
  padding-bottom: 76px !important;
}
.complaint_reply .container {
  display: flex;
  padding: 24px;
  background-color: #EFF3F6;
  justify-content: space-between;
}
.complaint_reply .container .container_left {
  padding-right: 50px;
  flex: 7;
}
.complaint_reply .container .container_right {
  flex: 3;
  display: flex;
  align-content: center;
  justify-content: right;
}
.complaint_reply .container .container_right .lastBox {
  position: relative;
}
.complaint_reply .container .container_right .lastBox .lastNum {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  line-height: 50px;
  font-size: 12px;
  color: #FFFFFF;
}
.complaint_reply .container .container_right .img {
  width: 50px;
  height: 50px;
}
.complaint_reply .inner {
  overflow: scroll;
  padding-top: 17px;
}
.complaint_reply .timeline {
  width: 100%;
  max-height: 300px;
  overflow: visible;
  margin-top: 17px;
  padding-left: 5px;
}
.complaint_reply .timeline .timeline_item {
  border-left: 2px solid #E7E7E7;
  position: relative;
  padding: 17px 0px 17px 17px;
}
.complaint_reply .timeline .timeline_item:last-child {
  border-left: none;
  padding-left: 19px;
}
.complaint_reply .timeline .timeline_item .type {
  position: absolute;
  top: -10px;
  padding: 1px 6px;
  background-color: #25CED1;
  color: #FFFFFF;
  font-size: 12px;
  display: flex;
  align-content: center;
  text-indent: 1.5em;
}
.complaint_reply .timeline .timeline_item .type::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #D8D8D8;
  border-radius: 50%;
  margin-left: -30px;
}
.complaint_reply .timeline .timeline_item .imgs {
  margin: 10px 0;
}
.complaint_reply .timeline .timeline_item .text {
  font-size: 12px;
}
.complaint_reply .timeline .timeline_item .time {
  font-size: 12px;
  color: #999999;
}
.complaint_reply .bottomBox {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  display: flex;
  line-height: 56px;
  justify-content: space-between;
  align-content: center;
  box-shadow: 0px -1px 6px 0px rgba(221, 221, 221, 0.5);
  font-size: 12px;
  padding: 0 26px;
  background: #FFF;
}
.complaint_reply .bottomBox .btns {
  display: flex;
  align-content: center;
  justify-content: right;
  flex-wrap: wrap;
}
.complaint_reply .bottomBox .btns .refund {
  background-color: #25CED1;
  color: #FFFFFF;
  border: none;
  position: relative;
}
.complaint_reply .bottomBox .btns .refund .refund_btns {
  position: absolute;
  top: 40px;
  left: 0;
}
.complaint_reply .bottomBox .btns .refund .refund_btns div {
  width: 100px;
  height: 36px;
  line-height: 36px;
  background: #FFFFFF;
  color: black;
  padding-left: 12px;
}
.complaint_reply .bottomBox .btns .refund .refund_btns div:hover {
  background-color: #EFF2F5;
}
.complaint_reply .bottomBox .btns .done {
  background-color: #23CA6A;
  color: #FFFFFF;
  border: none;
}

.advert-time-picker {
  width: 150px;
  display: flex;
  align-items: center;
  border: 1px solid #DADADA;
  color: rgb(51, 51, 51);
}
.advert-time-picker .combobox {
  flex: 1;
  width: unset;
  border: none;
  padding: unset;
}
.advert-time-picker .combobox .label-field {
  text-align: center;
}
.advert-time-picker .combobox .icon-box {
  display: none;
}
.advert-time-picker .line {
  color: rgb(51, 51, 51);
}

.advert-times {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.advert-times .times-item {
  position: relative;
}
.advert-times .times-item .del {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background: red;
  border-radius: 50%;
  background: url("../images/icon/ic_checked_combobox_delete_over.png") 100%/100% no-repeat;
  cursor: pointer;
}
.advert-times .times-item .add-time {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #1989FA;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
.advert-times .times-item .add-time::before {
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../../images/icon/ic_coupons_time_add.png") 100%/100% no-repeat;
}

.item-label {
  background: #25CED1;
  color: #FFF;
  padding: 0 8px 0 8px;
  border-radius: 12px;
  margin-right: 8px;
}

.package-setting {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.package-setting .setting {
  display: flex;
  gap: 10px;
}
.package-setting .setting .del {
  display: flex;
  align-items: center;
}
.package-setting .setting .del .del-btn {
  width: 24px;
  height: 24px;
  background: url("../../images/icon/ic_delete1.png") no-repeat center;
  background-size: 12px;
  cursor: pointer;
}
.package-setting .setting .del .del-text {
  font-size: 12px;
  color: rgb(153, 153, 153);
}

.add-setting {
  display: flex;
  align-items: center;
  margin-top: 5px;
  cursor: pointer;
}
.add-setting .add-btn {
  width: 24px;
  height: 24px;
  background: url("../../images/icon/ic_add.png") no-repeat center;
  background-size: 12px;
  cursor: pointer;
}
.add-setting .add-text {
  font-size: 12px;
  color: #25CED1;
}

.screen-page {
  padding: 5px;
  background-color: #052222;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.screen-page .page-content {
  flex: 1;
}
.screen-page .page-content .chart-container {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 5px;
}
.screen-page .page-content .chart-container .chart-item {
  background-color: #0A2A3C;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.screen-page .page-content .chart-container .chart-item::before {
  position: absolute;
  width: 120px;
  height: 20px;
  display: block;
  content: attr(data-title);
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  background: url("../../images/screen/blue/ic_module_title_bg.png") 100%/100% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(223, 247, 247);
  font-size: 12px;
}
.screen-page .page-content .chart-container .chart-item.center-top {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 4;
}
.screen-page .page-content .chart-container .chart-item.center-top .title {
  width: 100%;
  position: relative;
}
.screen-page .page-content .chart-container .chart-item.center-top .title span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: -webkit-linear-gradient(right, #E0F8FF, #E0F8FF, #E0F8FF, #E0F8FF, #E0F8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: bold;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section {
  flex: 1;
  padding: 5px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .map {
  grid-row-start: 1;
  grid-row-end: 3;
  position: relative;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .map .map-section {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .map .map-section #map-container {
  height: 100%;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .map .map-section .legends {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .map .map-section .legend {
  position: absolute;
  z-index: 300;
  bottom: 40px;
  width: 100px;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .map .map-section .legend .label {
  line-height: 18px;
  color: rgb(223, 247, 247);
  font-size: 12px;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .map .map-section .legend .value {
  color: #2DB4FF;
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .map .map-section .legend.lt {
  left: 20px;
  bottom: 120px;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .map .map-section .legend.rt {
  bottom: 120px;
  right: 10px;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .map .map-section .legend.lb {
  left: 20px;
  bottom: 30px;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .map .map-section .legend.rb {
  right: 10px;
  bottom: 30px;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .statistics {
  grid-row-start: 3;
  grid-row-end: 4;
  display: flex;
  align-items: center;
  width: 100%;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .statistics .statistics-item {
  flex: 1;
  margin-right: 5px;
  background-color: rgb(5, 34, 34);
  height: 100%;
  padding: 5px;
  display: flex;
  align-items: center;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .statistics .statistics-item:last-child {
  margin-right: 0;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .statistics .statistics-item .charts {
  width: 100%;
  height: 100%;
  position: relative;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .statistics .statistics-item .charts .charts-container {
  height: 100%;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .statistics .statistics-item .charts .img {
  max-height: 100%;
  max-width: 100%;
  width: unset;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .statistics .statistics-item .charts .charts-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .statistics .statistics-item .charts .charts-container #charts-device {
  height: 100%;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .statistics .statistics-item .charts .charts-container #device-type-num {
  height: 100%;
}
.screen-page .page-content .chart-container .chart-item.center-top .mp-statistics-section .statistics .statistics-item .data {
  flex: 1;
  flex-shrink: 0;
  width: 50%;
}
.screen-page .page-content .chart-container .chart-item .item-container {
  width: 100%;
  height: calc(100% - 25px);
  padding-bottom: 5px;
}
.screen-page .page-content .chart-container .chart-item .item-container .statistics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  padding: 5px;
  height: 100%;
}
.screen-page .page-content .chart-container .chart-item .item-container .statistics .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.screen-page .page-content .chart-container .chart-item .item-container .statistics .item .title {
  font-size: 12px;
  color: rgb(223, 247, 247);
}
.screen-page .page-content .chart-container .chart-item .item-container .statistics .item .data-container {
  margin-top: 20px;
  max-width: 100px;
  max-height: 100px;
  position: relative;
}
.screen-page .page-content .chart-container .chart-item .item-container .statistics .item .data-container img {
  max-width: 100%;
  max-height: 100%;
  width: unset;
  height: unset;
}
.screen-page .page-content .chart-container .chart-item .item-container .statistics .item .data-container .data {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #2DB4FF;
  font-size: 24px;
  font-weight: bold;
}
.screen-page .page-content .chart-container .chart-item .item-container .scroll-section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.screen-page .page-content .chart-container .chart-item .item-container .scroll-section .scroll-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
}
.screen-page .page-content .chart-container .chart-item .item-container .scroll-section .scroll-container .item {
  display: flex;
  height: 21px;
  align-items: center;
  background-color: #063536;
  justify-content: flex-start;
  animation: fadeToLeft 1s ease;
  padding: 0 5px;
}
.screen-page .page-content .chart-container .chart-item .item-container .scroll-section .scroll-container .item:nth-child(2n) {
  background-color: #062C2D;
}
.screen-page .page-content .chart-container .chart-item .item-container .recharge-notification .item {
  justify-content: space-between !important;
}
.screen-page .page-content .chart-container .chart-item .item-container .recharge-notification .userName, .screen-page .page-content .chart-container .chart-item .item-container .recharge-notification .price {
  color: #0EDAAE;
  font-size: 12px;
  flex-shrink: 0;
}
.screen-page .page-content .chart-container .chart-item .item-container .recharge-notification .userName {
  margin-right: 10px;
  width: 20%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.screen-page .page-content .chart-container .chart-item .item-container .recharge-notification .text, .screen-page .page-content .chart-container .chart-item .item-container .recharge-notification .text2 {
  font-size: 12px;
  color: #DFF7F7;
  flex-shrink: 0;
}
.screen-page .page-content .chart-container .chart-item .item-container .recharge-notification .date {
  font-size: 12px;
  color: #3EADEB;
  flex-shrink: 0;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .userName, .screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .action, .screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .date, .screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .area, .screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .text,
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .text2 {
  font-size: 10px;
  flex-shrink: 0;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .text {
  margin: 0 10px;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .userName {
  width: 20%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .userName, .screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .action {
  color: #0EDAAE;
  flex-shrink: 0;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .date, .screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .area {
  color: #3EADEB;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .date {
  margin-right: 10px;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .area {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .action {
  margin-right: 10px;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .text,
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .text2 {
  color: #DFF7F7;
  flex-shrink: 0;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification .text2 {
  margin-right: 10px;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification2 {
  padding: 0 2.2%;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification2 .scroll-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification2 .scroll-container .item {
  display: flex;
  font-size: 12px;
  height: 21px;
  align-items: center;
  background-color: #063536;
  justify-content: flex-start;
  padding: 0 5px;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification2 .scroll-container .item .station-name {
  width: 20%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-shrink: 0;
  color: #0EDAAE;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification2 .scroll-container .item .device-name {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-shrink: 0;
  color: #0EDAAE;
  margin-right: 10px;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification2 .scroll-container .item .date {
  color: #0EDAAE;
  margin-left: 10px;
  margin-right: 10px;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification2 .scroll-container .item .text {
  color: #DFF7F7;
  flex-shrink: 0;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification2 .scroll-container .item .status {
  color: #3EADEB;
}
.screen-page .page-content .chart-container .chart-item .item-container .consumer-notification2 .scroll-container .item:nth-child(2n) {
  background-color: #062C2D;
}

@keyframes scroll {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes fadeToLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.hsh-index-component {
  width: 100%;
  height: 100%;
  padding: 15px 15px 0;
  background-color: #FFF;
  display: flex;
  position: relative;
}
.hsh-index-component .hsh-left-choose {
  height: 100%;
  width: 100px;
  flex-shrink: 0;
  position: relative;
}
.hsh-index-component .hsh-left-choose .hsh-left-choose-header {
  width: 100px;
  height: 30px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 14px;
  padding-top: 10px;
}
.hsh-index-component .hsh-left-choose .hsh-left-choose-switch {
  width: 100px;
  height: 30px;
  display: flex;
  margin-bottom: 16px;
}
.hsh-index-component .hsh-left-choose .hsh-left-choose-switch div {
  cursor: pointer;
  width: 50px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  box-sizing: border-box;
  color: #333333;
  font-size: 13px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(232, 232, 232);
}
.hsh-index-component .hsh-left-choose .hsh-left-choose-switch div.active {
  background-color: #25CED1;
  border: 1px solid #25CED1;
  color: #fff;
}
.hsh-index-component .hsh-left-choose .module-list {
  height: calc(100% - 46px);
  width: 100px;
  overflow-y: scroll;
}
.hsh-index-component .hsh-left-choose .module-list .module-item {
  background-color: #fff;
  width: 100px;
  height: 100px;
  color: #999;
  font-size: 12px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.hsh-index-component .hsh-left-choose .module-list .module-item img {
  width: 100%;
  height: 70px;
}
.hsh-index-component .hsh-left-choose .module-list .module-item div {
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  color: #333333;
  box-sizing: border-box;
  border-left: 1px solid #E8E8E8;
  border-right: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}
.hsh-index-component .hsh-left-choose .module-list .module-item:hover {
  color: #24b639 !important;
  background-color: #fafafa;
}
.hsh-index-component .hsh-left-choose .hsh-left-show-big {
  width: 277px;
  padding: 8px;
  position: absolute;
  z-index: 27;
  left: 118px;
  box-sizing: border-box;
  border: 1px solid #25CED1;
  background-color: #F5F7FA;
}
.hsh-index-component .hsh-left-choose .hsh-left-show-big::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #25CED1;
  border-right: 0;
  border-bottom: 0;
  position: absolute;
  left: -7px;
  top: 20px;
  background-color: #F5F7FA;
  transform: rotate(-45deg);
}
.hsh-index-component .hsh-left-choose .hsh-left-show-big.hsh-left-show-big_show_bottom::before {
  bottom: 20px;
  top: auto;
}
.hsh-index-component .hsh-left-choose .hsh-left-show-big img {
  width: 260px;
}
.hsh-index-component .hsh-app {
  width: 100%;
  height: 100%;
  position: relative;
  background: #eeeeee;
  margin-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview {
  padding-bottom: 56px;
  background-color: #FFEEDB;
  width: 377px;
  overflow-y: scroll;
  border: 1px solid #e4e4e4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin: 10px 50px;
  height: 88%;
  padding-top: 64px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-preview-page > div {
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-preview-page > div > div::before {
  pointer-events: none;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-preview-page > div > div:hover::before {
  border: 2px dashed #d0021b;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-head {
  width: 100%;
  height: 64px;
  position: absolute;
  top: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-head .status-bar {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-head .status-bar span {
  color: #000;
  font-size: 14px;
  text-align: left;
  margin-left: 30px;
  flex-grow: 1;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-head .status-bar .wifi {
  width: 18px;
  height: 18px;
  margin: 0 2px;
  background-image: url(../../images/diy/wifi.png);
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-head .status-bar .signal {
  width: 18px;
  height: 18px;
  margin: 0 2px;
  background-image: url(../../images/diy/signal.png);
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-head .status-bar .electricity {
  margin: 0 2px;
  width: 22px;
  height: 22px;
  background-image: url(../../images/diy/electricity.png);
  background-repeat: no-repeat;
  background-size: 22px 22px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-head .app-title {
  width: 100%;
  height: 44px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-head .app-title .title {
  color: #222222;
  font-size: 17px;
  text-align: center;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-head .app-title .msg {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-head .app-title .msg img {
  width: 26px;
  height: 26px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-head .app-title .msg div {
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(255, 36, 66);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-component-checked {
  border: 2px dashed #fd7100;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-component-control {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-component-control .control-btn {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  margin-left: 1px;
  cursor: pointer;
  border: none !important;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-component-control .control-btn img {
  width: 22px;
  height: 22px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product {
  background-color: #fff;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .hsh-product-style .hsh-product-item {
  background-color: #fff;
  /*&:last-child{
    margin-bottom: 0;
  }*/
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .hsh-product-style .hsh-product-item .product-detail {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .hsh-product-style .hsh-product-item .product-detail .product-name {
  font-size: 15px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .hsh-product-style .hsh-product-item .product-detail .product-line-price {
  display: inline-block;
  font-size: 11px;
  text-decoration: line-through;
  color: #999;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .hsh-product-style .hsh-product-item .product-detail .product-price {
  color: #d61212;
  font-weight: bold;
  font-size: 15px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .hsh-product-style .hsh-product-item .product-detail .product-sale {
  font-size: 11px;
  color: #999;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product.hsh-product-card-style {
  background-color: #f1f1f1;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-list {
  padding: 0 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-list .hsh-product-item {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-list .hsh-product-item:first-child {
  padding-top: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-list .hsh-product-item .product-goods-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-list .hsh-product-item .product-detail-style-one {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-list .hsh-product-item .product-detail-style-one .product-name {
  margin-bottom: 20px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-list .hsh-product-item .product-detail-style-one .product-line-price {
  margin-bottom: 3px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-list .hsh-product-item .product-detail-style-one .product-price-sale {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-grid .hsh-product-item {
  width: calc(50% - 5px);
  margin: 10px 5px 0 0;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-grid .hsh-product-item:nth-child(2n) {
  margin: 10px 0 0 5px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-grid .hsh-product-item .product-goods-img {
  width: 100%;
  height: auto;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-grid .hsh-product-item .product-detail-style-two {
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  padding: 10px;
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-grid .hsh-product-item .product-detail-style-two .product-name {
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-grid .hsh-product-item .product-detail-style-two .product-price-sale {
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-roll {
  display: flex;
  justify-content: flex-start;
  overflow-x: scroll;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-roll .hsh-product-item {
  margin-top: 5px;
  margin-left: 10px;
  position: relative;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-roll .hsh-product-item .product-goods-img {
  width: 120px;
  height: auto;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-roll .hsh-product-item .product-detail-style-two {
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  padding: 10px 5px;
  width: 120px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-roll .hsh-product-item .product-detail-style-two .product-price-sale {
  display: flex;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-big-list .hsh-product-item {
  margin: 10px 10px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-big-list .hsh-product-item .product-goods-img {
  width: 100%;
  height: auto;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-big-list .hsh-product-item .product-detail-style-four {
  padding: 10px;
  width: 100%;
  display: block;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-big-list .hsh-product-item .product-detail-style-four .product-price-sale {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-big-list .hsh-product-item .product-detail-style-four .product-price-sale .product-sale {
  flex-grow: 1;
  text-align: right;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-small-grid {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-small-grid .hsh-product-item {
  margin-top: 5px;
  margin-left: 10px;
  position: relative;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-small-grid .hsh-product-item .product-goods-img {
  width: 111px;
  height: auto;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-small-grid .hsh-product-item .product-detail-style-two {
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  padding: 10px 5px;
  width: 111px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-product .product-style-small-grid .hsh-product-item .product-detail-style-two .product-price-sale {
  display: flex;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-video_buy .hsh-video_buy-style {
  margin: 0 10px;
  background-color: #fff;
  display: flex;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-video_buy .hsh-video_buy-style .hsh-video_buy-item {
  margin: 5px 5px 5px 0;
  background-color: #fff;
  border: 1px solid #666;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 6px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-video_buy .hsh-video_buy-style .hsh-video_buy-item .video_buy-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 5px;
  box-sizing: border-box;
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  z-index: 999;
  color: #fff;
  overflow: hidden;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-video_buy .hsh-video_buy-style .video_buy-name {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-video_buy .hsh-video_buy-style .video_buy-num {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-video_buy .hsh-video_buy-style .video_buy-num img {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-video_buy .hsh-video_buy-list {
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-video_buy .hsh-video_buy-list .hsh-video_buy-item {
  width: calc(50% - 5px);
  height: 200px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-video_buy .hsh-video_buy-list .hsh-video_buy-item:nth-child(2n) {
  margin: 5px 0 5px 5px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-video_buy .hsh-video_buy-roll {
  overflow-x: scroll;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-video_buy .hsh-video_buy-roll .hsh-video_buy-item {
  width: 130px;
  height: 180px;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service {
  background-color: #fff;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .hsh-service-style .hsh-service-item {
  background-color: #fff;
  /*&:first-child{
    margin-top: 0;
  }*/
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .hsh-service-style .hsh-service-item .service-detail {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .hsh-service-style .hsh-service-item .service-detail .service-name {
  font-size: 15px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .hsh-service-style .hsh-service-item .service-detail .service-price {
  color: #d61212;
  font-weight: bold;
  font-size: 15px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service.hsh-service-card-style {
  background-color: #f1f1f1;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-list {
  padding: 0 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-list .hsh-service-item {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-list .hsh-service-item:first-child {
  padding-top: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-list .hsh-service-item .service-goods-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-list .hsh-service-item .service-detail {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-list .hsh-service-item .service-detail .service-name {
  margin-bottom: 20px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-grid .hsh-service-item {
  width: calc(50% - 5px);
  margin: 10px 5px 0 0;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-grid .hsh-service-item:nth-child(2n) {
  margin: 10px 0 0 5px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-grid .hsh-service-item .service-goods-img {
  width: 100%;
  height: auto;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-grid .hsh-service-item .service-detail {
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  padding: 10px;
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-roll {
  display: flex;
  justify-content: flex-start;
  overflow-x: scroll;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-roll .hsh-service-item {
  margin-top: 5px;
  margin-left: 10px;
  position: relative;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-roll .hsh-service-item .service-goods-img {
  width: 120px;
  height: auto;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-roll .hsh-service-item .service-detail {
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  padding: 10px 5px;
  width: 120px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-big-list .hsh-service-item {
  margin: 10px 10px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-big-list .hsh-service-item .service-goods-img {
  width: 100%;
  height: auto;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-big-list .hsh-service-item .service-detail {
  padding: 10px;
  width: 100%;
  display: block;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-small-grid {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-small-grid .hsh-service-item {
  margin-top: 5px;
  margin-left: 10px;
  position: relative;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-small-grid .hsh-service-item .service-goods-img {
  width: 111px;
  height: auto;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-service .service-style-small-grid .hsh-service-item .service-detail {
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  padding: 10px 5px;
  width: 111px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-search {
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-search .search-style-default {
  width: 100%;
  height: 35px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-search .search-style-default .hsh-search-input {
  width: 355px;
  height: 35px;
  margin: 0 auto;
  border-radius: 35px;
  background-color: #fff;
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-search .search-style-default .hsh-search-input img {
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-search .search-style-default .hsh-search-input input {
  flex-grow: 1;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-banner {
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-banner .banner-style-default {
  height: 170px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-banner .banner-style-default .hsh-banner-swiper {
  width: 100%;
  height: 170px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-banner .banner-style-default .hsh-banner-swiper img {
  width: 100%;
  height: 170px;
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-banner .banner-style-default .hsh-banner-swiper .ban-img {
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-banner .banner-style-default .hsh-banner-swiper .ban-img .hsh-banner-name {
  position: absolute;
  left: 25px;
  top: 46px;
  color: rgb(255, 255, 255);
  font-size: 30px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-banner .banner-style-default .hsh-banner-swiper .ban-img .hsh-banner-explain {
  position: absolute;
  left: 25px;
  top: 100px;
  color: rgb(255, 255, 255);
  font-size: 15px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-banner .banner-style-default .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-banner .banner-style-default .swiper-pagination span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-banner .banner-style-default .swiper-pagination .swiper-pagination-bullet-active {
  width: 7px;
  height: 7px;
  background-color: rgb(255, 92, 119);
}
.hsh-index-component .hsh-app .hsh-preview .station-big-banner {
  margin-bottom: 10px;
  height: 225px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .station-big-banner .hsh-banner-swiper {
  width: 100%;
  height: 225px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .station-big-banner .hsh-banner-swiper img {
  width: 100%;
  height: 225px;
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .station-big-banner .hsh-banner-swiper .ban-img {
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .station-big-banner .hsh-banner-swiper .ban-img .hsh-banner-name {
  position: absolute;
  left: 25px;
  top: 46px;
  color: rgb(255, 255, 255);
  font-size: 30px;
}
.hsh-index-component .hsh-app .hsh-preview .station-big-banner .hsh-banner-swiper .ban-img .hsh-banner-explain {
  position: absolute;
  left: 25px;
  top: 100px;
  color: rgb(255, 255, 255);
  font-size: 15px;
}
.hsh-index-component .hsh-app .hsh-preview .station-big-banner .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.hsh-index-component .hsh-app .hsh-preview .station-big-banner .swiper-pagination span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}
.hsh-index-component .hsh-app .hsh-preview .station-big-banner .swiper-pagination .swiper-pagination-bullet-active {
  width: 7px;
  height: 7px;
  background-color: rgb(255, 92, 119);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon {
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-style {
  margin: 0 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-style::after {
  content: "";
  display: block;
  flex: 1;
  height: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-style .hsh-shortcut-icon-item {
  display: flex;
  width: 20%;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-style .hsh-shortcut-icon-item .hsh-shortcut-icon-name {
  line-height: 16px;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  color: rgb(34, 34, 34);
  font-size: 11px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-grid {
  padding: 8px 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-grid::after {
  content: "";
  display: block;
  flex: 1;
  height: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-grid .hsh-shortcut-icon-item {
  /*height: 65px;*/
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-grid .hsh-shortcut-icon-item:nth-child(-n+5) {
  margin-bottom: 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-grid .hsh-shortcut-icon-item .hsh-shortcut-icon-image {
  width: 45px;
  height: 45px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-list {
  box-sizing: border-box;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-list::after {
  content: "";
  display: block;
  flex: 1;
  height: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-list .hsh-shortcut-icon-item {
  /*height: 65px;*/
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-list .hsh-shortcut-icon-item .hsh-shortcut-icon-image {
  width: 45px;
  height: 45px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-center {
  box-sizing: border-box;
  border-radius: 8px;
  padding: 8px 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-center .hsh-shortcut-icon-item {
  height: 75px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-center .hsh-shortcut-icon-item .hsh-shortcut-icon-image {
  width: 55px;
  height: 55px;
  background-color: #fff;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-center .hsh-shortcut-icon-item:first-child {
  height: 65px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-center .hsh-shortcut-icon-item:first-child .hsh-shortcut-icon-image {
  width: 45px;
  height: 45px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-center .hsh-shortcut-icon-item:last-child {
  height: 65px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-center .hsh-shortcut-icon-item:last-child .hsh-shortcut-icon-image {
  width: 45px;
  height: 45px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-center .hsh-shortcut-icon-item:nth-child(3) {
  height: 85px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-shortcut-icon .hsh-shortcut-icon-center .hsh-shortcut-icon-item:nth-child(3) .hsh-shortcut-icon-image {
  width: 65px;
  height: 65px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon {
  margin: 10px;
  background: #FFF;
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-header {
  height: 48px;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-header .hsh-group-shortcut-icon-header-icon {
  width: 26px;
  height: 28px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-header .hsh-group-shortcut-icon-header-text {
  font-size: 15px;
  color: #222;
  margin-left: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-line {
  background: #E1E1E1;
  height: 1px;
  transform: scaleY(0.5);
  transform-origin: 0 0;
  margin-left: 10px;
  margin-right: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-style {
  margin: 0 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-style::after {
  content: "";
  display: block;
  flex: 1;
  height: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-style .hsh-group-shortcut-icon-item {
  display: flex;
  width: 20%;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-style .hsh-group-shortcut-icon-item .hsh-group-shortcut-icon-name {
  line-height: 16px;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  color: rgb(34, 34, 34);
  font-size: 11px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-grid {
  padding: 8px 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-grid::after {
  content: "";
  display: block;
  flex: 1;
  height: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-grid .hsh-group-shortcut-icon-item {
  /*height: 65px;*/
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-grid .hsh-group-shortcut-icon-item:nth-child(-n+5) {
  margin-bottom: 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-grid .hsh-group-shortcut-icon-item .hsh-group-shortcut-icon-image {
  width: 45px;
  height: 45px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-list {
  box-sizing: border-box;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-list::after {
  content: "";
  display: block;
  flex: 1;
  height: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-list .hsh-group-shortcut-icon-item {
  /*height: 65px;*/
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-list .hsh-group-shortcut-icon-item .hsh-group-shortcut-icon-image {
  width: 45px;
  height: 45px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-center {
  box-sizing: border-box;
  border-radius: 8px;
  padding: 8px 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-center .hsh-group-shortcut-icon-item {
  height: 75px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-center .hsh-group-shortcut-icon-item .hsh-group-shortcut-icon-image {
  width: 55px;
  height: 55px;
  background-color: #fff;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-center .hsh-group-shortcut-icon-item:first-child {
  height: 70px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-center .hsh-group-shortcut-icon-item:first-child .hsh-shortcut-icon-image {
  width: 45px;
  height: 45px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-center .hsh-group-shortcut-icon-item:last-child {
  height: 70px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-center .hsh-group-shortcut-icon-item:last-child .hsh-shortcut-icon-image {
  width: 45px;
  height: 45px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-center .hsh-group-shortcut-icon-item:nth-child(3) {
  height: 85px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group-shortcut-icon .hsh-group-shortcut-icon-center .hsh-group-shortcut-icon-item:nth-child(3) .hsh-shortcut-icon-image {
  width: 65px;
  height: 65px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift {
  background-color: #FFEECD;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .hsh-new-gift-title {
  color: rgb(224, 135, 42);
  font-size: 17px;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .hsh-new-gift-style {
  width: 100%;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .hsh-new-gift-style .hsh-new-gift-subtitle {
  color: rgb(248, 170, 82);
  font-size: 14px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .hsh-new-gift-style .hsh-new-gift-subtitle span {
  color: rgb(176, 126, 71);
  text-align: left;
  font-weight: unset;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-package {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-package .new-gift-package-item {
  width: 107px;
  height: 90px;
  margin-right: 7px;
  margin-top: 10px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-package .new-gift-package-item:nth-child(3n) {
  margin-right: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-package .new-gift-package-item .hsh-new-gift-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-package .new-gift-package-item .hsh-new-gift-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-package .new-gift-package-item .hsh-new-gift-content .hsh-new-gift-type {
  width: 78px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  background-image: url(../../images/diy/ic_home_first_title_gray.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-package .new-gift-package-item .hsh-new-gift-content .hsh-new-gift-price {
  color: rgb(255, 36, 66);
  font-size: 12px;
  text-align: left;
  font-weight: bolder;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-package .new-gift-package-item .hsh-new-gift-content .hsh-new-gift-price span {
  font-size: 26px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-package .new-gift-package-item .hsh-new-gift-content .hsh-new-gift-limit {
  line-height: 26px;
  color: rgb(255, 36, 66);
  font-size: 12px;
  text-align: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons {
  display: block;
  width: 100%;
  height: 84px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons .hsh-new-gift-content {
  position: absolute;
  left: 20px;
  top: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons .hsh-new-gift-content .hsh-new-gift-left {
  display: flex;
  align-items: center;
  color: rgb(248, 170, 82);
  font-size: 14px;
  text-align: left;
  font-weight: bold;
  padding-right: 10px;
  border-right: 1px dotted #FFCCD4;
  margin-right: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons .hsh-new-gift-content .hsh-new-gift-left span {
  font-size: 36px;
  margin-top: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons .hsh-new-gift-content .hsh-new-gift-right {
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons .hsh-new-gift-content .hsh-new-gift-right .hsh-new-gift-name {
  color: rgb(248, 170, 82);
  font-size: 14px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons .hsh-new-gift-content .hsh-new-gift-right .hsh-new-gift-explain {
  color: rgb(248, 170, 82);
  font-size: 9px;
  text-align: left;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons .hsh-new-gift-content .hsh-new-gift-right .hsh-new-gift-time {
  color: rgb(248, 170, 82);
  font-size: 9px;
  text-align: left;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons .hsh-new-gift-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts {
  display: block;
  width: 100%;
  height: 84px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts .hsh-new-gift-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 335px;
  height: 84px;
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts .hsh-new-gift-content .hsh-new-gift-type {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 16px;
  line-height: 16px;
  background-color: rgb(255, 203, 212);
  color: rgb(255, 36, 66);
  font-size: 10px;
  text-align: center;
  border-radius: 8px 0 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts .hsh-new-gift-content .hsh-new-gift-left {
  width: 255px;
  height: 84px;
  display: flex;
  align-items: center;
  background-color: #FFE9EC;
  border-radius: 8px 0 0 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts .hsh-new-gift-content .hsh-new-gift-left .img {
  margin: 8px;
  width: 68px;
  height: 68px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts .hsh-new-gift-content .hsh-new-gift-left .img img {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts .hsh-new-gift-content .hsh-new-gift-left .hsh-new-gift-box {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 68px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts .hsh-new-gift-content .hsh-new-gift-left .hsh-new-gift-box .hsh-new-gift-name {
  color: rgb(248, 170, 82);
  font-size: 14px;
  text-align: left;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts .hsh-new-gift-content .hsh-new-gift-left .hsh-new-gift-box .hsh-new-gift-explain {
  color: rgb(248, 170, 82);
  font-size: 9px;
  text-align: left;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts .hsh-new-gift-content .hsh-new-gift-left .hsh-new-gift-box .hsh-new-gift-time {
  color: rgb(248, 170, 82);
  font-size: 9px;
  text-align: left;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts .hsh-new-gift-content .hsh-new-gift-right {
  border-radius: 0 8px 8px 0;
  width: 80px;
  height: 84px;
  background: rgb(248, 170, 82) 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font-size: 14px;
  text-align: center;
  font-weight: bolder;
  white-space: pre-line;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-new-gift .new-gift-style-package .new-gift-coupons-gifts .hsh-new-gift-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live {
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-style {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-style .hsh-live-left {
  width: 50%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-style .hsh-live-left .hsh-live-item {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-style .hsh-live-left .hsh-live-item img {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-style .hsh-live-right {
  width: 50%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-style .hsh-live-right .hsh-live-item {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-style .hsh-live-right .hsh-live-item img {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-type .hsh-live-left {
  width: 185px;
  height: 280px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-type .hsh-live-left .hsh-live-item {
  width: 100%;
  height: 280px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-type .hsh-live-left .hsh-live-item img {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-type .hsh-live-right {
  width: 185px;
  height: 280px;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-type .hsh-live-right .hsh-live-item {
  width: 100%;
  height: 155px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-type .hsh-live-right .hsh-live-item:last-child {
  height: 120px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-type .hsh-live-right .hsh-live-item img {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-list .hsh-live-left {
  width: 185px;
  display: flex;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-list .hsh-live-left .hsh-live-item {
  width: 100%;
  height: 134px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-list .hsh-live-left .hsh-live-item:last-child {
  height: 67px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-list .hsh-live-left .hsh-live-item img {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-list .hsh-live-right {
  width: 185px;
  display: flex;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-list .hsh-live-right .hsh-live-item {
  width: 100%;
  height: 67px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-list .hsh-live-right .hsh-live-item img {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-grid .hsh-live-left {
  width: 165px;
  height: 210px;
  display: flex;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-grid .hsh-live-left .hsh-live-item {
  width: 100%;
  height: 210px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-grid .hsh-live-left .hsh-live-item img {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-grid .hsh-live-right {
  width: 210px;
  height: 210px;
  display: flex;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-grid .hsh-live-right .hsh-live-item {
  width: 50%;
  height: 105px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-live .hsh-live-grid .hsh-live-right .hsh-live-item img {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic {
  width: 100%;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-scroll {
  width: 100%;
  background-color: #fff;
  padding: 12px 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-scroll .hsh-topic-title {
  color: rgb(248, 170, 82);
  font-size: 16px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 12px;
  margin-left: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-scroll .hsh-topic-content {
  padding: 0 10px;
  overflow-x: scroll;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-scroll .hsh-topic-content .hsh-topic-item {
  margin-right: 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 125px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-scroll .hsh-topic-content .hsh-topic-item img {
  width: 125px;
  height: 60px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-scroll .hsh-topic-content .hsh-topic-item .hsh-topic-name {
  max-width: 125px;
  color: rgb(34, 34, 34);
  font-size: 13px;
  text-align: center;
  font-weight: bold;
  margin: 6px 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-scroll .hsh-topic-content .hsh-topic-item .hsh-topic-num {
  color: rgb(136, 136, 136);
  font-size: 10px;
  text-align: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-grid {
  width: 100%;
  background: linear-gradient(to bottom, #fff, #FFF2F4);
  padding: 15px 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-grid .hsh-topic-title {
  color: rgb(248, 170, 82);
  font-size: 16px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-grid .hsh-topic-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-grid .hsh-topic-content .hsh-topic-item {
  margin-bottom: 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 173px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-grid .hsh-topic-content .hsh-topic-item img {
  width: 173px;
  height: 83px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-grid .hsh-topic-content .hsh-topic-item .hsh-topic-name {
  max-width: 173px;
  color: rgb(34, 34, 34);
  font-size: 13px;
  text-align: center;
  font-weight: bold;
  margin: 6px 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-grid .hsh-topic-content .hsh-topic-item .hsh-topic-num {
  color: rgb(136, 136, 136);
  font-size: 10px;
  text-align: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-cover {
  width: 100%;
  background-color: #FFF2F4;
  padding: 15px 10px 0px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-cover .hsh-topic-title {
  color: rgb(248, 170, 82);
  font-size: 16px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-cover .hsh-topic-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-cover .hsh-topic-content .hsh-topic-item {
  margin-top: 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  width: 173px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-cover .hsh-topic-content .hsh-topic-item img {
  width: 173px;
  height: 83px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-cover .hsh-topic-content .hsh-topic-item .hsh-topic-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 24px;
  padding: 0 6px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-cover .hsh-topic-content .hsh-topic-item .hsh-topic-box .hsh-topic-name {
  max-width: 120px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-topic .hsh-topic-cover .hsh-topic-content .hsh-topic-item .hsh-topic-box .hsh-topic-num {
  color: #fff;
  font-size: 9px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group {
  width: 100%;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll {
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  padding: 15px 12px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-title-box {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-title-box .hsh-group-title {
  color: #25CED1;
  font-size: 17px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-title-box .hsh-group-more {
  color: #979797;
  font-size: 12px;
  text-align: left;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-title-box .hsh-group-more i {
  width: 5px;
  height: 9px;
  margin-left: 5px;
  background-image: url("../../images/diy/ic_home_next.png?v=1.0");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content {
  padding: 0 10px;
  overflow-x: scroll;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content .hsh-group-item {
  margin-right: 5px;
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 125px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content .hsh-group-item .hsh-group-img {
  width: 100px;
  height: 100px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content .hsh-group-item .hsh-group-img img {
  width: 100px;
  height: 100px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content .hsh-group-item .hsh-group-img .hsh-group-type {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 18px;
  line-height: 18px;
  background-color: rgba(248, 170, 82, 0.6);
  color: rgb(255, 255, 255);
  font-size: 10px;
  text-align: center;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content .hsh-group-item .hsh-group-img .hsh-group-type img {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content .hsh-group-item .hsh-group-name {
  max-width: 100px;
  color: #222222;
  font-size: 13px;
  text-align: center;
  font-weight: bold;
  margin: 6px 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content .hsh-group-item .hsh-group-name .hsh-group-type-num {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content .hsh-group-item .hsh-group-num {
  padding: 0 4px;
  height: 16px;
  line-height: 16px;
  border-radius: 2px;
  background-color: rgba(37, 206, 209, 0.1);
  color: #25CED1;
  font-size: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content .hsh-group-item .hsh-group-price {
  color: #25CED1;
  font-size: 10px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content .hsh-group-item .hsh-group-price span {
  font-size: 16px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-scroll .hsh-group-content .hsh-group-item .hsh-group-btn {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list {
  width: 100%;
  padding: 15px 12px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(37, 206, 209, 0);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-title-box .hsh-group-title {
  color: #25CED1;
  font-size: 17px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-title-box .hsh-group-more {
  color: #979797;
  font-size: 12px;
  text-align: left;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-title-box .hsh-group-more i {
  width: 5px;
  height: 9px;
  margin-left: 5px;
  background-image: url("../../images/diy/ic_home_next.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content {
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item {
  margin-top: 10px;
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item .hsh-group-img {
  width: 100px;
  height: 100px;
  position: relative;
  margin-right: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item .hsh-group-img img {
  width: 100px;
  height: 100px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item .hsh-group-img .hsh-group-type {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 18px;
  line-height: 18px;
  background-color: rgba(248, 170, 82, 0.6);
  color: rgb(255, 255, 255);
  font-size: 10px;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item .hsh-group-img .hsh-group-type img {
  display: block;
  width: 6px;
  height: 9px;
  margin-right: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item .hsh-group-box {
  height: 100px;
  width: 227px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-around;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-name {
  max-width: 227px;
  color: rgb(34, 34, 34);
  font-size: 14px;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-name .hsh-group-type-num {
  display: inline;
  margin-right: 6px;
  padding: 0 6px;
  height: 16px;
  line-height: 16px;
  border-radius: 2px;
  background-color: #25CED1;
  color: rgb(255, 255, 255);
  font-size: 10px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-num {
  padding: 0 4px;
  height: 16px;
  line-height: 16px;
  border-radius: 2px;
  background-color: rgba(37, 206, 209, 0.1);
  color: #25CED1;
  font-size: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-price {
  color: #25CED1;
  font-size: 10px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-price span {
  font-size: 16px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-list .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-btn {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid {
  width: 100%;
  padding: 15px 10px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgb(37, 206, 209), rgba(37, 206, 209, 0));
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-title-box {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-title-box .hsh-group-title {
  color: #FFFFFF;
  font-size: 17px;
  text-align: left;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-title-box .hsh-group-more {
  color: #FFFFFF;
  font-size: 12px;
  text-align: left;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-title-box .hsh-group-more i {
  width: 5px;
  height: 9px;
  margin-left: 5px;
  background-image: url("../../images/diy/ic_home_next_white.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item {
  margin-right: 4px;
  margin-bottom: 5px;
  background-color: #fff;
  border-radius: 8px;
  padding: 7px;
  display: flex;
  align-items: center;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item:nth-child(3n) {
  margin-right: 0px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item .hsh-group-img {
  width: 100px;
  height: 100px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item .hsh-group-img img {
  width: 100px;
  height: 100px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item .hsh-group-img .hsh-group-type {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 18px;
  line-height: 18px;
  background-color: rgba(248, 170, 82, 0.6);
  color: rgb(255, 255, 255);
  font-size: 10px;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item .hsh-group-img .hsh-group-type img {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-name {
  max-width: 100px;
  color: rgb(34, 34, 34);
  font-size: 13px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-name .hsh-group-type-num {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-num {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-price {
  color: #25CED1;
  font-size: 10px;
  text-align: center;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-price span {
  font-size: 16px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-group .hsh-group-grid .hsh-group-content .hsh-group-item .hsh-group-box .hsh-group-btn {
  padding: 0 16px;
  height: 22px;
  line-height: 22px;
  border-radius: 22px;
  background: #25CED1;
  color: rgb(255, 255, 255);
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill {
  width: 100%;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-style {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list {
  background-image: url(../../images/diy/ic_home_bg.png);
  background-size: 100% 70px;
  background-repeat: no-repeat;
  background-position: 0 100px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-title-box {
  border-radius: 10px 10px 0 0;
  padding: 15px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(37, 206, 209);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-title-box .hsh-seckill-title {
  color: #fff;
  font-size: 17px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-title-box .hsh-seckill-more {
  color: #FFE8EC;
  font-size: 12px;
  text-align: left;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-title-box .hsh-seckill-more i {
  width: 5px;
  height: 9px;
  margin-left: 5px;
  background-image: url("../../images/diy/ic_home_next_white.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-options {
  background-color: rgb(37, 206, 209);
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px 12px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-options .hsh-seckill-options-item {
  width: 25%;
  height: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-options .hsh-seckill-options-item .hsh-seckill-options-time {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-options .hsh-seckill-options-item .hsh-seckill-options-name {
  color: #FFFFFF;
  font-size: 11px;
  text-align: center;
  height: 18px;
  line-height: 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-options .hsh-seckill-options-item.active .hsh-seckill-options-name {
  padding: 0 10px;
  color: rgb(37, 206, 209);
  border-radius: 9px;
  background-color: rgb(255, 255, 255);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content {
  margin: 0 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item {
  margin-bottom: 10px;
  width: 100%;
  height: 130px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px;
  display: flex;
  box-sizing: border-box;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-img {
  width: 110px;
  height: 110px;
  margin-right: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-img img {
  width: 110px;
  height: 110px;
  border-radius: 5px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box {
  height: 100px;
  width: 227px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-around;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box .hsh-seckill-name {
  max-width: 215px;
  color: rgb(34, 34, 34);
  font-size: 14px;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box .hsh-seckill-progress-box {
  width: 215px;
  display: flex;
  align-items: center;
  background-color: rgb(238, 238, 238);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box .hsh-seckill-progress-box .hsh-seckill-progress {
  width: 100px;
  height: 10px;
  border-radius: 10px;
  background-color: rgb(37, 206, 209);
  overflow: hidden;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box .hsh-seckill-progress-box .hsh-seckill-progress div {
  position: absolute;
  left: 0;
  top: 0;
  height: 10px;
  background-color: rgb(37, 206, 209);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box .hsh-seckill-progress-box .hsh-seckill-progress-name {
  color: rgb(37, 206, 209);
  font-size: 9px;
  text-align: left;
  font-weight: bold;
  flex-grow: 1;
  transform: scale(0.75, 0.75);
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box .hsh-seckill-progress-box .hsh-seckill-progress-num {
  color: rgb(136, 136, 136);
  font-size: 9px;
  text-align: left;
  transform: scale(0.75, 0.75);
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box .hsh-seckill-price-box {
  width: 215px;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box .hsh-seckill-price-box .hsh-seckill-price {
  color: rgb(37, 206, 209);
  font-size: 12px;
  text-align: left;
  font-weight: bold;
  margin-right: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box .hsh-seckill-price-box .hsh-seckill-price span {
  font-size: 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box .hsh-seckill-price-box .hsh-seckill-line-price {
  color: rgb(136, 136, 136);
  font-size: 12px;
  text-align: left;
  flex-grow: 1;
  text-decoration: line-through;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-list .hsh-seckill-content .hsh-seckill-item .hsh-seckill-box .hsh-seckill-price-box .hsh-seckill-btn {
  padding: 0 18px;
  height: 28px;
  line-height: 28px;
  border-radius: 14px;
  background: rgb(37, 206, 209);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper {
  background: rgb(255, 255, 255);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-title-box {
  padding: 15px 10px 12px;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-title-box .hsh-seckill-title {
  color: rgb(37, 206, 209);
  font-size: 17px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-title-box .hsh-seckill-countdown {
  display: flex;
  align-items: center;
  margin-left: 18px;
  color: rgb(37, 206, 209);
  font-size: 12px;
  flex-grow: 1;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-title-box .hsh-seckill-countdown span {
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 2px;
  text-align: center;
  background-color: rgb(37, 206, 209);
  color: rgb(255, 255, 255);
  font-size: 10px;
  margin: 0 4px;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-title-box .hsh-seckill-more {
  color: #979797;
  font-size: 12px;
  text-align: left;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-title-box .hsh-seckill-more i {
  width: 5px;
  height: 9px;
  margin-left: 5px;
  background-image: url("../../images/diy/ic_home_next.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-content {
  margin: 0 10px;
  height: 210px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-content .swiper-slide {
  width: 100%;
  display: flex;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-content .swiper-slide .hsh-seckill-item {
  width: 113px;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  flex-flow: column;
  margin-right: 7px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-content .swiper-slide .hsh-seckill-item:nth-child(3n) {
  margin-right: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-content .swiper-slide .hsh-seckill-item .hsh-seckill-img {
  width: 113px;
  height: 113px;
  margin-right: 4px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-content .swiper-slide .hsh-seckill-item .hsh-seckill-img img {
  width: 113px;
  height: 113px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-content .swiper-slide .hsh-seckill-item .hsh-seckill-img .hsh-seckill-type {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 113px;
  height: 18px;
  line-height: 18px;
  background-color: rgba(255, 173, 42, 0.7);
  color: rgb(255, 255, 255);
  font-size: 10px;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-content .swiper-slide .hsh-seckill-item .hsh-seckill-box .hsh-seckill-name {
  max-width: 113px;
  color: rgb(34, 34, 34);
  font-size: 13px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-content .swiper-slide .hsh-seckill-item .hsh-seckill-box .hsh-seckill-num {
  height: 16px;
  margin: 4px 0;
  line-height: 16px;
  border-radius: 2px;
  background-color: rgba(37, 206, 209, 0.1);
  padding: 0 4px;
  color: rgb(37, 206, 209);
  font-size: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-content .swiper-slide .hsh-seckill-item .hsh-seckill-box .hsh-seckill-price {
  color: rgb(37, 206, 209);
  font-size: 10px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .hsh-seckill-content .swiper-slide .hsh-seckill-item .hsh-seckill-box .hsh-seckill-price span {
  font-size: 16px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .swiper-pagination span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(37, 206, 209, 0.4);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 5px;
  height: 5px;
  background-color: rgb(37, 206, 209);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-title-box {
  padding: 15px 10px 12px;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-title-box .hsh-seckill-title {
  color: rgb(37, 206, 209);
  font-size: 17px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-title-box .hsh-seckill-countdown {
  display: flex;
  align-items: center;
  margin-left: 18px;
  color: rgb(37, 206, 209);
  font-size: 12px;
  flex-grow: 1;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-title-box .hsh-seckill-countdown span {
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 2px;
  text-align: center;
  background-color: rgb(37, 206, 209);
  color: rgb(255, 255, 255);
  font-size: 10px;
  margin: 0 4px;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-title-box .hsh-seckill-more {
  color: #979797;
  font-size: 12px;
  text-align: left;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-title-box .hsh-seckill-more i {
  width: 5px;
  height: 9px;
  margin-left: 5px;
  background-image: url("../../images/diy/ic_home_next.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item {
  margin-bottom: 3px;
  width: 100%;
  height: 150px;
  background-color: rgb(255, 255, 255);
  padding: 10px;
  display: flex;
  box-sizing: border-box;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-img {
  width: 130px;
  height: 130px;
  margin-right: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-img img {
  width: 130px;
  height: 130px;
  border-radius: 5px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box {
  height: 130px;
  width: 215px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-around;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box .hsh-seckill-name {
  max-width: 215px;
  color: rgb(34, 34, 34);
  font-size: 14px;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box .hsh-seckill-progress-box {
  width: 215px;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box .hsh-seckill-progress-box .hsh-seckill-progress {
  width: 100px;
  height: 10px;
  border-radius: 10px;
  background-color: rgb(37, 206, 209);
  overflow: hidden;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box .hsh-seckill-progress-box .hsh-seckill-progress div {
  position: absolute;
  left: 0;
  top: 0;
  height: 10px;
  background-color: rgb(37, 206, 209);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box .hsh-seckill-progress-box .hsh-seckill-progress-name {
  color: rgb(37, 206, 209);
  font-size: 9px;
  text-align: left;
  font-weight: bold;
  flex-grow: 1;
  transform: scale(0.75, 0.75);
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box .hsh-seckill-progress-box .hsh-seckill-progress-num {
  color: rgb(136, 136, 136);
  font-size: 9px;
  text-align: left;
  transform: scale(0.75, 0.75);
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box .hsh-seckill-price-box {
  width: 215px;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box .hsh-seckill-price-box .hsh-seckill-price {
  color: rgb(37, 206, 209);
  font-size: 12px;
  text-align: left;
  font-weight: bold;
  margin-right: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box .hsh-seckill-price-box .hsh-seckill-price span {
  font-size: 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box .hsh-seckill-price-box .hsh-seckill-line-price {
  color: rgb(136, 136, 136);
  font-size: 12px;
  text-align: left;
  flex-grow: 1;
  text-decoration: line-through;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-progress-item .hsh-seckill-box .hsh-seckill-price-box .hsh-seckill-btn {
  padding: 0 18px;
  height: 28px;
  line-height: 28px;
  border-radius: 14px;
  background: rgb(37, 206, 209);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper .hsh-seckill-item {
  width: 123px;
  height: 181px;
  padding: 10px;
  display: flex;
  box-sizing: border-box;
  flex-flow: column;
  margin-right: 3px;
  background-color: #fff;
  margin-bottom: 5px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper .hsh-seckill-item:nth-child(3n) {
  margin-right: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper .hsh-seckill-item .hsh-seckill-img {
  width: 103px;
  height: 103px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper .hsh-seckill-item .hsh-seckill-img img {
  width: 103px;
  height: 103px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper .hsh-seckill-item .hsh-seckill-img .hsh-seckill-type {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 103px;
  height: 18px;
  line-height: 18px;
  background-color: rgba(255, 173, 42, 0.7);
  color: rgb(255, 255, 255);
  font-size: 10px;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper .hsh-seckill-item .hsh-seckill-box {
  width: 100%;
  height: 58px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper .hsh-seckill-item .hsh-seckill-box .hsh-seckill-name {
  max-width: 103px;
  color: rgb(34, 34, 34);
  font-size: 13px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper .hsh-seckill-item .hsh-seckill-box .hsh-seckill-price {
  color: rgb(37, 206, 209);
  font-size: 10px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper .hsh-seckill-item .hsh-seckill-box .hsh-seckill-price span {
  font-size: 16px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper .hsh-seckill-item .hsh-seckill-box .hsh-seckill-line-price {
  color: rgb(136, 136, 136);
  font-size: 10px;
  text-align: left;
  flex-grow: 1;
  text-decoration: line-through;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-seckill .hsh-seckill-grid .hsh-seckill-content .hsh-seckill-swiper .hsh-seckill-item .hsh-seckill-box .hsh-seckill-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 50%;
  background: rgb(37, 206, 209);
  color: rgb(255, 255, 255);
  font-size: 13px;
  text-align: center;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates {
  background-color: #FFEECD;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .hsh-gift-certificates-title {
  color: rgb(224, 135, 42);
  font-size: 17px;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .hsh-gift-certificates-style {
  width: 100%;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .gift-certificates-style-package .gift-certificates-package {
  width: 100%;
  height: 120px;
  position: relative;
  display: block;
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .gift-certificates-style-package .gift-certificates-package .hsh-gift-certificates-img {
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .gift-certificates-style-package .gift-certificates-coupons {
  display: block;
  width: 100%;
  height: 84px;
  position: relative;
  margin-top: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .gift-certificates-style-package .gift-certificates-coupons .hsh-gift-certificates-content {
  position: absolute;
  left: 20px;
  top: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .gift-certificates-style-package .gift-certificates-coupons .hsh-gift-certificates-content .hsh-gift-certificates-left {
  display: flex;
  align-items: center;
  color: rgb(248, 170, 82);
  font-size: 14px;
  text-align: left;
  font-weight: bold;
  padding-right: 10px;
  border-right: 1px dotted #FFCCD4;
  margin-right: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .gift-certificates-style-package .gift-certificates-coupons .hsh-gift-certificates-content .hsh-gift-certificates-left span {
  font-size: 36px;
  margin-top: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .gift-certificates-style-package .gift-certificates-coupons .hsh-gift-certificates-content .hsh-gift-certificates-right {
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .gift-certificates-style-package .gift-certificates-coupons .hsh-gift-certificates-content .hsh-gift-certificates-right .hsh-gift-certificates-name {
  color: rgb(248, 170, 82);
  font-size: 14px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .gift-certificates-style-package .gift-certificates-coupons .hsh-gift-certificates-content .hsh-gift-certificates-right .hsh-gift-certificates-explain {
  color: rgb(248, 170, 82);
  font-size: 9px;
  text-align: left;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .gift-certificates-style-package .gift-certificates-coupons .hsh-gift-certificates-content .hsh-gift-certificates-right .hsh-gift-certificates-time {
  color: rgb(248, 170, 82);
  font-size: 9px;
  text-align: left;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-certificates .gift-certificates-style-package .gift-certificates-coupons .hsh-gift-certificates-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction {
  width: 100%;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-style {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-other-title-box {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content {
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left {
  margin: 0 10px;
  display: flex;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item {
  width: 173px;
  height: 267px;
  background-color: rgb(255, 255, 255);
  padding: 10px;
  display: flex;
  box-sizing: border-box;
  flex-flow: column;
  margin-right: 5px;
  margin-bottom: 10px;
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item:nth-child(2n) {
  margin-right: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-img {
  width: 153px;
  height: 153px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-img .hsh-full-reduction-type {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 6px;
  height: 20px;
  line-height: 20px;
  border-radius: 0 4px 0 4px;
  background-color: #FFAD2A;
  color: rgb(255, 255, 255);
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-img img {
  width: 153px;
  height: 153px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box {
  height: 88px;
  width: 153px;
  margin-top: 6px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-around;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-name {
  max-width: 153px;
  color: rgb(34, 34, 34);
  font-size: 14px;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-type {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-price-box .hsh-full-reduction-price {
  color: rgb(37, 206, 209);
  font-size: 12px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-price-box .hsh-full-reduction-price span {
  font-size: 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-price-box .hsh-full-reduction-line-price {
  color: rgb(136, 136, 136);
  font-size: 12px;
  text-align: left;
  flex-grow: 1;
  text-decoration: line-through;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-grid-more {
  height: 36px;
  line-height: 36px;
  border-radius: 36px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 0.5px solid rgb(37, 206, 209);
  margin: 5px auto 0;
  color: rgb(37, 206, 209);
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  width: 165px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-grid .hsh-full-reduction-content .hsh-full-reduction-right {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back {
  padding: 15px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(to bottom, rgb(37, 206, 209), #FFFFFF);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-grid-title-box {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-other-title-box {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-other-title-box .hsh-full-reduction-title {
  color: #fff;
  font-size: 17px;
  text-align: left;
  font-weight: bold;
  flex-grow: 1;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-other-title-box .hsh-full-reduction-countdown {
  display: flex;
  align-items: center;
  margin-left: 18px;
  color: #fff;
  font-size: 12px;
  flex-grow: 1;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-other-title-box .hsh-full-reduction-countdown span {
  padding: 0 3px;
  height: 18px;
  line-height: 18px;
  border-radius: 2px;
  text-align: center;
  background-color: #fff;
  color: rgb(37, 206, 209);
  font-size: 10px;
  margin: 0 4px;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-other-title-box .hsh-full-reduction-more {
  color: #fff;
  font-size: 12px;
  text-align: left;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-other-title-box .hsh-full-reduction-more i {
  width: 5px;
  height: 9px;
  margin-left: 5px;
  background-image: url("../../images/diy/ic_home_next_white.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content {
  display: flex;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item {
  width: 175px;
  height: 267px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  margin-right: 5px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-img {
  width: 175px;
  height: 175px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-img .hsh-full-reduction-type {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 6px;
  height: 20px;
  line-height: 20px;
  border-radius: 0 4px 0 0;
  background-color: rgb(37, 206, 209);
  color: rgb(255, 255, 255);
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-img img {
  width: 175px;
  height: 175px;
  border-radius: 8px 8px 0 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box {
  height: 92px;
  width: 175px;
  padding: 8px 10px;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-name {
  max-width: 175px;
  color: rgb(34, 34, 34);
  font-size: 13px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-type {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-price-box .hsh-full-reduction-price {
  color: rgb(37, 206, 209);
  font-size: 12px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-price-box .hsh-full-reduction-price span {
  font-size: 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-price-box .hsh-full-reduction-line-price {
  color: rgb(136, 136, 136);
  font-size: 12px;
  text-align: left;
  flex-grow: 1;
  text-decoration: line-through;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  bottom: 15px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-grid-more {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-right {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  width: 175px;
  height: 267px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-right .hsh-full-reduction-item {
  width: 175px;
  height: 85px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-right .hsh-full-reduction-item .hsh-full-reduction-img {
  width: 85px;
  height: 85px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-right .hsh-full-reduction-item .hsh-full-reduction-img .hsh-full-reduction-type {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 4px;
  height: 20px;
  line-height: 20px;
  border-radius: 0 4px 0 0;
  background-color: #FFAD2A;
  color: rgb(255, 255, 255);
  font-size: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-right .hsh-full-reduction-item .hsh-full-reduction-img img {
  width: 85px;
  height: 85px;
  border-radius: 8px 0 0 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-right .hsh-full-reduction-item .hsh-full-reduction-box {
  height: 85px;
  width: 90px;
  padding: 15px 6px;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-right .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-name {
  max-width: 78px;
  color: rgb(34, 34, 34);
  font-size: 13px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-right .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-price-box .hsh-full-reduction-price {
  color: rgb(37, 206, 209);
  font-size: 12px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-right .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-price-box .hsh-full-reduction-price span {
  font-size: 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-right .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-btn {
  width: 24px;
  height: 24px;
  border-radius: 8px 0 8px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-back .hsh-full-reduction-content .hsh-full-reduction-right .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-btn img {
  width: 100%;
  height: 100%;
  border-radius: 8px 0 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list {
  padding: 15px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-grid-title-box {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-other-title-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-other-title-box .hsh-full-reduction-title {
  color: rgb(37, 206, 209);
  font-size: 17px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-other-title-box .hsh-full-reduction-countdown {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-other-title-box .hsh-full-reduction-more {
  color: rgb(37, 206, 209);
  font-size: 12px;
  text-align: left;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-other-title-box .hsh-full-reduction-more i {
  width: 5px;
  height: 9px;
  margin-left: 5px;
  background-image: url("../../images/diy/ic_home_next.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content {
  display: flex;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-right {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-grid-more {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-img {
  width: 100px;
  height: 100px;
  margin-right: 8px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-img .hsh-full-reduction-type {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-img img {
  width: 100px;
  height: 100px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box {
  height: 100px;
  width: 227px;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-name {
  max-width: 227px;
  color: rgb(34, 34, 34);
  font-size: 14px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-type div {
  padding: 0 4px;
  color: rgb(255, 173, 42);
  font-size: 10px;
  text-align: center;
  height: 16px;
  line-height: 16px;
  border-radius: 2px;
  background-color: rgb(255, 242, 220);
  margin-right: 12px;
  margin-bottom: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-price-box .hsh-full-reduction-price {
  color: rgb(37, 206, 209);
  font-size: 12px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-price-box .hsh-full-reduction-price span {
  font-size: 18px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-price-box .hsh-full-reduction-line-price {
  color: #888888;
  font-size: 10px;
  text-align: left;
  margin-left: 5px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-full-reduction .hsh-full-reduction-list .hsh-full-reduction-content .hsh-full-reduction-left .hsh-full-reduction-item .hsh-full-reduction-box .hsh-full-reduction-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup {
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content {
  margin: 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item {
  width: 173px;
  height: 295px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item:first-child {
  width: 100%;
  height: 213px;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item:first-child .hsh-makeup-img {
  width: 160px;
  height: 213px;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item:first-child .hsh-makeup-img img {
  width: 160px;
  height: 213px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item:first-child .hsh-makeup-box {
  flex-grow: 1;
  height: 213px;
  background-color: rgb(255, 255, 255);
  padding: 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item:first-child .hsh-makeup-box .hsh-makeup-name {
  width: 100%;
  line-height: 24px;
  color: rgb(34, 34, 34);
  font-size: 15px;
  text-align: left;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item:first-child .hsh-makeup-box .hsh-makeup-price {
  color: rgb(37, 206, 209);
  font-size: 16px;
  text-align: left;
  font-weight: bold;
  margin: 4px 0 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item:first-child .hsh-makeup-box .hsh-makeup-price span {
  font-size: 24px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item:first-child .hsh-makeup-box .hsh-makeup-btn {
  width: 110px;
  height: 28px;
  line-height: 28px;
  border-radius: 14px;
  background: rgb(37, 206, 209);
  color: rgb(255, 255, 255);
  font-size: 13px;
  text-align: center;
  font-weight: bold;
  display: block;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item:first-child .hsh-makeup-box .hsh-makeup-type {
  position: absolute;
  right: 0;
  bottom: 14px;
  padding: 0 8px 0 12px;
  height: 28px;
  line-height: 28px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(to right, #FFC9D3, #E2E9F4);
  color: rgb(255, 36, 66);
  font-size: 11px;
  text-align: center;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item .hsh-makeup-img {
  width: 100%;
  height: 231px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item .hsh-makeup-img img {
  width: 100%;
  height: 231px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item .hsh-makeup-box {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item .hsh-makeup-box .hsh-makeup-name {
  width: 100%;
  line-height: 24px;
  color: rgb(34, 34, 34);
  font-size: 14px;
  text-align: left;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item .hsh-makeup-box .hsh-makeup-price {
  color: rgb(37, 206, 209);
  font-size: 14px;
  text-align: left;
  font-weight: bold;
  margin: 4px 0 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item .hsh-makeup-box .hsh-makeup-price span {
  font-size: 20px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item .hsh-makeup-box .hsh-makeup-btn {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-makeup .hsh-makeup-list .hsh-makeup-content .hsh-makeup-item .hsh-makeup-box .hsh-makeup-type {
  position: absolute;
  right: 0;
  bottom: 14px;
  padding: 0 8px 0 12px;
  height: 28px;
  line-height: 28px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(to right, #FFC9D3, #E2E9F4);
  color: rgb(255, 36, 66);
  font-size: 11px;
  text-align: center;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling {
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid {
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content {
  display: flex;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item {
  display: flex;
  position: relative;
  align-items: center;
  flex-flow: column;
  margin: 0 0 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item .hsh-selling-img-swiper {
  width: 375px;
  height: 500px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item .hsh-selling-img-swiper .hsh-selling-img {
  width: 375px;
  height: 500px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item .hsh-selling-img-swiper .hsh-selling-img img {
  width: 375px;
  height: 500px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item .swiper-pagination span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item .swiper-pagination .swiper-pagination-bullet-active {
  width: 7px;
  height: 7px;
  background-color: rgb(37, 206, 209);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item .hsh-selling-box {
  display: flex;
  align-items: center;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item .hsh-selling-box .hsh-selling-name {
  max-width: 375px;
  line-height: 24px;
  color: rgb(34, 34, 34);
  font-size: 15px;
  text-align: left;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 12px 0 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item .hsh-selling-box .hsh-selling-price {
  color: rgb(37, 206, 209);
  font-size: 14px;
  text-align: left;
  font-weight: bold;
  padding-bottom: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item .hsh-selling-box .hsh-selling-price span {
  font-size: 16px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-first-item .hsh-selling-box .hsh-selling-btn {
  width: 110px;
  height: 28px;
  line-height: 28px;
  border-radius: 14px;
  background: rgb(37, 206, 209);
  color: rgb(255, 255, 255);
  font-size: 13px;
  text-align: center;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 6px;
  border-radius: 6px;
  margin: 0 10px 0 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-item:nth-child(2n) {
  margin: 0 7px 0 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-item .hsh-selling-img {
  width: 60px;
  height: 60px;
  margin-right: 6px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-item .hsh-selling-img img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-item .hsh-selling-box {
  width: 96px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-item .hsh-selling-box .hsh-selling-name {
  color: rgb(34, 34, 34);
  font-size: 11px;
  width: 96px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-item .hsh-selling-box .hsh-selling-price {
  color: rgb(37, 206, 209);
  font-size: 10px;
  text-align: left;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-selling .hsh-selling-grid .hsh-selling-content .hsh-selling-item .hsh-selling-box .hsh-selling-price span {
  font-size: 14px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category {
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid {
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-switch {
  width: 100%;
  height: 44px;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-switch .hsh-foot-category-switch-item {
  width: 250px;
  height: 44px;
  line-height: 44px;
  position: relative;
  color: rgb(34, 34, 34);
  font-size: 15px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-switch .hsh-foot-category-switch-item::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 1px;
  height: 12px;
  background-color: #FFB2BE;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-switch .hsh-foot-category-switch-item:last-child::before {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-switch .hsh-foot-category-switch-item.active {
  color: rgb(248, 170, 82);
  font-size: 17px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-switch .hsh-foot-category-switch-item.active::after {
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid rgb(248, 170, 82);
  border-radius: 1px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-content {
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-content .hsh-foot-category-item {
  width: 115px;
  height: 186px;
  display: flex;
  align-items: center;
  flex-flow: column;
  padding: 8px;
  margin-right: 5px;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-content .hsh-foot-category-item:nth-child(3n) {
  margin-right: 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-content .hsh-foot-category-item .hsh-foot-category-img {
  width: 99px;
  height: 99px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-content .hsh-foot-category-item .hsh-foot-category-img img {
  width: 99px;
  height: 99px;
  border-radius: 4px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-content .hsh-foot-category-item .hsh-foot-category-box {
  display: flex;
  align-items: center;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-content .hsh-foot-category-item .hsh-foot-category-box .hsh-foot-category-name {
  width: 99px;
  line-height: 18px;
  color: rgb(34, 34, 34);
  font-size: 13px;
  text-align: center;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 5px 0 2px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-content .hsh-foot-category-item .hsh-foot-category-box .hsh-foot-category-price {
  color: rgb(255, 36, 66);
  font-size: 10px;
  text-align: left;
  font-weight: bold;
  padding-bottom: 6px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-content .hsh-foot-category-item .hsh-foot-category-box .hsh-foot-category-price span {
  font-size: 14px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-foot-category .hsh-foot-category-grid .hsh-foot-category-content .hsh-foot-category-item .hsh-foot-category-box .hsh-foot-category-btn {
  width: 69px;
  height: 22px;
  line-height: 22px;
  border-radius: 14px;
  background: rgb(248, 170, 82) 100%;
  color: rgb(255, 255, 255);
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-show-image .hsh-show-image-type {
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-show-image .hsh-show-image-type img {
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-coupons {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-coupons .hsh-gift-coupons-style {
  border-radius: 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-coupons .gift-coupons-style-package .gift-coupons-package {
  height: 120px;
  position: relative;
  display: block;
  margin: 0 10px;
  border-radius: 8px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-coupons .gift-coupons-style-package .gift-coupons-package .hsh-gift-coupons-title {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 0 8px;
  height: 24px;
  background-color: rgb(255, 238, 205);
  color: rgb(224, 135, 42);
  font-size: 11px;
  text-align: center;
  font-weight: bolder;
  display: flex;
  align-items: center;
  border-radius: 8px 0 8px 0;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-coupons .gift-coupons-style-package .gift-coupons-package .hsh-gift-coupons-title img {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gift-coupons .gift-coupons-style-package .gift-coupons-package .hsh-gift-coupons-img {
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gradient-back-title-box {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  background: linear-gradient(to right, rgba(37, 206, 209, 0), rgba(37, 206, 209, 0.2), rgba(37, 206, 209, 0));
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gradient-back-title-box .hsh-gradient-back-title {
  color: rgb(37, 206, 209);
  font-size: 17px;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-gradient-back-title-box .hsh-gradient-back-explain {
  color: rgb(37, 206, 209);
  font-size: 11px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-round-back-title {
  position: relative;
  z-index: 2;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-round-back-title::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  z-index: -1;
  background: linear-gradient(to right, rgba(255, 242, 211, 0.4), rgba(255, 243, 237, 0.4));
}
.hsh-index-component .hsh-app .hsh-preview .hsh-round-back-title::before {
  content: "";
  position: absolute;
  left: 50px;
  top: -1px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  z-index: -1;
  background: linear-gradient(to right, rgba(255, 242, 211, 0.4), rgba(255, 243, 237, 0.4));
}
.hsh-index-component .hsh-app .hsh-preview .hsh-tab-list {
  width: 100%;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-tab-list .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 12px 10px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-tab-list .list .item {
  height: 100px;
  flex-basis: 32%;
  margin-bottom: 5px;
  border-radius: 12px;
  padding: 12px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-tab-list .list .item .title {
  font-size: 16px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-tab-list .list .item .sub {
  position: relative;
  z-index: 9;
  font-size: 12px;
  color: #999999;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-tab-list .list .item .img {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 6px;
  right: 6px;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-tab-list .list.style_1 .item:first-child, .hsh-index-component .hsh-app .hsh-preview .hsh-tab-list .list.style_1 .item:nth-child(2) {
  flex-basis: 49%;
}
.hsh-index-component .hsh-app .hsh-preview .hsh-tab-list .list.style_2 .item {
  height: 80px;
  flex-basis: 49%;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts {
  padding: 0 10px;
  display: grid;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style .item {
  grid-column: span 4;
  background: #FFFFFF;
  height: 100px;
  padding: 11px 12px;
  position: relative;
  z-index: 2;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style .item .title {
  color: rgb(51, 51, 51);
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style .item .intro {
  line-height: 18px;
  color: rgb(153, 153, 153);
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style .item .icon {
  position: absolute;
  z-index: -1;
  width: 50px;
  height: 50px;
  right: 6px;
  bottom: 6px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:last-child {
  border-radius: 0 0 12px 0;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-4) {
  grid-column: span 6;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-4):first-child {
  border-radius: 12px 0 0 0;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-4):first-child:nth-last-child(-n+2) {
  border-radius: 12px 0 0 12px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-4):first-child:last-child {
  border-radius: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-4):nth-last-child(-n+3) {
  border-radius: 0 0 0 12px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-4):nth-last-child(-n+3):nth-last-child(3) {
  border-radius: 0;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-4):nth-last-child(-n+3):nth-last-child(3):first-child {
  border-radius: 12px 0 0 0;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-4):last-child {
  border-radius: 0 0 12px 12px;
  grid-column: span 12;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-3) {
  grid-column: span 6;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-3):nth-child(2) {
  border-radius: 0 12px 0 0;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-3):nth-child(2):last-child {
  border-radius: 0 12px 12px 0;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-2):nth-last-child(-n+3) {
  border-radius: 0 0 0 12px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-2):last-child {
  border-radius: 0 0 12px 12px;
  grid-column: span 12;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.one .item:nth-child(5n-1):last-child {
  grid-column: span 8;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.two {
  gap: 9px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.two .item {
  grid-column: span 6;
  border-radius: 12px;
  height: 80px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-shortcuts .charge-shortcuts-style.three .item {
  grid-column: span 4;
  border-radius: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-map {
  padding: 0 10px;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-map .charge-map-section {
  width: 100%;
  height: 400px;
}
.hsh-index-component .hsh-app .hsh-preview .charge-map .charge-map-section .map {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .station-list {
  margin-bottom: 10px;
  padding: 0 10px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item {
  width: 100%;
  padding: 12px 10px;
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item:not(:first-child) {
  margin-top: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .name {
  color: rgb(34, 34, 34);
  font-size: 17px;
  line-height: 24px;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .price-unit .price {
  color: rgb(37, 206, 209);
  font-size: 26px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .price-unit .unit {
  color: rgb(34, 34, 34);
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .null {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .null .sec {
  font-size: 12px;
  display: flex;
  align-items: center;
  padding-right: 6px;
  overflow: hidden;
  border-radius: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .null .sec .label {
  width: 26px;
  height: 100%;
  line-height: 20px;
  text-align: center;
  color: rgb(255, 255, 255);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .null .sec .null-num {
  margin-left: 6px;
  color: rgb(37, 206, 209);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .null .sec .null-num .name {
  margin-left: 2px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .null .sec .all {
  margin-left: 2px;
  color: rgb(153, 153, 153);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .null .sec.fast {
  background-color: rgb(255, 255, 255);
  border: 0.5px solid rgb(37, 206, 209);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .null .sec.fast .label {
  background-color: rgb(37, 206, 209);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .null .sec.slow {
  background-color: rgb(255, 255, 255);
  border: 0.5px solid rgb(35, 202, 106);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .null .sec.slow .label {
  background-color: rgb(35, 202, 106);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .price-null .null .sec.slow .null-num {
  color: rgb(35, 202, 106);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .address-distance {
  border-top: 0.5px solid rgb(227, 227, 227);
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .address-distance .address {
  display: flex;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .address-distance .address::before {
  width: 16px;
  height: 16px;
  display: block;
  content: "";
  background: url("../../images/diy/charge/content/ic_station_address.png") 100%/100% no-repeat;
  margin-top: 1px;
  flex-shrink: 0;
  margin-right: 6px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .address-distance .address .text {
  color: rgb(102, 102, 102);
  font-size: 12px;
  line-height: 17px;
  max-width: 230px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .address-distance .distance {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .address-distance .distance::before {
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  background: url("../../images/diy/charge/content/ic_map_navigation.png") 100%/100% no-repeat;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .ev .address-distance .distance .num {
  color: rgb(37, 206, 209);
  font-size: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other {
  display: flex;
  gap: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .thumb {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .thumb img {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .name-distance {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .name-distance .name {
  color: rgb(34, 34, 34);
  font-size: 17px;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .name-distance .distance {
  display: flex;
  align-items: center;
  color: rgb(37, 206, 209);
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .name-distance .distance::before {
  width: 16px;
  height: 16px;
  display: block;
  content: "";
  background: url("../../images/diy/charge/content/ic_map_navigation.png") 100%/100% no-repeat;
  margin-right: 2px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .address {
  margin-top: 4px;
  line-height: 17px;
  color: rgb(153, 153, 153);
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers {
  margin-top: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item {
  height: 20px;
  padding: 0 8px 0 26px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  border: 0.5px solid rgb(255, 255, 255);
  position: relative;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item .icon {
  width: 20px;
  height: 20px;
  border: 0.5px solid rgb(255, 255, 255);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-0.5px, -0.5px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item .icon::before {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.ev {
  border: 0.5px solid rgb(37, 206, 209);
  color: rgb(37, 206, 209);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.ev .icon {
  border: 0.5px solid rgb(37, 206, 209);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.ev .icon::before {
  background: url("../../images/diy/charge/content/ic_map_car.png") 100%/100% no-repeat;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.eb {
  border: 0.5px solid rgb(35, 197, 140);
  color: rgb(35, 197, 140);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.eb .icon {
  border: 0.5px solid rgb(35, 197, 140);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.eb .icon::before {
  background: url("../../images/diy/charge/content/ic_map_bicycle_green.png") 100%/100% no-repeat;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.eBox {
  border: 0.5px solid rgb(36, 115, 208);
  color: rgb(36, 115, 208);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.eBox .icon {
  border: 0.5px solid rgb(36, 115, 208);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.eBox .icon::before {
  background: url("../../images/diy/charge/content/ic_map_cabinet_blue.png") 100%/100% no-repeat;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.pb {
  border: 0.5px solid rgb(242, 190, 15);
  color: rgb(242, 190, 15);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.pb .icon {
  border: 0.5px solid rgb(242, 190, 15);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.pb .icon::before {
  background: url("../../images/diy/charge/content/ic_map_power_yellow.png") 100%/100% no-repeat;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.pb .label {
  position: relative;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.pb .label::before {
  width: 1px;
  height: 7px;
  display: block;
  content: "";
  background: rgb(237, 228, 199);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-5px, -50%);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.pb .label.first {
  position: unset;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .all .all-item.pb .label.first::before {
  display: none;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .rechargeable {
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .rechargeable .re-item {
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  border: 0.5px solid rgb(37, 206, 209);
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .rechargeable .re-item .free {
  color: rgb(37, 206, 209);
  margin-right: 2px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .rechargeable .re-item .total {
  color: rgb(153, 153, 153);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .rent-return {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .rent-return .part {
  height: 20px;
  border-radius: 10px;
  padding: 0 8px;
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .rent-return .part.rent {
  border: 0.5px solid rgb(37, 206, 209);
  color: rgb(37, 206, 209);
}
.hsh-index-component .hsh-app .hsh-preview .station-list .station-list-section .item .other .station-info .numbers .rent-return .part.return {
  border: 0.5px solid rgb(35, 202, 106);
  color: rgb(35, 202, 106);
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list {
  margin-bottom: 10px;
  padding: 0 10px;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .flex-center {
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container {
  padding-top: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .title {
  color: rgb(34, 34, 34);
  font-size: 17px;
  font-weight: bold;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container {
  margin-top: 8px;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 12px;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .name {
  font-size: 16px;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .name::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url("../../images/diy/charge/content/ic_station_car.png") no-repeat 100%/100%;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .name.EB::before {
  background: url("../../images/diy/charge/content/ic_station_bicycle.png") no-repeat 100%/100%;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .name.PB::before {
  background: url("../../images/diy/charge/content/ic_station_power.png") no-repeat 100%/100%;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .name.EBox::before {
  background: url("../../images/diy/charge/content/ic_station_exchange.png") no-repeat 100%/100%;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .name text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 225px;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .state {
  font-size: 14px;
  color: #25CED1;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .state::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #25CED1;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 206, 209, 0.2);
  margin-right: 6px;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .state.charging {
  color: #FF9F2F;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .state.charging::before {
  background-color: #FF9F2F;
  box-shadow: 0 0 0 3px rgba(255, 159, 47, 0.2);
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .num {
  margin-top: 8px;
  width: fit-content;
  font-size: 12px;
  color: #25CED1;
  padding: 2px 10px;
  border: 1px solid #25CED1;
  border-radius: 10px;
  margin-right: 10px;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .num text {
  color: #999999;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .num.return {
  color: #23CA6A;
  border: 1px solid #23CA6A;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .num.none {
  color: #979797;
  border: 1px solid #979797;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .btn {
  flex-shrink: 0;
  width: 74px;
  height: 32px;
  line-height: 32px;
  background-color: #25CED1;
  color: #FFFFFF;
  font-size: 14px;
  text-align: center;
  border-radius: 32px;
}
.hsh-index-component .hsh-app .hsh-preview .station-daily-station-list .station-daily-station-list-container .station-list-container .item .btn.disable {
  background-color: #B7B7B7;
  pointer-events: none;
}
.hsh-index-component .hsh-app .hsh-attribute {
  position: absolute;
  left: 450px;
  top: 50px;
  bottom: 10px;
  width: calc(100% - 480px);
  background-color: #fff;
  border: 1px solid #E8E8E8;
  padding: 0 15px;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-angle {
  width: 10px;
  height: 10px;
  border: 1px solid #ccc;
  border-right: 0;
  border-bottom: 0;
  position: absolute;
  left: -7px;
  top: 20px;
  background: white;
  transform: rotate(-45deg);
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box {
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-title {
  height: 52px;
  line-height: 52px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: bolder;
  color: #333;
  border-bottom: 1px solid #eee;
  font-family: "微软雅黑";
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-title .hsh-attr-save-btn {
  height: 32px;
  line-height: 32px;
  width: 72px;
  color: #fff;
  background-color: #25CED1;
  border-color: #25CED1;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  border-radius: 4px;
  display: inline-block;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail {
  width: 100%;
  height: calc(100% - 80px);
  overflow-y: scroll;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-style {
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-style .switch-style-item {
  width: 120px;
  height: 84px;
  position: relative;
  margin-right: 10px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-style .switch-style-item:last-child {
  margin-right: 0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-style .switch-style-item:hover .switch-style-choose {
  display: flex;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-style .switch-style-item .style-show {
  width: 100%;
  height: 100%;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-style .switch-style-item .style-checked {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #25CED1;
  z-index: 15;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-style .switch-style-item .style-checked.active {
  display: inline-block;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-style .switch-style-item .style-checked img {
  position: absolute;
  right: -1px;
  bottom: -1px;
  height: 20px;
  width: 32px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-style .switch-style-item .switch-style-choose {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-style .switch-style-item .switch-style-choose .choose-btn {
  background-color: #2d8cf0;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  border-radius: 2px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  font-size: 12px;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-style .switch-style-item .switch-style-choose .default {
  background-color: #009688;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item {
  margin: 15px 0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .label {
  vertical-align: middle;
  font-size: 12px;
  color: #000;
  line-height: 1;
  padding: 10px 0 10px 0;
  width: 70px;
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: left;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .hsh-select {
  flex-grow: 1;
  height: 30px;
  flex-shrink: unset;
  min-width: 187px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .hsh-options {
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .hsh-options .show_size {
  width: 80px;
  color: #222;
  font-size: 2px;
  text-align: center;
  margin-top: 5px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .hsh-options .hsh-option {
  margin-right: 10px;
  font-size: 12px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .hsh-options .hsh-option .input {
  padding: 0 15px;
  width: 350px;
  height: 36px;
  background-color: rgb(255, 255, 255);
  border: 0.5px solid rgb(218, 218, 218);
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .hsh-options .hsh-option .radio {
  margin-right: 2px;
  width: 14px;
  height: 14px;
  border: 1px solid #666;
  border-radius: 50%;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .hsh-options .hsh-option .radio span {
  display: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  color: #2d8cf0;
  background-color: #2d8cf0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .hsh-options .hsh-option .radio.active span {
  display: inline-block;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .hsh-options .hsh-option .checked {
  margin-right: 2px;
  width: 14px;
  height: 14px;
  border: 1px solid #666;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .hsh-options .hsh-option .checked span {
  display: none;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 2px;
  left: 2px;
  color: #2d8cf0;
  background-color: #2d8cf0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .hsh-options .hsh-option .checked.active span {
  display: inline-block;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item .switch-item-add {
  padding: 5px 25px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid #eee;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-item-items {
  display: flex;
  align-items: flex-start;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_first {
  margin: 15px 0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_first .label {
  vertical-align: middle;
  font-size: 12px;
  color: #000;
  line-height: 1;
  padding: 10px 0 10px 0;
  width: 70px;
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: left;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_first .new_gift_first_box {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  border: 1px solid #E8E8E8;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_first .new_gift_first_box .hsh-options {
  margin-bottom: 15px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_first .new_gift_first_box .hsh-options input {
  width: 350px;
  height: 36px;
  font-size: 12px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
  border: 1px solid #DADADA;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_first .new_gift_first_box .hsh-options .hsh-option {
  width: 155px;
  height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid #DADADA;
  box-sizing: border-box;
  padding: 2px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_first .new_gift_first_box .hsh-options .hsh-option .coupon_left {
  height: 32px;
  width: 12px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_first .new_gift_first_box .hsh-options .hsh-option .name {
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 75px;
  background-color: #FFE9EC;
  line-height: 32px;
  color: rgb(255, 36, 66);
  font-size: 12px;
  text-align: left;
  padding: 0 5px 0 2px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_first .new_gift_first_box .hsh-options .hsh-option .coupon_right {
  height: 32px;
  width: 31px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_first .new_gift_first_box .hsh-options .hsh-option .exchange {
  width: 32px;
  height: 32px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .select_coupons {
  margin: 15px 0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .select_coupons .label {
  vertical-align: middle;
  font-size: 12px;
  color: #000;
  line-height: 1;
  padding: 10px 0 10px 0;
  width: 70px;
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: left;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .select_coupons .select_coupons_box .hsh-options {
  margin-bottom: 15px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .select_coupons .select_coupons_box .hsh-options input {
  width: 350px;
  height: 36px;
  font-size: 12px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
  border: 1px solid #DADADA;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .select_coupons .select_coupons_box .hsh-options .hsh-option {
  width: 155px;
  height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid #DADADA;
  box-sizing: border-box;
  padding: 2px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .select_coupons .select_coupons_box .hsh-options .hsh-option .coupon_left {
  height: 32px;
  width: 12px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .select_coupons .select_coupons_box .hsh-options .hsh-option .name {
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 75px;
  background-color: #FFE9EC;
  line-height: 32px;
  color: rgb(255, 36, 66);
  font-size: 12px;
  text-align: left;
  padding: 0 5px 0 2px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .select_coupons .select_coupons_box .hsh-options .hsh-option .coupon_right {
  height: 32px;
  width: 31px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .select_coupons .select_coupons_box .hsh-options .hsh-option .exchange {
  width: 32px;
  height: 32px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package {
  margin: 15px 0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .label {
  vertical-align: middle;
  font-size: 12px;
  color: #000;
  line-height: 1;
  padding: 10px 0 10px 0;
  width: 70px;
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: left;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .new_gift_package_box {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  border: 1px solid #E8E8E8;
  display: flex;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .new_gift_package_box .hsh-options {
  width: calc(50% - 16px);
  margin-bottom: 15px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .new_gift_package_box .hsh-options input {
  width: 200px;
  height: 36px;
  font-size: 12px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
  border: 1px solid #DADADA;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .new_gift_package_box .hsh-options .hsh-option {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .new_gift_package_box .hsh-options .hsh-option .hsh-coupons {
  width: 155px;
  height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid #DADADA;
  box-sizing: border-box;
  padding: 2px;
  margin-right: 16px;
  margin-bottom: 5px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .new_gift_package_box .hsh-options .hsh-option .hsh-coupons .coupon_left {
  height: 32px;
  width: 12px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .new_gift_package_box .hsh-options .hsh-option .hsh-coupons .name {
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 75px;
  background-color: #FFE9EC;
  line-height: 32px;
  color: rgb(255, 36, 66);
  font-size: 12px;
  text-align: left;
  padding: 0 5px 0 2px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .new_gift_package_box .hsh-options .hsh-option .hsh-coupons .coupon_right {
  height: 32px;
  width: 31px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .new_gift_package_box .hsh-options .hsh-option .hsh-coupons .exchange {
  width: 32px;
  height: 32px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .new_gift_package_box .hsh-options .hsh-option .hsh-coupons .del {
  width: 24px;
  height: 24px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .new_gift_package .new_gift_package_box .hsh-options .hsh-option .switch-data-add {
  height: 36px;
  line-height: 36px;
  border: 0.5px solid rgb(25, 137, 250);
  padding: 0 25px;
  font-size: 12px;
  color: #25CED1;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  margin-bottom: 10px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-left {
  width: 110px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-left .hsh-switch-data-upload-size {
  color: #999;
  margin-top: 4px;
  font-size: 12px;
  line-height: 32px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-right {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-right .hsh-switch-data-input-box {
  width: calc(50% - 8px);
  margin-right: 10px;
  margin-bottom: 15px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-right .hsh-switch-data-input-box:nth-child(2n) {
  margin-right: 0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-right .hsh-switch-data-input-box .label {
  color: rgb(0, 0, 0);
  font-size: 12px;
  text-align: left;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-right .hsh-switch-data-input-box .hsh-switch-data-input-choose {
  width: 100%;
  height: 36px;
  display: flex;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-right .hsh-switch-data-input-box .hsh-switch-data-input-choose .choose_link {
  cursor: pointer;
  border-right: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  width: 60px;
  line-height: 36px;
  text-align: center;
  color: #222;
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-right .hsh-switch-data-input-box .hsh-switch-data-input {
  width: 100%;
  height: 36px;
  border: 1px solid #e6e6e6;
  line-height: 36px;
  padding: 0 10px;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-del {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  height: 22px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-del .control-btn {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .hsh-options .hsh-switch-data-del .control-btn img {
  width: 22px;
  height: 22px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-banner .switch-data-add {
  height: 36px;
  line-height: 36px;
  border: 0.5px solid rgb(25, 137, 250);
  padding: 0 25px;
  font-size: 12px;
  color: #25CED1;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  margin-bottom: 10px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options .hsh-options-control {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options .hsh-options-control .control-btn {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options .hsh-switch-data-left {
  width: 100px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options .hsh-switch-data-left .hsh-switch-data-upload-size {
  color: #999;
  margin-top: 4px;
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options .hsh-switch-data-right {
  width: 100%;
  display: flex;
  height: 100px;
  flex-flow: column;
  justify-content: center;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options .hsh-switch-data-right .label {
  font-size: 12px;
  color: #000;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options .hsh-switch-data-right .hsh-switch-data-input-choose {
  width: 100%;
  height: 36px;
  display: flex;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options .hsh-switch-data-right .hsh-switch-data-input-choose .choose_link {
  cursor: pointer;
  border-right: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  width: 60px;
  line-height: 36px;
  text-align: center;
  color: #222;
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options .hsh-switch-data-right .hsh-switch-data-input {
  width: 100%;
  height: 36px;
  border: 1px solid #e6e6e6;
  line-height: 36px;
  padding: 0 10px;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options .hsh-switch-data-del {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .hsh-options .hsh-switch-data-del img {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-live .switch-data-add {
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid #eee;
  width: 120px;
  text-align: center;
  line-height: 30px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-left {
  width: 100px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-left .hsh-switch-data-upload-size {
  color: #999;
  margin-top: 4px;
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-label {
  font-size: 12px;
  color: rgb(73, 80, 96);
  width: 40px;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-right {
  width: 100%;
  display: flex;
  height: 100px;
  flex-flow: column;
  justify-content: space-around;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-right .hsh-switch-data-checked {
  display: flex;
  align-items: center;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-right .hsh-switch-data-checked > div {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #333;
  margin-right: 10px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-right .hsh-switch-data-checked > div .checked {
  margin-right: 5px;
  width: 14px;
  height: 14px;
  border: 1px solid #666;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-right .hsh-switch-data-checked > div .checked span {
  display: none;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 2px;
  left: 2px;
  color: #2d8cf0;
  background-color: #2d8cf0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-right .hsh-switch-data-checked > div .checked.active span {
  display: inline-block;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-right .hsh-switch-data-selected {
  width: 100%;
  height: 30px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-right .hsh-switch-data-input-box .hsh-switch-data-input {
  width: 100%;
  height: 30px;
  border: 1px solid #e6e6e6;
  line-height: 30px;
  padding: 0 10px;
  box-sizing: border-box;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-del {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .hsh-options .hsh-switch-data-del img {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-data .switch-data-add {
  height: 36px;
  line-height: 36px;
  border: 0.5px solid rgb(25, 137, 250);
  padding: 0 25px;
  font-size: 12px;
  color: #25CED1;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods {
  margin-top: 10px;
  margin-bottom: 10px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .label {
  margin-bottom: 10px;
  color: #000;
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .label span {
  color: #666;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box .hsh-options {
  display: flex;
  align-items: center;
  width: calc(50% - 16px);
  padding: 10px;
  border: 1px solid #E8E8E8;
  margin-right: 16px;
  margin-bottom: 10px;
  position: relative;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box .hsh-options:nth-child(2n) {
  margin-right: 0;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box .hsh-options .hsh-switch-data-left {
  width: 100px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box .hsh-options .hsh-switch-data-left .hsh-switch-data-upload-size {
  color: #999;
  margin-top: 4px;
  font-size: 12px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box .hsh-options .hsh-switch-data-label-box {
  height: 100px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box .hsh-options .hsh-switch-data-label-box .hsh-switch-data-label {
  font-size: 12px;
  color: rgb(73, 80, 96);
  flex-shrink: 0;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box .hsh-options .hsh-switch-data-label-box .price {
  color: rgb(136, 136, 136);
  font-size: 12px;
  text-align: left;
  margin-top: 6px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box .hsh-options .hsh-switch-data-del {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  height: 22px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box .hsh-options .hsh-switch-data-del .control-btn {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box .hsh-options .hsh-switch-data-del .control-btn img {
  width: 22px;
  height: 22px;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-goods-box .hsh-options .hsh-switch-data-long-add {
  width: 80px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid #eee;
}
.hsh-index-component .hsh-app .hsh-attribute .hsh-attr-box .hsh-attr-detail .switch-goods .switch-data-add {
  height: 36px;
  line-height: 36px;
  border: 0.5px solid rgb(25, 137, 250);
  width: 72px;
  text-align: center;
  font-size: 12px;
  color: #25CED1;
}
.hsh-index-component .hsh-app-btn {
  position: absolute;
  bottom: 0px;
  left: 50px;
  width: 376px;
  height: 56px;
  background-color: #fff;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hsh-index-component .hsh-app-btn .hsh-btn-page {
  width: 72px;
  height: 32px;
  margin: 0 8px;
  color: #333;
  background-color: #fff;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  white-space: nowrap;
  line-height: 32px;
  user-select: none;
  font-size: 12px;
  border: 1px solid rgb(232, 232, 232);
}
.hsh-index-component .hsh-app-btn .hsh-btn-page.active {
  background-color: #25CED1;
  color: #fff;
  border: 1px solid #25CED1;
}

.backgroundColorSetting {
  display: flex;
  align-items: center;
  padding-left: 8px;
  width: 179px;
  height: 32px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 4px 0px rgba(218, 218, 218, 0.5);
  border: 1px solid #25CED1;
}
.backgroundColorSetting .backgroundColor {
  width: 24px;
  height: 20px;
  border: 1px solid rgb(218, 218, 218);
}
.backgroundColorSetting .backgroundLabel {
  color: #333;
  font-size: 12px;
  margin-left: 6px;
}
.backgroundColorSetting .backgroundInput {
  width: 60px;
}
.backgroundColorSetting .background-edit-btn {
  width: 20px;
  height: 20px;
  background-size: 100%;
  background-image: url("../../images/diy/ic_edit.png");
}
.backgroundColorSetting .background-edit-btn.submit {
  background-image: url("../../images/diy/ic_submit.png");
}

.shortcut-box {
  display: flex;
  height: 30px;
  width: 100%;
}

.line-num-box {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.line-num {
  font-size: 12px;
  color: #000;
  width: 100px;
}

.line-num-input {
  width: 30%;
  height: 30px;
  border: 1px solid #e6e6e6;
  line-height: 36px;
  padding: 0 10px;
  box-sizing: border-box;
}

/**
 * @author 梁星文
 * 日期 2024/3/25 15:32
 * 版权所有 广州优匠科技有限公司
 */
.areaList {
  max-height: 400px;
  overflow: scroll;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #eee;
  height: 400px;
  padding: 5px 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.areaList li {
  line-height: 32px;
  padding-left: 5px;
}
.areaList li:hover {
  background-color: #f5f5f5;
}
.areaList li .checkbox {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  cursor: pointer;
  float: left;
  margin-top: 10px;
  margin-right: 6px;
}
.areaList li .checkbox .selected {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/icon/ic_select.png") no-repeat center;
  background-size: 100%;
}
.areaList li .checkbox .checked {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/icon/ic_tick2.png") no-repeat center;
  background-size: 100%;
}
.areaList li .text {
  color: #999999;
  font-size: 12px;
}

/**
 * @author 梁星文
 * 日期 2024/3/28 14:03
 * 版权所有 广州优匠科技有限公司
 */
.tabBar {
  width: 100%;
  background-color: #fff;
  padding-right: 16px;
  padding-bottom: 16px;
}
.tabBar .content {
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #DADADA;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tabBar .content .tabItem {
  color: #606266;
  font-size: 12px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  flex-shrink: 0;
  /* margin-left: 10px; */
  margin-right: -1px;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: -1px;
  border: solid 1px #DADADA;
  min-width: 88px;
  text-align: center;
  background-color: #EFF3F6;
}
.tabBar .content .tabItem.active {
  color: #25CED1;
  font-weight: 500;
  border-top: solid 2px #25CED1;
  background-color: #FFF;
  border-bottom: solid 1px #FFF;
}
.tabBar .content .tabItem .num {
  display: inline-block;
  width: 29px;
  height: 16px;
  border-radius: 8px;
  background-color: #E4E7ED;
  font-size: 14px;
  line-height: 16px;
  color: #999;
  font-size: 12px;
  text-align: center;
  font-family: PingFangSC-Medium;
  /* margin-left: -40px; */
  position: relative;
  bottom: 2px;
  margin-left: 5px;
}

/**
 * @author 梁星文
 * 日期 2024/3/29 15:20
 * 版权所有 广州优匠科技有限公司
 */
.pl30 {
  padding-left: 30px;
}

.hsh-fs {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.add-coupons {
  width: 100%;
  margin-bottom: 15px;
  padding: 25px 30px 30px;
  background-color: #FFF;
}
.add-coupons .hsh-form {
  margin-top: 20px;
}
.add-coupons .hsh-form .hsh-form-item {
  width: 315px;
}
.add-coupons .hsh-form .hsh-input {
  margin-right: 10px;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.add-coupons .hsh-form .hsh-input.bg {
  background-color: #F5F7FA;
}
.add-coupons .hsh-form .selectIcon {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  background: url("../images/icon/ic_checkbox.png") no-repeat center;
  background-size: 100%;
}
.add-coupons .hsh-form .active .selectIcon {
  background: url("../images/icon/ic_checkbox_checked.png") no-repeat center;
  background-size: 100%;
}
.add-coupons .controls.input-search-button {
  width: 250px;
  margin-right: 15px;
  padding-left: 15px;
}
.add-coupons .controls.input-search-button .icon {
  border-left: 1px solid #E4E7ED;
  background: #F9FAFC url("../images/icon/ic_search.png") no-repeat center;
  background-size: 14px;
}
.add-coupons .tableContainer {
  margin-top: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.add-coupons .tableContainer table .checkbox {
  background-color: #FFF;
}
.add-coupons .tableContainer .coupons-img {
  width: 100px;
  height: 80px;
  margin-right: 10px;
}
.add-coupons .tableContainer th {
  background-color: #EFF2FA;
}
.add-coupons .controls.icon-button.button-blue .icon-add {
  background: url(../libs/images/icon/ic_api_add.png) no-repeat center;
  background-size: 8px;
  border-radius: 50%;
  border: 1px solid #FFF;
}

.coupons-foot {
  height: 60px;
  margin: 0 -10px -10px;
  padding: 10px 40px;
  background-color: #FFF;
  -webkit-box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.coupons-foot .controls.button {
  width: 110px;
  margin-right: 25px;
}

.activity-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}
.activity-icon img {
  border-radius: 50%;
}

.add-activity {
  width: 100%;
  padding: 25px 30px 30px;
  margin-bottom: 20px;
  background-color: #FFF;
}
.add-activity .controls.combobox {
  width: 315px;
}
.add-activity .controls.combobox .drop-icon {
  background: url(../images/icon/ic_nav_arrow.png) no-repeat center;
  background-size: 10px;
}
.add-activity .helpIcon {
  width: 26px;
  height: 26px;
  margin-left: 20px;
  margin-top: 7px;
  background: url("../images/ic_help.png") no-repeat center;
  background-size: 100%;
  cursor: pointer;
}
.add-activity .straight-line ~ .hsh-form-row .hsh-form-item:nth-child(2) .controls.imageupload {
  width: 260px;
}
.add-activity .controls.hsh-input, .add-activity .controls.dateField, .add-activity .controls.hsh-time {
  width: 315px;
}
.add-activity .selectIcon {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  background: url("../images/ic_cms_topic_unchecked.png") no-repeat center;
  background-size: 100%;
}
.add-activity .active .selectIcon {
  background: url("../images/ic_cms_topic_checked.png") no-repeat center;
  background-size: 100%;
}
.add-activity .hsh-form-row .hsh-form-item {
  width: auto;
  margin-left: 20px;
}
.add-activity .hsh-form-label {
  height: 20px;
}
.add-activity .switch-bar {
  width: 100%;
  height: 56px;
  margin-top: -20px;
  border-bottom: 2px solid #E4E7ED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.add-activity .switch-bar .active {
  color: #1989FA;
}
.add-activity .switch-bar .active:after {
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 2px solid #1989FA;
  position: absolute;
  left: 0;
  bottom: -18px;
}
.add-activity .set {
  margin: 20px 0;
}
.add-activity .set .controls {
  margin-right: 10px;
}
.add-activity .set .controls.hsh-input, .add-activity .set .controls.combobox {
  width: 110px;
}
.add-activity .controls.hsh-input.sort-input {
  width: 50px;
}
.add-activity .tableContainer {
  margin-bottom: 20px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.add-activity .tableContainer table th {
  background-color: #EFF2FA;
  font-family: "PingFang SC Medium";
  color: #333;
}
.add-activity .tableContainer table tr:hover td {
  background-color: transparent;
}

.hsh-page.add-item {
  width: 660px;
}
.hsh-page.add-item .combobox {
  width: 170px;
  margin-right: 20px;
}
.hsh-page.add-item .combo-input-search-button {
  width: 300px;
}
.hsh-page.add-item .tableContainer {
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 10px;
}
.hsh-page.add-item .tableContainer th {
  background-color: #EFF2FA;
  font-family: "PingFang SC Medium";
  color: #333;
}
.hsh-page.add-item .tableContainer .img {
  width: 42px;
  height: 42px;
  margin-right: 10px;
}
.hsh-page.add-item .tableContainer .checkbox {
  background-color: #FFF;
}
.hsh-page.add-item .tableContainer tr:hover td {
  background-color: transparent;
}

.activity .banner img {
  width: 154px;
  height: 50px;
}
.activity .banner .title {
  color: #000;
  font-size: 14px;
  text-align: left;
  margin-top: 6px;
}
.activity .type-title {
  color: #222;
  font-size: 14px;
}
.activity .date {
  color: #606266;
  font-size: 14px;
}
.activity .split {
  color: #606266;
  font-size: 14px;
}
.activity .signup {
  margin-top: 12px;
}
.activity .signup .label {
  color: #999999;
  font-size: 12px;
  text-align: left;
}
.activity .signup .num {
  color: #333;
  font-size: 12px;
  text-align: left;
  width: 30px;
}
.activity .progress-box {
  width: 180px;
}
.activity .progress-box .controls.progress-bar {
  width: 120px;
  height: 6px;
  float: left;
  margin-top: 7px;
  margin-right: 10px;
}
.activity .progress-box .controls.progress-bar .progress {
  height: 6px;
}
.activity .progress-box .progress-value {
  display: block;
  font-size: 14px;
  color: #1989FA;
  text-align: left;
}
.activity .flex-box {
  display: flex;
  flex-wrap: wrap;
}
.activity .flex-box .controls.hsh-time {
  width: 230px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.activity .flex-box .add-button {
  font-size: 14px;
  color: #1989FA;
  line-height: 40px;
  margin-left: 10px;
}
.activity .shop-summary-bar {
  width: 100%;
  height: 100px;
  background: #ffffff;
}
.activity .shop-summary-bar .activity-shop-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-top: 25px;
  margin-left: 25px;
}

/**
 * @author 梁星文
 * 日期 2024/4/27 10:52
 * 版权所有 广州优匠科技有限公司
 */
.shortcut-box {
  display: flex;
  height: 30px;
  width: 100%;
}

.line-num-box {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.line-num {
  font-size: 12px;
  color: #000;
  width: 100px;
}

.line-num-input {
  width: 30%;
  height: 30px;
  border: 1px solid #e6e6e6;
  line-height: 36px;
  padding: 0 10px;
  box-sizing: border-box;
}

.allItem-pop-import {
  position: relative;
}

.allItem-pop {
  width: 200px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #E4E7ED;
  position: absolute;
  z-index: 1000;
  color: #333333;
}
.allItem-pop .pop-box .pop-list li > div {
  text-align: center;
}

.home-page {
  width: 100%;
  height: 100%;
  display: flex;
}
.home-page .station-bar {
  width: 300px;
  height: 100%;
  background-color: #EBEFF2;
  transition: width 1s ease;
}
.home-page .station-bar.close {
  width: 0px;
}
.home-page .station-bar .station-header {
  background-color: #FFF;
  display: inline-block;
  width: 300px;
}
.home-page .station-bar .station-header .station-header-title {
  text-align: center;
  padding: 10px 0 10px 0;
  font-size: 14px;
  color: #333;
  font-weight: 600;
}
.home-page .station-bar .station-header .station-search-bar {
  display: flex;
  padding: 0 6px 0 6px;
  margin-bottom: 12px;
}
.home-page .station-bar .station-header .station-search-bar .combobox {
  width: 141px;
}
.home-page .station-bar .station-header .station-search-bar .combobox:last-child {
  margin-left: 6px;
}
.home-page .station-bar .station-content {
  overflow: auto;
  height: -webkit-calc(100% - 126px) !important;
  height: -moz-calc(100% - 126px) !important;
  height: calc(100% - 126px) !important;
  padding: 0px 6px 0 6px;
  width: 300px;
  margin-top: 6px;
}
.home-page .station-bar .station-content .station-item {
  background-color: #FFF;
  display: flex;
  margin-bottom: 6px;
  flex-direction: column;
}
.home-page .station-bar .station-content .station-item .station-item-header {
  background-color: #FFF;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px 0 10px;
  justify-content: space-between;
  cursor: pointer;
}
.home-page .station-bar .station-content .station-item .station-item-header .station-name {
  font-size: 12px;
  color: #333;
  max-width: 70%;
}
.home-page .station-bar .station-content .station-item .station-item-header .station-name.active {
  color: #25CED1;
}
.home-page .station-bar .station-content .station-item .station-item-header .station-right {
  display: flex;
  align-items: center;
}
.home-page .station-bar .station-content .station-item .station-item-header .station-right .station-gun-num {
  background-color: #F2F5F8;
  height: 16px;
  font-size: 10px;
  color: #999999;
  padding: 0 4px 0 4px;
  margin-right: 10px;
}
.home-page .station-bar .station-content .station-item .station-item-header .station-right .station-gun-arrow {
  width: 12px;
  height: 12px;
  background: url(../../images/home/blue/ic_list_open.png) no-repeat center;
  background-size: 100% 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.home-page .station-bar .station-content .station-item .station-item-header .station-right .station-gun-arrow.open {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.home-page .station-bar .station-content .station-item .station-item-guns {
  overflow: hidden;
  display: none;
}
.home-page .station-bar .station-content .station-item .station-item-guns .no-guns {
  height: 32px;
  background-color: #E2E5E7;
  text-align: center;
  line-height: 32px;
  font-size: 12px;
  color: #999;
}
.home-page .station-bar .station-content .station-item .station-item-guns .station-item-gun {
  background-color: #F1F4F6;
  height: 32px;
  border-top: solid 1px #E2E5E7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 0 10px;
}
.home-page .station-bar .station-content .station-item .station-item-guns .station-item-gun .station-item-gun-info {
  display: flex;
  font-size: 12px;
  color: #333;
  align-items: center;
}
.home-page .station-bar .station-content .station-item .station-item-guns .station-item-gun .station-item-gun-info .station-item-gun-name {
  color: #999;
}
.home-page .station-bar .station-content .station-item .station-item-guns .station-item-gun .station-item-gun-status {
  font-size: 12px;
  color: #333;
}
.home-page .station-bar .station-content .station-item .station-item-guns .station-item-gun .station-item-gun-status .status.online {
  color: #52C41A;
}
.home-page .station-bar .station-content .station-item .station-item-guns .station-item-gun .station-item-gun-status .status.offline {
  color: #CC1F1F;
}
.home-page .station-bar .station-content .station-item .station-item-guns .station-item-gun .station-item-gun-status .status.notActivated {
  color: #999;
}
.home-page .station-bar .station-content::-webkit-scrollbar {
  width: 8px;
}
.home-page .station-bar .station-content::-webkit-scrollbar-track {
  opacity: 1;
}
.home-page .station-bar .station-content::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 4px;
}
.home-page .station-bar .station-content::-webkit-scrollbar-thumb:hover {
  background-color: #fff;
}
.home-page .station-bar .station-content::-webkit-scrollbar-thumb:active {
  background-color: #fff;
}
.home-page .station-bar .station-footer {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
}
.home-page .station-map {
  height: 100%;
  width: -webkit-calc(100% - 300px) !important;
  width: -moz-calc(100% - 300px) !important;
  width: calc(100% - 300px) !important;
  position: relative;
  transition: width 1s ease;
}
.home-page .station-map.close {
  width: -webkit-calc(100% - 0px) !important;
  width: -moz-calc(100% - 0px) !important;
  width: calc(100% - 0px) !important;
}
.home-page .station-map .qq-map {
  width: 100%;
  height: 100%;
}
.home-page .station-map .qq-map > div > div > div > div {
  padding: 0 !important;
}
.home-page .station-map .qq-map .rotate-circle .compass-img {
  left: 0 !important;
}
.home-page .station-map .guns-status-summary {
  height: 50px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1001;
}
.home-page .station-map .guns-status-summary .guns-line {
  width: 1px;
  height: 22px;
  background-color: #DADADA;
}
.home-page .station-map .guns-status-summary .guns-status-item {
  height: 50px;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home-page .station-map .guns-status-summary .guns-status-item .guns-status-item-text {
  font-size: 12px;
  color: #666666;
}
.home-page .station-map .guns-status-summary .guns-status-item .guns-status-item-num {
  font-weight: bold;
  text-decoration-line: underline;
  cursor: pointer;
}
.home-page .station-map .guns-status-summary .guns-status-item .guns-status-item-num.total {
  color: #333333;
  text-decoration-line: none;
  cursor: default;
}
.home-page .station-map .guns-status-summary .guns-status-item .guns-status-item-num.online {
  color: #52C41A;
}
.home-page .station-map .guns-status-summary .guns-status-item .guns-status-item-num.offline {
  color: #CC1F1F;
}
.home-page .station-map .guns-status-summary .guns-status-item .guns-status-item-num.notActivated {
  color: #999;
}
.home-page .station-map .station-marker {
  min-width: 400px;
  max-width: 550px;
  padding: 10px;
  background-color: #FFF;
}
.home-page .station-map .station-marker .station-marker-header {
  display: flex;
  align-items: center;
  overflow-y: auto;
  padding-right: 20px;
}
.home-page .station-map .station-marker .station-marker-header .station-marker-header-icon {
  width: 18px;
  height: 18px;
  background-image: url("../../images/home/blue/ic_home_station.png");
  background-size: 18px 18px;
  flex-shrink: 0;
}
.home-page .station-map .station-marker .station-marker-header .station-marker-header-title {
  font-size: 12px;
  color: #333;
  font-weight: 700;
  margin-left: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 550px;
}
.home-page .station-map .station-marker .station-marker-content {
  display: flex;
  padding: 8px 0 8px 0;
  overflow: auto;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item {
  width: 100%;
  height: 80px;
  background-color: #F0F2F5;
  display: flex;
  align-items: center;
  padding: 0 10px 0 10px;
  margin-right: 10px;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item:last-child {
  margin-right: 0px;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-icon {
  width: 28px;
  height: 28px;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-icon.eb {
  background: url("../../images/home/blue/icon_eb.png") 100%/100% no-repeat;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-icon.ebox {
  background: url("../../images/home/blue/icon_ebox.png") 100%/100% no-repeat;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-icon.pb {
  background: url("../../images/home/blue/icon_pb.png") 100%/100% no-repeat;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-icon.ev {
  background: url("../../images/home/blue/icon_ev.png") 100%/100% no-repeat;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-icon.bsb {
  background: url("../../images/home/blue/icon_bsb.png") 100%/100% no-repeat;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-guns {
  margin-left: 10px;
  flex: 1;
  display: grid;
  row-gap: 6px;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-guns .station-marker-content-gun {
  display: flex;
  align-items: center;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-guns .station-marker-content-gun:nth-child(2n) {
  justify-content: flex-start;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-guns .station-marker-content-gun .station-marker-status-name {
  color: rgb(102, 102, 102);
  font-size: 12px;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-guns .station-marker-content-gun .station-marker-status-num {
  font-size: 14px;
  margin-left: 5px;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-guns .station-marker-content-gun .station-marker-status-num.online {
  color: #52C41A;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-guns .station-marker-content-gun .station-marker-status-num.offline {
  color: #CC1F1F;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .station-marker-content-guns .station-marker-content-gun .station-marker-status-num.notActivated {
  color: #999;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .no-device {
  margin: 0 auto;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .no-device .no-device-icon {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background: url(../images/icon/icon-fold.png) center no-repeat;
  background-size: 100%;
}
.home-page .station-map .station-marker .station-marker-content .station-marker-content-item .no-device .no-device-text {
  font-size: 10px;
  color: #999;
}
.home-page .station-map .station-marker .station-marker-footer {
  display: flex;
  align-items: center;
}
.home-page .station-map .station-marker .station-marker-footer .station-marker-footer-item {
  font-size: 12px;
  display: flex;
  width: 30%;
}
.home-page .station-map .station-marker .station-marker-footer .station-marker-footer-item:last-child {
  overflow-y: auto;
}
.home-page .station-map .station-marker .station-marker-footer .station-marker-footer-item:not(:last-child) {
  flex-shrink: 0;
}
.home-page .station-map .station-marker .station-marker-footer .station-marker-footer-item .station-marker-label {
  color: #999999;
  white-space: nowrap;
}
.home-page .station-map .station-marker .station-marker-footer .station-marker-footer-item .station-marker-value {
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 18px;
}
.home-page .station-map .station-marker .station-marker-footer .station-marker-footer-line {
  width: 1px;
  height: 10px;
  background-color: #D8D8D8;
  margin-left: 8px;
  margin-right: 8px;
}
.home-page .station-arrow {
  width: 14px;
  height: 60px;
  background-color: #25CED1;
  z-index: 1001;
  position: absolute;
  left: 0px;
  top: calc(50% - 30px);
  cursor: pointer;
  display: none;
}
.home-page .station-arrow .arrow-icon {
  width: 12px;
  height: 12px;
  background-size: 100%;
  margin-top: 24px;
  background-image: url("../../images/icon/ic_list_close.png");
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}
.home-page .station-arrow .arrow-icon.close {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/**
 * @author 梁星文
 * 日期 2024/3/29 15:20
 * 版权所有 广州优匠科技有限公司
 */
.bms-edit-box {
  margin-top: 10px;
  width: 100%;
  height: calc(100% - 70px);
}
.bms-edit-box .bms-top-box {
  padding: 12px 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
}
.bms-edit-box .bms-top-box .top-flex {
  display: flex;
  align-items: center;
}
.bms-edit-box .bms-top-box .tabs-box {
  display: flex;
  align-items: center;
}
.bms-edit-box .bms-top-box .top-search-box {
  display: flex;
  align-items: center;
  margin-left: 60px;
}
.bms-edit-box .bms-top-box .top-search-box .top-search {
  width: 250px;
}
.bms-edit-box .bms-top-box .btn {
  min-width: 56px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
}
.bms-edit-box .bms-top-box .btn.blue {
  background-color: #25CED1;
  color: #FFFFFF;
}
.bms-edit-box .bms-top-box .btn.green {
  background-color: #23CA6A;
  color: #FFFFFF;
}
.bms-edit-box .bms-top-box .btn.grey {
  background-color: #EFF3F6;
  color: #999999;
}
.bms-edit-box .bms-top-box .device-no {
  color: rgb(51, 51, 51);
  font-size: 12px;
}
.bms-edit-box .bms-top-box .online {
  margin-left: 7px;
  padding: 0 8px;
  height: 18px;
  border-radius: 9px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(37, 206, 209);
  color: rgb(37, 206, 209);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bms-edit-box .bms-top-box .update-time {
  margin-left: 30px;
  color: rgb(153, 153, 153);
  font-size: 12px;
}
.bms-edit-box .bms-content-box {
  height: calc(100% - 66px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 10px;
}
.bms-edit-box .bms-content-box .grid-container-box {
  width: 100%;
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  row-gap: 10px;
}
.bms-edit-box .bms-content-box .grid-container-box .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bms-edit-box .bms-content-box .grid-container-box .title-box .title {
  color: rgb(51, 51, 51);
  font-size: 16px;
}
.bms-edit-box .bms-content-box .grid-container-box .title-box .more-btn {
  flex-shrink: 0;
  color: #999999;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.bms-edit-box .bms-content-box .grid-container-box .title-box .more-btn::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: url("../../libs/images/bms/ic_bms_more.png") 100%/100% no-repeat;
}
.bms-edit-box .bms-content-box .grid-container-box .dashboard-box {
  grid-row-start: 1;
  grid-row-end: 2;
  background-color: #FFFFFF;
  padding: 0 16px;
  display: flex;
  align-items: center;
}
.bms-edit-box .bms-content-box .grid-container-box .dashboard-box .info-box {
  display: flex;
  align-items: center;
}
.bms-edit-box .bms-content-box .grid-container-box .dashboard-box .info-box .icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.bms-edit-box .bms-content-box .grid-container-box .dashboard-box .info-box .text-info {
  margin-left: 16px;
  font-size: 12px;
}
.bms-edit-box .bms-content-box .grid-container-box .dashboard-box .info-box .text-info .label {
  display: inline-block;
  min-width: 60px;
  text-align: justify;
  text-align-last: justify;
  color: #999999;
}
.bms-edit-box .bms-content-box .grid-container-box .dashboard-box .info-box .text-info .blue {
  color: #25CED1;
}
.bms-edit-box .bms-content-box .grid-container-box .dashboard-box .charts-list {
  margin-left: 60px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.bms-edit-box .bms-content-box .grid-container-box .dashboard-box .charts-list .charts-item {
  width: 100px;
  height: 100px;
}
.bms-edit-box .bms-content-box .grid-container-box .dashboard-box .charts-list .charts-item #charts-voltage, .bms-edit-box .bms-content-box .grid-container-box .dashboard-box .charts-list .charts-item #charts-current, .bms-edit-box .bms-content-box .grid-container-box .dashboard-box .charts-list .charts-item #charts-power {
  width: 100%;
  height: 100%;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box {
  grid-row-start: 2;
  grid-row-end: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box .status-box {
  grid-column-start: 1;
  grid-column-end: 3;
  background-color: #FFFFFF;
  padding: 16px;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box .status-box .status-list {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 9px;
  row-gap: 8px;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box .status-box .status-item, .bms-edit-box .bms-content-box .grid-container-box .middle-box .status-box .supplier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  min-height: 28px;
  background-color: rgb(240, 242, 245);
  font-size: 12px;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box .status-box .status-item .label, .bms-edit-box .bms-content-box .grid-container-box .middle-box .status-box .supplier .label {
  color: #999999;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box .status-box .status-item .value, .bms-edit-box .bms-content-box .grid-container-box .middle-box .status-box .supplier .value {
  color: #333333;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box .status-box .supplier {
  margin-top: 8px;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box .battery-params {
  grid-column-start: 3;
  grid-column-end: 4;
  background-color: #FFFFFF;
  padding: 16px;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box .battery-params .params-list {
  padding-top: 4px;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box .battery-params .params-list .params-item {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  min-height: 28px;
  background-color: rgb(240, 242, 245);
  font-size: 12px;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box .battery-params .params-list .params-item .label {
  color: #999999;
}
.bms-edit-box .bms-content-box .grid-container-box .middle-box .battery-params .params-list .params-item .value {
  color: #333333;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box {
  grid-row-start: 5;
  grid-row-end: 7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box {
  grid-column-start: 1;
  grid-column-end: 3;
  background-color: #FFFFFF;
  padding: 16px;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .title-box .name-box {
  display: flex;
  align-items: center;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .title-box .name-box .title {
  color: rgb(51, 51, 51);
  font-size: 16px;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .title-box .name-box .label {
  margin-left: 16px;
  color: rgb(102, 102, 102);
  font-size: 14px;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .title-box .name-box .label .num {
  color: #25CED1;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .title-box .name-box .label:nth-child(2) {
  margin-left: 0px;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .title-box .question-icon {
  cursor: pointer;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url("../../libs/images/bms/ic_bms_question.png") 100%/100% no-repeat;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .voltage-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
  row-gap: 16px;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .voltage-list .voltage-item {
  height: 28px;
  width: auto;
  padding-left: 10px;
  background-image: url("../../libs/images/bms/ic_bms_battery_orange.png");
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 12px;
  line-height: 28px;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .voltage-list .voltage-item .index {
  color: rgba(255, 255, 255, 0.8);
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .voltage-list .voltage-item .value {
  margin-left: 8px;
  color: rgb(255, 255, 255);
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .voltage-list .voltage-item.red {
  background-image: url("../../libs/images/bms/ic_bms_battery_red.png");
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .voltage-box .voltage-list .voltage-item.blue {
  background-image: url("../../libs/images/bms/ic_bms_battery_blue.png");
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .warn-box {
  grid-column-start: 3;
  grid-column-end: 4;
  background-color: #FFFFFF;
  padding: 16px;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .warn-box .warn-list {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .warn-box .warn-list .no-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #999999;
}
.bms-edit-box .bms-content-box .grid-container-box .battery-box .warn-box .warn-list .no-data .icon {
  width: 82px;
  height: 82px;
  flex-shrink: 0;
  background: url("../images/icon/icon-fold.png") 100%/100% no-repeat;
}
.bms-edit-box .bms-content-box .grid-container-box .line-charts {
  grid-row-start: 1;
  grid-row-end: 5;
  background-color: #FFFFFF;
  padding: 16px;
}
.bms-edit-box .bms-content-box .grid-container-box .line-charts .charts-container {
  width: 100%;
  height: 100%;
}
.bms-edit-box .bms-content-box .grid-container-box .line-charts .charts-container #status-line-charts {
  height: 100%;
}
.bms-edit-box .bms-content-box .grid-container-box .map-box {
  grid-row-start: 5;
  grid-row-end: 7;
  background-color: #FFFFFF;
  padding: 16px 16px 0px 16px;
}
.bms-edit-box .bms-content-box .grid-container-box .map-box .title-box .moon-icon {
  cursor: pointer;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("../../libs/images/bms/ic_bms_moon.png") 100%/100% no-repeat;
}

.location {
  position: relative;
}
.location .location-head {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 100000;
  font-size: 12px;
  width: 100%;
  padding: 6px 16px 6px 16px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #25CED1;
}
.location .location-marker {
  width: 350px;
  height: 280px;
}
.location .location-marker .location-marker-header {
  display: flex;
}
.location .location-marker .location-marker-header .location-marker-header-title {
  font-size: 14px;
  coor: #333333;
  font-weight: 600;
}
.location .location-marker .location-marker-header .location-marker-header-rssi {
  margin-left: 20px;
  font-size: 12px;
  color: #999;
}
.location .location-marker .location-marker-content {
  display: flex;
  flex-direction: column;
}
.location .location-marker .location-marker-content .location-marker-row {
  display: flex;
  margin-top: 4px;
}
.location .location-marker .location-marker-content .location-marker-row .location-marker-item {
  font-size: 12px;
  color: #999;
}
.location .location-marker .location-marker-content .location-marker-row .location-marker-item.item-value {
  color: #333;
  font-weight: 600;
}
.location .location-marker .location-marker-content .location-marker-row .bms-button {
  height: 24px;
  line-height: 24px;
  padding: 0 6px;
  margin-right: 10px;
  background-color: #FFF;
  border-radius: 0px;
  font-size: 12px;
  border: solid 1px #25CED1;
  color: #25CED1;
  cursor: pointer;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.curve {
  height: calc(100% - 70px);
}
.curve .curve-header {
  height: 56px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.curve .curve-header .date-items {
  display: flex;
  align-items: center;
}
.curve .curve-header .date-items .date-button {
  width: 60px;
  height: 32px;
  border: solid 1px #DADADA;
  line-height: 32px;
  color: #333;
  font-size: 12px;
  text-align: center;
  margin: 0 10px 0 10px;
  cursor: pointer;
}
.curve .curve-content {
  background-color: #FFF;
  height: calc(100% - 70px);
  padding: 16px;
  display: flex;
}
.curve .curve-content .curve-left {
  height: 100%;
  width: calc(100% - 260px);
}
.curve .curve-content .curve-left .curve-title {
  font-size: 16px;
  color: #333;
}
.curve .curve-content .curve-left .curve-chart {
  background: url("../../images/curve.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: calc(100% - 30px);
}
.curve .curve-content .curve-right {
  width: 230px;
  margin-left: 16px;
}
.curve .curve-content .curve-right .curve-item-form {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 1px 6px 0px rgba(215, 215, 215, 0.5);
  border: 1px solid rgb(218, 218, 218);
  padding: 8px;
}
.curve .curve-content .curve-right .curve-item-form .curve-item-form-title {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}
.curve .curve-content .curve-right .curve-item-form .curve-item-row {
  margin-top: 2px;
}
.curve .curve-content .curve-right .curve-item-form .curve-item-row .curve-item-label {
  font-size: 12px;
  color: #333;
}
.curve .curve-content .curve-right .curve-item-form .curve-grid {
  flex-wrap: wrap;
  display: flex;
}
.curve .curve-content .curve-right .curve-item-form .curve-grid .curve-grid-item {
  background-color: #FFF;
  border: 1px solid #25CED1;
  display: flex;
  flex-direction: column;
  width: 50px;
  height: 30px;
  align-items: center;
  margin-right: 4px;
  margin-bottom: 4px;
}
.curve .curve-content .curve-right .curve-item-form .curve-grid .curve-grid-item.orange {
  border: 1px solid #F8BA39;
}
.curve .curve-content .curve-right .curve-item-form .curve-grid .curve-grid-item.red {
  border: 1px solid #F84747;
}
.curve .curve-content .curve-right .curve-item-form .curve-grid .curve-grid-item:nth-child(4) {
  margin-right: 0px;
}
.curve .curve-content .curve-right .curve-item-form .curve-grid .curve-grid-item:nth-child(8) {
  margin-right: 0px;
}
.curve .curve-content .curve-right .curve-item-form .curve-grid .curve-grid-item:nth-child(12) {
  margin-right: 0px;
}
.curve .curve-content .curve-right .curve-item-form .curve-grid .curve-grid-item:nth-child(16) {
  margin-right: 0px;
}
.curve .curve-content .curve-right .curve-item-form .curve-grid .curve-grid-item .curve-grid-item-num {
  font-size: 10px;
  color: #999;
}
.curve .curve-content .curve-right .curve-item-form .curve-grid .curve-grid-item .curve-grid-item-v {
  font-size: 10px;
  color: #333;
}

.track {
  width: 100%;
  height: 100%;
  display: flex;
}
.track .track-bar {
  width: 300px;
  height: 100%;
  background-color: #FFF;
  transition: width 1s ease;
}
.track .track-bar.close {
  width: 0px;
}
.track .track-bar .track-header {
  background-color: #FFF;
  display: inline-block;
  width: 300px;
}
.track .track-bar .track-header .track-header-title {
  text-align: center;
  padding: 10px 0 10px 0;
  font-size: 14px;
  color: #333;
  font-weight: 600;
}
.track .track-bar .track-content {
  padding: 0px 6px 0 6px;
  width: 300px;
  margin-top: 6px;
}
.track .track-bar .track-content .hsh-form-label {
  min-width: 50px;
}
.track .controls.combo-radiobutton {
  border-radius: 0px;
}
.track .controls.combo-radiobutton .radio-list {
  width: 53px;
  min-width: 53px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  padding: 0;
  background-color: #FFF;
  border: 1px solid #DADADA;
  border-left: 0;
  font-size: 12px;
  color: #999;
  cursor: pointer;
  position: relative;
}
.track .controls.combo-radiobutton .radio-list:first-child {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0px 0 0 0px;
  border-left: 1px solid #E4E7ED;
}
.track .controls.combo-radiobutton .radio-list:last-child {
  border-radius: 0 0px 0px 0;
}
.track .controls.combo-radiobutton .radio-list.active, .track .controls.combo-radiobutton .radio-list:hover {
  -webkit-box-shadow: -1px 0 0 0 #25CED1;
  box-shadow: -1px 0 0 0 #25CED1;
  background-color: #25CED1;
  border-color: #25CED1;
  color: #FFF;
}
.track .track-map {
  height: 100%;
  width: -webkit-calc(100% - 300px) !important;
  width: -moz-calc(100% - 300px) !important;
  width: calc(100% - 300px) !important;
  position: relative;
  transition: width 1s ease;
}
.track .track-map.close {
  width: -webkit-calc(100% - 0px) !important;
  width: -moz-calc(100% - 0px) !important;
  width: calc(100% - 0px) !important;
}
.track .track-map .qq-map {
  width: 100%;
  height: 100%;
}
.track .track-map .qq-map > div > div > div > div {
  padding: 0 !important;
}
.track .track-map .track-head {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 100000;
  font-size: 12px;
  width: 100%;
  padding: 6px 16px 6px 16px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  color: #25CED1;
}
.track .track-arrow {
  width: 14px;
  height: 60px;
  background-color: #25CED1;
  z-index: 1001;
  position: absolute;
  left: 0px;
  top: calc(50% - 30px);
  cursor: pointer;
}
.track .track-arrow .arrow-icon {
  width: 12px;
  height: 12px;
  background-size: 100%;
  margin-top: 24px;
  background-image: url("../../images/ic_list_close.png");
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}
.track .track-arrow .arrow-icon.close {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.station-banner {
  margin-bottom: 10px;
  padding: 0 10px;
}
.station-banner .station-banner-style .hsh-banner-swiper {
  width: 100%;
  height: 110px;
}
.station-banner .station-banner-style .hsh-banner-swiper .ban-img {
  border-radius: 8px;
  overflow: hidden;
}
.station-banner .station-banner-style.banner-style-two .swiper-slide {
  height: 96%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.station-banner .station-banner-style.banner-style-two .swiper-slide.swiper-slide-active {
  width: 86%;
}
.station-banner .station-banner-style.banner-style-three .hsh-banner-swiper {
  display: flex;
  align-items: center;
}
.station-banner .station-banner-style.banner-style-three .swiper-container {
  width: 100%;
  height: 100%;
}
.station-banner .station-banner-style.banner-style-three .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  width: 80%;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  height: 90%;
}