




.sol-banner {
  position: relative;
  height: 522px;
  overflow: hidden;
  
  background: linear-gradient(180deg, #deeaff 0%, #ffffff 100%);
}


.sol-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/solution/banner-bg.jpg?t=20260720160142');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}


.sol-banner__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 20px; 
}


.sol-banner__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  text-align: center;
}


.sol-banner__title {
  font-family: 'Alimama ShuHeiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary); 
  letter-spacing: 0.5px;
  white-space: nowrap;
}


.sol-banner__subtitle {
  font-family: 'Alimama ShuHeiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  color: #1d222c;
  letter-spacing: 0.5px;
  white-space: nowrap;
}


.sol-banner__cta {
  
  flex-shrink: 0;
}


.sol-banner__arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}



.sol-tabs {
  background: #e3efff;
  height: 60px;
}


.sol-tabs .container {
  height: 100%;
  display: flex;
  align-items: center;
}


.sol-tabs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  height: 100%;
  
  justify-content: center;
  width: 100%;
  gap: 0;
  overflow-x: auto;
  
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sol-tabs__list::-webkit-scrollbar { display: none; }


.sol-tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  padding: 10px 80px;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'PingFang SC', 'PingFangSC', -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-secondary); 
  border-bottom: 3px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}


.sol-tabs__item--active {
  background: #ffffff;
  color: var(--color-primary);
  border-bottom-color: rgba(2, 100, 253, 0.8);
}


.sol-tabs__item:not(.sol-tabs__item--active):hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--color-primary);
}


.sol-tabs__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url('../assets/icons/tab-telecom.png?t=20260720160142') center / contain no-repeat;
}


.sol-tabs__item--active .sol-tabs__icon,
.sol-tabs__item:hover .sol-tabs__icon {
  background-image: url('../assets/icons/tab-telecom--active.png?t=20260720160142');
}



.sol-pain {
  background: #ffffff;
  padding: 80px 0 100px;
  scroll-margin-top: 60px; 
}


.sol-pain__title {
  font-family: 'Alibaba PuHuiTi 3.0', 'Alimama ShuHeiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 54px;
  color: #000000;
  text-align: center;
  margin: 0 0 60px;
  white-space: nowrap;
}


.sol-pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


.sol-pain__card {
  position: relative;
  background: #f5f9ff;
  border-radius: 20px;
  padding: 52px 28px 32px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}


.sol-pain__card--highlight {
  box-shadow: 0px 2px 20px 0px rgba(137, 177, 235, 0.35);
}

.sol-pain__card:hover {
  box-shadow: 0px 4px 24px 0px rgba(137, 177, 235, 0.5);
}


.sol-pain__icon {
  position: absolute;
  top: -24px;
  left: 28px;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
}


.sol-pain__card-title {
  font-family: 'Alimama ShuHeiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #2c3034;
  margin: 0;
}


.sol-pain__card-desc {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
  color: #5a5f6c;
  margin: 0;
}




@media (max-width: 1279px) {
  .sol-banner__title {
    font-size: 48px;
  }
  .sol-banner__subtitle {
    font-size: 34px;
  }

  
  .sol-pain__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .sol-pain__title {
    font-size: 38px;
    line-height: 48px;
  }
}


@media (max-width: 767px) {
  .sol-banner {
    height: auto;
    min-height: 320px;
    padding: 60px 0 48px;
  }

  .sol-banner__inner {
    gap: 28px;
    padding-top: 0;
  }

  .sol-banner__text {
    gap: 20px;
  }

  .sol-banner__title {
    font-size: 32px;
    letter-spacing: 0;
  }

  .sol-banner__subtitle {
    font-size: 18px;
    white-space: normal;
    max-width: 320px;
    line-height: 1.6;
  }

  
  .sol-banner__cta {
    font-size: 16px;
    padding: 12px 28px 12px 36px;
    border-radius: 14px;
  }

  .sol-banner__arrow {
    width: 14px;
    height: 14px;
  }

  
  .sol-tabs__item {
    padding: 10px 32px;
    font-size: 16px;
  }

  
  .sol-pain {
    padding: 48px 0 60px;
  }

  .sol-pain__title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 32px;
    white-space: normal;
  }

  .sol-pain__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sol-pain__card-desc {
    font-size: 16px;
  }
}



.sol-flow {
  position: relative;
  
  background-color: #f2f7ff;
  background-image: url('../assets/images/solution/flow-bg.jpg?t=20260720160142');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 120px;
  overflow: hidden;
  scroll-margin-top: 60px;
}


.sol-flow__inner {
  position: relative;
  z-index: 1;
}


.sol-flow__header {
  text-align: center;
  margin-bottom: 60px;
}


.sol-flow__section-title {
  font-family: 'Alibaba PuHuiTi 3.0', 'Alimama ShuHeiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 54px;
  color: #000000;
  margin: 0 0 20px;
  white-space: nowrap;
}


.sol-flow__subtitle-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


.sol-flow__flow-word {
  font-family: 'Alibaba PuHuiTi 3.0', 'Alimama ShuHeiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 60px;
  
  background: linear-gradient(135.5deg, #0264fd 38.5%, #0b91ff 88.2%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.sol-flow__model-label {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  color: #2c3034;
  white-space: nowrap;
}



.sol-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start; 
}


.sol-flow__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  
  background: #f7faff;
  border: 2px solid #ffffff;
  border-radius: 20px;
  box-shadow: 0px 2px 24px 0px rgba(197, 219, 255, 0.25);
  padding: 26px 20px 26px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}


.sol-flow__col--accent {
  border-color: #0264fd;
}


.sol-flow__col:hover {
  border-color: #0264fd;
  box-shadow: 0px 6px 28px 0px rgba(2, 100, 253, 0.2);
  transform: translateY(-4px);
}


.sol-flow__col-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.sol-flow__col-title {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 44px;
  color: #000000;
  margin: 0;
  white-space: nowrap;
}


.sol-flow__col-initial {
  font-size: 35px;
  color: #0066ff;
  line-height: 44px;
}


.sol-flow__col-tag {
  display: inline-block;
  width: fit-content;
  padding: 2px 14px;
  background: linear-gradient(90deg, #dcfcfa 0%, #daf2ff 100%);
  font-family: 'PingFang SC', -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #125dd2;
  white-space: nowrap;
}


.sol-flow__card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 26px;
}


.sol-flow__card--white {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.sol-flow__card--blue {
  background: linear-gradient(180deg, #e1eefe 0%, #ffffff 100%);
  border: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  
  min-height: 196px;
}

.sol-flow__card--blue-tall {
  min-height: 256px;
}


.sol-flow__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 94px;
  height: 98px;
  object-fit: contain;
  
  transform: rotate(12deg);
  pointer-events: none;
}




.sol-flow__kv-row {
  display: flex;
  align-items: center;
  gap: 6px;
}


.sol-flow__avatar {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
}


.sol-flow__kv-title {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  color: #2c3034;
  margin: 0;
  white-space: nowrap;
}


.sol-flow__kv-sub {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #5a5f6c;
  margin: 0;
  white-space: nowrap;
}


.sol-flow__card-title {
  position: relative;
  z-index: 1; 
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 44px;
  color: #000000;
  margin: 0;
  white-space: nowrap;
}


.sol-flow__card-body {
  position: relative;
  z-index: 1;
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  color: #5a5f6c;
  margin: 0;
  
  white-space: normal;
  word-break: break-all;
}


@media (max-width: 1279px) {
  .sol-flow {
    padding: 80px 0 100px;
  }

  .sol-flow__section-title {
    font-size: 38px;
    line-height: 48px;
  }

  .sol-flow__flow-word {
    font-size: 56px;
    line-height: 50px;
  }

  .sol-flow__model-label {
    font-size: 24px;
  }

  .sol-flow__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sol-flow__col-title {
    font-size: 24px;
    white-space: normal;
  }
}


@media (max-width: 767px) {
  .sol-flow {
    padding: 48px 0 60px;
  }

  .sol-flow__section-title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 14px;
    white-space: normal;
  }

  .sol-flow__subtitle-row {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .sol-flow__flow-word {
    font-size: 48px;
    line-height: 48px;
  }

  .sol-flow__model-label {
    font-size: 18px;
    white-space: normal;
    text-align: center;
  }

  .sol-flow__grid {
    grid-template-columns: 1fr;
  }

  .sol-flow__col-title {
    font-size: 22px;
    white-space: normal;
  }

  .sol-flow__kv-title {
    font-size: 18px;
    white-space: normal;
  }

  .sol-flow__kv-sub {
    font-size: 16px;
    white-space: normal;
  }

  .sol-flow__card-title {
    font-size: 18px;
  }

  .sol-flow__card-body {
    font-size: 16px;
    line-height: 26px;
  }
}



.sol-value {
  background: #ffffff;
  padding: 100px 0 120px;
  scroll-margin-top: 60px;
}


.sol-value__header {
  text-align: center;
  margin-bottom: 60px;
}


.sol-value__title {
  font-family: 'Alibaba PuHuiTi 3.0', 'Alimama ShuHeiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 54px;
  color: #000000;
  margin: 0 0 20px;
}


.sol-value__subtitle {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  color: #5a5f6c;
  margin: 0;
}


.sol-value__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.sol-value__card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #f5f9ff;
  border-radius: 20px;
  height: 208px;
  overflow: hidden;
  
  border: 1px solid transparent;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.sol-value__card:hover {
  border-color: #0264fd;
  box-shadow: 0px 4px 24px 0px rgba(137, 177, 235, 0.5);
}


.sol-value__card--accent {
  border-color: #0264fd;
}


.sol-value__text {
  flex: 1 1 0;
  min-width: 0;
  padding: 40px 20px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
}


.sol-value__card-title {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 44px;
  color: #2c3034;
  margin: 0;
  white-space: nowrap;
}


.sol-value__card-desc {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  color: #2c3034;
  margin: 0;
  white-space: normal;
  word-break: break-all;
}


.sol-value__deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  flex-shrink: 0;
}


@media (max-width: 1279px) {
  .sol-value {
    padding: 80px 0 100px;
  }

  .sol-value__title {
    font-size: 38px;
    line-height: 48px;
  }

  .sol-value__subtitle {
    font-size: 20px;
  }

  
  .sol-value__card {
    height: 188px;
  }

  .sol-value__text {
    padding: 28px 16px 28px 28px;
  }

  .sol-value__card-title {
    font-size: 22px;
    line-height: 36px;
  }

  .sol-value__card-desc {
    font-size: 15px;
    line-height: 28px;
  }

  .sol-value__deco {
    width: 170px;
  }
}


@media (max-width: 767px) {
  .sol-value {
    padding: 48px 0 60px;
  }

  .sol-value__title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 12px;
  }

  .sol-value__subtitle {
    font-size: 16px;
    line-height: 32px;
  }

  .sol-value__header {
    margin-bottom: 32px;
  }

  
  .sol-value__grid {
    grid-template-columns: 1fr;
  }

  
  .sol-value__card {
    height: auto;
    min-height: 120px;
  }

  .sol-value__text {
    padding: 24px 100px 24px 24px; 
  }

  .sol-value__card-title {
    font-size: 18px;
    line-height: 30px;
    white-space: normal;
  }

  .sol-value__card-desc {
    font-size: 14px;
    line-height: 24px;
  }

  .sol-value__deco {
    width: 100px;
    right: -4px;
  }
}



.sol-cases {
  padding: 100px 0 120px;
  scroll-margin-top: 60px;
}


.sol-cases__header {
  text-align: center;
  margin-bottom: 60px;
}


.sol-cases__title {
  font-family: 'Alibaba PuHuiTi 3.0', 'Alimama ShuHeiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 54px;
  color: #000000;
  margin: 0 0 20px;
  white-space: nowrap;
}


.sol-cases__subtitle {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  color: #5a5f6c;
  margin: 0;
}



.cases-swiper {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
}


.cases-swiper::before,
.cases-swiper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 22%, 300px);
  z-index: 2;
  pointer-events: none;
}

.cases-swiper::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.cases-swiper::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}


.cases-card {
  
  background: linear-gradient(180deg, #e8f2ff 0%, #f0f6fe 35%, #f4f8fe 100%);
  border-radius: 20px;
  height: 386px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 30px 0;
  box-sizing: border-box;
}


.cases-card__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.cases-card__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.cases-card__logo-wrap {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
  box-sizing: border-box;
}


.cases-card__logo {
  width: 40px;
  height: 38px;
  object-fit: contain;
}


.cases-card__name {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 44px;
  color: #2c3034;
  white-space: nowrap;
}


.cases-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}


.cases-card__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #8a90a1;
  letter-spacing: 0.5px;
  white-space: nowrap;
}


.cases-card__tag-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}



.cases-card__metrics {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #ffffff;
  border-radius: 16px;
  padding: 20px 30px;
  margin: 0 30px 30px;
  
  box-shadow: 0 8px 30px rgba(185, 217, 255, 0.5);
}


.cases-card__metrics:not(.cases-card__metrics--two) {
  gap: 0;
}


.cases-card__metric {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}


.cases-card__metric-label {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  color: #2c3034;
  white-space: nowrap;
}


.cases-card__metric-value {
  font-family: 'Alibaba PuHuiTi 3.0', 'Alimama ShuHeiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;
  color: #000000;
  white-space: nowrap;
}


.cases-card__metrics--two .cases-card__metric {
  flex: 1 1 0;
}


.cases-swiper .swiper-pagination {
  display: none;
}


@media (max-width: 1279px) {
  .sol-cases {
    padding: 80px 0 100px;
  }

  .sol-cases__title {
    font-size: 38px;
    line-height: 48px;
  }

  .sol-cases__subtitle {
    font-size: 20px;
  }

  .cases-card__name {
    font-size: 22px;
    line-height: 36px;
  }

  .cases-card__metric-label {
    font-size: 14px;
    line-height: 28px;
    white-space: normal;
    word-break: break-all;
  }

  .cases-card__metric-value {
    font-size: 22px;
    line-height: 34px;
  }
}


@media (max-width: 767px) {
  .sol-cases {
    padding: 48px 0 60px;
  }

  .sol-cases__title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 12px;
    white-space: normal;
  }

  .sol-cases__subtitle {
    font-size: 16px;
    line-height: 30px;
  }

  .sol-cases__header {
    margin-bottom: 32px;
  }

  .cases-card {
    height: 360px;
  }

  .cases-card__metrics {
    margin: 0 20px 20px;
    padding: 16px 20px;
  }

  .cases-card__metric-label {
    font-size: 13px;
    line-height: 24px;
    white-space: normal;
    word-break: break-all;
  }

  .cases-card__metric-value {
    font-size: 20px;
    line-height: 30px;
  }
}



.sol-honors {
  background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
  padding: 100px 0 120px;
  scroll-margin-top: 60px;
}


.sol-honors__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}


.sol-honors__deco {
  width: 35px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
}


.sol-honors__title {
  font-family: 'Alibaba PuHuiTi 3.0', 'Alimama ShuHeiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 54px;
  color: #000000;
  margin: 0;
  white-space: nowrap;
}


.sol-honors__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}


.sol-honors__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}


.sol-honors__card {
  width: 100%;
  aspect-ratio: 225 / 300;  
  background: linear-gradient(180deg, #f4f8fe 0%, #f0f6fe 64.79%, #e8f2ff 100%);
  border: 1px solid #e0ecff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.sol-honors__img-wrap {
  width: 170px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.sol-honors__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.sol-honors__label {
  font-family: 'PingFang SC', -apple-system, 'Microsoft YaHei', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 44px;
  color: #2c3034;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}


.sol-honors__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}


.sol-honors__cta {
  padding: 18px 50px;
  border-radius: 20px;
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  white-space: nowrap;
  border-radius: 20px;
  background: var(--color-primary); 
  box-shadow: 0 7px 30px 0 rgba(183, 199, 238, 0.80);
  color: #ffffff;
}


@media (max-width: 1279px) {
  .sol-honors {
    padding: 80px 0 100px;
  }

  .sol-honors__title {
    font-size: 38px;
    line-height: 48px;
  }

  .sol-honors__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .sol-honors__img-wrap {
    width: 140px;
    height: 98px;
  }

  .sol-honors__label {
    font-size: 16px;
    line-height: 36px;
  }

  .sol-honors__cta {
    font-size: 22px;
    padding: 16px 40px;
  }
}


@media (max-width: 767px) {
  .sol-honors {
    padding: 48px 0 60px;
  }

  .sol-honors__header {
    gap: 12px;
    margin-bottom: 36px;
  }

  .sol-honors__deco {
    width: 24px;
    height: 40px;
  }

  .sol-honors__title {
    font-size: 26px;
    line-height: 40px;
  }

  .sol-honors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sol-honors__img-wrap {
    width: 110px;
    height: 80px;
  }

  .sol-honors__label {
    font-size: 14px;
    line-height: 30px;
  }

  .sol-honors__cta {
    font-size: 18px;
    padding: 14px 28px;
    border-radius: 14px;
    white-space: normal;
    text-align: center;
  }

  .sol-honors__cta-wrap {
    margin-top: 40px;
  }
}
