.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed;
}
.red-text {
  color: #ef4543;
}
.teal-text {
  color: teal;
}
.blue-text {
  color: #2185d0;
}
.green-text {
  color: green;
}
.center-block {
  /* 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;
}
/* 提示 */
.ToolTip {
  position: absolute;
  left: 40%;
  z-index: 99;
  top: 90px;
}
.ToolTip .TipFont {
  background-color: #333;
  color: #fff;
  font-size: 12px;
  max-width: 300px;
  line-height: 1.5rem;
  padding: 5px 6px;
  border-radius: 3px;
}
.ToolTip .TipArrow {
  margin: 0 auto;
  height: 1px;
  overflow: hidden;
  background-color: #333;
}
.ToolTip .TipArrow.W1 {
  width: 1px;
}
.ToolTip .TipArrow.W3 {
  width: 3px;
}
.ToolTip .TipArrow.W5 {
  width: 5px;
}
.ToolTip .TipArrow.W7 {
  width: 7px;
}
/* 加载... */
.loader-wrap {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  z-index: 10001;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  border: solid 1px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.loader-wrap .loader-block,
.loader-wrap .error,
.loader-wrap .success {
  height: 70px;
  /* 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;
  line-height: 70px;
}
.loader-wrap .error {
  color: #ef4543;
}
.loader-wrap .success {
  color: teal;
}
.loader-wrap .error,
.loader-wrap .success {
  font-size: 36px;
}
/* 对话框 */
.widget-dialog-mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  background: #000;
  opacity: 0;
  transition: opacity 0.3s;
}
.widget-dialog-mask.active {
  opacity: 0.5;
}
.widget-dialog {
  color: #000;
  position: absolute;
  z-index: 102;
  width: 30%;
  left: 35%;
  top: 25%;
  background: #fff;
  border-radius: 0.3rem;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.12), 0 16px 16px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}
.widget-dialog.active {
  opacity: 1;
}
.widget-dialog.destroy {
  opacity: 0;
}
.widget-dialog .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 1rem;
  font-size: 15px;
  height: 3rem;
  line-height: 3rem;
}
.widget-dialog .header .right {
  float: right;
  font-style: normal;
  font-size: 15px;
  cursor: pointer;
}
.widget-dialog .header .right :hover {
  color: #2185d0;
}
.widget-dialog .body {
  color: #000;
  position: absolute;
  top: 3rem;
  bottom: 5rem;
  left: 0;
  width: 100%;
}
.widget-dialog .body:last-child {
  overflow: hidden;
  border-radius: 0 0 0.3rem 0.3rem;
}
.widget-dialog .body:last-child iframe {
  border-radius: 0 0 0.3rem 0.3rem;
}
.widget-dialog .button-container {
  padding: 1rem 1rem 0 0;
  text-align: right;
  height: 5rem;
  bottom: 0;
  position: absolute;
  left: 0;
  width: 100%;
  border-top: solid 1px #ddd;
  background: #fafafa;
  border-radius: 0 0 7px 7px;
}
.widget-dialog .button-container button {
  margin-left: 1rem;
  border: none;
  color: #000;
  outline: none;
  display: inline-block;
  height: 3rem;
  padding: 0 1rem;
  min-width: 80px;
}
.widget-dialog .button-container button.blue {
  background: #2185d0;
  color: #fff;
}
/* 信息提醒 */
.ui.message {
  border-left: solid 3px #cccccc;
  box-shadow: none!important;
}
.ui.message.red {
  border-left-color: #db2828;
}
.ui.message.orange {
  border-left-color: #f2711c;
}
.ui.message.yellow {
  border-left-color: #b58105;
}
.ui.message.olive {
  border-left-color: #8abc1e;
}
.ui.message.green {
  border-left-color: #1ebc30;
}
.ui.message.teal {
  border-left-color: #10a3a3;
}
.ui.message.blue {
  border-left-color: #2185d0;
}
.ui.message.violet {
  border-left-color: #6435c9;
}
.ui.message.purple {
  border-left-color: #a333c8;
}
.ui.message.pink {
  border-left-color: #e03997;
}
.ui.message.brown {
  border-left-color: #a5673f;
}
.ui.message.positive {
  border-left-color: #1a531b;
}
.ui.message.info {
  border-left-color: #0e566c;
}
.ui.message.warning {
  border-left-color: #794b02;
}
/* 分类选择 仿京东分类选择 */
.choose-model {
  font-size: 12px;
  display: inline-block;
  position: relative;
}
.choose-model .choose-display {
  border: solid 1px #ddd;
  position: relative;
  z-index: 5;
  background: #fff;
  display: inline-block;
  padding: 5px 5px 5px 10px;
}
.choose-model .choose-display span {
  margin-right: 10px;
}
.choose-model .choose-display span i {
  margin: 0 5px;
  color: #999;
}
.choose-model .choose-ext {
  border: solid 1px #ddd;
  position: absolute;
  z-index: 4;
  width: 500px;
  background: #fff;
  margin-top: -1px;
  padding: 10px;
  display: none;
}
.choose-model .choose-ext .title {
  font-size: 14px;
  font-weight: bold;
}
.choose-model .choose-ext .tab-header {
  border-bottom: solid 1px #ccc;
  padding-top: 10px;
}
.choose-model .choose-ext .tab-header span {
  display: inline-block;
  padding: 5px 10px;
  border: solid 1px #eee;
  color: #999;
  margin-bottom: -1px;
  border-bottom-color: #ccc;
  background: #eee;
  cursor: pointer;
  margin-right: 5px;
}
.choose-model .choose-ext .tab-header span:hover {
  color: #666;
}
.choose-model .choose-ext .tab-header span.active {
  border-color: #ccc;
  color: #333;
  border-bottom-color: #fff;
  background: #fff;
  cursor: default;
}
.choose-model .choose-ext .tab-detail {
  padding-top: 10px;
}
.choose-model .choose-ext .tab-detail-item {
  overflow: hidden;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.choose-model .choose-ext .tab-detail-item li {
  width: 25%;
  float: left;
}
.choose-model .choose-ext .tab-detail-item li span {
  display: inline-block;
  padding: 3px;
  cursor: pointer;
}
.choose-model .choose-ext .tab-detail-item li span:hover,
.choose-model .choose-ext .tab-detail-item li span.active {
  background: #ef4543;
  color: #fff;
}
.choose-model:hover .choose-display {
  border-bottom: none;
  z-index: 90;
}
.choose-model:hover .choose-ext {
  display: block;
  z-index: 89;
}
.choose-model.finish .choose-ext {
  display: none!important;
}
.choose-model.finish .choose-display {
  border-bottom: solid 1px #ddd !important;
}
.images-manager {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 10000001;
  background: rgba(0, 0, 0, 0.1);
}
.images-manager .border {
  position: fixed;
  width: 50%;
  height: 50%;
  left: 25%;
  top: 25%;
  background: #fff;
  z-index: 91;
  display: flex;
  flex-flow: column;
  box-shadow: 0 0 1px #999;
}
.images-manager .border .hd {
  height: 40px;
  border-bottom: solid 1px #eee;
  font-weight: bold;
  line-height: 39px;
}
.images-manager .border .hd .inline {
  display: inline-block;
  font-weight: bold;
  border-bottom: solid 1px red;
  padding: 0 1rem;
  background: #f9f9f9;
  width: 120px;
  text-align: center;
}
.images-manager .border .hd .inline:last-child {
  border-bottom-color: transparent;
  font-weight: normal;
  background: none;
}
.images-manager .border .content {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.images-manager .border .content .picture-list {
  display: flex;
  flex: 1;
}
.images-manager .border .content .picture-list .left-menu {
  width: 120px;
  border-right: solid 1px #eee;
  padding: 1rem;
  overflow: auto;
}
.images-manager .border .content .picture-list .left-menu dl {
  margin: 0;
  padding: 0;
}
.images-manager .border .content .picture-list .left-menu dl dd,
.images-manager .border .content .picture-list .left-menu dl dt {
  margin: 0;
  padding: 0;
}
.images-manager .border .content .picture-list .left-menu dl dd {
  display: none;
}
.images-manager .border .content .picture-list .left-menu dl dd dl {
  margin-left: 16px;
}
.images-manager .border .content .picture-list .left-menu dl dd[data-open='true'] {
  display: block;
}
.images-manager .border .content .picture-list .left-menu dl dt {
  line-height: 2rem;
}
.images-manager .border .content .picture-list .left-menu dl dt i {
  cursor: pointer;
}
.images-manager .border .content .picture-list .left-menu dl dt a {
  cursor: pointer;
}
.images-manager .border .content .picture-list .left-menu dl dt a:hover {
  text-decoration: underline;
}
.images-manager .border .content .picture-list .right-list {
  background: #f9f9f9;
  display: flex;
  flex: 1;
  overflow: auto;
}
.images-manager .border .content .picture-list .right-list ul {
  width: 100%;
  list-style-type: none;
  padding: 1% 1% 0 0;
  margin: 0;
}
.images-manager .border .content .picture-list .right-list ul li {
  position: relative;
  display: flex;
  margin-left: 1%;
  margin-bottom: 1%;
  width: 19%;
  background: #fff;
  float: left;
  padding-top: 19%;
}
.images-manager .border .content .picture-list .right-list ul li div {
  position: absolute;
  display: flex;
  flex-flow: column;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.images-manager .border .content .picture-list .right-list ul li div img {
  max-width: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  margin: 0 auto;
  display: flex;
}
.images-manager .border .content .picture-list .right-list ul li div.img-name {
  position: absolute;
  bottom: 0;
  z-index: 1;
  text-align: center;
  height: 1.5rem;
  box-shadow: none!important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 7pt;
}
.images-manager .border .content .picture-list .right-list ul li div.img-name:before {
  display: none!important;
}
.images-manager .border .content .picture-list .right-list ul li .mi,
.images-manager .border .content .picture-list .right-list ul li .icon,
.images-manager .border .content .picture-list .right-list ul li .mallicon {
  position: absolute;
  z-index: 6;
  left: 0.5rem;
  top: 0.5rem;
  font-size: 1.6rem;
  visibility: hidden;
}
.images-manager .border .content .picture-list .right-list ul li.checked div img {
  opacity: 0.7;
}
.images-manager .border .content .picture-list .right-list ul li.checked div:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: solid 3px #2185d0;
  z-index: 2;
}
.images-manager .border .content .picture-list .right-list ul li.checked .mi,
.images-manager .border .content .picture-list .right-list ul li.checked .mallicon,
.images-manager .border .content .picture-list .right-list ul li.checked .icon {
  visibility: visible;
}
.images-manager .border .content .picture-list .right-list ul li.more .icon {
  display: none;
}
.images-manager .border .content .picture-list .right-list ul li.more:after {
  content: '更多...';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.51rem;
  text-align: center;
  width: 100%;
  font-size: 18px;
}
.images-manager .border .content .picture-list .right-list ul li.more:hover {
  background: #eee;
}
.images-manager .border .content .upload-list {
  background: #f9f9f9;
  display: flex;
  flex: 1;
  overflow: auto;
  display: none;
}
.images-manager .border .content .upload-list ul {
  width: 100%;
  list-style-type: none;
  padding: 1% 1% 0 0;
  margin: 0;
}
.images-manager .border .content .upload-list ul li {
  position: relative;
  display: flex;
  margin-left: 1%;
  margin-bottom: 1%;
  width: 19%;
  background: #fff;
  float: left;
  padding-top: 19%;
}
.images-manager .border .content .upload-list ul li div {
  position: absolute;
  display: flex;
  flex-flow: column;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.images-manager .border .content .upload-list ul li div img {
  max-width: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  margin: 0 auto;
  display: flex;
}
.images-manager .border .content .upload-list ul li div.img-name {
  position: absolute;
  bottom: 0;
  z-index: 1;
  text-align: center;
  height: 1.5rem;
  box-shadow: none!important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 7pt;
}
.images-manager .border .content .upload-list ul li div.img-name:before {
  display: none!important;
}
.images-manager .border .content .upload-list ul li .mi,
.images-manager .border .content .upload-list ul li .icon,
.images-manager .border .content .upload-list ul li .mallicon {
  position: absolute;
  z-index: 6;
  left: 0.5rem;
  top: 0.5rem;
  font-size: 1.6rem;
  visibility: hidden;
}
.images-manager .border .content .upload-list ul li.checked div img {
  opacity: 0.7;
}
.images-manager .border .content .upload-list ul li.checked div:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: solid 3px #2185d0;
  z-index: 2;
}
.images-manager .border .content .upload-list ul li.checked .mi,
.images-manager .border .content .upload-list ul li.checked .mallicon,
.images-manager .border .content .upload-list ul li.checked .icon {
  visibility: visible;
}
.images-manager .border .content .upload-list ul li.more .icon {
  display: none;
}
.images-manager .border .content .upload-list ul li.more:after {
  content: '更多...';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.51rem;
  text-align: center;
  width: 100%;
  font-size: 18px;
}
.images-manager .border .content .upload-list ul li.more:hover {
  background: #eee;
}
.images-manager .border .content .upload-list ul li .process {
  top: auto;
  min-height: 1px;
  height: auto;
  z-index: 5;
  bottom: 0;
  box-shadow: none!important;
  text-shadow: #fff 1px 0 0, #fff 0 1px 0, #fff -1px 0 0, #fff 0 -1px 0;
  text-align: center;
}
.images-manager .border .content .upload-list ul li .process:before {
  display: none;
}
.images-manager .border .content .upload-list ul li .process div {
  height: 1px;
  background: red;
}
.images-manager .border .option {
  padding: 1rem;
  border-top: solid 1px #eee;
}
.images-manager .border .option button:first-child {
  visibility: hidden;
}
.images-manager .border .option div button {
  visibility: visible!important;
}
.images-manager .border.upload .hd .inline:first-child {
  border-bottom-color: transparent;
  font-weight: normal;
  background: none;
}
.images-manager .border.upload .hd .inline:last-child {
  border-bottom-color: red;
  font-weight: bold;
  background: #f9f9f9;
}
.images-manager .border.upload .content .picture-list {
  display: none;
}
.images-manager .border.upload .content .upload-list {
  display: flex;
}
.images-manager .border.upload .option button:first-child {
  visibility: visible;
}