.tagA, .tagB, .tagC, .tagD {
  padding: 4px 7px;
  color: #FFF;
  border-radius: 2px;
  font-size: 12px;
  line-height: 1;
}
.tagA {
  background: linear-gradient(161deg, rgba(255, 149, 93, 1) 0%, rgba(255, 107, 107, 1) 100%);
}
.tagB {
  background: linear-gradient(154deg, rgba(250, 213, 66, 1) 0%, rgba(255, 188, 90, 1) 100%);
}
.tagC {
  padding-top: 3px;
  padding-bottom: 3px;
  border: 1px solid #54B53A;
  color: #54B53A;
}
.tagD {
  padding-top: 3px;
  padding-bottom: 3px;
  border: 1px solid #228DD5;
  color: #228DD5;
}
.use-house-tag {
  cursor: pointer;
}
.tag-list {
  display: flex;
  align-items: center;
}
.tag-list.list-page {
  margin-left: 6px;
}
.tag-list span:not(:last-child) {
  margin-right: 6px;
}
/*
 *  @desc 政策通公用样式
 *  @author 邓欢
 */
@import url('./base.css');
@import url('./widgets/zct-tab.css');
@import url('./widgets/membership-apply-dialog.css');
/******************  政策通表单样式  **********************/
.zct-form input[type='text'], .zct-form input[type='number'] {
  width: 300px;
  height: 16px;
  padding: 9px 10px;
  color: #2A2B34;
  border: 1px solid #DADBE0;
  border-radius: 2px;
  font-size: 14px;
}
.zct-form textarea {
  color: #2A2B34;
  border: 1px solid #DADBE0;
  border-radius: 2px;
  font-size: 14px;
}
.zct-form input[type='checkbox'], .zct-form input[type='radio'] {
  display: none;
}
.zct-form .radio-box {
  display: inline-block;
  padding-right: 30px;
}
.zct-form .radio-box label {
  cursor: pointer;
  color: #2A2B34;
  font-size: 14px;
}
.zct-form .radio-box input[type='radio'] + label:before {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  content: ' ';
  background: url('../../image/zct/info-edit-icons.png') no-repeat -46px -50px;
  background: url('../../image/zct/info-edit-icons.svg') no-repeat 0 0, none;
}
.zct-form .radio-box input[type='checkbox'] + label:before {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  content: ' ';
  background: url('../../image/zct/info-edit-icons.png') no-repeat -87px -46px;
  background: url('../../image/zct/info-edit-icons.svg') no-repeat -26px 0, none;
}
.zct-form .radio-box input[type='radio']:checked + label:before {
  background: url('../../image/zct/info-edit-icons.png') no-repeat -87px -10px;
  background: url('../../image/zct/info-edit-icons.svg') no-repeat -52px -26px, none;
}
.zct-form .radio-box input[type='checkbox']:checked + label:before {
  background: url('../../image/zct/info-edit-icons.png') no-repeat -10px -86px;
  background: url('../../image/zct/info-edit-icons.svg') no-repeat -52px 0, none;
}
.zct-form .radio-box.active input[type='radio'] + label:before {
  background: url('../../image/zct/info-edit-icons.png') no-repeat -87px -10px;
  background: url('../../image/zct/info-edit-icons.svg') no-repeat -52px -26px, none;
}
.zct-form .radio-box.active input[type='checkbox'] + label:before {
  background: url('../../image/zct/info-edit-icons.png') no-repeat -10px -86px;
  background: url('../../image/zct/info-edit-icons.svg') no-repeat -52px 0, none;
}
.zct-form select {
  position: relative;
  overflow: hidden;
  width: 342px;
  padding: 8px 30px 7px 10px;
  color: #2A2B34;
  border: 1px solid #DADBE0;
  border-radius: 2px;
  background: url('../../image/zct/icon-select-down.png') no-repeat scroll right center transparent;
  font-size: 14px;
          appearance: none;
  -webkit-appearance: none;
     -moz-appearance: none;
}
.zct-form select::-ms-expand {
  display: none;
}
.zct-form select:disabled {
  background: rgba(0, 0, 0, .05);
}
/******************  政策通按钮样式  **********************/
.zct-btn {
  position: relative;
  display: inline-block;
  padding: 20px 40px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  color: #FFF;
  border: 0;
  border-radius: 20px;
  background: #32C3D6;
  /* background: linear-gradient(#61e3ed, #32c3d6);
   box-shadow: 0px 2px 4px 0 rgba(50, 195, 214, 0.6); */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#61E3ED), to(#32C3D6));
  background-image: linear-gradient(#61E3ED 0%, #32C3D6 100%);
  -webkit-box-shadow: 0 0 20px 0 rgba(50, 195, 214, .2);
          box-shadow: 0 0 20px 0 rgba(50, 195, 214, .2);
  font-size: 14px;
  line-height: 20px;
}
.zct-btn.mini {
  padding: 7px 20px;
}
.zct-btn.back {
  color: #32C3D6;
  border: 0;
  background: #FFF;
}
.zct-btn.back:after {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 8px;
  height: 14px;
  margin-left: 5px;
  content: '';
  background: url('/node/public/image/zct/icon/back.png') no-repeat;
  background: url('/node/public/image/zct/icon/back.svg') no-repeat, none;
}
.zct-btn.back:hover {
  background: none;
}
.zct-btn.back:active {
  border: 0;
  background: none;
}
.zct-btn:focus {
  outline: none;
}
.zct-btn:hover {
  -webkit-box-shadow: inset 0 0 20px 0 rgba(50, 195, 214, .2);
          box-shadow: inset 0 0 20px 0 rgba(50, 195, 214, .2);
}
.zct-btn:active {
  /* border: 1px solid #15b7ce; */
  -webkit-box-shadow: 0 0 20px 0 rgba(50, 195, 214, .2);
          box-shadow: 0 0 20px 0 rgba(50, 195, 214, .2);
}
.zct-btn:before {
  position: absolute;
  z-index: 1;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  display: none;
  content: '';
  -webkit-transition: opacity .2s;
          transition: opacity .2s;
  pointer-events: none;
  opacity: .35;
  border-radius: inherit;
  background: #FFF;
}
.zct-btn.loading:before {
  display: block;
}
.zct-btn.is-plain {
  color: #32C3D6;
  border: 1px solid #32C3D6;
  background: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.zct-btn.is-plain:hover {
  background: #F6FDFD;
}
.zct-btn.gold {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#E8D1A0), to(#CCA567));
  background-image: linear-gradient(180deg, #E8D1A0 0%, #CCA567 100%);
  -webkit-box-shadow: 0 0 20px 0 rgba(204, 165, 103, .2);
          box-shadow: 0 0 20px 0 rgba(204, 165, 103, .2);
}
.zct-btn.gold:hover {
  -webkit-box-shadow: inset 0 0 20px 0 rgba(204, 165, 103, .2);
          box-shadow: inset 0 0 20px 0 rgba(204, 165, 103, .2);
}
.zct-btn.gold.is-plain {
  color: #CCA567;
  border: 1px solid #CCA567;
  background: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.zct-btn.gold.is-plain:hover {
  background: rgba(232, 209, 160, .1);
}
.zct-btn.gray {
  color: #9E9FAD;
  border-color: #9E9FAD;
}
.zct-btn.gray:hover {
  opacity: .8;
  background: inherit;
}
.policy-popup {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
  background: url('../../image/common/bgblack.png');
  background: rgba(0, 0, 0, .4);
}
.policy-popup.popup-in, .policy-popup.popup-out {
  display: block;
  overflow: auto;
}
.policy-popup.popup-in .popup-container {
  -webkit-animation: popup-in .2s;
          animation: popup-in .2s;
}
.policy-popup .popup-container .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  background: url('../../image/zct/icon-close.png') no-repeat center center;
  background: url('../../image/zct/icon-close.svg') no-repeat, none;
}
.policy-popup .popup-container {
  position: relative;
  display: inline-block;
  margin-top: 200px;
  margin-bottom: 40px;
  padding: 40px;
  border-radius: 6px;
  background-color: #FFF;
}
.policy-popup.bottom .popup-container {
  margin-bottom: auto;
}
.policy-popup.popup-form .popup-container {
  top: 30%;
  margin-top: 0;
}
.policy-popup.center .popup-container {
  top: 50%;
  margin-top: 0;
  padding: 40px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-animation: none;
          animation: none;
}
.policy-popup.popup-form .form-item {
  display: table-row;
  height: 50px;
}
.policy-popup.popup-form .form-item > label {
  display: table-cell;
  width: auto;
  padding-right: 20px;
}
.policy-popup.popup-form .zct-form input[type='text'], .policy-popup.popup-form .zct-form input[type='number'], .policy-popup.popup-form .zct-form select {
  width: 200px;
}
.policy-popup.popup-form .zct-form .business-condition input {
  width: 20px;
  margin: 0 10px;
  padding: 9px 10px;
}
.policy-popup.popup-form .radio-group {
  position: relative;
  line-height: normal;
}
.policy-popup .popup-container .title {
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: .36px;
  color: #2A2B34;
  font-size: 24px;
  line-height: 36px;
}
.policy-popup .popup-container .zct-form {
  text-align: left;
}
.policy-popup .popup-container .zct-form .form-item {
  margin-bottom: 20px;
}
.policy-popup .form-item label {
  display: inline-block;
  width: 80px;
  text-align: left;
  color: #2A2B34;
  font-size: 14px;
}
.policy-popup .popup-container .zct-form .form-item .plain-text {
  display: inline-block;
  padding-left: 10px;
}
.policy-popup .popup-container .zct-form .form-item .unit {
  margin-left: 10px;
}
.policy-popup .popup-container .zct-btn {
  width: 100%;
  margin-top: 20px;
  padding: 10px;
}
.policy-popup.bottom {
  background: transparent;
}
.policy-popup.bottom .popup-container {
  position: absolute;
  bottom: 10px;
  left: 50%;
  box-sizing: border-box;
  width: 700px;
  margin-top: auto;
  margin-left: -250px;
  padding: 20px;
  border-radius: 2px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
  font-size: 18px;
  font-weight: bold;
}
@-webkit-keyframes popup-in {
  0% {
    -webkit-transform: scale(.2);
            transform: scale(.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes popup-in {
  0% {
    -webkit-transform: scale(.2);
            transform: scale(.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.policy-popup.confirm .popup-container {
  width: 370px;
}
.policy-popup.confirm h4 {
  color: #2A2B34;
  font-size: 22px;
  font-weight: bold;
}
.policy-popup.confirm p {
  color: #2A2B34;
  font-size: 16px;
}
.policy-popup.confirm .btn-container {
  float: left;
  width: 50%;
  margin-top: 40px;
}
.policy-popup.confirm .zct-btn {
  width: 90%;
  border-radius: 30px;
}
.policy-popup.confirm .zct-btn.cancel {
  width: 90%;
  border-radius: 30px;
}
.policy-popup .btn-group {
  margin-top: 10px;
  text-align: right;
}
.policy-popup .btn-group .zct-btn {
  display: inline-block;
  width: auto;
  margin-top: 0;
  margin-left: 10px;
  padding: 8px 20px;
}
/* 分页 */
.pagination {
  float: right;
  margin-top: 40px;
  margin-bottom: 40px;
}
.pagination > a, .pagination > span {
  display: inline-block;
  height: 28px;
  margin-left: 6px;
  text-align: center;
  color: #525465;
  border: 1px solid #F0F1F3;
  border-radius: 2px;
  background: #FFF;
  font-size: 14px;
  line-height: 28px;
}
.pagination > a#firstPage, .pagination > a#lastPage, .pagination > a#nextPage, .pagination > a#prePage, .pagination > span {
  width: auto;
  padding: 0 14px;
}
.pagination > a {
  cursor: pointer;
}
.pagination > a:hover {
  background: #F8FAFB;
}
.pagination > a.current {
  color: #FFF;
  border-color: #00ABE1;
  background: #00ABE1;
}
.pagination.gold > a.current {
  border-color: #C89C54;
  background: #C89C54;
}
.pagination > span.totalPages, .pagination > span.totalSize {
  padding: 0 5px;
  border: 0;
}
.pagination > span.three-dot {
  padding: 0 6px;
  border: 0;
}
