#app{
  background: #fbffff;
}

#app,
#app * {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* breadcrumb styles */
.form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 23px 8%;
  background: #ffffff;
}

.form > svg {
  margin-right: 8px;
}

.form .text1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}

.form .text1 p {
  color: #2c2c2c;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.form .text1:hover p {
  text-decoration: underline;
}

.form .text2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}

.form .text2 p {
  color: #1d82b8;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.form .text2:hover p {
  text-decoration: underline;
}

.form .icon {
  width: 22px;
  height: 22px;
  margin: 0 8px;
}

/* product overview styles */
.detail {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 0 60px;
  background: #fbffff;
  position: relative;
}
.detail .back1 {
  position: absolute;
  top: -40%;
  right: 0%;
  width: 812px;
  height: 777px;
  opacity: 0.42;
  background: radial-gradient(50% 50% at 50% 50%, #32a2de3d 0%, #32a2de00 100%);
}
.detail .back2 {
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 423px;
  height: 777px;
  opacity: 0.42;
  background: radial-gradient(50% 50% at 50% 50%, #32a2de3d 0%, #32a2de00 100%);
}
.detail .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
  z-index: 1;
  width: 92%;
  margin: 0 auto;
  padding: 50px 30px;
  border-radius:  0px 0px 55px 55px;
  background: #ffffff3d;
  box-shadow: 0px 0px 30px #00000014;
}

.detail .section1 {
  display: flex;
  flex-wrap: wrap;
  width: 42%;
  position: relative;
}

.detail .section1-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 70%;
  margin: 0 auto;
  overflow: hidden;
  border-radius:  30px 0px 30px 0px;
  background: #ffffff;
  box-shadow: 0px 0px 25px #d8d8d880;
  aspect-ratio: 1/1;
}

.detail .section1-top .swiper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.detail .section1-top .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
}

.detail .section1-top .swiper-slide {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.detail .section1-top .swiper-slide.swiper-slide-active {
  display: flex;
}

.detail .section1-top .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.detail .section1-top .swiper-slide .swiper_trigger {
  cursor: crosshair;
}

#detailImage {
  width: 70%;
  height: auto;
  display: none;
  position: absolute;
  overflow: hidden;
  left: 100%;
  background: #fff;
  top: 0;
  border: 1px solid #32a2de40;
  box-sizing: border-box;
  aspect-ratio: 1;
  z-index: 999;
  pointer-events: none;
}

.detail .section1-bottom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 24px;
}

.detail .section1-bottom .swiper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  gap: 18px;
  overflow: visible;
}

.detail .section1-bottom .prev {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  max-width: 68px;
  max-height: 68px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 10px 40px #d8d8d880;
  cursor: pointer;
  transition: all 0.5s ease;
}


.detail .section1-bottom .swiper-wrapper {
  --thumb-gap: 18px;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  flex: 1;
  gap: var(--thumb-gap);
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.detail .section1-bottom .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.detail .section1-bottom .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc((100% - (var(--thumb-gap) * 2)) / 3);
  border-radius:  24px 0px 24px 0px;
  border: 1px solid #32a2de40;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 4px 12.3px #0000001a;
  cursor: pointer;
  overflow: hidden;
  height: auto;
  aspect-ratio: 1 / 1;
}

.detail .section1-bottom .swiper-slide img {
  display: flex;
  width: 86%;
  transition: transform 0.5s ease;
}

.detail .section1-bottom .swiper-slide:hover img {
  transform: scale(1.05);
}

.detail .section1-bottom .next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  max-width: 68px;
  max-height: 68px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 10px 40px #d8d8d880;
  cursor: pointer;
  transition: all 0.5s ease;
}


.detail .section2 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex: 1;
  padding: 20px 0px;
  margin-left: 2%;
  position: relative;
  z-index: 2;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

.detail .section2 .title {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.detail .section2 .title p {
  color: #000000;
  font-family: Chonburi;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
}

.detail .section2 .line {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  width: 65px;
  height: 4px;
  border-radius: 18px;
  background: #32a2de;
}

.detail .section2 .desc {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 28px;
  cursor: text;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

.detail .section2 .desc p {
  color: #000000;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 38px;
  cursor: text;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

.detail .section2 .detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  margin-top: auto;
}

.detail .section2 .detail-contact {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 10px;
}

.detail .section2 .detail-contact .item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  min-width: 0;
  gap: 8px;
}

.detail .section2 .detail-contact .item p:first-child {
  color: #223e56;
  font-family: "Alibaba PuHuiTi";
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
}

.detail .section2 .detail-contact .item p:last-child {
  color: #1d82b8;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  overflow-wrap: anywhere;
}

.detail .section2 .btn {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 12px;
  margin-top: auto;
  padding: 0px 34px;
  height: 54px;
  border-radius: 100px;
  background: #1d82b8;
  cursor: pointer;
  transition: all 0.5s ease;
}

.detail .section2 .detail-actions .btn {
  flex-shrink: 0;
  margin-top: 0;
}

.detail .section2 .btn:hover {
  background: #223e56;
}

.detail .section2 .btn p {
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}

.detail .section2 .btn svg {
  width: 32px;
  height: 32px;
}


/* product table styles */
.tbl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 70px 0 66px;
  background: linear-gradient(180deg, #ffffff 0%, #FBFFFF 100%);
}

.tbl .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 84%;
  margin: 0 auto;
}

.tbl .title {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 20%;
}

.tbl .title p {
  width: 100%;
  color: #2c2c2c;
  font-family: Chonburi;
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
}

.tbl .title span {
  color: #1d82b8;
}

.tbl .line {
  display: flex;
  flex-wrap: wrap;
  align-self: stretch;
  margin: 0 44px;
  width: 2px;
  height: 100%;
  border-radius: 2px;
  background: #d9d9d9;
}

.tbl .table-card {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.tbl .table-card p{
  width: 100%;
  color: #2c2c2c;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    padding: 20px 0px;
}

.tbl .tabList {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.tbl .tabList table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-collapse: collapse;
}
.tbl .tabList thead {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.tbl .tabList thead tr {
  width: 100%;
}

.tbl .tabList tbody {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.tbl .tabList tr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-bottom: 27px;
  transition: transform 0.5s ease;
}

.tbl .tabList tr:hover {
  transform: translateX(4px);
}

.tbl .tabList tr > th:first-child,
.tbl .tabList tr > td:first-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 30%;
  padding: 10px 50px;
  box-sizing: border-box;
  border-radius: 25px;
  border: 1px solid rgba(44, 44, 44, 0.45);
  background: #ffffff;
  color: #1d82b8;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  transition: border-color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}

.tbl .tabList tr > th:first-child *,
.tbl .tabList tr > td:first-child * {
  color: #1d82b8 !important;
  font-family: Montserrat !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 30px !important;
  text-align: center !important;
}

.tbl .tabList th ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.tbl .tabList td:first-child ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.tbl .tabList th li {
  width: 100%;
  color: #1d82b8;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
}

.tbl .tabList td:first-child li {
  width: 100%;
  color: #1d82b8;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
}

.tbl .tabList th:not(:first-child),
.tbl .tabList td:not(:first-child) {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
  margin-left: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2c2c2c;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  transition: color 0.5s ease;
}

.tbl .tabList tr:hover > th:first-child,
.tbl .tabList tr:hover > td:first-child {
  border-color: #1d94cc;
  box-shadow: 0px 8px 20px rgba(29, 148, 204, 0.12);
  background: #fafdff;
}

.tbl .tabList tr:hover th:not(:first-child),
.tbl .tabList tr:hover td:not(:first-child) {
  color: #1d82b8;
}
.logistics {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0px 0 64px;
  position: relative;
  overflow: hidden;
  background: #fbffff;
}

.logistics > img {
  width: 100%;
  display: flex;
}

.logistics .section1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 2;
}

.logistics .section1 .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 84%;
  margin: 0 auto;
}

.logistics .section1 .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.logistics .section1 .title p {
  width: 100%;
  color: #223e56;
  font-family: Chonburi;
  font-weight: 400;
  font-size: 42px;
  line-height: 54px;
}

.logistics .section1 .title span {
  color: #1d82b8;
}

.logistics .section1 .line {
  width: 56px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 99px;
  background: #1d82b8;
}

.logistics .logistics-media-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 70px;
  position: relative;
  z-index: 2;
}

.logistics .logistics-media-section .swiper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.logistics .logistics-media-section .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
}

.logistics .logistics-media-image {
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.logistics .logistics-media-image .logistics-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
}

.logistics .logistics-media-image .image-item {
  display: flex;
  overflow: hidden;
  height: auto;
  border-radius: 8px;
  background: #d9d9d9;
  box-shadow: 0px 8px 24px rgba(0, 31, 69, 0.12);
}

.logistics .logistics-media-image .image-item .el-image {
  display: flex;
  width: 100%;
  height: 100%;
}

.logistics .logistics-media-image .image-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logistics .logistics-media-section .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  height: clamp(210px, 24vw, 300px);
  border-radius: 8px;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: 0px 8px 24px rgba(0, 31, 69, 0.12);
}

.logistics .logistics-media-section .swiper-slide img,
.logistics .logistics-media-section .swiper-slide video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logistics .logistics-media-section .swiper-slide .img-inner,
.logistics .logistics-media-section .swiper-slide .img-poster {
  display: flex;
  width: 100%;
  height: 100%;
}

.logistics .logistics-media-section .swiper-slide .img-poster {
  position: relative;
  cursor: pointer;
}

.logistics .logistics-media-section .swiper-slide .img-poster video {
  cursor: pointer;
}

.logistics .logistics-media-section .swiper-slide .mask {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 32, 48, 0.06) 0%, rgba(13, 32, 48, 0.38) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.logistics .logistics-media-section .swiper-slide .mask .play {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.61);
}

.logistics .logistics-media-section .swiper-slide .mask .play svg {
  margin-left: 3px;
}

.logistics .logistics-media-section .swiper-slide.is-playing .mask {
  opacity: 0;
}

.logistics .logistics-media-section .prev,
.logistics .logistics-media-section .next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  max-width: 34px;
  max-height: 34px;
  border-radius: 50%;
  border: 1px solid #1d82b8;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 5px 20px #d8d8d880;
  cursor: pointer;
  z-index: 3;
}

.logistics .logistics-media-section .prev {
  left: 23%;
}

.logistics .logistics-media-section .next {
  right: 23%;
}

.logistics .logistics-media-section.is-single .prev,
.logistics .logistics-media-section.is-single .next {
  display: none;
}

.logistics .logistics-media-section.is-single .swiper {
  width: 100%;
  max-width: 860px;
  min-width: 0;
  margin: 0 auto;
}

.certificate {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 72px 0 86px;
  background: #fbffff;
  position: relative;
  overflow: hidden;
}

.certificate .inner {
  display: flex;
  flex-wrap: wrap;
  width: 84%;
  margin: 0 auto;
}

.certificate .section1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.certificate .section1 .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.certificate .section1 .title p {
  width: 100%;
  color: #223e56;
  font-family: Chonburi;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
}

.certificate .section1 .line {
  width: 56px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 99px;
  background: #1d82b8;
}

.certificate .section2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
}

.certificate .section2 .swiper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 18px 0 0;
  overflow: hidden;
  perspective: 1400px;
}

.certificate .section2 .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.certificate .section2 .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  width: 290px;
  height: 410px;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 7.5px 3.3px #00000052;
  transform: scale(0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease;
}

.certificate .section2 .swiper-slide.certificate-slide-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.certificate .section2 .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0px 7.5px 3.3px #00000052;
}

.certificate .section2 .swiper-slide-prev,
.certificate .section2 .swiper-slide-next {
  opacity: 0.82;
}

.certificate .section2 .swiper-slide .el-image {
  width: 100%;
  height: 100%;
}

.certificate .section2 .swiper-slide .el-image__inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certificate .section2 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certificate .section3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-top: 26px;
}

.certificate .section3 .prev,
.certificate .section3 .next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  max-width: 46px;
  max-height: 46px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.certificate .section3 .prev svg,
.certificate .section3 .next svg {
  width: 22px;
  height: 16px;
}

/* application styles */
.application {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 0 46px;
  background: #fbffff;
  position: relative;
}
.application img {
  width: 100%;
  display: flex;
}
.application .back1 {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 416px;
  height: 777px;
  opacity: 0.42;
  background: radial-gradient(50% 50% at 50% 50%, #32a2de3d 0%, #32a2de00 100%);
}
.application .back2 {
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 359px;
  height: 777px;
  opacity: 0.42;
  background: radial-gradient(50% 50% at 50% 50%, #32a2de3d 0%, #32a2de00 100%);
}
.application .inner {
  display: flex;
  flex-wrap: wrap;
  width: 74%;
  margin: 0 auto;
  position: relative;
}

.application .swiper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 18px 0 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 45px;
  box-shadow: 0px 0px 40px #001f4521;
}

.application .prev {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 2%;
  top: 25%;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  max-width: 68px;
  max-height: 68px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 10px 40px #d8d8d880;
  cursor: pointer;
  z-index: 3;
  transition: all 0.5s ease;
}

.application .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
}

.application .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 100%;
  height: auto;
}

.application .content {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex: 1 1 auto;
  padding: 30px 11% 28px;
  text-align: center;
}

.application .content .top {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 18px;
}

.application .content .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.application .content .title p {
  color: #0f172b;
  font-family: Chonburi;
  font-weight: 400;
  font-size: 26px;
  line-height: 38px;
}

.application .content .line {
  display: flex;
  flex-wrap: wrap;
  width: 24%;
  width: 345px;
  height: 1px;
  border-radius: 18641400px;
  background: #1d82b8;
}

.application .content .text1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.application .content .text1 p {
  width: 100%;
  color: #32a2de;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 21px;
  line-height: 34px;
}

.application .content .text2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.application .content .text2 p {
  width: 100%;
  color: #4a4a4a;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}

.application .img {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex: 0 0 auto;
  height: 330px;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
}

.application .img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application .img:hover img {
  transform: scale(1.05);
}

.application .next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 2%;
  top: 25%;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  max-width: 68px;
  max-height: 68px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 10px 40px #d8d8d880;
  cursor: pointer;
  z-index: 3;
  transition: all 0.5s ease;
}


/* related products styles */
.related {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 16px 0 62px;
  background: #fbffff;
  overflow: hidden;
}

.related .section1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.related .section1 .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 84%;
  margin: 0 auto;
}

.related .section1 .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.related .section1 .title p {
  width: 100%;
  color: #0f172b;
  font-family: Chonburi;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
}

.related .section1 .title p span {
  color: #32a2de;
}


.related .section1 .title .line {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
  width: 298px;
  height: 1px;
  border-radius: 18641400px;
  background: #1d82b8;
}

.related .section2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
  overflow: visible;
}

.related .section2 .swiper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: visible;
}

.related .section2 .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  gap: 0;
  overflow: visible;
}

.related .section2 .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex-shrink: 0;
  padding: 30px;
  box-sizing: border-box;
  border-radius:  42px 0px 42px 0px;
  background: #ffffff;
  box-shadow: 0px 0px 23.6px #00000024;
  cursor: pointer;
  overflow: visible;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.related .section2 .swiper-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0px 18px 42px rgba(34, 62, 86, 0.22);
}

.related .section2 .swiper-slide .img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.related .section2 .swiper-slide .img img {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.related .section2 .swiper-slide .img:hover img {
  transform: scale(1.05);
}

.related .section2 .swiper-slide:hover .img img {
  transform: scale(1.05);
}

.related .section2 .swiper-slide .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
}

.related .section2 .swiper-slide .title p {
  color: #000f1a;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  transition: color 0.5s ease;
}

.related .section2 .swiper-slide:hover .title p {
  color: #1d82b8;
}

.related .section3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 40px;
  margin-top: 40px;
}

.related .section3 .prev {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  max-width: 68px;
  max-height: 68px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 10px 40px #d8d8d880;
  cursor: pointer;
  transition: all 0.5s ease;
}

.related .section3 .prev svg {
  width: 22px;
  height: 15px;
}

.related .section3 .next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  max-width: 68px;
  max-height: 68px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 10px 40px #d8d8d880;
  cursor: pointer;
  transition: all 0.5s ease;
}

.related .section3 .next svg {
  width: 22px;
  height: 15px;
}

.detail .section1-bottom .prev path,
.detail .section1-bottom .next path,
.application .prev path,
.application .next path,
.related .section3 .prev path,
.related .section3 .next path {
  transition: fill 0.5s ease;
}

.detail .section1-bottom .prev:hover,
.detail .section1-bottom .next:hover,
.application .prev:hover,
.application .next:hover,
.related .section3 .prev:hover,
.related .section3 .next:hover {
  transform: translateY(-6px);
  background: #edf8fd;
  box-shadow: 0px 18px 42px rgba(34, 62, 86, 0.18);
}

.detail .section1-bottom .prev:hover path,
.detail .section1-bottom .next:hover path,
.application .prev:hover path,
.application .next:hover path,
.related .section3 .prev:hover path,
.related .section3 .next:hover path {
  fill: #1d82b8;
}

/* after-sales service styles */
.service {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 64px 0 70px;
  background: #ffffff;
  box-shadow: 0px 0px 18.1px #0000000f;
}

.service .inner {
  display: flex;
  align-items: center;
  width: 84%;
  margin: 0 auto;
}

.service .section1 {
  display: flex;
  flex-wrap: wrap;
  width: 34%;
}

.service .section1 .tag {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.service .section1 .tag p {
  display: flex;
  flex-wrap: wrap;
  padding: 9px 16px;
  border-radius: 18641400px;
  border: 0.6px solid #8ec5ff1a;
  box-sizing: border-box;
  background: #8ec5ff1a;
  color: #8ec5ff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.service .section1 .title {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 32px;
}

.service .section1 .title p {
  width: 72%;
  color: #223e56;
  font-family: Chonburi;
  font-weight: 400;
  font-size: 48px;
  line-height: 57px;
}

.service .section1 .line {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  width: 64px;
  height: 4px;
  border-radius: 18641400px;
  background: linear-gradient(90deg, #2b7fff 0%, #00000000 100%);
}

.service .section1 .btn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  margin-left: 50%;
}

.service .section1 .btn .prev {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  max-width: 68px;
  max-height: 68px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 10px 40px #d8d8d880;
  cursor: pointer;
  transition: all 0.5s ease;
}

.service .section1 .btn .prev:hover {
  transform: translateY(-6px);
  background: #edf8fd;
  box-shadow: 0px 18px 42px rgba(34, 62, 86, 0.18);
}

.service .section1 .btn .prev:hover path {
  fill: #1d82b8;
}

.service .section1 .btn .prev svg {
  width: 15px;
  height: 22px;
}

.service .section1 .btn .next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  max-width: 68px;
  max-height: 68px;
  border-radius: 50%;
  background: #1d82b8;
  box-shadow: 0px 10px 40px #d8d8d880;
  cursor: pointer;
  transition: all 0.5s ease;
}

.service .section1 .btn .next:hover {
  transform: translateY(-6px);
  background: #176f9d;
  box-shadow: 0px 18px 42px rgba(29, 130, 184, 0.32);
}

.service .section1 .btn .prev path,
.service .section1 .btn .next path {
  transition: fill 0.5s ease;
}

.service .section1 .btn .next svg {
  width: 15px;
  height: 22px;
}

.service .section2 {
  display: flex;
  width: 66%;
}

.service .section2 .swiper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding: 18px 28px;
  margin: -18px -28px;
  box-sizing: content-box;
  overflow: hidden;
}

.service .section2 .swiper-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  height: auto;
  gap: 0;
}

.service .section2 .swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 32px;
  border-radius: 24px;
  border: 0.6px solid #ffffff1a;
  box-sizing: border-box;
  background: #d7d7d712;
  box-shadow: 0px 0px 11.2px #0000001f;
}

.service .section2 .swiper-slide-active {
  border-radius: 24px;
}

.service .section2 .swiper-slide .icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  border-radius: 16px;
}

.service .section2 .swiper-slide:nth-child(1) .icon {
  background: linear-gradient(135deg, #2b7fff 0%, #00b8db 100%);
  box-shadow: 0px 4px 6px -4px #00000033, 0px 10px 15px -3px #00000033;
}

.service .section2 .swiper-slide:nth-child(2) .icon {
  background: linear-gradient(135deg, #00bc7d 0%, #00bba7 100%);
  box-shadow: 0px 4px 6px -4px #00000033, 0px 10px 15px -3px #00000033;
}

.service .section2 .swiper-slide:nth-child(3) .icon {
  background: linear-gradient(135deg, #ff6900 0%, #fe9a00 100%);
  box-shadow: 0px 4px 6px -4px #00000033, 0px 10px 15px -3px #00000033;
}

.service .section2 .swiper-slide:nth-child(4) .icon {
  background: linear-gradient(135deg, #615fff 0%, #ad46ff 100%);
  box-shadow: 0px 4px 6px -4px #00000033, 0px 10px 15px -3px #00000033;
}

.service .section2 .swiper-slide:nth-child(5) .icon {
  background: linear-gradient(135deg, #8e51ff 0%, #e12afb 100%);
  box-shadow: 0px 4px 6px -4px #00000033, 0px 10px 15px -3px #00000033;
}

.service .section2 .swiper-slide:nth-child(6) .icon {
  background: linear-gradient(135deg, #155dfc 0%, #4f39f6 100%);
  box-shadow: 0px 4px 6px -4px #00000033, 0px 10px 15px -3px #00000033;
}

.service .section2 .swiper-slide .icon svg {
  width: 24px;
  height: 24px;
}

.service .section2 .swiper-slide .content {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  margin-left: 22px;
}

.service .section2 .swiper-slide .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.service .section2 .swiper-slide .num {
  display: flex;
  flex-wrap: wrap;
  margin-right: 16px;
}

.service .section2 .swiper-slide .num p {
  color: #62748e;
  font-family: Menlo;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

.service .section2 .swiper-slide .title {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.service .section2 .swiper-slide .title p {
  color: #223e56;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.service .section2 .swiper-slide .bottom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 12px;
}

.service .section2 .swiper-slide .bottom p {
  color: #90a1b9;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

/* faq styles */
.faq {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 60px 0 78px;
  background: #fbffff;
  position: relative;
}

.faq .back1 {
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 502px;
  height: 777px;
  opacity: 0.42;
  background: radial-gradient(50% 50% at 50% 50%, #32a2de3d 0%, #32a2de00 100%);
}
.faq .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 84%;
  margin: 0 auto;
}

.faq .section1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.faq .section1 .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.faq .section1 .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.faq .section1 .title p {
  color: #223e56;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
}

.faq .section1 .line {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  width: 96px;
  height: 4px;
  border-radius: 18641400px;
  background: #1d82b8;
}

.faq .section1 .desc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

.faq .section1 .desc p {
  color: #45556c;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.faq .section2 {
  display: flex;
  flex-wrap: wrap;
  width: 72%;
  margin-top: 42px;
  gap: 16px;
}

.faq .section2 .item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 12px 24px;
  border-radius: 10px;
  border: 0.6px solid #e2e8f0;
  box-sizing: border-box;
  background: #edf2f7;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}

.faq .section2 .item:hover {
  transform: translateY(-4px);
  border-color: #c7e8f7;
  background: #ffffff;
  box-shadow: 0px 16px 36px rgba(34, 62, 86, 0.14);
}

.faq .section2 .item .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.faq .section2 .item .question {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.faq .section2 .item .question p {
  color: #223e56;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
}

.faq .section2 .item .icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  max-width: 32px;
  max-height: 32px;
  border-radius: 18641400px;
  border: 0.6px solid #e2e8f0;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 1px 2px -1px #0000001a, 0px 1px 3px #0000001a;
  transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.faq .section2 .item .icon svg {
  width: 16px;
  height: 16px;
}

.faq .section2 .item .icon path {
  transition: fill 0.5s ease;
}

.faq .section2 .item .answer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin-top 0.5s ease, opacity 0.5s ease;
}

.faq .section2 .item .answer p {
  color: #223e56;
  font-family: Montserrat;
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
}

.faq .section2 .item-active {
  border-radius: 10px;
  border: 2px solid #edf2f7;
  background: #ffffff;
}

.faq .section2 .item-active .icon {
  transform: rotate(180deg);
  border-color: #1d82b8;
  background: #1d82b8;
  box-shadow: 0px 8px 18px rgba(29, 130, 184, 0.24);
}

.faq .section2 .item-active .icon path {
  fill: #ffffff;
}

.faq .section2 .item-active .answer {
  max-height: 420px;
  margin-top: 16px;
  opacity: 1;
}

.faq .section2 .item-active .answer p {
  color: #223e56;
  font-family: Montserrat;
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
}

/* responsive: product detail page */
@media only screen and (max-width: 1280px) {
  .form {
    padding: 20px 6%;
  }

  .detail {
    padding: 0 0 54px;
  }

  .detail .back1 {
    width: 620px;
    height: 640px;
  }

  .detail .back2 {
    width: 360px;
    height: 640px;
  }

  .detail .inner {
    width: 90%;
    padding: 44px 28px;
    border-radius: 0 0 46px 46px;
  }

  .detail .section1 {
    width: 43%;
  }

  .detail .section1-top {
    width: 76%;
    border-radius: 26px 0 26px 0;
  }

  .detail .section1-top .swiper-slide {
    padding: 36px 38px 22px;
  }

  .detail .section1-bottom .prev,
  .detail .section1-bottom .next,
  .related .section3 .prev,
  .related .section3 .next,
  .service .section1 .btn .prev,
  .service .section1 .btn .next {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
  }

  .application .prev,
  .application .next {
    display: none;
  }

  .detail .section2 {
    padding: 16px 0;
  }

  .detail .section2 .title p {
    font-size: 28px;
    line-height: 34px;
  }

  .detail .section2 .line,
  .detail .section2 .desc {
    margin-top: 24px;
  }

  .detail .section2 .desc p {
    font-size: 15px;
    line-height: 34px;
  }

  .detail .section2 .btn {
    gap: 10px;
    height: 52px;
    padding: 0 30px;
  }

  .detail .section2 .btn p {
    font-size: 20px;
    line-height: 28px;
  }

  .detail .section2 .btn svg {
    width: 30px;
    height: 30px;
  }

  .tbl {
    margin: 62px 0 58px;
  }

  .tbl .inner,
  .logistics .section1 .inner,
  .certificate .inner,
  .related .section1 .inner,
  .service .inner,
  .faq .inner {
    width: 88%;
  }

  .tbl .title p {
    font-size: 42px;
    line-height: 54px;
  }

  .tbl .line {
    margin: 0 36px;
  }

  .tbl .tabList tr > th:first-child,
  .tbl .tabList tr > td:first-child {
    padding: 10px 38px;
  }

  .tbl .tabList th:not(:first-child),
  .tbl .tabList td:not(:first-child) {
    margin-left: 34px;
    font-size: 17px;
  }

  .logistics {
    padding: 0 0 58px;
  }

  .logistics .section1 .title p,
  .certificate .section1 .title p {
    font-size: 36px;
    line-height: 48px;
  }

  .logistics .logistics-media-section .swiper-slide {
    height: 280px;
  }

  .certificate {
    padding: 62px 0 74px;
  }

  .certificate .section2 .swiper-slide {
    width: 260px;
    height: 370px;
  }

  .application .inner {
    width: 80%;
  }

  .application .swiper {
    border-radius: 38px;
  }

  .application .content {
    padding: 28px 9% 26px;
  }

  .application .content .top {
    gap: 16px;
  }

  .application .content .title p {
    font-size: 24px;
    line-height: 34px;
  }

  .application .content .text1 p {
    font-size: 19px;
    line-height: 31px;
  }

  .application .content .text2 p {
    line-height: 30px;
  }

  .application .img {
    height: 300px;
  }

  .related {
    padding: 14px 0 54px;
  }

  .related .section1 .title p {
    font-size: 28px;
    line-height: 34px;
  }

  .related .section2 {
    margin-top: 44px;
  }

  .related .section2 .swiper-slide {
    padding: 26px;
    border-radius: 34px 0 34px 0;
  }

  .service {
    padding: 56px 0 62px;
  }

  .service .section1 .title p {
    width: 82%;
    font-size: 42px;
    line-height: 52px;
  }

  .service .section1 .btn {
    margin-left: auto;
    margin-right: 0;
  }

  .service .section2 .swiper-slide {
    padding: 28px;
  }

  .service .section2 .swiper-slide .title p {
    font-size: 22px;
    line-height: 30px;
  }

  .faq {
    padding: 54px 0 68px;
  }

  .faq .section1 .title p {
    font-size: 32px;
    line-height: 38px;
  }

  .faq .section2 {
    width: 78%;
    margin-top: 36px;
  }
}

@media only screen and (max-width: 1024px) {
  .form {
    padding: 18px 5%;
  }

  .form .text1 p,
  .form .text2 p {
    font-size: 15px;
    line-height: 22px;
  }

  .detail {
    padding: 0 0 46px;
  }

  .detail .back1,
  .detail .back2,
  .application .back1,
  .application .back2,
  .faq .back1 {
    display: none;
  }

  .detail .inner {
    width: 90%;
    padding: 36px 24px;
    border-radius: 0 0 38px 38px;
  }

  .detail .section1 {
    width: 45%;
  }

  .detail .section1-top {
    width: 82%;
  }

  .detail .section1-top .swiper-slide {
    padding: 30px 32px 20px;
  }

  .detail .section1-bottom .swiper {
    gap: 14px;
  }

  .detail .section1-bottom .swiper-wrapper {
    --thumb-gap: 14px;
    gap: var(--thumb-gap);
  }

  .detail .section1-bottom .prev,
  .detail .section1-bottom .next,
  .application .prev,
  .application .next,
  .related .section3 .prev,
  .related .section3 .next,
  .service .section1 .btn .prev,
  .service .section1 .btn .next {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    max-width: 52px;
    max-height: 52px;
  }

  .detail .section2 .title p {
    font-size: 25px;
    line-height: 32px;
  }

  .detail .section2 .line,
  .detail .section2 .desc {
    margin-top: 20px;
  }

  .detail .section2 .desc p {
    font-size: 14px;
    line-height: 30px;
  }

  .detail .section2 .btn {
    height: 50px;
    padding: 0 26px;
  }

  .detail .section2 .btn p {
    font-size: 18px;
    line-height: 26px;
  }

  .detail .section2 .btn svg {
    width: 28px;
    height: 28px;
  }

  .tbl {
    margin: 52px 0;
  }

  .tbl .title {
    width: 24%;
  }

  .tbl .title p {
    font-size: 34px;
    line-height: 44px;
  }

  .tbl .line {
    margin: 0 28px;
  }

  .tbl .tabList tr > th:first-child,
  .tbl .tabList tr > td:first-child {
    padding: 10px 28px;
  }

  .tbl .tabList th:not(:first-child),
  .tbl .tabList td:not(:first-child) {
    margin-left: 24px;
    font-size: 16px;
  }

  .logistics {
    padding: 0 0 50px;
  }

  .logistics .section1 .title p,
  .certificate .section1 .title p {
    font-size: 30px;
    line-height: 40px;
  }

  .logistics .logistics-media-section {
    margin-top: 30px;
  }

  .logistics .logistics-media-section .swiper-slide {
    height: 250px;
  }

  .logistics .logistics-media-section .prev {
    left: 18%;
  }

  .logistics .logistics-media-section .next {
    right: 18%;
  }

  .certificate {
    padding: 52px 0 64px;
  }

  .certificate .section2 .swiper-slide {
    width: 230px;
    height: 330px;
  }

  .application {
    padding: 0 0 42px;
  }

  .application .inner {
    width: 86%;
  }

  .application .swiper {
    border-radius: 32px;
  }

  .application .content {
    padding: 26px 8% 24px;
  }

  .application .content .top {
    gap: 15px;
  }

  .application .content .title p {
    font-size: 22px;
    line-height: 32px;
  }

  .application .content .line {
    width: 260px;
  }

  .application .content .text1 p {
    font-size: 18px;
    line-height: 30px;
  }

  .application .content .text2 p {
    width: 100%;
    line-height: 29px;
  }

  .application .img {
    height: 280px;
  }

  .related {
    padding: 12px 0 48px;
  }

  .related .section2 {
    margin-top: 36px;
  }

  .related .section2 .swiper-slide {
    padding: 24px;
    border-radius: 30px 0 30px 0;
  }

  .related .section3 {
    gap: 30px;
    margin-top: 34px;
  }

  .service {
    padding: 48px 0 54px;
  }

  .service .inner {
    align-items: flex-start;
  }

  .service .section1 {
    width: 38%;
  }

  .service .section2 {
    width: 62%;
  }

  .service .section1 .title {
    margin-top: 26px;
  }

  .service .section1 .title p {
    width: 90%;
    font-size: 34px;
    line-height: 44px;
  }

  .service .section1 .line {
    margin-top: 26px;
  }

  .service .section1 .btn {
    margin-left: auto;
    margin-right: 0;
  }

  .service .section2 .swiper {
    padding: 16px 22px;
    margin: -16px -22px;
  }

  .service .section2 .swiper-slide {
    padding: 24px;
  }

  .service .section2 .swiper-slide .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
  }

  .service .section2 .swiper-slide .title p {
    font-size: 20px;
    line-height: 28px;
  }

  .service .section2 .swiper-slide .bottom p {
    font-size: 15px;
    line-height: 24px;
  }

  .faq {
    padding: 46px 0 58px;
  }

  .faq .section1 .title p {
    font-size: 28px;
    line-height: 34px;
  }

  .faq .section1 .desc p {
    font-size: 16px;
    line-height: 26px;
  }

  .faq .section2 {
    width: 86%;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 820px) {
  #detailImage {
    display: none !important;
  }

  .form {
    padding: 16px 5%;
    border-bottom-width: 8px;
    align-items: flex-start;
    gap: 8px 0;
  }

  .form > svg,
  .form .icon {
    flex: 0 0 auto;
  }

  .form .text1,
  .form .text2 {
    max-width: 100%;
  }

  .form .text1 p,
  .form .text2 p {
    font-size: 14px;
    line-height: 20px;
  }

  .detail {
    padding: 0 0 40px;
  }

  .detail .inner {
    width: 90%;
    padding: 30px 22px;
    border-radius: 0 0 30px 30px;
  }

  .detail .section1,
  .detail .section2 {
    width: 100%;
    flex: none;
  }

  .detail .section1-top {
    width: 62%;
  }

  .detail .section1-top .swiper-slide {
    padding: 28px 30px 20px;
  }

  .detail .section2 {
    margin-top: 28px;
    padding: 0;
  }

  .detail .section2 .title p {
    font-size: 22px;
    line-height: 30px;
  }

  .detail .section2 .desc p {
    font-size: 14px;
    line-height: 28px;
  }

  .detail .section2 .btn {
    align-self: flex-start;
    margin-top: 26px;
  }

  .tbl {
    margin: 44px 0;
  }

  .tbl .inner {
    width: 90%;
  }

  .tbl .title {
    width: 100%;
  }

  .tbl .title p {
    font-size: 28px;
    line-height: 38px;
    text-align: center;
  }

  .tbl .line {
    width: 56px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 99px;
    background: #1d82b8;
  }

  .tbl .table-card {
    width: 100%;
    flex: none;
    overflow-x: visible;
    padding-bottom: 4px;
  }

  .tbl .tabList {
    min-width: 0;
    width: 100%;
  }

  .tbl .tabList table,
  .tbl .tabList tbody {
    min-width: 0;
    width: 100% !important;
    max-width: 100% !important;
  }

  .tbl .tabList tr,
  .tbl .tabList th,
  .tbl .tabList td {
    max-width: 100% !important;
  }

  .tbl .tabList tr {
    margin-bottom: 20px;
  }

  .tbl .tabList tr:hover {
    transform: none;
  }

  .tbl .tabList tr > th:first-child,
  .tbl .tabList tr > td:first-child {
    flex: 0 0 34% !important;
    width: 34% !important;
    max-width: 34% !important;
    padding: 7px 14px;
    font-size: 14px;
    line-height: 26px;
  }

  .tbl .tabList tr > th:first-child *,
  .tbl .tabList tr > td:first-child * {
    max-width: 100% !important;
    line-height: 22px !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .tbl .tabList th:not(:first-child),
  .tbl .tabList td:not(:first-child) {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0;
    margin-left: 14px;
    font-size: 15px;
    line-height: 26px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .tbl .tabList th:not(:first-child) *,
  .tbl .tabList td:not(:first-child) * {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .logistics {
    padding: 0 0 42px;
  }

  .logistics .section1 .title p,
  .certificate .section1 .title p,
  .related .section1 .title p {
    font-size: 24px;
    line-height: 34px;
  }

  .logistics .logistics-media-section {
    margin-top: 26px;
  }

  .logistics .logistics-media-section .swiper-slide {
    height: 220px;
  }

  .logistics .logistics-media-section .prev {
    left: 10%;
  }

  .logistics .logistics-media-section .next {
    right: 10%;
  }

  .certificate {
    padding: 44px 0 54px;
  }

  .certificate .section2 {
    margin-top: 26px;
  }

  .certificate .section2 .swiper {
    width: 108%;
    margin-left: -4%;
    margin-right: -4%;
    padding-left: 4%;
    padding-right: 4%;
  }

  .certificate .section2 .swiper-slide {
    width: 220px;
    height: 310px;
  }

  .application {
    padding: 36px 0 36px;
  }

  .application .inner {
    width: 90%;
  }

  .application .swiper {
    border-radius: 24px;
  }

  .application .prev,
  .application .next {
    display: none;
  }

  .application .content .title p {
    font-size: 20px;
    line-height: 30px;
  }

  .application .content .text1 p {
    font-size: 16px;
    line-height: 28px;
  }

  .application .content .text2 p {
    width: 100%;
    font-size: 14px;
    line-height: 27px;
  }

  .application .img {
    height: 250px;
  }

  .related {
    padding: 10px 0 40px;
  }

  .related .section2 {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .related .section2 .swiper-slide {
    padding: 22px;
    border-radius: 24px 0 24px 0;
  }

  .related .section3 {
    gap: 24px;
    margin-top: 28px;
  }

  .service {
    padding: 40px 0 46px;
  }

  .service .inner {
    width: 90%;
    flex-wrap: wrap;
  }

  .service .section1,
  .service .section2 {
    width: 100%;
  }

  .service .section1 .title p {
    width: 100%;
    font-size: 28px;
    line-height: 38px;
  }

  .service .section1 .line {
    margin-top: 22px;
  }

  .service .section1 .btn {
    flex-direction: row;
    margin-top: 22px;
    margin-left: auto;
    margin-right: 0;
    justify-content: flex-end;
  }

  .service .section2 {
    margin-top: 26px;
  }

  .service .section2 .swiper {
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    overflow: visible !important;
  }

  .service .section2 .swiper-wrapper {
    transform: none !important;
  }

  .service .section2 .swiper-slide {
    padding: 22px;
  }

  .faq {
    padding: 40px 0 48px;
  }

  .faq .inner {
    width: 90%;
  }

  .faq .section1 .title p {
    font-size: 24px;
    line-height: 32px;
  }

  .faq .section2 {
    width: 100%;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .form {
    padding: 14px 20px;
    border-bottom-width: 6px;
    overflow-x: visible;
    flex-wrap: wrap;
  }

  .form .text1,
  .form .text2 {
    flex: none;
  }

  .form .text1 p,
  .form .text2 p {
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
  }

  .detail {
    padding: 0 0 20px;
  }

  .detail .inner {
    width: 92%;
    padding: 20px;
    border-radius: 0 0 24px 24px;
  }

  .detail .section1-top {
    width: 72%;
    border-radius: 20px 0 20px 0;
  }

  .detail .section1-top .swiper-slide {
    padding: 20px;
  }

  .detail .section1-bottom {
    margin-top: 20px;
  }

  .detail .section1-bottom .swiper,
  .detail .section1-bottom .swiper-wrapper {
    gap: 10px;
  }

  .detail .section1-bottom .swiper-wrapper {
    --thumb-gap: 10px;
  }

  .detail .section1-bottom .prev,
  .detail .section1-bottom .next,
  .application .prev,
  .application .next,
  .related .section3 .prev,
  .related .section3 .next,
  .service .section1 .btn .prev,
  .service .section1 .btn .next,
  .certificate .section3 .prev,
  .certificate .section3 .next {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
  }

  .detail .section1-bottom .prev svg,
  .detail .section1-bottom .next svg,
  .application .prev svg,
  .application .next svg,
  .related .section3 .prev svg,
  .related .section3 .next svg {
    width: 20px;
    height: 14px;
  }

  .detail .section2 {
    margin-top: 20px;
  }

  .detail .section2 .title p {
    font-size: 20px;
    line-height: 28px;
  }

  .detail .section2 .line,
  .detail .section2 .desc {
    margin-top: 20px;
  }

  .detail .section2 .desc p {
    font-size: 14px;
    line-height: 24px;
  }

  .detail .section2 .btn {
    gap: 12px;
    height: 48px;
    margin-top: 20px;
    padding: 0 20px;
  }

  .detail .section2 .btn p {
    font-size: 18px;
    line-height: 24px;
  }

  .detail .section2 .btn svg {
    width: 30px;
    height: 30px;
  }

  .tbl {
    margin: 20px 0;
  }

  .tbl .inner,
  .logistics .section1 .inner,
  .certificate .inner,
  .application .inner,
  .related .section1 .inner,
  .service .inner,
  .faq .inner {
    width: 92%;
  }

  .tbl .title p,
  .logistics .section1 .title p,
  .certificate .section1 .title p,
  .related .section1 .title p,
  .service .section1 .title p,
  .faq .section1 .title p {
    font-size: 20px;
    line-height: 28px;
  }

  .tbl .line {
    width: 56px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 99px;
    background: #1d82b8;
  }

  .tbl .table-card {
    padding-bottom: 0;
  }

  .tbl .tabList {
    min-width: 0;
  }

  .tbl .tabList tr {
    margin-bottom: 16px;
  }

  .tbl .tabList tr > th:first-child,
  .tbl .tabList tr > td:first-child {
    flex-basis: 36% !important;
    width: 36% !important;
    max-width: 36% !important;
    padding: 6px 12px;
    line-height: 24px;
  }

  .tbl .tabList th:not(:first-child),
  .tbl .tabList td:not(:first-child) {
    margin-left: 12px;
    font-size: 14px;
    line-height: 24px;
  }

  .logistics {
    padding: 0 0 20px;
  }

  .logistics .section1 .line,
  .certificate .section1 .line,
  .related .section1 .title .line,
  .faq .section1 .line {
    margin-top: 14px;
  }

  .logistics .logistics-media-section {
    margin-top: 20px;
  }

  .logistics .logistics-media-section .swiper-slide {
    height: 200px;
  }

  .logistics .logistics-media-section .prev,
  .logistics .logistics-media-section .next {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
  }

  .logistics .logistics-media-section .prev {
    left: 20px;
  }

  .logistics .logistics-media-section .next {
    right: 20px;
  }

  .certificate {
    padding: 20px 0;
  }

  .certificate .section2 {
    margin-top: 20px;
  }

  .certificate .section2 .swiper {
    width: 112%;
    margin-left: -6%;
    margin-right: -6%;
    padding: 18px 6% 0;
  }

  .certificate .section2 .swiper-slide {
    width: 210px;
    height: 300px;
  }

  .certificate .section3 {
    gap: 14px;
    margin-top: 20px;
  }

  .application {
    padding: 20px 0 20px;
  }

  .application > img {
    display: none;
  }

  .application .swiper {
    border-radius: 20px;
    padding: 18px 0 0;
  }

  .application .prev,
  .application .next {
    display: none;
  }

  .application .content {
    padding: 10px 20px 30px;
  }

  .application .content .top {
    gap: 14px;
  }

  .application .content .title p {
    font-size: 20px;
    line-height: 28px;
  }

  .application .content .line {
    width: 180px;
  }

  .application .content .text1 p {
    font-size: 16px;
    line-height: 28px;
  }

  .application .content .text2 p {
    font-size: 14px;
    line-height: 26px;
  }

  .application .img {
    height: 220px;
  }

  .related {
    padding: 20px 0;
  }

  .related .section2 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
  }

  .related .section2 .swiper-slide {
    padding: 20px;
    border-radius: 20px 0 20px 0;
  }

  .related .section2 .swiper-slide .title {
    padding-top: 20px;
  }

  .related .section2 .swiper-slide .title p {
    font-size: 18px;
    line-height: 24px;
  }

  .related .section3 {
    gap: 20px;
    margin-top: 20px;
  }

  .service {
    padding: 20px 0;
  }

  .service .section1 .tag p {
    padding: 8px 14px;
    font-size: 14px;
    line-height: 20px;
  }

  .service .section1 .title,
  .service .section1 .line,
  .service .section1 .btn,
  .service .section2 {
    margin-top: 20px;
  }

  .service .section2 .swiper {
    padding: 14px 18px;
    margin: -14px -18px;
  }

  .service .section2 .swiper-slide {
    padding: 20px;
    border-radius: 18px;
  }

  .service .section2 .swiper-slide .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    border-radius: 12px;
  }

  .service .section2 .swiper-slide .icon svg {
    width: 20px;
    height: 20px;
  }

  .service .section2 .swiper-slide .content {
    margin-left: 14px;
  }

  .service .section2 .swiper-slide .num {
    margin-right: 12px;
  }

  .service .section2 .swiper-slide .title p {
    font-size: 18px;
    line-height: 24px;
  }

  .service .section2 .swiper-slide .bottom {
    margin-top: 10px;
  }

  .service .section2 .swiper-slide .bottom p {
    font-size: 14px;
    line-height: 22px;
  }

  .faq {
    padding: 20px 0;
  }

  .faq .section1 .desc {
    margin-top: 20px;
    display: none;
  }

  .faq .section1 .desc p,
  .faq .section2 .item .question p,
  .faq .section2 .item .answer p,
  .faq .section2 .item-active .answer p {
    font-size: 14px;
    line-height: 22px;
  }

  .faq .section2 {
    gap: 14px;
    margin-top: 20px;
  }

  .faq .section2 .item {
    padding: 12px 20px;
  }

  .faq .section2 .item-active .answer {
    margin-top: 14px;
  }
}

@media only screen and (max-width: 640px) {
  .form {
    padding: 12px 20px;
  }

  .detail .section1-top {
    width: 86%;
  }

  .detail .section1-bottom .prev,
  .detail .section1-bottom .next {
    display: none;
  }

  .detail .section1-bottom .swiper-wrapper {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .detail .section1-bottom .swiper-slide {
    flex: 0 0 calc((100% - (var(--thumb-gap) * 2)) / 3);
    width: auto;
  }

  .logistics .logistics-media-section .swiper-slide {
    height: 180px;
  }

  .certificate .section2 .swiper-slide {
    width: 190px;
    height: 270px;
  }

  .application .prev,
  .application .next {
    display: none;
  }

  .related .section2 .swiper-slide {
    padding: 18px;
  }

  .service .section2 .swiper-slide {
    align-items: flex-start;
  }

  .service .section2 .swiper-slide .content {
    flex: 1;
  }

  .faq .section2 .item .icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
  }
}

@media only screen and (max-width: 414px) {
  .detail .inner {
    padding: 18px;
  }

  .detail .section1-top {
    width: 100%;
  }

  .detail .section1-bottom .swiper-slide {
    flex-basis: calc((100% - (var(--thumb-gap) * 2)) / 3);
    width: auto;
  }

  .detail .section2 .desc p {
    line-height: 22px;
  }

  .detail .section2 .btn {
    width: 100%;
  }

  .tbl .tabList {
    min-width: 0;
  }

  .tbl .tabList tr > th:first-child,
  .tbl .tabList tr > td:first-child {
    flex-basis: 38% !important;
    width: 38% !important;
    max-width: 38% !important;
    padding: 6px 10px;
  }

  .tbl .tabList th:not(:first-child),
  .tbl .tabList td:not(:first-child) {
    margin-left: 10px;
  }

  .logistics .logistics-media-section .swiper-slide {
    height: 160px;
  }

  .certificate .section2 .swiper-slide {
    width: 170px;
    height: 240px;
  }

  .application .content {
    padding: 10px 20px 30px;
  }

  .application .content .line {
    width: 150px;
  }

  .application .img {
    height: 200px;
  }

  .related .section2 .swiper-slide .title p {
    font-size: 16px;
    line-height: 22px;
  }

  .service .section2 .swiper-slide {
    padding: 18px;
  }

  .service .section2 .swiper-slide .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
  }

  .service .section2 .swiper-slide .title p {
    font-size: 16px;
    line-height: 22px;
  }

  .faq .section2 .item {
    padding: 12px 18px;
  }
}

@media only screen and (max-width: 375px) {
  .detail .inner {
    padding: 16px;
  }

  .detail .section1-bottom .swiper-slide {
    flex-basis: calc((100% - (var(--thumb-gap) * 2)) / 3);
    width: auto;
  }

  .detail .section2 .btn {
    height: 46px;
  }

  .tbl .tabList {
    min-width: 0;
  }

  .tbl .tabList tr > th:first-child,
  .tbl .tabList tr > td:first-child {
    flex-basis: 40% !important;
    width: 40% !important;
    max-width: 40% !important;
    padding: 6px 8px;
  }

  .tbl .tabList th:not(:first-child),
  .tbl .tabList td:not(:first-child) {
    margin-left: 8px;
  }

  .logistics .logistics-media-section .swiper-slide {
    height: 150px;
  }

  .certificate .section2 .swiper-slide {
    width: 160px;
    height: 230px;
  }

  .application .content {
    padding: 10px 20px 30px;
  }

  .application .img {
    height: 190px;
  }

  .related .section2 .swiper-slide {
    padding: 16px;
  }

  .service .section2 .swiper-slide {
    padding: 16px;
  }

  .service .section2 .swiper-slide .content {
    margin-left: 12px;
  }

  .faq .section2 .item {
    padding: 12px 16px;
  }
}

/* Qunda themed table style, aligned with guangkai pro detail tables. */
.tbl .table-card {
  min-width: 0;
  max-width: 100%;
  overflow-x: visible;
}

.tbl .tabList {
  display: block;
  flex-wrap: initial;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: scroll;
  overflow-y: hidden;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 12px;
  border: 4px solid rgba(29, 130, 184, 0.36);
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #1D82B8 transparent;
  scrollbar-width: thin;
}

.tbl .tabList::-webkit-scrollbar {
  width: 0;
  height: 12px;
}

.tbl .tabList::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #1D82B8;
}

.tbl .tabList::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
  box-shadow: inset 0 0 5px rgba(29, 130, 184, 0.12);
}

.tbl .tabList table {
  display: table;
  flex-wrap: initial;
  width: max-content !important;
  min-width: max(100%, 1180px) !important;
  max-width: none !important;
  border: 1px solid #cfdde5;
  border-collapse: collapse;
  table-layout: auto;
  empty-cells: show;
}

.tbl .tabList table col,
.tbl .tabList table colgroup {
  width: auto !important;
}

.tbl .tabList thead,
.tbl .tabList tbody {
  display: table-row-group;
  flex-wrap: initial;
  width: auto !important;
  min-width: 0;
  max-width: none !important;
}

.tbl .tabList thead {
  display: table-header-group;
}

.tbl .tabList tr {
  display: table-row;
  flex-wrap: initial;
  align-items: initial;
  width: auto;
  max-width: none !important;
  margin-bottom: 0;
  height: 82px !important;
  transition: none;
}

.tbl .tabList tr:hover {
  transform: none;
}

.tbl .tabList table caption {
  width: 100%;
  padding: 24px 30px;
  border: 1px solid #cfdde5;
  background: transparent;
  color: #333333;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.tbl .tabList table th,
.tbl .tabList table td,
.tbl .tabList table tr > th:first-child,
.tbl .tabList table tr > td:first-child,
.tbl .tabList table th:not(:first-child),
.tbl .tabList table td:not(:first-child) {
  display: table-cell;
  flex: none !important;
  flex-basis: auto !important;
  width: auto !important;
  min-width: 0;
  max-width: none !important;
  margin-left: 0;
  height: auto !important;
  border: 1px solid #cfdde5;
  border-radius: 0;
  background: transparent;
  color: #5e6d76;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  box-shadow: none;
  transition: background 0.35s ease, color 0.35s ease;
}

.tbl .tabList table th,
.tbl .tabList table tr > th:first-child {
  padding: 18px 24px;
  background: transparent;
  color: #5e6d76;
}

.tbl .tabList table tr:first-child > th,
.tbl .tabList table tr:first-child > td {
  background: transparent;
  color: #5e6d76;
}

.tbl .tabList table td,
.tbl .tabList table tr > td:first-child {
  padding: 18px 24px;
}

.tbl .tabList table th *,
.tbl .tabList table td *,
.tbl .tabList table tr > th:first-child *,
.tbl .tabList table tr > td:first-child * {
  max-width: none !important;
  color: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  text-align: inherit !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

.tbl .tabList table p {
  width: auto;
  margin: 0;
  padding: 0 !important;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
}

.tbl .tabList table ol,
.tbl .tabList table ul,
.tbl .tabList table th ol,
.tbl .tabList table th ul,
.tbl .tabList table td:first-child ol,
.tbl .tabList table td:first-child ul {
  display: inline-block;
  flex-wrap: initial;
  width: auto;
  margin: 0;
  padding-left: 1.2em;
  text-align: left;
}

.tbl .tabList table li,
.tbl .tabList table th li,
.tbl .tabList table td:first-child li {
  width: auto;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.tbl .tabList table tr:hover > th,
.tbl .tabList table tr:hover > td,
.tbl .tabList table tr:hover > th:first-child,
.tbl .tabList table tr:hover > td:first-child,
.tbl .tabList table tr:hover th:not(:first-child),
.tbl .tabList table tr:hover td:not(:first-child) {
  border-color: #b7d6e7;
  background: #fafdff;
  color: #1d82b8;
  box-shadow: none;
}

@media only screen and (max-width: 1210px) {
  .tbl .inner {
    width: 90%;
    align-items: flex-start;
  }

  .tbl .title {
    width: 100%;
    justify-content: center;
  }

  .tbl .title p {
    font-size: 34px;
    line-height: 44px;
    text-align: center;
  }

  .tbl .line {
    align-self: auto;
    width: 64px;
    height: 4px;
    margin: 16px auto 28px;
    border-radius: 99px;
    background: #1d82b8;
  }

  .tbl .table-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .tbl .tabList {
    width: 100%;
  }

  .tbl .tabList tr {
    height: 72px !important;
  }

  .tbl .tabList table th,
  .tbl .tabList table td,
  .tbl .tabList table tr > th:first-child,
  .tbl .tabList table tr > td:first-child,
  .tbl .tabList table th:not(:first-child),
  .tbl .tabList table td:not(:first-child) {
    font-size: 16px;
    line-height: 28px;
  }

  .tbl .tabList table th,
  .tbl .tabList table tr > th:first-child,
  .tbl .tabList table td,
  .tbl .tabList table tr > td:first-child {
    padding: 14px 12px;
  }
}

@media only screen and (max-width: 820px) {
  .tbl .table-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 24px;
    overflow-x: visible;
  }

  .tbl .tabList {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    border-width: 2px;
  }

  .tbl .tabList table {
    width: max-content !important;
    min-width: 760px !important;
  }

  .tbl .tabList tr {
    height: 66px !important;
  }

  .tbl .tabList table th,
  .tbl .tabList table td,
  .tbl .tabList table tr > th:first-child,
  .tbl .tabList table tr > td:first-child,
  .tbl .tabList table th:not(:first-child),
  .tbl .tabList table td:not(:first-child) {
    font-size: 16px;
    line-height: 28px;
  }

  .tbl .tabList table th,
  .tbl .tabList table tr > th:first-child {
    padding: 10px 8px;
  }

  .tbl .tabList table td,
  .tbl .tabList table tr > td:first-child {
    padding: 10px 8px;
  }
}

@media only screen and (max-width: 414px) {
  .tbl .tabList table {
    width: max-content !important;
    min-width: 680px !important;
  }

  .tbl .tabList tr {
    height: 58px !important;
  }

  .tbl .tabList table th,
  .tbl .tabList table td,
  .tbl .tabList table tr > th:first-child,
  .tbl .tabList table tr > td:first-child,
  .tbl .tabList table th:not(:first-child),
  .tbl .tabList table td:not(:first-child) {
    font-size: 14px;
    line-height: 24px;
  }

  .tbl .tabList table th,
  .tbl .tabList table tr > th:first-child {
    padding: 9px 8px;
  }

  .tbl .tabList table td,
  .tbl .tabList table tr > td:first-child {
    padding: 9px 8px;
  }
}

@media only screen and (max-width: 1180px) and (min-width: 821px) {
  .detail .inner {
    width: 90%;
    padding: 34px 24px;
    align-items: flex-start;
  }

  .detail .section1,
  .detail .section2 {
    width: 100%;
    flex: none;
  }

  .detail .section1 {
    justify-content: center;
  }

  .detail .section1-top {
    width: 62%;
    max-width: 520px;
  }

  .detail .section1-bottom {
    width: 76%;
    max-width: 640px;
    margin: 24px auto 0;
  }

  .detail .section2 {
    margin-top: 30px;
    padding: 0;
  }

  .detail .section2 .desc p {
    line-height: 30px;
  }

  .detail .section2 .detail-actions {
    align-items: flex-start;
    gap: 18px;
    margin-top: 26px;
  }

  .detail .section2 .detail-contact {
    flex: 1 1 360px;
  }

  .detail .section2 .detail-actions .btn {
    flex: 0 0 auto;
    gap: 10px;
    height: 50px;
    padding: 0 28px;
  }

  .detail .section2 .detail-actions .btn p {
    font-size: 18px;
    line-height: 26px;
  }

  .detail .section2 .detail-actions .btn svg {
    width: 28px;
    height: 28px;
  }
}

.detail .section2 .detail-actions .btn {
  margin-top: 0;
}

@media only screen and (max-width: 820px) {
  .detail .section2 .detail-actions {
    align-items: flex-start;
    margin-top: 26px;
  }

  .detail .section2 .detail-contact {
    flex: none;
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .detail .section2 .detail-actions {
    gap: 18px;
    margin-top: 20px;
  }

  .detail .section2 .detail-contact {
    gap: 8px;
  }

  .detail .section2 .detail-contact .item p:first-child,
  .detail .section2 .detail-contact .item p:last-child {
    font-size: 13px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 414px) {
  .detail .section2 .detail-actions .btn {
    width: 100%;
  }
}
