/*
 * @Description: 
 * @Author: hxh
 * @Date: 2023-05-05 10:23:17
 */
.tab-types {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tab-types .tab-type {
  width: 274px;
  height: 93px;
  line-height: 93px;
  background: -webkit-linear-gradient(top, rgba(230, 235, 240, 0.7) 17.3%, rgba(255, 255, 255, 0.7) 100%);
  background: -moz-linear-gradient(top, rgba(230, 235, 240, 0.7) 17.3%, rgba(255, 255, 255, 0.7) 100%);
  background: -o-linear-gradient(top, rgba(230, 235, 240, 0.7) 17.3%, rgba(255, 255, 255, 0.7) 100%);
  background: linear-gradient(180deg, rgba(230, 235, 240, 0.7) 17.3%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid #ffffff;
  box-shadow: 0px 6px 23px #e0e6f0;
  border-radius: 10px;
  margin-right: 40px;
  text-align: center;
  position: relative;
  font-size: 20px;
  color: #263853;
  cursor: pointer;
}
.tab-types .tab-type span {
  display: inline-block;
  max-width: 100%;
  padding-left: 77px;
}
.tab-types .tab-type:last-child {
  margin-right: 0;
}
.tab-types .tab-type.deal span {
  background: url("../images/img_deal_type.png") left center no-repeat;
}
.tab-types .tab-type.inquiry span {
  background: url("../images/img_inquiry_type.png") left center no-repeat;
}
.tab-types .tab-type.abnormal span {
  background: url("../images/img_abnormal_type.png") left center no-repeat;
}
.tab-types .tab-type.current {
  background: -webkit-linear-gradient(top, #529bef 0%, #1f60aa 100%);
  background: -moz-linear-gradient(top, #529bef 0%, #1f60aa 100%);
  background: -o-linear-gradient(top, #529bef 0%, #1f60aa 100%);
  background: linear-gradient(180deg, #529bef 0%, #1f60aa 100%);
  border: 1px solid #2e7fdc;
}
.tab-types .tab-type.current span {
  color: #fff;
}
.tab-types .tab-type.current.deal span {
  background: url("../images/img_deal_type_h.png") left center no-repeat;
}
.tab-types .tab-type.current.inquiry span {
  background: url("../images/img_inquiry_type_h.png") left center no-repeat;
}
.tab-types .tab-type.current.abnormal span {
  background: url("../images/img_abnormal_type_h.png") left center no-repeat;
}
.tab-types .tab-type.disabled {
  background: -webkit-linear-gradient(top, rgba(230, 235, 240, 0.7) 17.3%, rgba(255, 255, 255, 0.7) 100%);
  background: -moz-linear-gradient(top, rgba(230, 235, 240, 0.7) 17.3%, rgba(255, 255, 255, 0.7) 100%);
  background: -o-linear-gradient(top, rgba(230, 235, 240, 0.7) 17.3%, rgba(255, 255, 255, 0.7) 100%);
  background: linear-gradient(180deg, rgba(230, 235, 240, 0.7) 17.3%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid #ffffff;
  box-shadow: 0px 6px 23px #e0e6f0;
  color: #c7ced7;
  cursor: not-allowed;
}
.tab-types .tab-type.disabled.deal span {
  background: url("../images/img_deal_type_disabled.png") left center no-repeat;
}
.tab-types .tab-type.disabled.inquiry span {
  background: url("../images/img_inquiry_type_disabled.png") left center no-repeat;
}
.tab-types .tab-type.disabled.abnormal span {
  background: url("../images/img_abnormal_type_disabled.png") left center no-repeat;
}

.btn {
    width: 230px;
    padding: 6px 20px;
    border-radius: 4px;
    background: #3b7ecb;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    display: block;
    margin: 0 auto;
}