*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
  color: #222;
  background-color: #000000;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  font: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #1E1E1E;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-inner {
  /* max-width: 1400px; */
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  height: 60px;
  width: 196px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.logo-subtitle {
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.3s ease;
  width: 120px;
}

.nav-item.active,
.nav-item:hover {
  color: #1AA1E6;
}

.kz-tab {
  position: relative;
  p {
    font-size: 14px;
    position: absolute;
    bottom: 25px;
    color: #fff;
  }
  img {
    margin-top: 20px;
  }
  .item {
    height: 130px;
    display: flex;
    justify-content: center;
  }
}

.download-card {
  display: flex;
  justify-content: center;
}

/* .nav-item.active::after,
.nav-item:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #1677ff;
  border-radius: 999px;
} */

.nav-item-special {
  color: #ff4d4f !important;
}

.nav-item-special:hover {
  color: #ff7875 !important;
}

.nav-item-special.active::after,
.nav-item-special:hover::after {
  background: #ff4d4f;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-selector {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.lang-btn {
  padding: 6px 14px;
  font-size: 13px;
  background: #e8e8e8;
  color: #666;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn:last-child {
  border-right: none;
}

.lang-btn-active {
  background: #1AA1E6;
  color: #fff;
}

.lang-btn:not(.lang-btn-active):hover {
  background: #d9d9d9;
  color: #333;
}

.search-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #1677ff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.search-btn img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(95%) saturate(2476%) hue-rotate(200deg) brightness(102%) contrast(101%);
}

.search-btn:hover {
  background: rgba(22, 119, 255, 0.1);
  border-color: #45a5ff;
}

.btn-primary {
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1677ff, #45a5ff);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22, 119, 255, 0.45);
  opacity: 0.95;
}

.btn-secondary {
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.banner {
  position: relative;
  margin-top: 80px;
}

.banner-inner {
  position: relative;
  overflow: hidden;
  /* 高度自适应：根据宽度按比例计算高度，避免变形 */
  aspect-ratio: 16 / 5; /* 宽高比，可按设计稿调整 */
  height: auto;
  max-height: 70vh; /* 限制最大高度，随视窗变化 */
}

.banner-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 填充容器且不拉伸，必要时裁剪 */
}

.banner-slide.active {
  opacity: 1;
}

.banner-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
  color: #fff;
}

.banner-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.banner-subtitle {
  font-size: 14px;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 24px;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.banner-actions {
  display: flex;
  gap: 12px;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  width: 200px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-slide {
  cursor: pointer;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  z-index: 2;
  transition: background 0.2s ease, transform 0.15s ease;
  padding-bottom: 5px;
}

.banner-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) scale(1.05);
}

.banner-arrow-left {
  left: 24px;
}

.banner-arrow-right {
  right: 24px;
}

/* 中间主体部分 */
.main-content {
  background: #000000;
  color: #fff;
  padding: 40px 0;
  width: 1280px;
  margin: 0 auto;
}

.custom-h2 {
  width: 1280px;
  margin-top: 20px;
  text-align: center;
  img {
    width: 100%;
  }
}

.custom-h3 {
  background: url('../images/custome-h1.png') no-repeat;
  background-size: 100% 100%;
  background-position: center;
  margin: 20px 0 40px;
  padding: 20px;
  .h3-tel {
    height: 40px;
    display: flex;
    align-items: center;

  }
  .h3-1 {
    width: 19px;
    height: 19px;
    background: #1AA1E6;
    display: inline-block;
    margin-right: 10px;
  }
  table {
    width: 100%;
    border: 2px solid #1AA1E6;
    border-collapse: collapse;
    thead {
      tr {

        td {
          padding: 10px;
          height: 60px;
          border: 2px solid #1AA1E6;
          font-size: 14px;
        }
      }
    }
    tbody {
      tr {
        td {
          padding: 10px;
          height: 60px;
          border: 2px solid #1AA1E6;
          color: #9E9FA2;
          font-size: 14px;
          line-height: 1.7;
        }
      }
    }
  }

}

.solution-tool-content {
  display: flex;
  align-items: center;
  margin: 20px 0;
  gap: 30px;
  background-image: url('../images/solution-314.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 80px;
  border-radius: 8px;

  .tool-section-title {
    min-width: 167px;
  }
  
  .tool-item-btn {
    background-image: url('../images/btn-solution.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 48.5%;
    height: 50px;
  }
  .btn-2 {
    width: 23%;
  }
}

.kerner-bypass img {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: 20px;
}

.bypass-item {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  img {
    margin-bottom: 20px;
  }
}




/* 为什么选择玄武部分 */
.why-choose-section {
  max-width: 1280px;
  margin: 0 auto;
  
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  background-image: url('../images/title-bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding-left: 75px;
  height: 67px;
  line-height: 55px;
}

.tabs {
  width: 1280px;
  /* margin: 0 auto 30px; */
  display: flex;
  justify-content: space-between;
  gap: 0;
  align-items: center;
  /* padding-left: 75px; */
}

.tab-btn-wrapper {
  display: inline-block;
  width: 33.33%;
  position: relative;
  z-index: 1;
}

.tab-btn-wrapper:not(:first-child):not(:last-child) .tab-btn {
  border-radius: 0;
}

.tab-btn {
  /* padding: 12px 32px; */
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-image: url('../images/rg5835.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
  width: 100%;
  z-index: 999;
  padding: 0 70px 0 30px;
}

.tab-btn.active {
  /* background: #1AA1E6; */
  color: #fff;
  z-index: 1;
  position: relative;
}

.tab-btn:hover:not(.active) {
  background-image: url('../images/rg5835.png');
  background-size: 100% 100%;
  color: #fff;
}

.tab-btn:focus {
  outline: none;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-description {
  text-align: center;
  font-size: 14px;
  color: #ffffff;

  line-height: 1.6;
  background-image: url('../images/tab-m1.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 50px;
  line-height: 50px;
  margin-bottom: 20px;
}

.table-container {
  overflow-x: auto;
}

/* 工具内容部分 */
.tools-content {
  max-width: 1280px;
  margin: 0 auto;

}

.tool-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 30px;
  background-color: #1A465A;
  height: 80px;
  border-radius: 8px;
}

.tool-section-title {
  min-width: 250px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: right;
  flex-shrink: 0;
}

.tool-items {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  padding-right: 40px;
  justify-content: space-between;
}

.tool-item-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: url('../images/btn-bg.png') no-repeat center center;
  border-radius: 8px;
  /* transition: all 0.3s ease; */
  /* white-space: nowrap; */
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
  width: 23%;
}
.tool-item-text {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: url('../images/btn-bg2.png') no-repeat center center;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  cursor: pointer;
}

/* .tool-item-btn:hover {
  background: rgba(26, 161, 230, 0.25);
  border-color: rgba(26, 161, 230, 0.5);
  color: #fff;
} */

/* .tool-item-btn-wide {
  min-width: 200px;
} */

.control-content {
  width: 1280px;
  img {
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .tool-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .tool-section-title {
    min-width: auto;
  }

  .tool-items {
    width: 100%;
  }
}

.compatibility-table {
  width: 100%;
  border-collapse: collapse;
  /* background: rgba(26, 161, 230, 0.1); */
  border: 2px solid #1AA1E6;
  font-size: 14px;
  .hd-buy {
    color: #1AA1E6;
    font-weight: 600;
    background-color: #000;
  }
  .hd-td {
    color: #1AA1E6;
    font-weight: 600;
    width: 150px;
  }
}

.compatibility-table th,
.compatibility-table td {
  padding: 9.5px 3px;
  text-align: center;
  border: 2px solid #1AA1E6;
  color: #fff;
  
}
.left-align {
  text-align: left!important;
  color: #fff!important;
}

.interface-class {
  color: #1AA1E6!important;
  font-weight: 700;
}

.compatibility-table thead th {
  /* background: rgba(26, 161, 230, 0.2); */
  font-weight: 400;
  color: #fff;
  padding: 10px;
}

.compatibility-table tbody td:nth-child(1n) {
  width: 89px;
}

.compatibility-table tbody tr:nth-child(2n) {
  background: #005A83;
}



.compatibility-table thead tr:nth-child(2n) {
  background: #005A83;
}

.compatibility-table tbody td {
  background: rgba(255, 255, 255, 0.02);
}

.compatibility-table tbody tr:hover td {
  background: rgba(26, 161, 230, 0.15);
}


.product-table {
  width: 100%;
  border-collapse: collapse;
  /* background: rgba(26, 161, 230, 0.1); */
  border: 2px solid #1AA1E6;
  font-size: 11px;
  .hd-buy {
    color: #1AA1E6;
    font-weight: 600;
    background-color: #000;
  }
  .hd-td {
    color: #1AA1E6;
    font-weight: 600;
    width: 100px;
  }
}

.product-table th,
.product-table td {
  padding: 14.5px 8px;
  text-align: center;
  border: 2px solid #1AA1E6;
  color: #fff;
  font-size: 14px;
}

.product-table thead th {
  /* background: rgba(26, 161, 230, 0.2); */
  font-weight: 400;
  color: #fff;
  padding: 10px;
}

/* .product-table tbody tr:nth-child(2n) {
  background: #005A83;
} */

.product-table tbody td:nth-child(1) {
  color: #fff;
  font-weight: 700;
}
.product-table tbody td:nth-child(2) {
  color: #1AA1E6;
}

.compatibility-table tbody td {
  color: #fff;

}


/* .compatibility-table tbody td:nth-child(2) {
  color: #1AA1E6;
} */



.product-table .hero-tr {
  background: #005A83;
}

.product-table tbody td {
  background: rgba(255, 255, 255, 0.02);
}

.product-table tbody tr:hover td {
  background: rgba(26, 161, 230, 0.15);
}


/* 解决方案部分 */
.solutions-section {
  max-width: 1280px;
  margin: 0px auto 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.solution-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 1px solid #0097F2;
  /* width: 350px; */
  height: 205px;
  justify-content: center;
  position: relative;
}

/* .solution-item:hover {
  transform: translateY(-5px);
} */

.solution-icon {

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.solution-icon img {

  object-fit: contain;
}

.solution-label {
  font-size: 14px;
  color: #fff;
  position: absolute;
  bottom: 25px;
}

#coverage, #tools{
  margin-bottom: 40px;
}

/* Custom 页面样式 */
.custom-section {
  max-width: 1280px;
  margin: 0 auto;
 
}

.custom-content {
  margin-top: 20px;
  /* height: 690px; */
}

.custom-content .form-select {
  border: none;
  border-bottom: 1px solid #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('../images/dow.png');
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}

.custom-content .form-select,
.custom-content .form-input {
  background: rgb(58 75 83);
}

.custom-main {
  width: 100%;
  height: 100%;
  background: url('../images/custome-bg.png') no-repeat;
  background-size: 100% 100%;
}

.custom-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}

.custom-services {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 50px;
  position: relative;
 

}

/* 左侧表单区域 */
.custom-form-section {
  /* flex: 1; */
  width: 535px;
}
.custom-form-line {
  background-color: #076FB3;
  width: 1px;
  height: 540px;
  position: absolute;
  left: 590px;
  top: 88px;
}

.form-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  margin:30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    margin-left: 10px;
  }
  select {
    font-size: 16px;
    background-color: #0c1e28;
    border: none;
    color: #fff;
    font-weight: 700;
  }
}

/* custom 标题下拉选择的图标加大两号 */
#custom-title {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('../images/dow.png');
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 16px 8px;
  padding-right: 28px;
}

.form-block {
  background: #3A4B53;
  /* border: 1px solid rgba(26, 161, 230, 0.2); */
  border-radius: 5px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #ffffff;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  .form-label {
    margin: 0;
    width: 105px;
    border-bottom: 1px solid #ffffff;
    line-height: 32px;
  }
  
}
select:focus-visible,input:focus-visible  {
  outline: none;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 500;
}

.placeholder-text {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.form-select,
.form-input {
  width: 100%;
  padding: 5px 10px;
  font-size: 14px;
  color: #ffffff;
  border: none;
  border-radius: 0px;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
  border-bottom: 1px solid #ffffff;
}

.form-select {
  appearance: none;
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E"); */
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-select:focus,
.form-input:focus {
  border-color: #fff;
  background: rgb(58 75 83);
}

.form-select::placeholder,
.form-input::placeholder {
  color: #ffffff;
}

.form-select option {
  background: #1a1a1a;
  color: #fff;
}

.submit-btn {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #1AA1E6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.submit-btn:hover {
  background: #1585c4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 161, 230, 0.4);
}

.form-note {
  font-size: 14px;
  color: #ffa500;
  margin: 15px;
  line-height: 1.6;
  text-align: center;
}

/* 右侧图片区域 */
.custom-image-section {
  /* flex: 1; */
  width: 535px;
}

.image-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  margin: 30px 0;
}

.image-wrapper {
  width: 100%;
  height: 530px; 
  background: #fff;
  border-radius: 5px;
  /* padding: 90px 20px; */
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  display: flex;
}

.image-wrapper img {
  display: none;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.image-wrapper img.active {
  display: block;
}

.image-wrapper .img-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.image-wrapper .img-banner-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
}

.image-wrapper .img-banner-dots .dot.active {
  background: #1AA1E6;
}

.image-wrapper .img-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.25);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.image-wrapper .img-banner-arrow-left { left: 10px; }
.image-wrapper .img-banner-arrow-right { right: 10px; }

.custom-simulation-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.image-note {
  font-size: 14px;
  color: #ffa500;
  line-height: 1.6;
  text-align: center;
}

.product-hero {
  display: flex;
  margin-top: 80px;
  height: 360px;
  width: 100%;
  overflow: hidden;
}

.product-hero .pd-h-item,
.product-hero .pd-h-item,
.product-hero .pd-h-item,
.product-hero .pd-h-item {
  width: 25%;
  height: 360px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
  cursor: pointer;
}

/* .product-hero .pd-h-item-1 {
  background-image: url('../images/pd-item-1.png');
}

.product-hero .pd-h-item-2 {
  background-image: url('../images/pd-item-2.png');
}

.product-hero .pd-h-item-3 {
  background-image: url('../images/pd-item-3.png');
}

.product-hero .pd-h-item-4 {
  background-image: url('../images/pd-item-4.png');
} */

@media (max-width: 1200px) {
  .product-hero {
    height: 300px;
  }

  .product-hero .pd-h-item-1,
  .product-hero .pd-h-item-2,
  .product-hero .pd-h-item-3,
  .product-hero .pd-h-item-4 {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .product-hero {
    flex-wrap: wrap;
    height: auto;
  }

  .product-hero .pd-h-item-1,
  .product-hero .pd-h-item-2,
  .product-hero .pd-h-item-3,
  .product-hero .pd-h-item-4 {
    width: 50%;
    height: 240px;
  }
}

/* Product 页面样式 */
.product-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0px;
}

.product-section {
  /* margin-bottom: 20px; */
}

.product-section-desc {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  height: 120px;
  position: relative;
  img {
    position: absolute;
    top: -75px;
  }
}

.product-section-som {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  height: 80px;
  position: relative;
  img {
    position: absolute;
    top: -75px;
  }
}


.pd-table-cell {
  background-color: #076FB3!important;
  color: #000!important;
  font-weight: 700;

} 

/* Detail 页面 */
.detail-hero {
  padding-top: 80px;
  background-image: url('../images/detail-bj.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 40px;
}

.detail-hero-inner {
  position: relative;
}

.section-tel-1 {
  position: absolute;
  top: 490px;
  width: 640px;
  padding-left: 60px;
  display: flex;
  .section-tel-img {
    background-image: url('../images/detail-tel-img.png');
    width: 75px;
    height: 67px;
  }

  .section-tel-msg {
   background-image: url('../images/detail-tel-bj.png');
   width: 659px;
   height: 56px;
   line-height: 56px;
   padding-left: 15px;
   color: #fff;
   font-size: 16px;
  }
}

.section-tel-2 {
  position: absolute;
  top: 568px;
  width: 640px;
  padding-left: 60px;
  display: flex;
  .section-tel-img {
    background-image: url('../images/detail-tel-img.png');
    width: 75px;
    height: 67px;
  }

  .section-tel-msg {
   background-image: url('../images/detail-tel-bj.png');
   width: 659px;
   height: 56px;
   line-height: 56px;
   padding-left: 15px;
   color: #fff;
   font-size: 16px;
  }
}

.text-inner {
  text-indent: 1em;
  line-height: 1.7;
  font-size: 14px;
}

.detail-cell {
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
}
.detail-cell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: currentColor;
}

.detail-performance-item {
  
  margin-bottom: 30px;
  table {
    width: 100%;
    border-spacing: 0;
    table-layout: fixed;
  }
  td {
    padding: 0;
  }
  .item {
    border: 2px solid #1AA1E6;
    background-color: #135577;
    padding: 10px 15px;
    margin-right: 20px;
    
  }

  /* 最后一项去除右侧外边距 */
  tr td:last-child .item {
    margin-right: 0;
  }

  .item-title {
    display: flex;
    color: #4DA9F8;
    font-size: 18px;
  }
  .item-desc {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
  }
}

.key-point-tab {
 
  table {
    width: 100%;
    border-spacing: 0;
    table-layout: fixed;
  }
  tr {
    margin-bottom: 20px;
  }
  td {
    padding: 0;
  }
  .item {
    border: 2px solid #1AA1E6;
    background-color: #135577;
    padding: 10px 15px;
    margin-right: 20px;
    margin-bottom: 20px;
    
  }

  /* 最后一项去除右侧外边距 */
  tr td:last-child .item {
    margin-right: 0;
  }

  .item-title {
    display: flex;
    color: #4DA9F8;
    font-size: 18px;
  }
  .item-desc {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
  }
}

.section-tel-test {
  color:#fff;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 50px;
  padding: 0 60px;
}

.detail-hero-text {
  flex: 1;
}
.detail-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  background-image: url(../images/detail-title-lg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding-left: 75px;
  height: 67px;
  line-height: 55px;
}

.detail-scene-item {
  display: flex;
  gap: 35px;
  margin-bottom: 30px;
}

/* 应用场景子项等宽显示 */
.detail-scene-item .scene-item {
  flex: 1;
}


.detail-content {
  padding: 30px 60px;
}

/* 规格特性表格 */
.detail-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #fff;
  background: rgba(26, 161, 230, 0.06);
}
.detail-table thead th {
  text-align: left;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  background: #106698;
  border-top: 1px solid #1AA1E6;
  border-bottom: 1px solid #1AA1E6;
  text-align: center;
}
.detail-table  td, .detail-table, .detail-table th{
 border: 1px solid #1AA1E6;
}
.detail-table tbody td {
  padding: 9.5px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.detail-table tfoot td {
  padding: 9px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}

.collback {
  position: absolute;
  top: 40px;
  right: 40px;
  .detail-back {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 165px;
    background-color: #076FB3;
    color: #fff;
    img {
      margin-right: 10px;
    }
  }
}

.detail-download-item {
  display: flex;
  cursor: pointer;
  justify-content: center;
}

.section-tel-vector {
  position: absolute;
  top: -36px;
  right: -638px;
}

.detail-download-item > div {
  position: relative;
  overflow: hidden;
}

.download-item-1 {
  background-image: url('../images/rectangle5992.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 425px;
  height: 208px;
  display: flex;
  justify-content: center;
  padding-top: 36px;
}
.download-item-2 {
  background-image: url('../images/rectangle5993.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 425px;
  height: 208px;
  display: flex;
  justify-content: center;
  padding-top: 36px;
 
}
.download-item-3 {
  background-image: url('../images/rectangle5994.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 425px;
  height: 208px;
  display: flex;
  justify-content: center;
  padding-top: 36px;
  
}



.download-caption {
  /* position: absolute;
  left: 0px;
  bottom: 95px; */
  color: #fff;
  font-size: 14px;
  margin-top: 5px;
  /* width: 420px;
  text-align: center; */
}

.download-action {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
}
.download-action img {

}
.detail-download-item > div:hover .download-action {
  background: rgba(255, 255, 255, 0.15);
}

.item-tab-btn img {
  margin-right: 8px;
}

@media (max-width: 1200px) {
  .detail-download-item {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.item-tab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.detail-table tbody tr:nth-child(odd) {
  background: rgba(255,255,255,0.02);
}
.detail-table tbody td:first-child {
  width: 319px;
  color: rgba(255,255,255,0.95);
}
.detail-table tbody td:first-child {
  text-align: center;
}
.detail-table tbody tr:last-child img {
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .detail-content {
    padding: 20px;
  }
  .detail-table tbody td:first-child {
    width: 120px;
  }
}

.detail-hero-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  margin-bottom: 18px;
}

.detail-hero-text h1 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 20px;
}

.detail-hero-text p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.detail-hero-meta {
  display: flex;
  gap: 24px;
  margin: 30px 0;
}

.detail-hero-meta div span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.detail-hero-meta div strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-top: 6px;
}

.detail-hero-actions {
  display: flex;
  gap: 16px;
}

.detail-hero-secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.detail-hero-media img {
  width: 520px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.detail-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px;
}

.detail-section {
  margin-bottom: 60px;
}

.detail-spec-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.spec-card {
  background: rgba(26, 161, 230, 0.05);
  border: 1px solid rgba(26, 161, 230, 0.2);
  border-radius: 12px;
  padding: 24px;
}

.spec-card span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.spec-card strong {
  display: block;
  color: #fff;
  font-size: 20px;
  margin: 12px 0;
}

.spec-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.detail-solution-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card {
  background: rgba(26, 161, 230, 0.05);
  border: 1px solid rgba(26, 161, 230, 0.2);
  border-radius: 12px;
  padding: 24px;
  color: #fff;
}

.solution-card h3 {
  margin-bottom: 12px;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.detail-page .table-container {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .detail-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .detail-hero-meta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .detail-spec-grid,
  .detail-solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .detail-page {
    padding: 40px 20px;
  }

  .detail-spec-grid,
  .detail-solution-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-page {
    padding: 40px 20px;
  }
}

@media (max-width: 1200px) {
  .custom-services {
    flex-direction: column;
  }
  
  .custom-form-section,
  .custom-image-section {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .custom-section {
    padding: 40px 20px;
  }
  
  .form-block {
    padding: 20px;
  }
}


@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .compatibility-table {
    font-size: 11px;
  }
  
  .compatibility-table th,
  .compatibility-table td {
    padding: 8px 4px;
  }
}

.footer {
  height: 402px;
  background: #02030a url("../images/footer-bg.png") center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.footer-inner {
  width: 1280px;
  margin: 0 auto;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
  border-bottom: 1px solid #ffffff;
}

.footer-logo {
  width: 1280px;
  height: 102px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ffffff;
  img {
    
    
  }
  .ft-text {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    img {
      margin-right: 15px;
    }
  }
  .contact-item {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
  }
  .contact-icon-circle {
    margin-right: 5px;
    background: #fff;
  }
  .contact-icon-phone {
    
    img {
      width: 32px;
      height: 32px;
      margin-right: 10px;
    }
  }
}

/* 首页定制：容器宽度改为 1280px，字体整体缩小两号 */
.index-page .main-content,
.index-page .footer-inner,
.index-page .footer-logo {
  width: 1280px;
}

.index-page .main-content,
.index-page .footer-inner,
.index-page .footer-logo {
  /* 移除整体 em 缩放，改为具体像素调整以避免重复缩小 */
}

/* 页脚局部文字微调，确保视觉一致 */
.index-page .footer-logo .ft-text { font-size: 20px; }
.index-page .footer-logo .contact-item { font-size: 20px; }
.index-page .contact-list-item { font-size: 14px; }

.footer-left {
  flex: 1;
  max-width: 700px;
}
/* 
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
} */


/* 
.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.footer-logo .logo-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.footer-logo .logo-subtitle {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
} */

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

.contact-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-label {
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  color: #9E9FA2;
  .ft-colon {
    display: inline-block;
    margin-left: 10px;
  }
}

.contact-value {
  color: #9E9FA2;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-btn-text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  
}

.footer-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.tab-btn.active .tab-btn-text {
  /* border-bottom: 5px solid #ffffff; */
  font-weight: 700;
}
.btn-border.active {
    font-weight: 700;
    width: 75%;
    height: 5px;
    position: absolute;
    bottom: 0px;
    background-color: #fff;
    left: 8%;
}

.footer-contact-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.footer-contact-top .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
}

.contact-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-circle img {
  width: 16px;
  height: 16px;
  
}

.footer-qrcode {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.qrcode-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.qrcode-item img {
  width: 160px;
  height: 160px;
  margin-bottom: 10px;
  display: block;
}

.footer-bottom {
  text-align: center;
  padding: 20px 60px;
  font-size: 14px;
  color: #9E9FA2;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-msg {
  background-image: url('../images/group1996.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 256px;
  margin-top: 20px;
}


.custom-h1 {
  width: 1280px;
  margin: 0 auto;
  background: url('../images/custome-h1.png') no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 20px;
  font-size: 14px;
  color: #9E9FA2;
  .color-text {
    color: #1AA1E6;
    cursor: pointer;
  }
  p {
    line-height: 1.7;
  }
}

.rdma-adapter {
  width: 1280px;
  margin: 0 auto;
  margin-top: 40px;
}

.rdma-adapter-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.rdma-adapter-item {
  background-image: url('../images/rdma-bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 50%;
  .title {
    background-image: url('../images/rdma-title.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    .color-tel {
      height: 19px;
      width: 19px;
      background-color: #1887C8;
      margin-left: 20px;
      margin-right: 10px;
    }

    .color-text {
      height: 50px;
      line-height: 50px;
     
    }
  }
  .feature-content {
    padding: 20px;
    font-size: 14px;
    color: #9E9FA2;
    p {
      line-height: 2;
    }
  }
}
.scene-class {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.scene-class::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  /* border-left: 1px dashed #1AA1E6; */
  opacity: 0.7;
}

.scene-item {
  position: relative;
  overflow: hidden;
  border-radius: 0; /* 图片不需要圆角 */
  height: 208px;
}

.scene-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0; /* 去除任何可能的圆角 */
  transition: transform 0.35s ease;
  will-change: transform;
}

/* 悬浮伸缩特效 */
.scene-item:hover img {
  transform: scale(1.05);
}
.scene-item:active img {
  transform: scale(1.02);
}

.scene-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  font-size: 14px;
  color: #fff;
  background: rgba(3, 3, 3, 0.58); /* 58% 透明蒙层，不影响文字颜色 */
  text-align: center;

}

.detail3-tel-test {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 70px;
  padding: 0 60px;
}

.detail3-info-item {
  display: flex;
  gap: 35px;
  margin-top: 20px;

  .card-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 215px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

    
  }
  .card-item-left {
    background-image: url('../images/rectangle5992.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .card-item-right {
    background-image: url('../images/rectangle5993.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .scene-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px;
    font-size: 14px;
    color: #fff;
    background: rgba(3, 3, 3, 0.58);
    text-align: center;
  }
 
}



@media (max-width: 1200px) {
  .scene-class {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .scene-class {
    grid-template-columns: 1fr;
  }
  .scene-class::before {
    display: none;
  }
}



@media (max-width: 960px) {
  .header-inner {
    padding: 0 16px;
    gap: 16px;
  }

  .nav {
    display: none;
  }

  .language-selector {
    display: none;
  }

  .search-btn {
    width: 32px;
    height: 32px;
  }

  .banner-title {
    font-size: 28px;
  }

  .banner-subtitle {
    font-size: 14px;
  }

  .banner-slides {
    height: 400px;
  }

  .footer-inner {
    flex-direction: column;
  }
}


/* Contact 页面样式 */
.contact-page {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 120px;
}

.contact-hero {
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  
}

.contact-hero-text  {
  width: 798px;

  img {
    margin-bottom: 18px;
  }
}

.contact-hero p {
  color: #9E9FA2;
  line-height: 1.8;
  font-size: 14px;
  text-indent: 1em;
}

.contact-hero-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
}

.contact-hero-meta {
  display: flex;
  gap: 24px;
  margin: 24px 0;
}

.contact-hero-meta div span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.contact-hero-meta div strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-top: 6px;
}

.contact-hero-media img {
  width: 520px;
  max-width: 100%;
  border-radius: 12px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.contact-card {
  background: rgba(26, 161, 230, 0.05);
  border: 1px solid rgba(26, 161, 230, 0.2);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-card-icon {
  width: 32px;
  height: 32px;
}

.contact-card-content h3 {
  margin: 0 0 8px;
  color: #fff;
}

.contact-card-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}

.contact-form-section .form-block {
  background: #3A4B53;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-media img {
  width: 100%;
  border-radius: 12px;
}

  
  .contact-map-wrapper  {
    width: 933px;
    height: 347px;
  }

.contact-map-wrapper img {
  width: 100%;
  border-radius: 5px;
}

@media (max-width: 1200px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }
}

/* 小屏设备下的 Banner 高度比例微调 */
@media (max-width: 768px) {
  .banner-inner {
    aspect-ratio: 18 / 9;
    max-height: 50vh;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 40px 20px;
  }
  .contact-hero {
    flex-direction: column;
    text-align: center;
  }
  .contact-hero-meta {
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* 核心优势模块样式 */
.advantages-section {
  max-width: 1280px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.adv-card {
  background: #063b55;
  border: 1px solid rgba(26, 161, 230, 0.35);
  border-radius: 8px;
  padding: 10px;

 
  
}

.adv-icon {
  display: flex;
  align-items: center;
}

.adv-icon h3 {
  margin: 0 0 6px 6px;
  font-size: 14px;
  color: #fff;
}

.adv-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
  margin-top: 10px;
}

.contact-details {
  color: #fff;
  font-size: 14px;
  p {
    line-height: 2;
    color: #9E9FA2;
  }
}

.som-msg {
  background-image: url('../images/som-msg.png');
  background-size: cover;
  background-position: center;
  margin-top: 20px;
  height: 219px;
}

@media (max-width: 1200px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}
