/* domain */
.domain-page .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.domain-page .search-domain {
  max-width: 100%;
  height: 90px;
  height: clamp(50px, 4.6875vw, 90px);
  margin-bottom: 32px;
  margin-bottom: clamp(16px, 1.66666667vw, 32px);
  display: flex;
  align-items: center;
}
.domain-page .search-domain input {
  width: 1200px;
  max-width: 100%;
  min-width: 100px;
  outline: none;
  padding: 0 28px;
  padding: 0 clamp(14px, 1.45833333vw, 28px);
  height: 100%;
  box-sizing: border-box;
  color: #a5a7ac;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #ffffff;
  backdrop-filter: blur(10px);
}
.domain-page .search-domain .btn {
  padding: 0 55px;
  padding: 0 clamp(20px, 2.86458333vw, 55px);
  color: #fff;
  background: var(--base-color);
  height: 100%;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 0px 8px 8px 0px;
  flex-shrink: 0;
}
.domain-page .discount {
  margin-bottom: 64px;
}
.domain-page .discount .list {
  display: flex;
  flex-wrap: wrap;
}
.domain-page .discount .list li {
  width: 25%;
  border-radius: 8px;
  border: 1px solid #fff;
  position: relative;
  box-sizing: border-box;
  background: #f9fafb;
  perspective: 500px;
  transform-style: preserve-3d;
  transition: all 6s ease-in-out;
}
.domain-page .discount .list li:hover .img {
  transform: translateY(10px) translateZ(0px);
}
.domain-page .discount .list li:hover .name {
  color: var(--base-color);
}
.domain-page .discount .list .img {
  perspective: 500px;
  transform-style: preserve-3d;
  position: relative;
}
.domain-page .discount .list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.domain-page .discount .list .img .name {
  position: absolute;
  width: 24.45%;
  height: 28.98%;
  font-weight: 600;
  z-index: 10;
  transform: translate(-50%, -50%);
  top: 37%;
  left: 51%;
  font-size: 24px;
  color: var(--font-color);
  text-align: center;
}
.domain-page .discount .list .img .name .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 5px;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.domain-page .discount .list .des {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  height: 90px;
  height: clamp(60px, 4.6875vw, 90px);
  font-weight: 400;
  text-align: center;
  padding: 0 5px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.domain-page .build-web .content {
  gap: 40px;
  gap: clamp(20px, 2.08333333vw, 40px);
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
}
.domain-page .build-web .content .sub-box {
  border: 1px solid #e5e8f0;
  border-radius: 8px;
}
.domain-page .build-web .content .sub-top {
  padding: 24px;
  padding: clamp(12px, 1.25vw, 24px);
  color: var(--font-color);
  background: #f6f7f9;
  overflow: hidden;
}
.domain-page .build-web .content .sub-top .name {
  font-weight: 600;
  margin-bottom: 12px;
  margin-bottom: clamp(6px, 0.625vw, 12px);
}
.domain-page .build-web .content .list .item {
  margin: 0;
  margin-left: 40px;
  margin-left: clamp(20px, 2.08333333vw, 40px);
  margin-right: 40px;
  margin-right: clamp(20px, 2.08333333vw, 40px);
  padding: 40px 0;
  padding: clamp(20px, 2.08333333vw, 40px) 0;
  color: #646464;
  border-bottom: 1px solid #e5e8f0;
}
.domain-page .build-web .content .list .item a {
  display: block;
}
.domain-page .build-web .content .list .item .des {
  padding-left: 20px;
}
.domain-page .build-web .content .list .item .des::before {
  background: #e5e8f0;
  top: 0;
  margin-top: 10px;
}
.domain-page .build-web .content .list .item .des:hover {
  color: var(--base-color);
}
.domain-page .build-web .content .list .item:last-child {
  border-bottom: 0;
}
.domain-page .guide .img {
  width: 100%;
  height: 595px;
  height: clamp(200px, 30.98958333vw, 595px);
}
.domain-page .guide .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.domain-page .normal-question {
  margin-bottom: 30px;
}
.domain-page .normal-question .sub-box .con {
  background: #f5f6f9;
  border-radius: 8px;
  min-width: 0;
}
.domain-page .normal-question .sub-top {
  background: #5a5c60;
  color: #fff;
  padding: 32px 40px;
  padding: clamp(16px, 1.66666667vw, 32px) clamp(20px, 2.08333333vw, 40px);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.domain-page .normal-question .sub-top .name {
  margin-bottom: 16px;
  margin-bottom: clamp(8px, 0.83333333vw, 16px);
  font-weight: 600;
}
.domain-page .normal-question .sub-top .des {
  opacity: 0.5;
}
.domain-page .normal-question .sub-top .icon {
  flex-shrink: 0;
  width: 88px;
  width: clamp(66px, 4.58333333vw, 88px);
  height: 88px;
  height: clamp(66px, 4.58333333vw, 88px);
  background: #6b6d70;
  border-radius: 50%;
  overflow: hidden;
  padding: 14px;
  margin-left: auto;
  box-sizing: border-box;
}
.domain-page .normal-question .sub-top .icon img {
  width: 100%;
  height: 100%;
}
.domain-page .normal-question .list {
  padding: 24px 8px;
}
.domain-page .normal-question .list .item {
  padding-left: 32px;
  padding-left: clamp(16px, 1.66666667vw, 32px);
}
.domain-page .normal-question .list .item:hover {
  background: #fff;
}
.domain-page .normal-question .list .item:hover .des::before {
  background: var(--base-color);
}
.domain-page .normal-question .list .des {
  padding-left: 20px;
  line-height: 56px;
  line-height: clamp(36px, 2.91666667vw, 56px);
}
.domain-page .normal-question .list .des::before {
  background: #e5e8f0;
}
.domain-page .normal-question .list .des:hover {
  color: var(--base-color);
}
.domain-page .normal-question .more {
  display: block;
  margin-left: 40px;
  margin-left: clamp(20px, 2.08333333vw, 40px);
  margin-right: 40px;
  margin-right: clamp(20px, 2.08333333vw, 40px);
  padding: 40px 0;
  padding: clamp(20px, 2.08333333vw, 40px) 0;
  border-top: 1px solid #e5e8f0;
  color: #646464;
}
.domain-page .normal-question .more:hover {
  color: var(--base-color);
}
/* dcim */
.dcim-page .inner-title {
  padding-top: 56px;
  padding-top: clamp(28px, 2.91666667vw, 56px);
  padding-bottom: 40px;
  padding-bottom: clamp(20px, 2.08333333vw, 40px);
}
.dcim-page .solution .list .item {
  background: #fff;
}
.dcim-page .solution .package-list {
  background: #fff;
  width: 100%;
  overflow-x: auto;
}
.dcim-page .solution .package-list.mobile {
  display: none;
}
.dcim-page .solution .package-list.mobile .package-item {
  width: 100%;
  border-radius: 8px;
  background: #f4f4f4;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  margin-bottom: 10px;
}
.dcim-page .solution .package-list.mobile .package-item .col {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 0 6px;
  color: #333;
}
.dcim-page .solution .package-list.mobile .package-item .top {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  padding: 10px 16px;
  box-sizing: border-box;
  border: 1px solid #ededed;
  justify-content: space-between;
  background: inherit;
}
.dcim-page .solution .package-list.mobile .package-item .top .text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dcim-page .solution .package-list.mobile .package-item .bot {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
}
.dcim-page .solution .package-list.mobile .package-item .label {
  color: #999;
  min-width: 50px;
  margin-right: 10px;
}
.dcim-page .solution .package-list.mobile .package-item .params {
  background-color: #fff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dcim-page .solution .package-list.mobile .package-item .price-box {
  display: flex;
  margin-top: 10px;
  box-sizing: border-box;
}
.dcim-page .solution .package-list.mobile .package-item .price-box .price {
  display: flex;
  align-items: flex-end;
  flex: 1;
  gap: 10px;
}
.dcim-page .solution .package-list.mobile .package-item .price-box .buy-btn {
  padding: 3px 6px;
  line-height: 30px;
}
.dcim-page .solution .package-list.mobile .package-item .price-box .num {
  font-weight: 600;
  color: #485169;
  font-size: 20px;
}
.dcim-page .solution .package-list.mobile .package-item .price-box .original-price {
  color: #cfd2e1;
  text-decoration: line-through;
}
.dcim-page .solution .package-header,
.dcim-page .solution .package-item {
  display: flex;
  align-items: center;
  color: #485169;
  font-size: 16px;
  min-width: 100%;
  position: relative;
}
.dcim-page .solution .package-header .col,
.dcim-page .solution .package-item .col {
  min-width: 120px;
}
.dcim-page .solution .package-header .col:first-child,
.dcim-page .solution .package-item .col:first-child {
  flex: 0 0 200px;
  position: sticky;
  left: 0;
  padding-left: 24px;
  padding-left: clamp(16px, 1.25vw, 24px);
  z-index: 2;
}
.dcim-page .solution .package-header .col.action,
.dcim-page .solution .package-item .col.action {
  width: 200px;
  position: sticky;
  right: 0;
}
.dcim-page .solution .package-header .col.price,
.dcim-page .solution .package-item .col.price {
  position: sticky;
  right: 164px;
  flex: 0 1 auto;
  white-space: nowrap;
}
.dcim-page .solution .package-header .col {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 56px;
  height: clamp(48px, 2.91666667vw, 56px);
  line-height: 56px;
  line-height: clamp(48px, 2.91666667vw, 56px);
  background: #f5f6f9;
}
.dcim-page .solution .package-item .col {
  min-height: 64px;
  min-height: clamp(40px, 3.33333333vw, 64px);
}
.dcim-page .solution .package-item .col:first-child,
.dcim-page .solution .package-item .col.action {
  background: #fff;
}
.dcim-page .solution .package-item:hover .col:first-child,
.dcim-page .solution .package-item:hover .col.action,
.dcim-page .solution .package-item:hover .col.price {
  background: #f9f9f9;
}
.dcim-page .solution .package-header {
  background: #f5f6f9;
  font-weight: 600;
}
.dcim-page .solution .package-header .col.price {
  color: inherit;
}
.dcim-page .solution .package-item {
  min-height: 64px;
  min-height: clamp(40px, 3.33333333vw, 64px);
  border-bottom: 1px solid #f5f6f9;
  transition: all 0.15s;
  font-weight: 400;
}
.dcim-page .solution .package-item:hover {
  background: #f9f9f9;
}
.dcim-page .solution .col {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 12px;
  padding: 0 clamp(8px, 0.625vw, 12px);
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}
.dcim-page .solution .col .text {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 6px;
}
.dcim-page .solution .col.price {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.dcim-page .solution .col.price .current-price {
  color: #424b63;
  font-weight: 400;
}
.dcim-page .solution .col.price .current-price .num {
  margin: 0 2px;
  font-weight: 700;
}
.dcim-page .solution .col.price .original-price {
  margin-left: 4px;
  font-size: 14px;
  font-size: clamp(12px, 0.72916667vw, 14px);
  color: rgba(125, 133, 157, 0.5);
  text-decoration: line-through;
  white-space: nowrap;
  font-size: 12px;
  position: relative;
  top: 1px;
}
.dcim-page .solution .col.action {
  flex: 0 0 140px;
  text-align: right;
}
.dcim-page .solution .tag {
  display: inline-block;
  flex-shrink: 0;
  color: #fff;
  line-height: 24px;
  padding: 0 8px;
  padding: 0 clamp(4px, 0.41666667vw, 8px);
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  font-size: clamp(12px, 0.625vw, 12px);
  margin-right: 8px;
}
.dcim-page .solution .tag.hot {
  background: #e53935;
}
.dcim-page .solution .tag.recommend {
  background: #397cfc;
}
.dcim-page .solution .tag.discount {
  background: #ee8220;
}
.dcim-page .solution .buy-btn {
  background: var(--base-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-size: clamp(14px, 0.72916667vw, 14px);
  transition: all 0.3s;
  white-space: nowrap;
  line-height: 36px;
  padding: 0 24px;
  padding: 0 clamp(20px, 1.25vw, 24px);
}
.dcim-page .parameter {
  margin-bottom: 40px;
  margin-bottom: clamp(20px, 2.08333333vw, 40px);
}
.dcim-page .parameter .nav-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 104px;
  column-gap: clamp(50px, 5.41666667vw, 104px);
  padding-bottom: 56px;
  padding-bottom: clamp(28px, 2.91666667vw, 56px);
}
.dcim-page .parameter .nav-tab li {
  color: var(--font-color);
  padding: 0 10px;
  position: relative;
  padding-bottom: 33px;
  padding-bottom: clamp(16px, 1.71875vw, 33px);
  cursor: pointer;
  white-space: nowrap;
}
.dcim-page .parameter .nav-tab li:hover {
  color: var(--base-color);
}
.dcim-page .parameter .nav-tab li.active {
  font-weight: 600;
}
.dcim-page .parameter .nav-tab li.active::after {
  content: "";
  width: 100%;
  height: 6px;
  border-radius: 1px;
  background: var(--base-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: skew(-40deg);
  -webkit-transform: skew(-40deg);
}
.dcim-page .parameter .tab-content {
  position: relative;
}
.dcim-page .parameter .list {
  display: none;
}
.dcim-page .parameter .list.active {
  display: grid;
}
.dcim-page .parameter .list li {
  background: #f5f6f9;
  border-radius: 8px;
}
.dcim-page .parameter .list li .tit {
  font-weight: 500;
  margin-bottom: 16px;
  margin-bottom: clamp(8px, 0.83333333vw, 16px);
}
.dcim-page .parameter .list li .des {
  color: var(--des-color);
  line-height: normal;
}
.dcim-page .parameter .list li a {
  display: block;
}
.dcim-page .case {
  padding-bottom: 20px;
}
.dcim-page .case .list {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.dcim-page .case .item {
  background: #f5f6f9;
  border-radius: 8px;
  box-sizing: border-box;
  line-height: normal;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dcim-page .case .item:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
}
.dcim-page .case .item img {
  width: 100%;
  height: 286px;
  height: clamp(160px, 14.89583333vw, 286px);
  object-fit: contain;
}
.dcim-page .case .item .text {
  width: 100%;
  padding: 14px 24px;
  box-sizing: border-box;
}
.dcim-page .case .item .text .des {
  color: var(--des-color);
  margin-bottom: 32px;
  margin-bottom: clamp(10px, 1.66666667vw, 32px);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 40px;
  line-height: 20px;
}
.dcim-page .case .item .text .name {
  font-weight: 500;
  text-align: right;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.dcim-page .service {
  background: #f5f6f9;
  padding-bottom: 64px;
  padding-bottom: clamp(32px, 3.33333333vw, 64px);
}
.dcim-page .service .title {
  padding: 40px;
  padding: clamp(20px, 2.08333333vw, 40px);
  font-weight: 600;
  border-bottom: 1px solid #e5e8f0;
  box-sizing: border-box;
}
.dcim-page .service .content {
  gap: 16px;
  align-items: stretch;
}
.dcim-page .service .question,
.dcim-page .service .protocol {
  background: #fff;
  border-radius: 8px;
  min-height: 430px;
  min-height: clamp(200px, 22.39583333vw, 430px);
}
.dcim-page .service .protocol {
  flex: 0 0 543px;
  max-width: 50%;
  overflow: hidden;
}
.dcim-page .service .protocol .bot {
  padding: 24px 40px;
  padding: clamp(16px, 1.25vw, 24px) clamp(20px, 2.08333333vw, 40px);
  padding-bottom: 0;
  box-sizing: border-box;
}
.dcim-page .service .protocol .tip {
  color: var(--des-color);
  margin-bottom: 31px;
}
.dcim-page .service .protocol .list {
  margin-top: -24px;
  margin-top: clamp(-16px, -1.25vw, -24px);
  border-bottom: 1px solid #e5e8f0;
  padding-bottom: 30px;
  overflow: hidden;
}
.dcim-page .service .protocol .list li {
  padding-left: 20px;
  margin-top: 24px;
  margin-top: clamp(16px, 1.25vw, 24px);
}
.dcim-page .service .protocol .list li:hover {
  color: var(--base-color);
}
.dcim-page .service .protocol .link-more {
  padding: 28px 0;
  padding: clamp(14px, 1.45833333vw, 28px) 0;
  text-align: center;
  color: var(--base-color);
}
.dcim-page .service .question-list {
  padding: 0 32px;
}
.dcim-page .service .question-list .tit {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-left: 20px;
}
.dcim-page .service .question-list .item {
  padding: 40px 0;
  padding: clamp(20px, 2.08333333vw, 40px) 0;
  border-bottom: 1px solid #e5e8f0;
  overflow: hidden;
}
.dcim-page .service .question-list .item:last-child {
  border-bottom: 0;
}
.dcim-page .service .question-list .item .fold {
  display: none;
}
.dcim-page .service .question-list .des {
  display: none;
  margin-top: 20px;
  padding-left: 20px;
  color: var(--des-color);
  font-size: 14px;
}
.dcim-page .service .question-list .active .expand {
  display: none;
}
.dcim-page .service .question-list .active .fold {
  display: block;
}
.dcim-page .service .question-list .active .des {
  display: block;
}
.dcim-page .service .question-list .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.dcim-page .service .question-list .icon img {
  width: 100%;
  height: 100%;
}
/* cloud  */
.cloud-page .function-list {
  padding-bottom: 72px;
}
.cloud-page .solution {
  padding-bottom: 40px;
  padding-bottom: clamp(20px, 2.08333333vw, 40px);
}
.cloud-page .solution .list {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cloud-page .solution .list .item {
  background: #fff;
}
.cloud-page .service {
  padding-bottom: 80px;
  padding-bottom: clamp(40px, 4.16666667vw, 80px);
  background: #f5f6f9;
}
.cloud-page .service .item {
  background: #ecf0f6;
  border-radius: 8px;
  box-sizing: border-box;
  line-height: normal;
  position: relative;
  overflow: hidden;
}
.cloud-page .service .item a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.cloud-page .service .item:hover img {
  transform: scale(1.2);
}
.cloud-page .service .item img {
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.cloud-page .service .item .text {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 16px;
  padding: clamp(8px, 0.83333333vw, 16px);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  text-align: center;
}
.cloud-page .service .item .text .name {
  font-weight: 600;
  margin-bottom: 8px;
}
.cloud-page .service .item .text .des {
  color: var(--des-color);
}
.cloud-page .partner {
  padding-bottom: 64px;
  padding-bottom: clamp(32px, 3.33333333vw, 64px);
  background-color: #f5f6f9;
}
.cloud-page .partner ul li {
  background: #fff;
}
.cloud-page .choose-area {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
  padding-bottom: clamp(20px, 2.08333333vw, 40px);
  gap: 32px;
  gap: clamp(16px, 1.66666667vw, 32px);
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 40px;
  margin-bottom: clamp(20px, 2.08333333vw, 40px);
}
.cloud-page .choose-area .choose-item {
  padding: 15px;
  padding: clamp(8px, 0.78125vw, 15px);
  width: 177px;
  width: clamp(140px, 9.21875vw, 177px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #f4f4f4;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  color: #7d859d;
  border-radius: 8px;
  box-sizing: border-box;
  transition: background 0.3s;
}
.cloud-page .choose-area .choose-item:hover,
.cloud-page .choose-area .choose-item.active {
  background: #397cfc;
  color: #fff;
}
/* new */
.container {
  position: relative;
  width: 530px;
  height: 500px;
  margin: 0 auto;
}
.container .gray,
.container .tag {
  width: 190px;
  height: 66px;
  background: #f5f6f9;
  position: absolute;
  right: -1px;
  top: -1px;
  border: 1px solid #e5e8ee;
  border-top: 0;
  border-right: 0;
  border-bottom-left-radius: 20px;
}
.container .gray::before,
.container .tag::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #f5f6f9;
  position: absolute;
  top: 0;
  left: -20px;
  background: radial-gradient(circle at 0 100%, transparent 18px, /* 透明背景 */ #e5e8ee 20px, #e5e8ee 20px, /* 边框颜色 */ #f5f6f9 19px, #f5f6f9 20px /* 圆弧颜色 */);
}
.container .gray::after,
.container .tag::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #f5f6f9;
  position: absolute;
  bottom: -20px;
  right: 0;
  background: radial-gradient(circle at 0% 100%, transparent 18px, /* 透明背景 */ #e5e8ee 20px, #e5e8ee 20px, /* 边框颜色 */ #f5f6f9 19px, #f5f6f9 20px /* 圆弧颜色 */);
}
.container .tag {
  background: linear-gradient(87deg, #e53935 1%, #ff9795 99%);
  border-radius: 16px;
  height: 60px;
  width: 181px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  top: 8px;
}
.container .tag::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 0 81%, transparent 10px, #e53935 -7px, #e53935 19px, #e53935 10px, #e53935 7px);
}
.container .tag::after {
  content: "";
  width: 0;
}
.container .item {
  width: 208px;
  height: 96px;
  position: absolute;
  right: 8px;
  top: 8px;
  background: linear-gradient(87deg, #e53935 1%, #ff9795 99%);
  border-radius: 16px;
  z-index: 1;
}
.com-irregular-box {
  background: #f5f6f9;
  padding-bottom: 70px;
  padding-bottom: clamp(35px, 3.64583333vw, 70px);
}
.com-irregular-box .list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.com-irregular-box .list.three-gap-40 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.com-irregular-box .item {
  flex: 1;
  min-width: 0;
  background: #fff;
  box-sizing: border-box;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 27px 24px;
}
.com-irregular-box .item .tag {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  color: #666;
  aspect-ratio: 205.5 / 83;
  height: 83px;
  height: clamp(60px, 4.32291667vw, 83px);
  background: url(../assets/img/cabinet/gray-tag.svg) no-repeat center center;
  background-size: 100% 100%;
  font-size: 20px;
}
.com-irregular-box .item .tag .text {
  display: block;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 70px;
  line-height: clamp(55px, 3.64583333vw, 70px);
  padding-left: 25px;
}
.com-irregular-box .item .tag.hot {
  background: url(../assets/img/cabinet/hot-tag.svg) no-repeat center center;
  background-size: 100% 100%;
}
.com-irregular-box .item .tag.recommend {
  background: url(../assets/img/cabinet/recommend-tag.svg) no-repeat center center;
  background-size: 100% 100%;
}
.com-irregular-box .item .tag.discount {
  background: url(../assets/img/cabinet/discount-tag.svg) no-repeat center center;
  background-size: 100% 100%;
}
.com-irregular-box .item .item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 37px;
  padding-right: 170px;
}
.com-irregular-box .item .item-header .server-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.com-irregular-box .item .item-header .server-icon .icon-inner {
  width: 30px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  position: relative;
}
.com-irregular-box .item .item-header .server-icon .icon-inner::before,
.com-irregular-box .item .item-header .server-icon .icon-inner::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.com-irregular-box .item .item-header .server-icon .icon-inner::before {
  top: 6px;
}
.com-irregular-box .item .item-header .server-icon .icon-inner::after {
  top: 12px;
}
.com-irregular-box .item .item-header .server-name {
  font-weight: 600;
  color: #485169;
}
.com-irregular-box .item .item-desc {
  line-height: 32px;
  line-height: clamp(24px, 1.66666667vw, 32px);
  font-weight: 400;
  color: #7d859d;
  margin-bottom: 40px;
}
.com-irregular-box .item .spec-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  font-size: clamp(16px, 1.04166667vw, 20px);
  row-gap: 40px;
  row-gap: clamp(20px, 2.08333333vw, 40px);
  column-gap: 68px;
  column-gap: clamp(34px, 3.54166667vw, 68px);
}
.com-irregular-box .item .spec-list li {
  display: flex;
  flex-direction: column;
  flex: 1;
  white-space: nowrap;
  min-width: calc(50% - 68px);
}
.com-irregular-box .item .spec-list li .label {
  color: #7d859d;
  margin-bottom: 24px;
  margin-bottom: clamp(20px, 1.25vw, 24px);
}
.com-irregular-box .item .spec-list li .value {
  color: #485169;
  font-weight: 600;
  border-radius: 8px;
  line-height: 54px;
  line-height: clamp(34px, 2.8125vw, 54px);
  height: 54px;
  height: clamp(34px, 2.8125vw, 54px);
  background: #f4f4f6;
  padding: 0 16px;
  padding: 0 clamp(8px, 0.83333333vw, 16px);
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.com-irregular-box .item .price-box {
  padding-top: 24px;
  padding-top: clamp(12px, 1.25vw, 24px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  padding-top: 20px;
  margin-top: 40px;
}
.com-irregular-box .item .price-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, transparent 0, transparent 4px, #e5e8ee 4px, #e5e8ee 8px);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0) 10%, #000000 25%, #000000 75%, rgba(0, 0, 0, 0) 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0) 10%, #000000 25%, #000000 75%, rgba(0, 0, 0, 0) 90%, transparent 100%);
}
.com-irregular-box .item .price-box .price {
  margin: 0;
  font-weight: 400;
  color: #424b63;
  display: flex;
  align-items: flex-end;
  line-height: 1;
  white-space: nowrap;
}
.com-irregular-box .item .price-box .price .now .num {
  color: #424b63;
  font-weight: 700;
  margin-left: 8px;
}
.com-irregular-box .item .price-box .price .now .unit {
  color: #7d859d;
}
.com-irregular-box .item .price-box .price .origin {
  font-size: 14px;
  color: rgba(125, 133, 157, 0.5);
  margin-left: 15px;
  text-decoration: line-through;
}
.com-irregular-box .item .price-box .btn {
  background: transparent;
  color: #427eee;
  transition: all 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  gap: 15px;
}
.com-irregular-box .item .price-box .btn img {
  width: 35px;
  height: 5px;
}
.provide-area {
  display: flex;
  line-height: 44px;
  line-height: clamp(30px, 2.29166667vw, 44px);
  margin-bottom: 40px;
  margin-bottom: clamp(20px, 2.08333333vw, 40px);
}
.provide-area .tit {
  color: #485169;
  font-size: 20px;
  font-weight: 600;
  margin-right: 24px;
}
.provide-area .list {
  flex: 1;
  flex-wrap: wrap;
  gap: 24px;
}
.provide-area .item {
  width: 233px;
  width: clamp(160px, 12.13541667vw, 233px);
  padding: 0 25px;
  display: block;
  text-align: center;
  border: 1px solid #7d859d;
  border-radius: 4px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* new end */
/* 机柜 */
.cabinet-page .advantage {
  position: relative;
}
.cabinet-page .advantage .bottom-box {
  padding-bottom: 64px;
  padding-bottom: clamp(32px, 3.33333333vw, 64px);
  position: relative;
}
.cabinet-page .advantage .point-list {
  position: relative;
  z-index: 2;
}
.cabinet-page .advantage .point-list li {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #d8deed;
  backdrop-filter: blur(10px);
  align-items: center;
  padding: 0;
}
.cabinet-page .advantage .point-list li a {
  display: flex;
  padding: 24px;
  padding: clamp(12px, 1.25vw, 24px);
  background: #f5f6f9;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.cabinet-page .advantage .point-list li img {
  width: 80px;
  width: clamp(60px, 4.16666667vw, 80px);
  height: 80px;
  height: clamp(60px, 4.16666667vw, 80px);
  margin-right: 24px;
  margin-right: clamp(16px, 1.25vw, 24px);
}
.cabinet-page .advantage .point-list li .tit {
  font-weight: 500;
  margin-bottom: 16px;
  margin-bottom: clamp(10px, 0.83333333vw, 16px);
}
.cabinet-page .advantage .point-list li .des {
  color: var(--des-color);
  font-size: 12px;
}
.cabinet-page .advantage .video-play {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.cabinet-page .solution {
  background: #f5f6f9;
}
.cabinet-page .provide-area {
  margin-bottom: 32px;
  margin-bottom: clamp(16px, 1.66666667vw, 32px);
}
.cabinet-page .provide-area .tit {
  width: 120px;
  text-align: right;
  white-space: nowrap;
}
.cabinet-page .provide-area .item {
  background: #fff;
  color: #7d859d;
  width: 280px;
  width: clamp(240px, 14.58333333vw, 280px);
}
.cabinet-page .provide-area.support .item {
  min-width: 120px;
  min-width: clamp(60px, 6.25vw, 120px);
}
.cabinet-page .partner {
  padding-bottom: 64px;
}
/* 机柜 end */
.concat-us {
  background: var(--base-color) url(../assets/img/point-bg.png) top center repeat-x;
  padding-bottom: 40px;
  padding-bottom: clamp(24px, 2.08333333vw, 40px);
  text-align: center;
}
.concat-us .inner-title {
  padding-top: 56px;
  padding-top: clamp(28px, 2.91666667vw, 56px);
  padding-bottom: 40px;
  padding-bottom: clamp(20px, 2.08333333vw, 40px);
}
.concat-us .form {
  padding: 56px 70px;
  padding: clamp(28px, 2.91666667vw, 56px) clamp(35px, 3.64583333vw, 70px);
  background: #fff;
  margin: 0 auto;
  display: inline-block;
  border-radius: 16px;
  box-sizing: border-box;
}
.concat-us .form .item {
  width: 100%;
  border-radius: 8px;
  box-sizing: border-box;
  border: 1px solid #d8deed;
  overflow: hidden;
}
.concat-us .form input,
.concat-us .form textarea {
  width: 100%;
  height: 72px;
  height: clamp(55px, 3.75vw, 72px);
  border: none;
  outline: none;
  color: #7d859d;
  font-size: 18px;
  font-size: clamp(14px, 0.9375vw, 18px);
  padding: 0 32px;
  padding: 0 clamp(16px, 1.66666667vw, 32px);
  box-sizing: border-box;
}
.concat-us .form textarea {
  padding: 24px 32px;
  padding: clamp(12px, 1.25vw, 24px) clamp(16px, 1.66666667vw, 32px);
  height: 128px;
  height: clamp(80px, 6.66666667vw, 128px);
  font-family: "PingFang SC";
  resize: none;
}
.concat-us .form .submit {
  width: 100%;
  border: none;
  text-align: center;
  line-height: 64px;
  line-height: clamp(50px, 3.33333333vw, 64px);
  font-size: 18px;
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 600;
  color: #fff;
  background: var(--base-color);
  cursor: pointer;
  border-radius: 4px;
}
.concat-us .form.form-horizontal .form-group {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 40px;
  margin-bottom: clamp(20px, 2.08333333vw, 40px);
}
.concat-us .form.form-horizontal .form-label {
  width: 120px;
  width: clamp(100px, 6.25vw, 120px);
  flex-shrink: 0;
  font-size: 16px;
  font-size: clamp(14px, 0.83333333vw, 16px);
  font-weight: 500;
  color: #485169;
  padding-top: 20px;
  padding-top: clamp(16px, 1.04166667vw, 20px);
  margin-bottom: 0;
}
.concat-us .form.form-horizontal .form-label:first-child {
  padding-top: 0;
  padding-top: clamp(0, 0vw, 0);
}
.concat-us .form.form-horizontal .form-content {
  width: 713px;
  width: clamp(600px, 37.13541667vw, 713px);
}
.concat-us .form .required {
  color: #ff4757;
  margin-right: 4px;
}
.concat-us .form .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  gap: clamp(12px, 0.83333333vw, 16px);
}
.concat-us .form .radio-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.concat-us .form .radio-item input[type="radio"] {
  margin-right: 8px;
  margin-right: clamp(6px, 0.41666667vw, 8px);
  width: 18px;
  height: 18px;
}
.concat-us .form .radio-item label {
  font-size: 14px;
  font-size: clamp(12px, 0.72916667vw, 14px);
  color: #485169;
  cursor: pointer;
  margin-bottom: 0;
}
.concat-us .form .contact-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  gap: clamp(8px, 0.625vw, 12px);
}
.concat-us .form .contact-type {
  flex-shrink: 0;
}
.concat-us .form .contact-type-radio {
  display: flex;
  align-items: center;
  gap: 24px;
  gap: clamp(16px, 1.25vw, 24px);
  flex-shrink: 0;
  position: absolute;
  right: clamp(16px, 1.66666667vw, 32px);
  top: 50%;
  transform: translateY(-50%);
}
.concat-us .form .contact-type-radio .radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #7d859d;
  font-size: 18px;
  font-size: clamp(14px, 0.9375vw, 18px);
}
.concat-us .form .contact-type-radio .radio-label input[type="radio"] {
  width: 18px;
  width: clamp(16px, 0.9375vw, 18px);
  height: 18px;
  height: clamp(16px, 0.9375vw, 18px);
  margin-right: 8px;
  margin-right: clamp(6px, 0.41666667vw, 8px);
  cursor: pointer;
}
.concat-us .form .contact-type-radio .radio-label span {
  user-select: none;
}
.concat-us .form .contact-select {
  height: 72px;
  height: clamp(55px, 3.75vw, 72px);
  padding: 0 clamp(20px, 1.25vw, 24px) 0 clamp(12px, 0.83333333vw, 16px);
  border: 1px solid #d8deed;
  border-radius: 8px;
  font-size: 16px;
  font-size: clamp(14px, 0.83333333vw, 16px);
  color: #7d859d;
  background: #fff;
  outline: none;
  min-width: 100px;
  min-width: clamp(80px, 5.20833333vw, 100px);
}
/* about-page */
.about-us .partner {
  margin-bottom: 64px;
  margin-bottom: clamp(32px, 3.33333333vw, 64px);
}
.about-us .company-intro {
  padding-bottom: 72px;
  padding-bottom: clamp(36px, 3.75vw, 72px);
}
.about-us .company-intro .content-wrapper {
  display: flex;
  gap: 115px;
  gap: clamp(50px, 5.98958333vw, 115px);
  position: relative;
}
.about-us .company-intro .content-wrapper::after {
  content: "";
  width: 80px;
  height: 15px;
  background: url(../assets/img/about_us/company-arrow.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.about-us .company-intro .text-content {
  font-family: PingFang SC;
  flex: 1;
  min-width: 0;
  padding-bottom: 20px;
  padding-top: 56px;
  padding-top: clamp(28px, 2.91666667vw, 56px);
}
.about-us .company-intro .text-content .company-name {
  font-weight: 600;
  color: var(--font-color);
  margin-bottom: 32px;
  margin-bottom: clamp(20px, 1.66666667vw, 32px);
  line-height: 1.4;
}
.about-us .company-intro .text-content .company-des p {
  color: #7d859d;
  line-height: 40px;
  line-height: clamp(30px, 2.08333333vw, 40px);
  margin-bottom: 24px;
  margin-bottom: clamp(16px, 1.25vw, 24px);
}
.about-us .company-intro .text-content .company-des p:last-child {
  margin-bottom: 0;
}
.about-us .company-intro .image-content {
  flex: 0 0 auto;
  max-width: clamp(400px, 42.29vw, 812px);
  border-radius: 16px;
  overflow: hidden;
}
.about-us .company-intro .image-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.about-us .rebate-process {
  background: #f5f6f9;
  padding-bottom: 80px;
  padding-bottom: clamp(40px, 4.16666667vw, 80px);
}
.about-us .rebate-process .content-wrapper {
  display: flex;
  align-items: center;
  gap: 86px;
  gap: clamp(43px, 4.47916667vw, 86px);
}
.about-us .rebate-process .illustration-content {
  flex: 0 0 auto;
  max-width: 688px;
  max-width: clamp(500px, 35.83333333vw, 688px);
  border-radius: 8px;
  overflow: hidden;
}
.about-us .rebate-process .illustration-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.about-us .rebate-process .steps-content {
  flex: 1;
  min-width: 0;
  padding-top: 36px;
  padding-top: clamp(18px, 1.875vw, 36px);
}
.about-us .rebate-process .steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  gap: clamp(10px, 0.9375vw, 18px);
  position: relative;
}
.about-us .rebate-process .step-item {
  position: relative;
  background: #fff;
  border-radius: 12px;
}
.about-us .rebate-process .step-item .step-top {
  line-height: 49px;
  border-bottom: 1px solid #eaeaea;
  padding: 0 24px;
  padding: 0 clamp(12px, 1.25vw, 24px);
  color: #427eee;
  font-weight: 600;
}
.about-us .rebate-process .step-item .step-content {
  padding: 24px;
  padding: clamp(20px, 1.25vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #485169;
  min-height: 250px;
  min-height: clamp(200px, 13.02083333vw, 250px);
  box-sizing: border-box;
}
.about-us .rebate-process .step-item .step-content::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 6px solid #f5f6f9;
  box-sizing: border-box;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff url(../assets/img/about_us/about-arrow.svg) no-repeat center center;
  background-size: 50% 50%;
}
.about-us .rebate-process .step-item .step-arrow {
  position: absolute;
  color: #397cfc;
  font-size: 28px;
  font-weight: bold;
  z-index: 2;
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(57, 124, 252, 0.2);
}
.about-us .rebate-process .step-item:nth-child(1) .step-content::after {
  right: -45px;
  top: 50%;
  margin-top: -10px;
}
.about-us .rebate-process .step-item:nth-child(2) .step-content::after {
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
.about-us .rebate-process .step-item:nth-child(3) {
  order: 4;
}
.about-us .rebate-process .step-item:nth-child(3) .step-content::after {
  left: -45px;
  top: 50%;
  margin-top: -10px;
  transform: rotate(180deg);
}
.about-us .rebate-process .step-item:nth-child(4) {
  order: 3;
}
.about-us .rebate-process .step-item:nth-child(4) .step-content::after {
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../assets/img/about_us/about-check.svg);
  background-size: 50% 50%;
}
.about-us .rebate-process .step-item .step-title {
  font-weight: 600;
  color: var(--font-color);
  margin-bottom: 16px;
  margin-bottom: clamp(12px, 0.83333333vw, 16px);
}
.about-us .rebate-process .step-item .step-desc {
  color: #7d859d;
  line-height: 1.6;
  margin: 0;
}
.about-us .customer-voice {
  padding-bottom: 72px;
  padding-bottom: clamp(36px, 3.75vw, 72px);
  font-family: PingFang SC;
}
.about-us .customer-voice .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  gap: clamp(16px, 1.66666667vw, 32px);
}
.about-us .customer-voice .testimonial-item {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  padding: clamp(18px, 1.875vw, 36px) clamp(20px, 2.08333333vw, 40px);
  border: 1px solid #d4d6de;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-us .customer-voice .testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
}
.about-us .customer-voice .testimonial-item .quote-text {
  color: #2b2b2b;
  font-size: 15px;
  font-size: clamp(14px, 0.78125vw, 15px);
  margin-bottom: 24px;
  margin-bottom: clamp(20px, 1.25vw, 24px);
  position: relative;
  font-weight: 500;
}
.about-us .customer-voice .testimonial-item .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-us .customer-voice .testimonial-item .avatar {
  width: 54px;
  width: clamp(40px, 2.8125vw, 54px);
  height: 54px;
  height: clamp(40px, 2.8125vw, 54px);
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}
.about-us .customer-voice .testimonial-item .author-details {
  flex: 1;
  min-width: 0;
}
.about-us .customer-voice .testimonial-item .author-details .author-name {
  font-weight: 600;
  color: var(--font-color);
  font-size: 16px;
  font-size: clamp(14px, 0.83333333vw, 16px);
  margin-bottom: 14px;
  margin-bottom: clamp(6px, 0.72916667vw, 14px);
}
.about-us .customer-voice .testimonial-item .author-details .author-title {
  color: #a2a2a2;
  font-size: 14px;
  font-size: clamp(12px, 0.72916667vw, 14px);
  margin: 0;
}
.about-us .consultation-cards {
  display: grid;
  margin-bottom: 44px;
  margin-bottom: clamp(22px, 2.29166667vw, 44px);
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  gap: clamp(16px, 1.66666667vw, 32px);
}
.about-us .consultation-cards .consultation-item {
  overflow: hidden;
  flex: 1;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e8ee;
  padding: 40px;
  padding: clamp(24px, 2.08333333vw, 40px);
  min-height: 297px;
  min-height: clamp(200px, 15.46875vw, 297px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
  box-shadow: 0px 12px 18px 0px rgba(152, 152, 152, 0.15);
}
.about-us .consultation-cards .consultation-item .consultation-content {
  flex: 1;
  min-width: 0;
  z-index: 2;
}
.about-us .consultation-cards .consultation-item .consultation-content .consultation-title {
  font-weight: 500;
  color: var(--font-color);
  margin-bottom: 24px;
  margin-bottom: clamp(12px, 1.25vw, 24px);
}
.about-us .consultation-cards .consultation-item .consultation-content .consultation-time {
  color: #a2a2a2;
  margin-bottom: 40px;
  margin-bottom: clamp(20px, 2.08333333vw, 40px);
}
.about-us .consultation-cards .consultation-item .consultation-content .consultation-btn {
  display: inline-block;
  line-height: 46px;
  line-height: clamp(30px, 2.39583333vw, 46px);
  background: var(--base-color);
  color: #fff;
  border-radius: 88px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 0 44px;
  padding: 0 clamp(22px, 2.29166667vw, 44px);
}
.about-us .consultation-cards .consultation-item .consultation-image {
  flex-shrink: 0;
  width: 350px;
  width: clamp(240px, 18.22916667vw, 350px);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
}
.about-us .consultation-cards .consultation-item .consultation-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
  position: relative;
}
.tooltip {
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  max-width: 300px;
  font-size: 14px;
  line-height: 1.3;
  pointer-events: none;
  user-select: text;
  z-index: 9999;
  white-space: normal;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: none;
}
/* 箭头样式 - 默认气泡在上方，箭头在底部 */
.tooltip.arrow-down::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}
/* 气泡在下方时，箭头在顶部 */
.tooltip.arrow-up::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;
}
/**
 * 适配
 */
@media screen and (max-width: 1300px) {
  .com-irregular-box .list.three-gap-40 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .domain-page .discount .list li {
    width: 50%;
  }
  .cloud-page .solution .com-price-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .dcim-page .case .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .dcim-page .service .content {
    flex-direction: column;
  }
  .dcim-page .service .question,
  .dcim-page .service .protocol {
    min-height: auto;
  }
  .dcim-page .service .protocol {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .about-us .consultation-cards {
    flex-direction: column;
  }
  .about-us .consultation-cards .consultation-item {
    min-width: 100%;
    flex-direction: column;
    text-align: center;
  }
  .about-us .consultation-cards .consultation-item .consultation-content {
    width: 100%;
  }
  .about-us .consultation-cards .consultation-item .consultation-image {
    margin-top: 20px;
    width: 160px;
    width: clamp(120px, 8.33333333vw, 160px);
    height: 160px;
    height: clamp(120px, 8.33333333vw, 160px);
  }
  .about-us .company-intro .content-wrapper {
    flex-direction: column;
  }
  .about-us .company-intro .image-content {
    width: 100%;
    max-width: 100%;
    height: 400px;
    height: clamp(200px, 20.83333333vw, 400px);
  }
  .about-us .rebate-process .content-wrapper {
    flex-direction: column;
  }
  .about-us .rebate-process .illustration-content {
    width: 100%;
    max-width: 100%;
    height: 400px;
    height: clamp(200px, 20.83333333vw, 400px);
  }
  .about-us .rebate-process .steps-grid {
    grid-template-columns: 1fr;
  }
  .about-us .rebate-process .steps-grid .step-item .step-arrow {
    display: none !important;
  }
  .about-us .rebate-process .steps-grid .step-item:not(:last-child)::after {
    content: "↓";
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    color: #397cfc;
    font-size: 24px;
    font-weight: bold;
  }
  .about-us .customer-voice .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dcim-page .solution .package-header,
  .dcim-page .solution .package-item {
    padding: 0 16px;
  }
  .dcim-page .solution .col {
    padding: 0 8px;
    font-size: 14px;
  }
  .dcim-page .solution .package-list {
    display: none;
  }
  .dcim-page .solution .package-list.mobile {
    display: block;
  }
  .provide-area {
    flex-direction: column;
  }
  .provide-area .list {
    margin-top: 20px;
  }
  .provide-area .item {
    min-width: calc(50% - 20px);
  }
  .com-irregular-box .list.three-gap-40 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .domain-page .search-domain input {
    flex: 1;
    width: auto;
  }
  .domain-page .build-web .content {
    grid-template-columns: repeat(1, 1fr);
  }
  .domain-page .guide .img {
    height: auto;
  }
  .cloud-page .solution {
    padding-bottom: 30px;
  }
  .cloud-page .choose-area .choose-item {
    width: calc(50% - 10px);
  }
  .dcim-page .case .list {
    grid-template-columns: repeat(1, 1fr);
  }
  .dcim-page .case .item img {
    height: 240px;
  }
  .dcim-page .solution .package-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dcim-page .solution .package-header,
  .dcim-page .solution .package-item {
    padding: 0 12px;
  }
  .dcim-page .solution .col {
    padding: 0 6px;
    font-size: 13px;
  }
  .dcim-page .solution .col.price .num {
    font-size: 18px;
  }
  .dcim-page .solution .buy-btn {
    padding: 6px 16px;
    font-size: 13px;
  }
  .dcim-page .solution .hot-tag {
    font-size: 11px;
    padding: 2px 6px;
  }
  .cabinet-page .provide-area .item {
    width: calc(50% - 12px);
    min-width: auto;
  }
  .concat-us .form {
    width: 100%;
    padding: 15px 20px;
  }
  .concat-us .form .item {
    width: 100%;
  }
  .concat-us .form input,
  .concat-us .form textarea {
    height: 40px;
  }
  .concat-us .form textarea {
    height: 80px;
  }
  .concat-us .form .submit {
    line-height: 44px;
  }
  .concat-us .form .radio-group {
    gap: 12px;
  }
  .concat-us .form .radio-item input[type="radio"] {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
  .concat-us .form .contact-group {
    flex-direction: column;
    gap: 8px;
  }
  .concat-us .form .contact-type {
    width: 100%;
  }
  .concat-us .form .contact-type-radio {
    gap: 16px;
  }
  .concat-us .form .contact-type-radio .radio-label {
    font-size: 14px;
  }
  .concat-us .form .contact-type-radio .radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
  .concat-us .form .contact-select {
    width: 100%;
    height: 40px;
    min-width: auto;
    padding: 0 16px 0 12px;
  }
  .concat-us .form.form-horizontal {
    max-width: 100%;
  }
  .concat-us .form.form-horizontal .form-group {
    flex-direction: column;
    align-items: stretch;
  }
  .concat-us .form.form-horizontal .form-label {
    width: 100%;
    padding-top: 0;
    margin-bottom: 8px;
  }
  .concat-us .form.form-horizontal .form-content {
    width: 100%;
    margin-left: 0;
  }
  .about-us .consultation-cards,
  .about-us .customer-voice .testimonial-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-us .rebate-process .step-item::after {
    display: none !important;
  }
  .about-us .rebate-process .step-item .step-content::after {
    display: none !important;
  }
  .about-us .rebate-process .step-item:nth-child(3) {
    order: 3;
  }
}
