.bg-img-wh {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-img-pa {
  position: absolute;
  top: 0;
  left: 0;
}

.z1 {
  z-index: -1;
}

.br8 {
  border-radius: 8px;
}

.layout-text-title {
  font-weight: 600;
  font-size: 40px;
  color: #1d2129;
  line-height: 48px;
  text-align: center;
}

.layout-text-sub-title {
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
}

.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.layout-banner-container {
  width: 100%;
  position: relative;
  height: 380px;
  /* background-image: url(../../images/newIndex/pcblayout/banner.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 68px;
}

.bag-container {
  width: 1200px;
}

.bag-container:before,
.bag-container:after {
  display: none;
}

.layout-banner-container .title {
  font-weight: 600;
  font-size: 48px;
  color: #ffffff;
  line-height: 40px;
}

.layout-banner-container .sub-title {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  width: 520px;
  margin-top: 28px;
}

.layout-banner-container a {
  background: #00936d;
  border-radius: 4px 4px 4px 4px;
  border: 2px solid #00936d;
  padding: 14px 24px;
  cursor: pointer;
  display: inline-table;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 19px;
  margin-top: 27px;
}

.layout-banner-container .quote-link {
  width: 220px;
  height: 44px;
  background: #00936d;
  border-radius: 4px 4px 4px 4px;
  border: 2px solid #00936d;
  padding: 12px 22px;
  margin-top: 28px;
}

.layout-banner-container .quote-link a {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 19px;
}

.layout-request-container {
  padding: 100px 0;
  background-image: url(../../images/newIndex/pcblayout/bg.png);
  height: 856px;
  text-align: center;
}

.layout-request-container .title {
  color: #fff;
  margin-bottom: 85px;
}

.workflow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  flex: 0 0 150px;
}

.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -30px;
  width: 60px;
  height: 1px;
  /* background-color: rgba(255, 255, 255, 0.5); */
  background: linear-gradient(
    90deg,
    #d6d6d6 0%,
    #d6d6d6 100%,
    rgba(0, 0, 0, 0) 100%,
    rgba(0, 0, 0, 0) 100%
  );
}

.step-icon {
  width: 44px;
  height: 44px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.step-text {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 17px;
  text-align: center;
  white-space: nowrap;
}

.order-icon {
  background-image: url(../../images/newIndex/pcblayout/order.png);
}
.estimate-icon {
  background-image: url(../../images/newIndex/pcblayout/estimate.png);
}
.placement-icon {
  background-image: url(../../images/newIndex/pcblayout/placement.png);
}
.start-icon {
  background-image: url(../../images/newIndex/pcblayout/start.png);
}
.layout-icon {
  background-image: url(../../images/newIndex/pcblayout/layout.png);
}
.review-icon {
  background-image: url(../../images/newIndex/pcblayout/review.png);
}
.project-icon {
  background-image: url(../../images/newIndex/pcblayout/project.png);
}
.payment-icon {
  background-image: url(../../images/newIndex/pcblayout/payment.png);
}

.workflow-images {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.workflow-image {
  background: #fff;
  flex: 1;
  height: 404px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.workflow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.workflow-image-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  word-break: break-word;
  white-space: normal;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 15px;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  transition: all 0.3s ease;
}

.workflow-image .image-title {
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  line-height: 17px;
  margin-bottom: 0;
  text-align: start;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.workflow-image .image-desc {
  font-weight: 400;
  font-size: 14px;
  color: #f3f3f3;
  text-align: start;
  line-height: 17px;
  opacity: 0;
  transition: all 0.3s ease;
  height: 0;
  transform: translateY(20px);
  overflow: hidden;
}

.workflow-image:hover img {
  transform: scale(1.05);
}

.workflow-image:hover .image-title {
  transform: translateY(-8px);
}

.workflow-image:hover .image-desc {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  overflow: visible;
}

.chat-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 87px 0 84px;
}

.chat-bubble {
  width: 375px;
  height: 89px;
  max-width: 600px;
  border-radius: 24px;
  line-height: 90px;
  text-align: center;
  position: relative;
  font-weight: 500;
  font-size: 28px;
  color: #ffffff;
}

.chat-reply {
  width: 100%;
  height: 179px;
  border-radius: 43px;
}

.chat-reply-text {
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  width: 600px;
  line-height: 30px;
}

.user {
  background: #505050;
  color: white;
  align-self: flex-end;
}

.bot {
  background: #ebebeb;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
}

.button-container {
  width: 285px;
  height: 48px;
  background: #00936d;
  border-radius: 12px 12px 12px 12px;
  border: 2px solid #00936d;
  text-align: center;
  line-height: 44px;
}

.quote-btn {
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
}

.quote-btn:hover {
  color: #ffffff;
}

.bga-packages-container {
  height: 376px;
  background: #f5fbf6;
  padding-top: 80px;
}

.bga-packages-container .container {
  display: flex;
  gap: 94px;
}

.bga-packages-container .packages-warp {
  width: 530px;
}

.packages-warp .title {
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  line-height: 40px;
  margin-bottom: 24px;
}

.packages-warp-body p {
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
  padding-left: 20px;
  position: relative;
}

.packages-warp-body p::after {
  content: "";
  top: 10px;
  left: 0px;
  position: absolute;
  background: transparent;
  border: #00936d solid 1px;
  border-top: none;
  border-right: none;
  height: 4px;
  width: 8px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.packages-warp-body p + p {
  margin-top: 16px;
}

.bga-packages-container .packages-img {
  width: 257px;
  height: 257px;
  background-image: url(../../images/newIndex/bga/packages.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  mix-blend-mode: multiply;
}
.layout-capabilities-container > .container{
  padding-bottom: 80px;
}

.layout-capabilities-container .capabilities-img {
  width: 451px;
  height: 417px;
  /* background-image: url(../../images/newIndex/pcblayout/capabilities.png); */
}

.layout-capabilities-container .table-container {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.layout-capabilities-container .table-container table {
  overflow: hidden;
  background: #ffffff;
  flex: 1;
  border-collapse: separate;
  border-radius: 8px;
  box-shadow: 0px 4px 16px 0px rgba(29, 33, 41, 0.08);
  border: 1px solid #e5e6eb;
}

.layout-capabilities-container .table-container table tbody {
}

.layout-capabilities-container .table-container .capability-th {
  width: 254px;
}

.layout-capabilities-container .table-container th,
.layout-capabilities-container .table-container td {
  padding: 14px 13px 14px 26px;
  text-align: left;
  border-bottom: 1px solid #e5e6eb;
}
.layout-capabilities-container .table-container th {
  background: #00936d;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.layout-capabilities-container .table-container table tbody tr:nth-child(even) {
  background: #ffffff;
}

.layout-capabilities-container .table-container table tbody tr {
  background: #fafafa;
}

.layout-capabilities-container .table-container td {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #00936d;
}

.layout-capabilities-container .table-container td:first-child {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

.layout-capabilities-container .table-container td p + p {
  margin-top: 10px;
}

.layout-capabilities-container .table-container tr:last-child td {
  border-bottom: none;
}

.layout-capabilities-container {
  width: 100%;
  padding: 80px 0 0;
}

.layout-advantages-container {
  background: #f4f4f4;
  padding: 100px 0;
}

.layout-advantages-container .title {
  margin-bottom: 24px;
}

.layout-advantages-container .advantages-text-sub-title {
  font-weight: 400;
  font-size: 16px;
  color: #4e5969;
  line-height: 24px;
  text-align: center;
  margin-bottom: 47px;
}

.layout-advantages-container .advantages-body {
  /* display: flex;
  flex-wrap: wrap;
  gap: 24px; */
}

.layout-advantages-container .advantages-body > .advantages-body-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.layout-advantages-container .advantages-body .advantages-body-tabs button {
  height: 36px;
  font-weight: 500;
  font-size: 14px;
  color: #4e5969;
  line-height: 20px;
  background-color: transparent;
  border: unset;
  padding: 0;
  width: fit-content;
  padding: 8px 16px;
}

.layout-advantages-container
  .advantages-body
  .advantages-body-tabs
  button:hover,
.layout-advantages-container
  .advantages-body
  .advantages-body-tabs
  button.active {
  background: #00936d;
  border-radius: 32px;
  color: #fff;
}

.advantages-body-content {
  width: 100%;
  height: 438px;
  background: #ffffff;
  margin-top: 40px;
  position: relative;
}

.advantages-body-content img {
  width: 220px;
  height: 343px;
  position: absolute;
  right: 0;
  bottom: 14px;
}

.advantages-body-content > div.active {
  display: block;
  height: 100%;
}

.advantages-body-content > div {
  display: none;
  width: 100%;
  padding-top: 40px;
  padding-left: 32px;
}

.layout-advantages-container .advantages-body .advantages-body-item {
  padding: 28px 24px;
  width: 488px;
  height: 250px;
  background: #ffffff;
  border-radius: 8px;
}

.layout-advantages-container
  .advantages-body
  .advantages-body-item
  .advantages-body-item-title {
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
}

.layout-advantages-container
  .advantages-body
  .advantages-body-item
  .advantages-body-item-sub-title {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  margin-top: 12px;
  padding-left: 20px;
  position: relative;
}

.layout-advantages-container
  .advantages-body
  .advantages-body-item
  .advantages-body-item-sub-title
  span {
  font-weight: 500;
  color: #333333;
}

.layout-advantages-container
  .advantages-body
  .advantages-body-item
  .advantages-body-item-sub-title::after {
  content: "";
  top: 10px;
  left: 0px;
  position: absolute;
  background: transparent;
  border: #00936d solid 1px;
  border-top: none;
  border-right: none;
  height: 4px;
  width: 8px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.layout-process-container {
  padding: 100px 0;
}

.layout-process-container .title {
  margin-bottom: 64px;
}

.layout-process-container .bg-img {
  width: 1143px;
  height: 1457px;
  margin: 0 auto;
  /* background-image: url(../../images/newIndex/pcblayout/process.png); */
}

.layout-partner-container {
  padding: 100px 0;
  background: #fff;
}

.layout-industry-container .container {
  padding: 50px 0 140px;
}

.industry-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.industry-body .industry-body-tabs {
  display: flex;
  flex: 1;
  gap: 32px;
}

.industry-body .industry-body-tabs .industry-body-tab {
  height: 40px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  background-color: transparent;
  line-height: 18px;
  border: unset;
  padding: 0;
  width: fit-content;
}

.industry-body .industry-body-tabs .industry-body-tab.active {
  border-bottom: 2px solid #00936d;
  color: #00936d;
}

.industry-body .industry-body-content {
  width: 100%;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}

.industry-body .industry-body-content .industry-tab-content {
  position: relative;
  width: 285px;
  height: 200px;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.industry-body .industry-body-content .content-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: rgba(16, 24, 36, 0.7); */
  transition: all 0.3s ease;
  z-index: 2;
}

.industry-body .industry-body-content .industry-tab-content:hover .content-text {
  height: auto;
}

.industry-body .industry-body-content .industry-tab-content .title {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  padding: 10px 24px;
}

.industry-body .industry-body-content .industry-tab-content:hover .title {
  /* transform: translateY(-10px); */
  padding: 10px 24px 0 24px;
}

.industry-body .industry-body-content .industry-tab-content .sub-title {
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  line-height: 14px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  height: 0;
  overflow: hidden;
  padding-left: 24px;
  padding-right: 24px;
}

.industry-body .industry-body-content .industry-tab-content:hover .sub-title {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  overflow: visible;
  margin-bottom: 2px;
  padding-bottom: 16px;
}

.industry-body .industry-body-content .industry-tab-content:hover img {
  transform: scale(1.05);
}

.industry-body .industry-body-content .industry-tab-content img {
  transition: transform 0.3s ease;
}

.industry-body
  .industry-body-content
  .industry-tab-content
  .sub-title
  + .sub-title {
  margin-top: 2px;
}

#industry-tab1 {
  /* background-image: url(../../images/newIndex/pcblayout/Telecommunications.png); */
}

#industry-tab2 {
  /* background-image: url(../../images/newIndex/pcblayout/Technology.png); */
}

#industry-tab3 {
  /* background-image: url(../../images/newIndex/pcblayout/Computing.png); */
}

#industry-tab4 {
  /* background-image: url(../../images/newIndex/pcblayout/Industrial.png); */
}

#industry-tab5 {
  /* background-image: url(../../images/newIndex/pcblayout/Semiconductor.png); */
}

#industry-tab6 {
  /* background-image: url(../../images/newIndex/pcblayout/Rail.png); */
}

#industry-tab7 {
  /* background-image: url(../../images/newIndex/pcblayout/Consumer.png); */
}

.process-container {
  padding: 80px 0 85px;
}

.process-container .process-container-img {
  margin-top: 49px;
  width: 988px;
  height: 525px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../images/newIndex/bga/process.png);
}

.layout-footer-container {
  width: 100%;
  height: 238px;
  background-image: url(../../images/newIndex/pcblayout/footer.png);
}

.layout-footer-container .footer-container {
  padding-top: 46px;
}

.layout-footer-container .footer-container .title {
  font-weight: 500;
  font-size: 24px;
  color: #333333;
  line-height: 40px;
}

.layout-footer-container .footer-container .sub-title {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 22px;
  margin-top: 8px;
  width: 540px;
}

.layout-footer-container .footer-container .quote-link {
  width: 291px;
  height: 44px;
  background: #00936d;
  border-radius: 4px 4px 4px 4px;
  border: 2px solid #00936d;
  margin-top: 19px;
}

.layout-footer-container .footer-container .quote-link a {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 19px;
  padding: 12px 12px;
  display: block;
  height: 100%;
  width: 100%;
}

.processor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 45px;
}

.processor-item {
  height: fit-content;
}

.processor-item + .processor-item {
  margin-top: 32px;
}

.processor-item p {
  font-weight: 600;
  font-size: 20px;
  color: #1d2129;
  line-height: 26px;
  margin-bottom: 8px;
  margin-top: 0;
}

.processor-brands {
  display: flex;
  flex-direction: column;
  /* gap: 12px; */
}

.brand {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.brand-name {
  font-weight: 600;
  font-size: 14px;
  color: #1d2129;
  line-height: 24px;
  white-space: nowrap;
}

.models {
  font-weight: 400;
  font-size: 14px;
  color: #71777d;
  line-height: 24px;
}

.layout-design-container {
  padding: 100px 0;
}

.design-table-container {
  margin-top: 54px;
  width: 100%;
  height: 527px;
  position: relative;
}

.design-table-container table {
  width: 643px;
  height: 430px;
  border-collapse: collapse;
  background: white;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.design-table-container .capability-th {
  width: 230px;
}

.design-table-container th {
  padding: 13px 14px 13px 44px;
  text-align: left;
  border-bottom: 1px solid #e5e6eb;
}
.design-table-container td {
  padding: 13px 12px 13px 44px;
  text-align: left;
  border-bottom: 1px solid #e5e6eb;
}
.design-table-container th {
  background: #e0f9f5;
  font-weight: 500;
  font-size: 14px;
  color: #1d2129;
  line-height: 22px;
}

.design-table-container table tbody tr:nth-child(even) {
  /* background: #f2fff1 !important; */
}

.design-table-container table tbody tr {
  /* background: rgb(245, 251, 246); */
}

.design-table-container td {
  font-weight: 500;
  font-size: 14px;
  color: #00936d;
  line-height: 22px;
}

.design-table-container td p + p {
  margin-top: 10px;
}

.design-table-container tr:last-child td {
  border-bottom: none;
}

.design-table-container td:first-child {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #333333;
}

.design-note {
  width: 643px;
  background-color: #fff;
  height: 86px;
  border: 1px solid #e5e6eb;
  padding: 20px 89px 0 44px;
}

.design-note p {
  font-weight: 400;
  font-size: 12px;
  color: #4e5969;
  line-height: 17px;
}

.submit-quote {
  width: 100%;
  height: 200px;
  background-image: url(../../images/newIndex/new/quote-bg.png);
  text-align: center;
  line-height: 200px;
}

.submit-quote span {
  font-weight: 600;
  font-size: 36px;
  color: #ffffff;
}

.submit-quote a {
  padding: 19px 33px 17px 33px;
  font-weight: 600;
  font-size: 20px;
  color: #00936d;
  background: #ffffff;
  border-radius: 4px 4px 4px 4px;
  border: 2px solid #ffffff;
  margin-left: 43px;
  cursor: pointer;
}

.layout-service-container {
  background: #f7f7f7;
  padding: 100px 0;
}

.service-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 48px;
}

.service-content-item {
  height: 282px;
  flex: 0 0 387px;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 28px 0 28px;
  background: #ffffff;
}

.service-content-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.service-content-item p {
  font-weight: 600;
  font-size: 20px;
  color: #1d2129;
  line-height: 30px;
  margin: 24px 0 8px;
}

.service-content-item span {
  font-weight: 400;
  font-size: 16px;
  color: #4e5969;
  line-height: 24px;
  display: block;
  padding-left: 10px;
  position: relative;
}

.service-content-item span::before {
  content: " ";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #4e5969;
  border-radius: 50%;
  left: 0px;
  top: 9px;
}

.layout-partner-container {
  padding: 100px 0 50px;
  background: #fff;
}

.quality-container {
  display: flex;
  margin-top: 48px;
  gap: 51px;
}

.quality-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
  column-gap: 34px;
  padding-top: 16px;
}

.quality-content-item {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.quality-content-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
}

.quality-content-item p {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #1d2129;
  margin: 0;
}

.quality-content-item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #4e5969;
  display: block;
  margin-top: 8px;
}

.quality-intro {
  background: #f7f7f7;
  border-radius: 12px;
  height: 415px;
  width: 387px;
  padding: 32px 28px 0 28px;
}

.quality-intro-content {
  flex: 0 0 45%;
}

.quality-intro-content h2 {
  font-weight: 500;
  font-size: 20px;
  color: #181818;
  line-height: 48px;
  margin: 0;
}

.quality-intro-content p {
  font-weight: 400;
  font-size: 16px;
  color: #4e5969;
  line-height: 24px;
  margin: 0;
}

.quality-intro-image {
  width: 100%;
  height: 221px;
  overflow: hidden;
  margin-top: 27px;
}

.quality-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
