@charset "UTF-8";
/**
 * 中国通用咨询公司大模型产品建设项目-产品
 * date: 2024-11-26
 * author: hxh;
 */
* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

.wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("../images/img_bg.png");
  -o-background-size: 100% 100%;
     background-size: 100% 100%;
}
.wrap-hd {
  height: 47px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #fff;
}
.wrap-tt {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 16px;
}
.wrap-close {
  cursor: pointer;
  display: block;
}
.wrap-bd {
  height: -webkit-calc(100% - 47px);
  height: -moz-calc(100% - 47px);
  height: calc(100% - 47px);
  padding: 12px 0 12px 24px;
  overflow: auto;
}

.vip-service {
  height: 530px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  padding-right: 24px;
}
.vip-service-item {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  margin-right: 15px;
  border-radius: 10px 10px 10px 10px;
  padding: 18px 24px;
  cursor: pointer;
}
.vip-service-item:last-child {
  margin-right: 0;
}
.vip-service-item .item-hd {
  height: 76px;
  border-radius: 10px 10px 10px 10px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px;
  position: relative;
  z-index: 2;
}
.vip-service-item .item-hd .item-name {
  padding-left: 88px;
  font-weight: bold;
  font-size: 16px;
  height: 100%;
  line-height: 76px;
}
.vip-service-item .item-hd .item-price {
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  border-radius: 6px 6px 6px 6px;
  font-weight: 16px;
}
.vip-service-item .item-hd .item-price span {
  font-weight: bold;
  font-size: 24px;
}
.vip-service-item .item-bd {
  margin-top: 10px;
  height: -webkit-calc(100% - 86px);
  height: -moz-calc(100% - 86px);
  height: calc(100% - 86px);
  overflow: auto;
}
.vip-service-item .item-bd .item-feature {
  padding: 4px;
  line-height: 22px;
  padding-left: 36px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #333333;
  font-size: 14px;
}
.vip-service-item .item-bd .item-feature .feature-name {
  width: 213px;
}
.vip-service-item .item-bd .item-feature .feature-value {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10px;
  text-align: right;
}
.vip-service-item .item-bd .item-feature.state1 {
  background: url("../images/icon_state1.png") left 8px center no-repeat;
}
.vip-service-item .item-bd .item-feature.state2 {
  background: url("../images/icon_state2.png") left 8px center no-repeat;
}
.vip-service-item .item-bd .item-feature.state3 {
  background: url("../images/icon_state3.png") left 8px center no-repeat;
}
.vip-service-item .item-bd .item-feature:nth-child(n+2) {
  margin-top: 4px;
}
.vip-service-item .item-detail {
  display: none;
}
.vip-service-item .item-unite {
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(-10px);
     -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
       -o-transform: translateY(-10px);
          transform: translateY(-10px);
  height: 54px;
  background: #fffbf5;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid rgb(249, 217, 167);
  line-height: 44px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 12px 0;
}
.vip-service-item .item-unite .unite-name {
  color: #222222;
  line-height: 16px;
  width: 40%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 25px;
  position: relative;
}
.vip-service-item .item-unite .unite-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  border: 2px solid #dde0e4;
  border-radius: 50%;
}
.vip-service-item .item-unite .unite-price {
  width: 60%;
  overflow: hidden;
  text-align: right;
}
.vip-service-item .item-unite .unite-price .original {
  font-size: 14px;
  color: #999999;
  -moz-text-decoration-line: line-through;
       text-decoration-line: line-through;
}
.vip-service-item .item-unite .unite-price .practical {
  font-weight: bold;
  font-size: 16px;
  color: #ca1c24;
}
.vip-service-item.unite .item-unite .unite-name::before {
  border: 2px solid #0d5efa;
}
.vip-service-item.unite .item-unite .unite-name::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0d5efa;
  left: 5px;
}
.vip-service-item[data-name=试用会员] {
  background: -webkit-linear-gradient(228deg, #ffffff 0%, #fff5f0 54%, #ffffff 100%), #ffffff;
  background: -moz-linear-gradient(228deg, #ffffff 0%, #fff5f0 54%, #ffffff 100%), #ffffff;
  background: -o-linear-gradient(228deg, #ffffff 0%, #fff5f0 54%, #ffffff 100%), #ffffff;
  background: linear-gradient(222deg, #ffffff 0%, #fff5f0 54%, #ffffff 100%), #ffffff;
}
.vip-service-item[data-name=试用会员] .item-hd {
  background: -webkit-linear-gradient(left, #f4d4c6 0%, #fdefe4 100%);
  background: -moz-linear-gradient(left, #f4d4c6 0%, #fdefe4 100%);
  background: -o-linear-gradient(left, #f4d4c6 0%, #fdefe4 100%);
  background: linear-gradient(90deg, #f4d4c6 0%, #fdefe4 100%);
}
.vip-service-item[data-name=试用会员] .item-hd .item-price,
.vip-service-item[data-name=试用会员] .item-hd .item-name {
  color: #7d3e2c;
}
.vip-service-item[data-name=试用会员] .item-hd .item-name {
  background: url("../images/icon_vip1.png") left center no-repeat;
}
.vip-service-item[data-name=试用会员] .item-hd .item-price {
  background: -webkit-linear-gradient(333deg, #e9c3b3 0%, #f4dbc5 100%);
  background: -moz-linear-gradient(333deg, #e9c3b3 0%, #f4dbc5 100%);
  background: -o-linear-gradient(333deg, #e9c3b3 0%, #f4dbc5 100%);
  background: linear-gradient(117deg, #e9c3b3 0%, #f4dbc5 100%);
}
.vip-service-item[data-name=试用会员] .item-unite {
  border: 1px solid #f4d4c6;
}
.vip-service-item[data-name=黄金会员] {
  background: -webkit-linear-gradient(228deg, #ffffff 0%, #fef4e3 54%, #ffffff 100%), #ffffff;
  background: -moz-linear-gradient(228deg, #ffffff 0%, #fef4e3 54%, #ffffff 100%), #ffffff;
  background: -o-linear-gradient(228deg, #ffffff 0%, #fef4e3 54%, #ffffff 100%), #ffffff;
  background: linear-gradient(222deg, #ffffff 0%, #fef4e3 54%, #ffffff 100%), #ffffff;
}
.vip-service-item[data-name=黄金会员] .item-hd {
  background: -webkit-linear-gradient(left, #f9d9a7 0%, #fff3de 100%);
  background: -moz-linear-gradient(left, #f9d9a7 0%, #fff3de 100%);
  background: -o-linear-gradient(left, #f9d9a7 0%, #fff3de 100%);
  background: linear-gradient(90deg, #f9d9a7 0%, #fff3de 100%);
}
.vip-service-item[data-name=黄金会员] .item-hd .item-price,
.vip-service-item[data-name=黄金会员] .item-hd .item-name {
  color: #794e0d;
}
.vip-service-item[data-name=黄金会员] .item-hd .item-name {
  background: url("../images/icon_vip2.png") left center no-repeat;
}
.vip-service-item[data-name=黄金会员] .item-hd .item-price {
  background: -webkit-linear-gradient(333deg, #f4c179 0%, #ffe8be 100%);
  background: -moz-linear-gradient(333deg, #f4c179 0%, #ffe8be 100%);
  background: -o-linear-gradient(333deg, #f4c179 0%, #ffe8be 100%);
  background: linear-gradient(117deg, #f4c179 0%, #ffe8be 100%);
}
.vip-service-item[data-name=黄金会员] .item-unite {
  border: 1px solid #f9d9a7;
}
.vip-service-item[data-name=钻石会员] {
  background: -webkit-linear-gradient(228deg, #ffffff 0%, #f6efff 54%, #ffffff 100%), #ffffff;
  background: -moz-linear-gradient(228deg, #ffffff 0%, #f6efff 54%, #ffffff 100%), #ffffff;
  background: -o-linear-gradient(228deg, #ffffff 0%, #f6efff 54%, #ffffff 100%), #ffffff;
  background: linear-gradient(222deg, #ffffff 0%, #f6efff 54%, #ffffff 100%), #ffffff;
}
.vip-service-item[data-name=钻石会员] .item-hd {
  background: -webkit-linear-gradient(left, #e9d9ff 0%, #f4edff 100%);
  background: -moz-linear-gradient(left, #e9d9ff 0%, #f4edff 100%);
  background: -o-linear-gradient(left, #e9d9ff 0%, #f4edff 100%);
  background: linear-gradient(90deg, #e9d9ff 0%, #f4edff 100%);
}
.vip-service-item[data-name=钻石会员] .item-hd .item-price,
.vip-service-item[data-name=钻石会员] .item-hd .item-name {
  color: #5e3495;
}
.vip-service-item[data-name=钻石会员] .item-hd .item-name {
  background: url("../images/icon_vip3.png") left center no-repeat;
}
.vip-service-item[data-name=钻石会员] .item-hd .item-price {
  background: -webkit-linear-gradient(333deg, #ceb9eb 0%, #e5d9f8 100%);
  background: -moz-linear-gradient(333deg, #ceb9eb 0%, #e5d9f8 100%);
  background: -o-linear-gradient(333deg, #ceb9eb 0%, #e5d9f8 100%);
  background: linear-gradient(117deg, #ceb9eb 0%, #e5d9f8 100%);
}
.vip-service-item[data-name=钻石会员] .item-unite {
  border: 1px solid #e9d9ff;
}
.vip-service-item[data-disabled=true] {
  background: -webkit-linear-gradient(228deg, #ffffff 0%, #f4f9ff 54%, #ffffff 100%), #ffffff;
  background: -moz-linear-gradient(228deg, #ffffff 0%, #f4f9ff 54%, #ffffff 100%), #ffffff;
  background: -o-linear-gradient(228deg, #ffffff 0%, #f4f9ff 54%, #ffffff 100%), #ffffff;
  background: linear-gradient(222deg, #ffffff 0%, #f4f9ff 54%, #ffffff 100%), #ffffff;
  cursor: not-allowed;
}
.vip-service-item[data-disabled=true] .item-hd {
  background: -webkit-linear-gradient(left, #d7dfe9 0%, #ebf3fc 100%);
  background: -moz-linear-gradient(left, #d7dfe9 0%, #ebf3fc 100%);
  background: -o-linear-gradient(left, #d7dfe9 0%, #ebf3fc 100%);
  background: linear-gradient(90deg, #d7dfe9 0%, #ebf3fc 100%);
}
.vip-service-item[data-disabled=true] .item-hd .item-price,
.vip-service-item[data-disabled=true] .item-hd .item-name {
  color: #485059;
}
.vip-service-item[data-disabled=true] .item-hd .item-name {
  background: url("../images/icon_vip_disabled.png") left center no-repeat;
}
.vip-service-item[data-disabled=true] .item-hd .item-price {
  background: -webkit-linear-gradient(333deg, #c4cfde 0%, #d4dde8 100%);
  background: -moz-linear-gradient(333deg, #c4cfde 0%, #d4dde8 100%);
  background: -o-linear-gradient(333deg, #c4cfde 0%, #d4dde8 100%);
  background: linear-gradient(117deg, #c4cfde 0%, #d4dde8 100%);
}
.vip-service-item[data-disabled=true] .item-unite {
  border: 1px solid #d7dfe9;
}
.vip-service-item[data-disabled=true] .item-bd .item-feature .feature-name,
.vip-service-item[data-disabled=true] .item-bd .item-feature .feature-value {
  color: #4a525c;
}
.vip-service-item[data-disabled=true] .item-bd .item-feature.state1 {
  background: url("../images/icon_state1_disabled.png") left 8px center no-repeat;
}
.vip-service-item[data-disabled=true] .item-bd .item-feature.state2 {
  background: url("../images/icon_state2_disabled.png") left 8px center no-repeat;
}
.vip-service-item[data-disabled=true] .item-bd .item-feature.state3 {
  background: url("../images/icon_state3_disabled.png") left 8px center no-repeat;
}
.vip-service-item.active {
  background: -webkit-linear-gradient(229deg, #666666 0%, #000000 49%, #4b4234 100%);
  background: -moz-linear-gradient(229deg, #666666 0%, #000000 49%, #4b4234 100%);
  background: -o-linear-gradient(229deg, #666666 0%, #000000 49%, #4b4234 100%);
  background: linear-gradient(221deg, #666666 0%, #000000 49%, #4b4234 100%);
  padding: 18px 24px 42px;
  position: relative;
}
.vip-service-item.active .item-feature .feature-name,
.vip-service-item.active .item-feature .feature-value {
  color: #ffd08e;
}
.vip-service-item.active .item-feature.state1 {
  background: url("../images/icon_state1_active.png") left 8px center no-repeat;
}
.vip-service-item.active .item-feature.state2 {
  background: url("../images/icon_state2_active.png") left 8px center no-repeat;
}
.vip-service-item.active .item-feature.state3 {
  background: url("../images/icon_state3_active.png") left 8px center no-repeat;
}
.vip-service-item.active .item-detail {
  display: block;
  position: absolute;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222222;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

.settle-accounts {
  margin-right: 24px;
  height: 78px;
  background: #ffffff;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #ffffff;
  padding: 0 24px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.settle-accounts .company {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.settle-accounts .company > div {
  width: 234px;
}
.settle-accounts .company-name {
  height: 26px;
  font-size: 14px;
  color: #333333;
  line-height: 26px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
.settle-accounts .label {
  display: block;
  margin-bottom: 8px;
  height: 21px;
  font-size: 14px;
  color: #5c5c5c;
  line-height: 21px;
}
.settle-accounts .pay-info {
  width: 378px;
}
.settle-accounts .pay-info .pay-price {
  height: 36px;
  line-height: 36px;
  text-align: right;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-size: 14px;
  color: #5c5c5c;
}
.settle-accounts .pay-info .pay-price > div {
  margin-right: 15px;
}
.settle-accounts .pay-info .pay-price .practical-price {
  margin-right: 0;
}
.settle-accounts .pay-info .pay-price .practical-price span {
  color: #ca1c24;
  vertical-align: top;
}
.settle-accounts .pay-info .pay-price .practical-price span span {
  font-weight: bold;
  font-size: 24px;
}
.settle-accounts .pay-info .agree-agreemet {
  font-size: 12px;
  color: #666;
}
.settle-accounts .pay-info .agree-agreemet .agree-check {
  display: inline-block;
  vertical-align: middle;
  margin-top: -4px;
  width: 14px;
  height: 14px;
  border: 1px solid #ccc;
  cursor: pointer;
}
.settle-accounts .pay-info .agree-agreemet .agree-check.checked {
  border: none;
  background: url("../images/icon_checked.png");
}
.settle-accounts .pay-info .agree-agreemet span {
  color: #ca1c24;
}
.settle-accounts .pay-info .agree-agreemet a {
  color: #0d5efa;
}
.settle-accounts .pay-btn {
  display: block;
  width: 128px;
  height: 48px;
  background: #0d5efa;
  border-radius: 10px 10px 10px 10px;
  margin-left: 16px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}

.title {
  text-align: center;
  height: 42px;
  line-height: 42px;
  margin-bottom: 16px;
  margin-top: 24px;
}
.title span {
  font-family: YouSheBiaoTiHei;
  display: inline-block;
  position: relative;
  padding: 0 61px;
  font-size: 32px;
  color: #333333;
}
.title span::after, .title span::before {
  content: "";
  position: absolute;
  width: 52px;
  top: 0;
  bottom: 0;
}
.title span::before {
  left: 0;
  background: url("../images/img_tt_l.png") center no-repeat;
}
.title span::after {
  right: 0;
  background: url("../images/img_tt_r.png") center no-repeat;
}

.scroll-wrap {
  height: -webkit-calc(100% - 78px);
  height: -moz-calc(100% - 78px);
  height: calc(100% - 78px);
  padding-bottom: 12px;
  overflow: auto;
}

.independent-service {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 24px;
}
.independent-service-item {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  margin-right: 16px;
  height: 132px;
  background: #fff url("../images/img_independent_item.png") center no-repeat;
  -o-background-size: 105% 105%;
     background-size: 105% 105%;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #fff;
  position: relative;
  padding: 56px 24px 0;
  cursor: pointer;
  
  height: 166px;
  
  
}
.independent-service-item:last-child {
  margin-right: 0;
}
.independent-service-item .name {
  position: absolute;
  width: 60%;
  left: 0;
  top: 10px;
  line-height: 36px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 24px;
  font-weight: bold;
  font-size: 16px;
  color: #222222;
}
.independent-service-item .price {
  position: absolute;
  width: 40%;
  text-align: right;
  right: 0;
  top: 10px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 24px;
  font-size: 16px;
}
.independent-service-item .price span {
  color: #ca1c24;
}
.independent-service-item .price span span {
  font-size: 24px;
  font-weight: bold;
}
.independent-service-item.ail-toolkit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url("../images/img_ai_toolkit.png") right 50px bottom no-repeat;
}
.independent-service-item.ail-toolkit p {
  height: 30px;
  line-height: 30px;
  padding-left: 26px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  background: url("../images/icon_state3.png") left center no-repeat;
}
.independent-service-item.central-report .name span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  padding-right: 90px;
  vertical-align: top;
}
.independent-service-item.central-report .name span a {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80px;
  height: 24px;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #0d5efa;
  text-align: center;
  font-size: 12px;
  color: #0d5efa;
  line-height: 24px;
  font-weight: 400;
}
.independent-service-item.central-report p {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  display: block;
  max-height: 60px;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* ! autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}
.independent-service-item.active {
  background: url("../images/img_independent_item_h.png") center no-repeat;
  -o-background-size: 105% 105%;
     background-size: 105% 105%;
  border: none;
  padding: 57px 25px 1px;
}
.independent-service-item.active * {
  color: #fff !important;
}
.independent-service-item.active.ail-toolkit p {
  background: url("../images/icon_state3_h.png") left center no-repeat;
}
.independent-service-item.active.central-report .name span a {
  border-color: #fff;
}
.independent-service-item[data-disabled=true] {
  cursor: not-allowed;
}
.independent-service-item[data-disabled=true] * {
  color: #4a525c !important;
}
.independent-service-item[data-disabled=true].ail-toolkit::before {
  background: url("../images/img_ai_toolkit_disabled.png") right 50px bottom no-repeat;
}
.independent-service-item[data-disabled=true].ail-toolkit p {
  background: url("../images/icon_state3_disabled.png") left center no-repeat;
}
.independent-service-item[data-disabled=true].central-report .name span a {
  border-color: #4a525c;
}

.independent-service-item {
  border: 1px solid #d6dded;
}

.vip-service-item {
  border: 2px solid transparent;
}

.vip-service-item.active {
  border: 2px solid #0d5efa;
  background: -webkit-linear-gradient(240deg, #fff 5.83%, #e9f1ff 49.62%, #fff 95.2%);
  background: -moz-linear-gradient(240deg, #fff 5.83%, #e9f1ff 49.62%, #fff 95.2%);
  background: -o-linear-gradient(240deg, #fff 5.83%, #e9f1ff 49.62%, #fff 95.2%);
  background: linear-gradient(210deg, #fff 5.83%, #e9f1ff 49.62%, #fff 95.2%);
}

.vip-service-item.active .item-detail {
  color: #fff;
  background: #0d5efa;
}

.vip-service-item.active .item-feature .feature-name,
.vip-service-item.active .item-feature .feature-value {
  color: #333;
}

.vip-service-item .item-bd .item-feature.state3 {
  background: url(../images/icon_state3.png) left 8px center no-repeat;
}

.vip-service-item .item-bd .item-feature.state2 {
  background: url(../images/icon_state2.png) left 8px center no-repeat;
}

.vip-service-item .item-bd .item-feature.state1 {
  background: url(../images/icon_state1.png) left 8px center no-repeat;
}

.independent-service-item.ail-toolkit::before {
  display: none !important;
}
.independent-service-item.ail-toolkit .price {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 140px;
  top: 0;
  
  
  /* jyh */
  width: auto;
  bottom: auto;
  right: 0;
  top: 10px;
  height: auto;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  
}
.independent-service-item.ail-toolkit .price-item {
  height: 50px;
  line-height: 50px;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #c1cae1;
  margin-bottom: 5px;
  text-align: center;
  
  /* jyh */
  height: 36px;
  line-height: 34px;
  width: 122px;
  background: #fff4f4;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #ca1c24;
  color: #ca1c24 !important;
  margin-top: 0 !important;
  
}
.independent-service-item.ail-toolkit .price-item:last-child {
  margin-bottom: 0;
}
.independent-service-item.ail-toolkit .price-item span {
  color: #ca1c24 !important;
}
.independent-service-item.ail-toolkit .price-item.active {
  background: #0d5efa;
  color: #fff !important;
  
  /* jyh */
   background: #ffd9d9;
  color: #ca1c24 !important;
  
}
.independent-service-item.ail-toolkit .price-item.active span {
  color: #fff !important;
  /* jyh */
  color: #ca1c24 !important;
}
.independent-service-item.active {
  background: #fff url(../images/img_independent_item.png) center no-repeat;
  -o-background-size: 100% 100%;
     background-size: 100% 100%;
  border: 2px solid #0d5efa;
  padding: 55px 23px 0;
}
.independent-service-item.active * {
  color: #333 !important;
}
.independent-service-item.active.ail-toolkit p {
  background: url(../images/icon_state3.png) left center no-repeat;
}
.independent-service-item.active.central-report .name span a {
  border: 1px solid #0d5efa;
  color: #0d5efa !important;
}
.independent-service-item.active.central-report .price span {
  color: #ca1c24 !important;
}

/* jyh */
.independent-service-item.ail-toolkit .price-item + .price-item {
  margin-left: 10px;
}
.independent-service-item.ail-toolkit p .free {
  display: inline-block;
  height: 19px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #ff520d;
  line-height: 17px;
  padding: 0 4px;
  font-size: 13px;
  color: #ff520d !important;
}
.independent-service-item.ail-toolkit p span {
  font-size: 13px;
  color: #999999 !important;
}
.mini-tooltip {
  max-width: 60%;
}

/*2025-04-10 xuhai 修改*/
.title {
  position: relative;
  z-index: 1;
}

.video-play {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: 118px;
  height: 38px;
  color: #fff;
  font-size: 14px;
  text-align: left;
  line-height: 38px;
  background: #0d5efa url("../images/video_play.png") no-repeat left 16px center;
  background-size: 22px 22px;
  padding-left: 46px;
  box-sizing: border-box;
  border-radius: 10px;
  cursor: pointer;
}
.video-play:hover {
  opacity: 0.8;
}