.flex-row {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.gap5 {
  gap: 5px;
}

.gap20 {
  gap: 20px;
}

.marginTop17 {
  margin-top: 17px;
}

.mg-t12 {
  margin-top: 12px;
}

.mg-t3 {
  margin-top: 3px;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.bg-img-wh {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-img-pa {
  position: absolute;
  top: 0;
  left: 0;
}

.z1 {
  z-index: -1;
}

.banner-container {
  width: 100%;
  position: relative;
  height: 380px;
  /* background: #000; */
  /* background-image: url(../../images/newIndex/bga/banner.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 70px 0 65px;
}

.bag-container {
  width: 1200px;
}

.bag-container:before,
.bag-container:after {
  display: none;
}

.banner-container .title {
  font-weight: 600;
  font-size: 40px;
  color: #ffffff;
}

.banner-container .sub-title {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 24px;
  margin-top: 20px;
  margin-bottom: 16px;
}

.banner-container .sub-title-item {
  display: flex;
  align-items: center;
  line-height: 18px;
}

.banner-container .sub-title-item span {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  height: 16px;
}

.banner-container .sub-title-item img {
  width: 12px;
  height: 12px;
  line-height: 26px;
  margin-right: 8px;
}

.banner-container a {
  background: #00936d;
  border-radius: 4px 4px 4px 4px;
  border: 2px solid #00936d;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 19px;
  padding: 12px 24px;
  margin-top: 28px;
  cursor: pointer;
  display: inline-table;
}

.sticky-box {
  position: sticky;
  top: 100px; /* 距离顶部 0px 时固定 */
}

/* 额外美化 */
.sticky-box::after {
  content: "";
  display: block;
  margin-top: 5px;
  height: 6px;
  background-color: #007b5e;
  border-radius: 8px 8px 0 0;
}

.banner-container .sub-title-item + .sub-title-item {
  margin-top: 8px;
}

.bga-container {
  width: 100%;
}

.bga-container-tabs {
  height: 50px;
  background: #00936d;
  position: sticky;
  top: 64px;
  z-index: 199; /* 确保在上面 */
}

.bga-container-tabs > div {
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 48px;
  height: 50px;
}

.bga-container-tabs > div > button {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
}

/* .bga-container-tabs > div > button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #00936d;
  border-radius: 8px 8px 0 0;
  opacity: 0;
} */

/* .bga-container-tabs > div > button.active::after {
  opacity: 1;
} */

.bag-container-tab {
  height: 34px;
  background-color: transparent;
  border: unset;
  padding: 0;
  width: fit-content;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 34px;
  padding: 14px;
}

.bag-container-tab:hover,
.bag-container-tab.active {
  font-weight: 500;
  font-size: 14px;
  color: #00936d;
  background: #ffffff;
  border-radius: 6px;
}

.chat-container {
  display: flex;
  flex-direction: column;
  padding: 100px 0;
}

.chat-container .title {
  font-weight: 600;
  font-size: 40px;
  color: #1d2129;
  line-height: 48px;
  text-align: center;
  margin-bottom: 48px;
}

.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;
}

.chat-table-container table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chat-table-container .capability-th {
  width: 230px;
}

.chat-table-container th {
  padding: 24px 0px 24px 5px;
  text-align: left;
  border-bottom: 1px solid #e5e6eb;
}

.chat-table-container th:first-child {
  padding: 24px 0px 24px 24px;
}

.chat-table-container td {
  padding: 12px 0px 12px 5px;
  text-align: left;
  border-bottom: 1px solid #e5e6eb;
}

.chat-table-container td:first-child {
  padding: 12px 12px 12px 24px;
}

.chat-table-container th {
  background: #e6e6e6;
  font-weight: 500;
  font-size: 16px;
  color: #1d2129;
  line-height: 17px;
}

.chat-table-container table tbody tr:nth-child(even) {
  /* background: #f2fff1 !important; */
}

.chat-table-container table tbody tr {
  /* background: rgb(245, 251, 246); */
}

.chat-table-container td {
  font-weight: 400;
  font-size: 14px;
  color: #1d2129;
  line-height: 22px;
}

.chat-table-container td p + p {
  /* margin-top: 10px; */
}

.chat-table-container tr:last-child td {
  border-bottom: none;
}

/* .chat-table-container tr td:last-child p {
  max-width: 133px;
} */

.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;
  position: relative;
}

.bga-structure-container {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.bga-structure-container .container img {
  width: 100%;
  height: 652px;
}

.bga-structure-container .title {
  font-weight: 600;
  font-size: 40px;
  color: #1d2129;
  line-height: 48px;
}

.bonded-container {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  padding-bottom: 80px;
  border-bottom: 1px solid #e5e5e5;
}

.bonded-container .bonded-img {
  width: 488px;
  height: 346px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.bonded-container .bonded-text {
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 26px;
  margin-top: 24px;
}

.bonded-container .chip-bonded-container .bonded-img {
  /* background-image: url(../../images/newIndex/bga/chip.png); */
}

.bonded-container .flip-bonded-container .bonded-img {
  /* background-image: url(../../images/newIndex/bga/flip.png); */
}

.bga-structure-container img {
}

.table-container {
  margin-top: 54px;
  width: 100%;
  height: 643px;
  position: relative;
}

.table-container table {
  width: 643px;
  border-collapse: collapse;
  background: white;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: absolute;
}

.table-container .capability-th {
  width: 230px;
}

.table-container th {
  padding: 14px 14px 14px 55px;
  text-align: left;
  border-bottom: 1px solid #e5e6eb;
}
.table-container td {
  padding: 13.5px 12px 12px 55px;
  text-align: left;
  border-bottom: 1px solid #e5e6eb;
}
.table-container th {
  background: #e0f9f5;
  font-weight: 500;
  font-size: 14px;
  color: #1d2129;
  line-height: 22px;
}

.table-container table tbody tr:nth-child(even) {
  /* background: #f2fff1 !important; */
}

.table-container table tbody tr {
  /* background: rgb(245, 251, 246); */
}

.table-container td {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.table-container td p + p {
  margin-top: 10px;
}

.table-container tr:last-child td {
  border-bottom: none;
}

.bga-benefits-container {
  height: 756px;
  width: 100%;
  background: #f4f4f4;
  padding: 80px 0;
}

.bga-benefits-container .title {
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  line-height: 40px;
  text-align: center;
  margin-bottom: 32px;
}

.bga-benefits-container .benefits-body {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.bga-benefits-container .benefits-body > div {
  display: flex;
  gap: 24px;
  flex: 1;
  flex-direction: column;
}

.bga-benefits-container .benefits-body .benefits-body-item {
  padding: 24px;
}

.bga-benefits-container
  .benefits-body
  .benefits-body-item
  .benefits-body-item-img {
  width: 48px;
  height: 48px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bga-benefits-container .benefits-body .benefits-body-item .versatility-img {
  background-image: url(../../images/newIndex/bga/versatility.png);
}

.bga-benefits-container .benefits-body .benefits-body-item .reliability-img {
  background-image: url(../../images/newIndex/bga/reliability.png);
}

.bga-benefits-container .benefits-body .benefits-body-item .speed-img {
  background-image: url(../../images/newIndex/bga/speed.png);
}

.bga-benefits-container .benefits-body .benefits-body-item .performance-img {
  background-image: url(../../images/newIndex/bga/performance.png);
}

.bga-benefits-container
  .benefits-body
  .benefits-body-item
  .benefits-body-item-title {
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
  margin-top: 12px;
}

.bga-benefits-container
  .benefits-body
  .benefits-body-item
  .benefits-body-item-sub-title {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  margin-top: 8px;
}

.performance-item,
.versatility-item {
  width: 488px;
  height: 274px;
  background: #ffffff;
  border-radius: 8px;
}

.reliability-item,
.speed-item {
  width: 488px;
  height: 226px;
  background: #ffffff;
  border-radius: 8px;
}

.standards-container {
  padding: 80px 0;
  border-bottom: 1px solid #e5e5e5;
}

.bga-standards-container {
  background: #f7f7f7;
}

.bga-standards-container .title {
  font-weight: 600;
  font-size: 40px;
  color: #1d2129;
  line-height: 48px;
  text-align: center;
  margin-bottom: 24px;
}

.bga-standards-container .sub-title {
  font-weight: 400;
  font-size: 16px;
  color: #4e5969;
  line-height: 24px;
  text-align: center;
}

.standards-body {
  display: flex;
  gap: 23px;
  margin-top: 40px;
}

.standards-body .standards-body-tabs {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.standards-body .standards-body-tabs .standards-body-tab {
  flex: 1;
  background: #ffffff;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #e5e5e5;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 40px;
}

.standards-body .standards-body-tabs .standards-body-tab.active {
  background: #f4f4f4;
  border-radius: 8px;
  border: unset !important;
}

.standards-body .standards-body-content {
  width: 545px;
  height: 304px;
  background: #f4f4f4;
  border-radius: 8px;
}

.standards-body .standards-body-content .standards-tab-content {
  display: none;
  padding: 22px 18px 22px 25px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 26px;
  border-top: none;
}

.standards-body .standards-body-content .standards-tab-content.active {
  display: block;
}

.standards-body .standards-body-content .standards-tab-content.active .blod {
  font-weight: bold;
}

.process-container {
  padding: 100px 0 125px;
}

.process-container .process-container-img {
  margin-top: 49px;
  width: 100%;
  height: 630px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /* background-image: url(../../images/newIndex/bga/process.png); */
}

.bga-showcase-container {
  width: 100%;
  background: #f7f7f7;
}

.showcase-container {
  padding: 100px 0 50px 0;
}

.showcase-container {
  margin: 0 auto;
}

.showcase-container .title {
  font-weight: 600;
  font-size: 40px;
  color: #1d2129;
  line-height: 48px;
  text-align: center;
  margin-bottom: 32px;
}

.showcase-container .bag-button {
  text-align: center;
  height: 44px;
  margin-bottom: 44px;
}

.showcase-container .bag-button button {
  padding: 12px 20px;
  border-radius: 32px;
  border: unset;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  background-color: transparent;
}

.showcase-container .bag-button button.active,
.showcase-container .bag-button button:hover {
  color: #ffffff;
  background: #00936d;
}

.showcase-container .showcase-body {
  display: none;

  overflow: hidden;
  scroll-behavior: smooth;
}

.showcase-container .showcase-body.active {
  display: flex;
  gap: 20px;
}

.showcase-container .showcase-body .showcase-item {
}

.showcase-container .showcase-body .showcase-item .img1 {
  /* background-image: url(../../images/newIndex/bga/case1.png); */
}

.showcase-container .showcase-body .showcase-item .img2 {
  /* background-image: url(../../images/newIndex/bga/case2.png); */
}

.showcase-container .showcase-body .showcase-item .img3 {
  /* background-image: url(../../images/newIndex/bga/case3.png); */
}

.showcase-container .showcase-body .showcase-item .img4 {
  /* background-image: url(../../images/newIndex/bga/case4.png); */
}

.showcase-container .showcase-body .showcase-item .img5 {
  /* background-image: url(../../images/newIndex/bga/case5.png); */
}

.showcase-container .showcase-body .showcase-item .img6 {
  /* background-image: url(../../images/newIndex/bga/case6.png); */
}

.showcase-container .showcase-body .showcase-item .showcase-item-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.showcase-container .showcase-body .showcase-item .showcase-item-img img {
  width: 285px;
  height: 180px;
}

.showcase-container .showcase-body .showcase-item .showcase-item-text {
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  color: #1d2129;
  line-height: 28px;
  margin-top: 20px;
  /* text-wrap: wrap; */
}

.showcase-img {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.showcase-img img {
  width: 48px;
  height: 48px;
}

.showcase-img img:hover {
  cursor: pointer;
}

.bga-chooes-container {
  background: #f7f7f7;
}

.chooes-container {
  padding-top: 70px;
  padding-bottom: 100px;
}

.chooes-container .title {
  font-weight: 600;
  font-size: 40px;
  color: #1d2129;
  line-height: 48px;
  text-align: center;
  margin-bottom: 48px;
}

.chooes-container-row {
  display: flex;
  gap: 46px;
}

.chooes-content > div {
  margin-top: 20px;
  display: flex;
  gap: 18px;
}

.chooes-content > div img + img {
  /* margin-left: 16px; */
}

.chooes-text {
  position: relative;
}

.choose-item {
  position: relative;
  cursor: pointer;
}

.choose-item .hover-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 24, 36, 0.5);
  padding: 8px 12px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  line-height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  word-break: break-word;
  white-space: normal;
}

.choose-item:hover .hover-text {
  opacity: 1;
  visibility: visible;
}

.chooes-text > p {
  font-weight: 400;
  font-size: 16px;
  color: #1d2129;
  line-height: 24px;
}

.chooes-text .chooes-text-rate {
  margin-top: 67px;
  display: flex;
}

.chooes-text .chooes-text-rate > div {
  flex: 1;
}

.chooes-text .chooes-text-rate > div p {
  font-weight: bold;
  font-size: 48px;
  color: #00936d;
  line-height: 48px;
}

.chooes-text .chooes-text-rate > div span {
  font-weight: 400;
  font-size: 20px;
  color: #1d2129;
  line-height: 50px;
}

.chooes-text a {
  background: #00936d;
  border-radius: 4px 4px 4px 4px;
  border: 2px solid #00936d;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  line-height: 19px;
  padding: 22px 101px;
  margin-top: 67px;
  cursor: pointer;
  display: inline-table;
}

.bga-partner-container .title {
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  line-height: 40px;
  text-align: center;
  margin-bottom: 16px;
}

.bga-partner-container .sub-title {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  line-height: 28px;
  text-align: center;
}

.partner-container {
  padding: 80px 0 100px;
}

.partner-container .partner-body {
  display: flex;
  margin-top: 62px;
}

.partner-container .partner-body .partner-body-item {
  text-align: center;
  flex: 1;
}

.partner-container .partner-body .partner-body-item .partner-body-img {
  width: 48px;
  height: 48px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
}

.partner-container
  .partner-body
  .partner-body-item
  .partner-body-img.excellence-img {
  background-image: url(../../images/newIndex/bga/excellence.png);
}

.partner-container
  .partner-body
  .partner-body-item
  .partner-body-img.prevention-img {
  background-image: url(../../images/newIndex/bga/prevention.png);
}

.partner-container
  .partner-body
  .partner-body-item
  .partner-body-img.compliance-img {
  background-image: url(../../images/newIndex/bga/compliance.png);
}

.partner-container .partner-body .partner-body-item .partner-body-title {
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
  margin-top: 22px;
}

.partner-container .partner-body .partner-body-item .partner-body-sub-title {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  margin-top: 8px;
}
