/*
 *  @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'], .zct-form input[type='tel'] {
  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;
}
/******************  政策通表单验证样式  **********************/
.validator_radio_fail {
  position: relative;
}
.validator_radio_fail .valid-msg {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 300px;
  color: #E62512;
  font-size: 14px;
  line-height: 16px;
}
.policy-tags {
  margin-top: 4px;
  margin-left: -10px;
}
.policy-tag {
  float: left;
  margin-left: 5px;
  padding: 0 3px;
  color: #BDBECD;
  border: 1px solid #BDBECD;
  border-radius: 3px;
  font-size: 12px;
  line-height: 16px;
}
.policy-tag.status-tag {
  color: #FFF;
  border-color: #F08D02;
  background: #F08D02;
}
.policy-tag.status-tag-ghost {
  color: #FFF;
  border-color: #C89C54;
  background: #C89C54;
}
.policy-tag.new-tag {
  color: #FFF;
  border-color: #E62512;
  background: #E62512;
}
.policy-tag.overtime-tag {
  color: #FFF;
  border-color: #BDBECD;
  background: #BDBECD;
}
.policy-tag.area {
  color: #32C3D6;
  border-color: #32C3D6;
}
.policy-tag.ep-situation {
  color: #F08D02;
  border-color: #F08D02;
}
.policy-tag.declare {
  color: #32C3D6;
  border-color: #32C3D6;
}
.policy-tag.declare.opening {
  color: #F08D02;
  border-color: #F08D02;
}
.sidebar-container {
  position: absolute;
}
.sidebar-container.fixed {
  position: fixed;
  top: 20px;
}
/* 二维码 */
.qr-code {
  position: relative;
  width: 136px;
  margin-top: 20px;
  padding: 24px;
  border-radius: 2px;
  background: #FFF;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, .04);
          box-shadow: 0 0 6px 0 rgba(0, 0, 0, .04);
}
.qr-code .code {
  position: relative;
  width: 136px;
  height: 136px;
  background: #F2F5F8;
  background: url('../../image/zct/wx-ewm-icon.png') no-repeat;
  background-size: cover;
}
.qr-code .code img {
  width: 100%;
  height: 100%;
}
.qr-code .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 5px;
  background: #FFF;
}
.qr-code .logo .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url('/node/public/image/zct/qhee-logo.png') no-repeat;
  background-size: 100%;
}
.qr-code .desc {
  margin-top: 20px;
  text-align: center;
  color: #525465;
  line-height: 20px;
}
/* 资料完善进度 */
.info-progress {
  position: relative;
  width: 136px;
  margin-top: 20px;
  padding: 24px;
  border-radius: 2px;
  background: #FFF;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, .04);
          box-shadow: 0 0 6px 0 rgba(0, 0, 0, .04);
}
.info-progress.fixed {
  position: fixed;
  top: 238px;
}
.info-progress h3 {
  color: #2A2B34;
  font-size: 18px;
  font-weight: bold;
}
.info-progress p {
  margin-top: 6px;
  color: #525465;
  font-size: 14px;
}
.info-progress .fullfill-tip {
  margin-top: 0;
  padding: 24px 24px 0;
  text-align: center;
  font-size: 16px;
}
.info-progress .fullfill-tip a {
  display: inline-block;
  padding: 0 14px;
  text-align: center;
  color: #32C3D6;
  border: 1px solid #32C3D6;
  border-radius: 24px;
  font-size: 14px;
  line-height: 28px;
}
.info-progress .fullfill-tip a:before {
  position: relative;
  top: 1px;
  display: none;
  width: 14px;
  height: 14px;
  margin-right: 7px;
  content: '';
  background-color: #32C3D6;
}
.info-progress .progress {
  margin-top: 24px;
}
.info-progress .progress-bar {
  float: left;
  width: 90px;
  height: 10px;
  border-radius: 6px;
  background: #DADBE0;
}
.info-progress .progress-bar .inner {
  min-width: 10%;
  height: 100%;
  border-radius: 6px;
  background: #F08D02;
}
.info-progress .percent {
  float: left;
  margin-top: -3px;
  margin-left: 5px;
  color: #F08D02;
  font-size: 12px;
}
.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 {
  max-width: 560px;
  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 input[type='tel'], .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;
}
.fixed-mask {
  position: fixed;
  z-index: 2;
  top: 0;
  width: 800px;
  height: 20px;
  background-color: #F2F5F8;
}
.fixed-header.fixed .header {
  position: fixed;
  z-index: 2;
  top: 20px;
  width: 760px;
  background: #FFF;
}
.policy-detail.fixed-header.fixed .policy-info {
  display: none;
}
.policy-detail.fixed-header.fixed .success-gain {
  display: none;
}
.info-main.fixed-header.fixed {
  padding: 114px 0 30px;
}
/* 会员申请弹窗 */
#membership-apply .popup-container {
  margin-top: 100px;
  padding: 12px;
  border: 4px solid #CCA567;
  border-radius: 6px;
}
#membership-apply .popup-container::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 214px;
  content: '';
  background: url('../../image/zct/membership-dialog-bg.png') no-repeat;
}
#membership-apply .popup-wrapper {
  padding: 60px 50px;
  border: 1px solid #CCA567;
  border-radius: 2px;
}
#membership-apply .sub-title, #membership-apply .title {
  text-align: center;
  color: #CCA567;
}
#membership-apply .title {
  margin-bottom: 10px;
  font-size: 28px;
}
#membership-apply .sub-title {
  font-size: 16px;
}
#membership-apply input {
  width: 250px;
}
#membership-apply .form-item.valid-code input {
  width: 126px;
}
#membership-apply .form-item.valid-code img {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 110px;
  height: 36px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 2px;
}
.membership-benefit {
  margin-top: 30px;
  padding: 0 20px 40px;
}
.membership-benefit .benefit-title {
  color: #2A2B34;
  font-size: 14px;
  font-weight: bold;
}
.membership-benefit .benefit-title::after, .membership-benefit .benefit-title::before {
  display: inline-block;
  width: 24px;
  height: 12px;
  content: '';
}
.membership-benefit .benefit-title::before {
  margin-right: 10px;
  background: url('../../image/zct/icon/title-tail-left.svg') no-repeat, none;
}
.membership-benefit .benefit-title::after {
  margin-left: 10px;
  background: url('../../image/zct/icon/title-tail-right.svg') no-repeat, none;
}
.membership-benefit .benefits {
  margin-top: 6px;
}
.membership-benefit .benefit-item {
  float: left;
  width: 20%;
}
.membership-benefit .benefit-item .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: url('../../image/zct/benefits/notice.svg') no-repeat, none;
}
.membership-benefit .benefit-item.notice .icon {
  background-image: url('../../image/zct/benefits/notice.svg');
}
.membership-benefit .benefit-item.advisor .icon {
  background-image: url('../../image/zct/benefits/advisor.svg');
}
.membership-benefit .benefit-item.push .icon {
  background-image: url('../../image/zct/benefits/push.svg');
}
.membership-benefit .benefit-item.info .icon {
  background-image: url('../../image/zct/benefits/info.svg');
}
.membership-benefit .benefit-item.others .icon {
  background-image: url('../../image/zct/benefits/bp.svg');
}
.membership-benefit .benefit-item h3 {
  margin-top: 10px;
  color: #525465;
  font-size: 14px;
}
.ui-widget-header {
  border: none;
  background: #32C3D6;
}
.ui-datepicker-title select {
  border: none;
}
.ui-datepicker .ui-datepicker-title select {
  margin: 0 5px;
}
.ui-datepicker .ui-datepicker-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.policy-empty {
  padding: 200px 0;
  text-align: center;
  color: #BDBECD;
  font-size: 16px;
}
.policy-empty .icon, .part-empty .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: url('/node/public/image/zct/icon/icon-empty.png') no-repeat;
  background: url('/node/public/image/zct/icon/icon-empty.svg') no-repeat,
  none;
  background-size: 100%;
}
.policy-star {
  width: 75px;
}
.policy-star span {
  display: inline-block;
  width: 50px;
  vertical-align: middle;
  color: #525465;
}
.policy-star em {
  display: inline-block;
  width: 75px;
  vertical-align: middle;
  background: url('/node/public/image/zct/icon/star-empty.svg') repeat-x, none;
}
.policy-star i {
  display: block;
  height: 15px;
  background: url('/node/public/image/zct/icon/star-low.svg') repeat-x, none;
  background-size: 15px;
}
.policy-star.medium i {
  background-image: url('/node/public/image/zct/icon/star-medium.svg');
}
.policy-star.high i {
  background-image: url('/node/public/image/zct/icon/star-high.svg');
}
.zct-link {
  color: #32C3D6;
}
.new-stamp {
  width: 46px;
  /* height: 46px; */
  /* background: url('../../image/zct/icon/new-stamp.svg') no-repeat, none; */
}
.pagination {
  float: right;
  margin-top: 40px;
  margin-right: 24px;
}
.pagination > a, .pagination > span {
  display: inline-block;
  padding: 0 10px;
  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: #32C3D6;
  background: #32C3D6;
}
.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;
}
.policies-loading {
  display: none;
  height: 500px;
  text-align: center;
  line-height: 500px;
}
.policies-loading i {
  display: inline-block;

  /* width: 87px;
    height: 83px;

    background: url('/node/public/image/common/loading.gif'); */

  width: 45px;
  height: 45px;
  -webkit-animation: toastLoading 1s steps(12) infinite;
          animation: toastLoading 1s steps(12) infinite;
  background: url('/node/public/image/zct/toast/icon-loading.svg') no-repeat,
  none;
}
.notice-count {
  position: relative;
  display: none;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  text-align: center;
  color: #FFF;
  border-radius: 8px;
  background: #E62512;
  font-size: 12px;
  line-height: normal;
  line-height: 16px;
}
.notice-count.show {
  display: inline-block;
}
/* 地区面板 */
.policy-popup.area-select .popup-container {
  overflow-x: auto;
  width: 500px;
  margin-top: 260px;
  padding: 30px;
}
.policy-popup.area-select .select-board {
  height: 100px;
}
.policy-popup.area-select select {
  width: 150px;
  height: 32px;
  margin-top: 20px;
  border-radius: 5px;
  border: 1px solid #BEBEBE;
}
.policy-popup.area-select select:not(:last-child) {
  margin-right: 10px;
}
/* 行业选择面板样式 */
.policy-popup.industry-select .popup-container {
  overflow-x: auto;
  min-width: 930px;
  max-width: 970px;
  margin-top: 120px;
  padding: 30px;
}
.industry-select .level.first-level {
  width: 250px;
  padding-left: 0;
}
.industry-select .level.four-level ul {
  border-right: none;
}
.industry-select .level {
  float: left;
  overflow-x: auto;
  width: 200px;
  padding-left: 20px;
}
.industry-select h4 {
  margin-bottom: 20px;
  text-align: left;
  color: #2A2B34;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
}
.industry-select ul {
  overflow-y: auto;
  max-height: 480px;
  padding-right: 20px;
  border-right: 1px dashed #F0F1F3;
}
.industry-select li {
  padding: 2px 0;
  cursor: pointer;
  text-align: left;
  color: #525465;
  font-size: 14px;
  line-height: 20px;
}
.industry-select li.active {
  color: #32C3D6;
  font-weight: bold;
}
.industry-select .result-board {
  overflow-y: auto;
  max-height: 70px;
  margin-top: 20px;
  padding: 20px 10px 10px;
  text-align: left;
  opacity: .8;
  background: #F2F5F8;
}
.industry-select .result-board .item {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  margin-left: 6px;
  padding: 2px 14px;
  color: #525465;
  border-radius: 13px;
  background: #FFF;
  font-size: 14px;
  line-height: 20px;
}
.industry-select .result-board i {
  position: absolute;
  top: -7px;
  right: 0;
  display: inline-block;
  width: 14px;
  height: 14px;
  cursor: pointer;
  background: url('/node/public/image/zct/icon/icon-span-close.svg') no-repeat,
  none;
}
.industry-select .popup-btn-group, .area-select .popup-btn-group {
  float: right;
  margin-right: 0;
}
.industry-select .popup-container .zct-btn, .area-select .popup-container .zct-btn {
  width: auto;
  margin-top: 20px;
  margin-right: 0;
  padding: 7px 20px;
}
.industry-select .popup-btn-group .btn-cancel, .area-select .popup-btn-group .btn-cancel {
  margin-right: 10px;
}
.start-picker {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.start-picker .star {
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-left: 2px;
  cursor: pointer;
  background: url('/node/public/image/zct/icon/star-empty.svg') no-repeat,
  none;
}
.start-picker .star:first-child {
  margin-left: 0;
}
.start-picker .star.selected {
  background-image: url('/node/public/image/zct/icon/star-low.svg');
}
.start-picker.medium .star.selected {
  background-image: url('/node/public/image/zct/icon/star-medium.svg');
}
.start-picker.hign .star.selected {
  background-image: url('/node/public/image/zct/icon/star-high.svg');
}
.start-picker .num {
  position: relative;
  top: -2px;
  margin-left: 10px;
  color: #BDBECD;
}
.start-picker.medium .num {
  color: #FFC45C;
}
.start-picker.hign .num {
  color: #F08D02;
}
.zct-icon.question-mark {
  display: inline-block;
  width: 17px;
  height: 17px;
  cursor: pointer;
  background: url('/node/public/image/zct/icon/help.svg') no-repeat, none;
}
.industry-selector .edit-btn, .area-selector .edit-btn, .tech-selector .edit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  cursor: pointer;
  color: #32C3D6;
}
.industry-selector .edit-btn:before, .area-selector .edit-btn:before, .tech-selector .edit-btn:before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  content: '';
  background: url('/node/public/image/zct/icon/edit.svg') no-repeat, none;
}
/******************  政策通toast弹框样式  **********************/
#zct-toast .toast-mask {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('../../image/common/bgblack.png');
  background: rgba(0, 0, 0, .3);
}
#zct-toast .toast-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  width: 14px;
  height: 14px;
  cursor: pointer;
  background: url('../../image/zct/icon-close.svg') no-repeat center center;
}
#zct-toast .toast-content {
  position: fixed;
  z-index: 1000;
  top: 30%;
  left: 50%;
  display: none;
  min-width: 120px;
  padding: 50px 60px;
  text-align: center;
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
}
#zct-toast .toast-content.show {
  display: block;
  -webkit-animation: popup-in .2s;
          animation: popup-in .2s;
}
#zct-toast .toast-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: 100%;
}
#zct-toast .toast-txt {
  margin-top: 10px;
  text-align: center;
  color: #2A2B34;
  font-size: 20px;
  font-weight: bold;
  line-height: 36px;
}
#zct-toast.succ .toast-icon, .policy-popup .icon.succ {
  background: url('/node/public/image/zct/toast/icon-succ.svg') no-repeat,
  none;
}
#zct-toast.err .toast-icon {
  background: url('/node/public/image/zct/toast/icon-fail.svg') no-repeat,
  none;
}
#zct-toast.warn .toast-icon, .policy-popup .icon.warn {
  background: url('/node/public/image/zct/toast/icon-warn.svg') no-repeat,
  none;
}
#zct-toast.follow .toast-icon {
  background: url('/node/public/image/zct/toast/icon-follow.svg') no-repeat,
  none;
}
#zct-toast.loading .toast-icon, .policy-popup .icon.loading {
  -webkit-animation: toastLoading 1s steps(12) infinite;
          animation: toastLoading 1s steps(12) infinite;
  background: url('/node/public/image/zct/toast/icon-loading.svg') no-repeat,
  none;
}
#zct-toast .toast-icon {
  background-size: 100%;
}
#zct-toast.mini .toast-content {
  width: auto;
  padding: 30px 40px;
}
#zct-toast.mini .toast-icon, .policy-popup .icon {
  float: left;
  width: 28px;
  height: 28px;
}
.policy-popup .icon {
  position: relative;
  top: 6px;
  display: inline-block;
  float: none;
  margin-right: 10px;
}
#zct-toast.mini .toast-txt {
  float: left;
  margin-top: 0;
  margin-left: 20px;
  font-size: 20px;
  line-height: 28px;
}
@-webkit-keyframes toastLoading {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes toastLoading {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}
.question-mark {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-left: 5px;
  cursor: pointer;
  background: url('/node/public/image/zct/icon/help.png') no-repeat;
  background: url('/node/public/image/zct/icon/help.svg') no-repeat, none;
}
.policy-tooltips {
  position: absolute;
  z-index: 999;
  top: 24px;
  left: -78px;
  display: none;
  width: 140px;
  padding: 15px 20px;
  -webkit-transition: display 1s;
          transition: display 1s;
  word-break: break-all;
  color: #FFF;
  border-radius: 6px;
  background: #000;
  background: rgba(0, 0, 0, .8);
  font-size: 14px;
}
.policy-tooltips.up {
  top: auto;
  bottom: 34px;
}
.policy-tooltips .policy-star em {
  background: none;
}
.policy-tooltips.show {
  display: block;
}
.policy-tooltips.star-desc {
  left: -185px;
  width: 350px;
}
.policy-tooltips.apply-time {
  left: -90px;
  width: 160px;
}
.policy-tooltips.star-desc .row {
  display: flex;
  margin-top: 10px;
}
.policy-tooltips.star-desc .row:first-child {
  margin-top: 0;
}
.policy-tooltips.star-desc .policy-star {
  margin-right: 20px;
  margin-left: 0;
}
.guide-mask {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
}
.guide-tips {
  position: absolute;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  padding: 14px 18px;
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
}
.guide-tips::before {
  position: absolute;
  bottom: -16px;
  left: 10px;
  content: ' ';
  border-top: 8px solid #FFF;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
}
.guide-tips .icon {
  align-self: flex-start;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: url('/node/public/image/zct/icon/guide-tips.svg') no-repeat,
  none;
  background-size: 100%;
}
.guide-tips .text {
  max-width: 280px;
  margin-left: 8px;
  color: #F08D02;
  font-size: 16px;
  font-weight: bold;
}
.guide-tips .close {
  width: 14px;
  height: 14px;
  margin-top: -2px;
  margin-left: 25px;
  cursor: pointer;
  background: url('/node/public/image/zct/icon-close.svg') no-repeat;
  background-size: 100%;
}
.policy-mark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('/node/public/image/zct/icon/help.svg') no-repeat, none;
}
.policy-mark.question {
  top: 3px;
  width: 17px;
  height: 17px;
  cursor: pointer;
}
.policy-mark.question .policy-tooltips {
  top: 26px;
}
.policy-mark .policy-tooltips::before {
  position: absolute;
  top: -12px;
  left: 50%;
  display: inline-block;
  content: ' ';
  transform: translateX(-50%);
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(0, 0, 0, .8);
  border-left: 6px solid transparent;
}
.policy-mark .policy-tooltips.up::before {
  position: absolute;
  top: initial;
  bottom: -12px;
  left: 50%;
  display: inline-block;
  content: ' ';
  transform: translateX(-50%);
  border-top: 6px solid rgba(0, 0, 0, .8);
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
}
.policy-mark.question .policy-tooltips.up {
  top: auto;
  bottom: 26px;
}
.policy-mark.question .policy-tooltips p {
  font-weight: normal;
}
#fix-company-info .zct-form .long-input {
  width: 302px;
}
#pay-result .popup-container {
  overflow: hidden;
  width: 440px;
  padding: 0 0 40px;
  border-radius: 6px;
}
#pay-result .popup-container .header {
  position: relative;
  padding: 50px;
  background: #FEFAEE;
}
#pay-result .popup-container .header .title {
  margin-bottom: 20px;
}
#pay-result .popup-container .header .title p {
  color: #525465;
}
#pay-result .popup-container .header .title .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background: url('../../image/zct/benefits/success.svg') no-repeat, none;
  background-size: 100%;
}
#pay-result .popup-container .header p {
  font-size: 14px;
}
#pay-result .popup-container .footer {
  padding: 0 60px;
}
#pay-result .popup-container .info-content {
  position: relative;
  z-index: 1;
}
#pay-result .stamp-big {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 227px;
  height: 160px;
  background: url('../../image/zct/membership-stamp-down.svg') no-repeat, none;
}
#pay-result .stamp-small {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 115px;
  height: 80px;
  background: url('../../image/zct/membership-stamp-down.svg') no-repeat, none;
}
#pay-result.policy-popup.confirm .btn-container {
  margin-top: 10px;
}
#voucher-apply .binder-form-submit {
  padding: 0;
}
#voucher-apply .popup-container .title {
  margin-bottom: 20px;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
}
#voucher-apply .btn-container {
  padding: 0 80px;
}
#voucher-apply.policy-popup .form-item label {
  width: 120px;
}
#voucher-apply.policy-popup .form-item input {
  width: 300px;
}
#voucher-apply.policy-popup .popup-container .zct-form .form-item {
  margin-bottom: 12px;
}
#voucher-apply .radio-group {
  display: inline-block;
}
#voucher-apply .sub-title {
  padding: 20px 0 10px;
  font-size: 19px;
  font-weight: bold;
}
#voucher-result .header {
  color: #2A2B34;
  font-size: 22px;
  font-weight: bold;
}
#voucher-result .header:before {
  position: relative;
  top: 5px;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  content: '';
  background: url('../../image/zct/benefits/success.svg') no-repeat, none;
}
#voucher-result .desc {
  margin-top: 30px;
  color: #525465;
}
.policy-tooltips.membership {
  z-index: 9999;
  width: max-content;
  margin-top: 10px;
  padding: 8px 30px;
  color: #5D461C;
  border-radius: 4px;
  background: #FEFAEE;
  box-shadow: 0 0 10px 0 rgba(93, 70, 28, .2);
}
.policy-tooltips.membership::before {
  left: 84px;
  transform: initial;
  border-bottom: 6px solid #FEFAEE;
}
.policy-tooltips.membership::after {
  position: absolute;
  top: -30px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: calc(100% + 60px);
  content: ' ';
}
.policy-tooltips.membership .text {
  position: relative;
  z-index: 1;
}
.company-info {
  position: relative;
  border-radius: 2px;
}
.company-info .stamp-up {
  position: absolute;
  top: 0;
  left: 0;
  width: 184px;
  height: 121px;
  border-radius: 2px 0 0 0;
  background: url('../../image/zct/membership-stamp-up.svg') no-repeat, none;
}
.company-info .stamp-down {
  position: absolute;
  right: 160px;
  bottom: 0;
  width: 193px;
  height: 135px;
  background: url('../../image/zct/membership-stamp-down.svg') no-repeat, none;
}
.company-info .membership-badge {
  position: absolute;
  top: 96px;
  left: 85px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: 1px solid #FFF;
  border-radius: 12px;
  background: url('../../image/zct/icon/membership-badge-normal.png')
  no-repeat;
  background-size: 100%;
}
.company-info .membership-badge.gold {
  background-image: url('../../image/zct/icon/membership-badge-gold.png');
}
.company-info .info-content {
  position: relative;
}
.company-info .logo {
  float: left;
  width: 80px;
  height: 80px;
  margin: 40px 24px 40px 30px;
  border: 1px solid #F0F1F3;
  border-radius: 40px;
  background: url('../../image/zct/ent-logo.png') no-repeat;
  background: url('../../image/zct/ent-logo.svg') no-repeat, none;
  background-size: 100%;
}
.company-info .logo.has-content {
  background: none;
}
.company-info .logo img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: #FFF;
}
.company-info .info {
  float: left;
  max-width: 500px;
  padding: 40px 0;
}
.company-info .company-name {
  margin-top: 5px;
  color: #2A2B34;
  font-size: 24px;
  font-weight: bold;
}
.company-info .membership-btn {
  position: relative;
  top: 60px;
  right: 30px;
  float: right;
}
.company-info .membership-desc.hidden {
  display: none;
}
.company-info .membership-desc .operation-btn {
  margin-left: 28px;
  color: #C89C54;
}
.company-info .membership-desc .operation-btn:hover {
  text-decoration: underline;
}
#permission-comfirm .zct-btn {
  width: 210px;
  margin-top: 60px;
}
#advisor-form {
  margin-top: 20px;
}
#advisor-form form {
  padding: 0 30px;
}
#advisor-form input {
  width: auto;
}
#advisor-form form .form-item {
  margin: 0;
  text-align: center;
}
#advisor-form form .form-item input {
  width: 120px;
  padding: 5px 10px;
  text-align: center;
  color: #525465;
  border: 0;
  border-bottom: 1px solid #C89C54;
  border-radius: 0;
  font-size: 15px;
  font-weight: bold;
}
#advisor-form form .form-item label {
  width: 90px;
  font-size: 15px;
  font-weight: bold;
}
.follow-mark {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 7px;
  content: '';
  border-radius: 0;
  background: url('/node/public/image/zct/icon/follow.svg') no-repeat, none;
}
.followed {
  background: url('/node/public/image/zct/icon/followed.svg') no-repeat, none;
}
.search-result {
  position: absolute;
  z-index: 20;
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-height: 400px;
  margin-top: 10px;
  border-radius: 25px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .12);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, .12);
}
.search-result .loading {
  display: inline-block;
  padding: 80px;
  background-color: #FFF;
}
.search-result .loading::after {
  display: inline-block;
  width: 28px;
  height: 28px;
  content: ' ';
  -webkit-animation: toastLoading 1s steps(12) infinite;
          animation: toastLoading 1s steps(12) infinite;
  background: url('/node/public/image/zct/toast/icon-loading.svg') no-repeat, none;
}
.search-result li {
  padding: 14px 40px;
  cursor: pointer;
  text-align: left;
}
.search-result li:hover {
  background-color: #EEE;
}