.quickPcbaPage {
  background: #fff;
}

.quickPcba h2,
.quickPcba h3 {
  color: #2A2F36;
}

.textBlock h5,
.titleBlock h5 {
  font-weight: 700;
  font-size: 14px;
  color: #004D80;
  line-height: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.textBlock h2,
.titleBlock h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
  /*text-transform: capitalize;*/
}

.center {
  text-align: center;
}

.pcbaIntro {
  padding: 80px 0 76px;
}

.introPanel {
  min-height: 426px;
  background: #F4F7FB;
  border: 1px solid #E2E6EC;
  border-radius: 5px;
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(360px, 505px);
  gap: 29px;
  align-items: center;
}

.introList {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.introList li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  color: #2A2F36;
  line-height: 24px;
}

.introList li:not(:last-child) {
  margin-bottom: 10px;
}

.introList strong {
  font-weight: 700;
  color: #004D80;
}

.introList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #004D80;
}

.introList li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 6px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.pcbaIntro .imgBox {
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
}

.pcbaIntro .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage {
  padding: 76px 0 80px;
}

.advantageGrid {
  margin-top: 39px;
  display: grid;
  grid-template-columns: repeat(4, 260px);
  gap: 30px;
  justify-content: center;
}

.advantageGrid .item {
  min-height: 302px;
  background: #fff;
  border: 1px solid #E2E6EC;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 77, 128, .1);
  padding: 25px 22px 30px;
  transition: all .3s ease-in-out;
}

.advantageGrid .item:hover {
  border-color: #BCD8E8;
  box-shadow: 0 0 6.5px 0 rgba(0, 77, 128, .26);
  /*transform: translateY(-4px);*/
}

.advantageGrid h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 15px;
}

.advantageGrid .line {
  height: 1px;
  background: #8FBAD6;
  margin-bottom: 14px;
}

.advantageGrid dl {
  margin: 0;
}

.advantageGrid dt {
  font-weight: 700;
  font-size: 19px;
  color: #004D80;
  line-height: 25px;
  margin-top: 10px;
}

.advantageGrid dt:first-child {
  margin-top: 0;
}

.advantageGrid dd {
  margin: 0;
  font-size: 12.8px;
  color: #5C6470;
  line-height: 19px;
}

.technical {
  background: #F4F7FB;
  padding: 76px 0 84px;
}

.tableCard {
  max-width: 1130px;
  margin: 42px auto 0;
}

.tableCard h3 {
  font-weight: 700;
  font-size: 16px;
  color: #2A2F36;
  line-height: 23px;
  margin-bottom: 14px;
}

.tableScroll {
  width: 100%;
  overflow-x: auto;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 77, 128, .1);
}

.tableScroll table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.tableScroll th,
.tableScroll td {
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  padding: 15px 29px;
}

.tableScroll th {
  background: #004D80;
  font-weight: 600;
  color: #fff;
}

.tableScroll tbody tr:nth-child(even) {
  background: #EEF2F6;
}

.tableScroll tbody tr:nth-child(odd) {
  background: #fff;
}

.tableScroll td {
  color: #5C6470;
  border-bottom: 1px solid #E6EBF1;
  vertical-align: top;
}

.tableScroll tbody tr:last-child td {
  border-bottom: 0;
}

.tableScroll td:first-child,
.tableScroll th:first-child {
  width: 287px;
}

@media (max-width: 1024px) {
  .pcbaIntro,
  .advantage,
  .technical {
    padding: 64px 0;
  }

  .introPanel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pcbaIntro .imgBox {
    height: 360px;
  }

  .advantageGrid {
    max-width: 620px;
    grid-template-columns: repeat(2, minmax(0, 260px));
  }
}

@media (max-width: 768px) {
  .pcbaIntro,
  .advantage,
  .technical {
    padding: 52px 0;
  }

  .textBlock h2,
  .titleBlock h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .introPanel {
    padding: 30px 22px;
  }

  .introList li {
    font-size: 14px;
    line-height: 23px;
  }

  .pcbaIntro .imgBox {
    height: 280px;
  }

  .tableScroll th,
  .tableScroll td {
    font-size: 13px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .textBlock h2,
  .titleBlock h2 {
    font-size: 25px;
    line-height: 31px;
  }

  .introPanel {
    padding: 28px 18px;
  }

  .pcbaIntro .imgBox {
    height: 220px;
  }

  .advantageGrid {
    grid-template-columns: 1fr;
  }
}
