/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 02 2026 | 12:50:34 */
/* =========================
   Module-02: Service Feature Row
   ========================= */

.b2b-service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 8px 40px 67px;
  background: #ffffff;
  margin: 24px auto !important;
  box-sizing: border-box;
}

.b2b-service-item {
  display: flex;
  gap: 12px;
  flex: 1;
}

.b2b-service-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.b2b-service-text {
  flex: 1;
}

.b2b-service-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 6px 0;
  line-height: 1.3;
  text-transform: capitalize;
}

.b2b-service-text p {
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 1.6;
}

/* 平板适配 */
@media (max-width: 1024px) {
  .b2b-service-row {
    padding: 35px 25px;
    gap: 28px;
  }
}

/* 手机端 */
@media (max-width: 767px) {
  .b2b-service-row {
    flex-direction: column;
    gap: 30px;
    padding: 30px 60px;
  }

  .b2b-service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .b2b-service-icon {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 480px) {
  .b2b-service-row {
    padding: 28px 20px;
  }
}




/* =========================
   Module-03: Logo Carousel
   ========================= */

.b2b-logo-carousel {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 60px 67px;
  gap: 40px;
  overflow: hidden;
  box-sizing: border-box;
}

/* 左侧标题 */
.b2b-logo-carousel__title {
  flex-shrink: 0;
  width: 444px;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  white-space: nowrap;
}

/* 右侧轮播外壳 */
.b2b-logo-carousel__track-wrap {
  flex: 1;
  overflow: hidden;
}

/* 轮播轨道 */
.b2b-logo-carousel__track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: b2bLogoScroll 20s linear infinite;
}

/* 鼠标悬停暂停 */
.b2b-logo-carousel__track-wrap:hover .b2b-logo-carousel__track {
  animation-play-state: paused;
}

/* 单个 Logo */
.b2b-logo-carousel__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-logo-carousel__item img {
  height: 30px;
  width: auto;
  opacity: 0.7;
  transition: opacity .25s ease;
  display: block;
}

.b2b-logo-carousel__item img:hover {
  opacity: 1;
}

/* 无缝滚动动画 */
@keyframes b2bLogoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 平板适配 */
@media (max-width: 1024px) {
  .b2b-logo-carousel {
    padding: 25px 40px;
    gap: 30px;
  }

  .b2b-logo-carousel__title {
    width: 300px;
    font-size: 16px;
  }

  .b2b-logo-carousel__track {
    gap: 40px;
  }

  .b2b-logo-carousel__item img {
    height: 26px;
  }
}

/* 手机端 */
@media (max-width: 767px) {
  .b2b-logo-carousel {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 15px;
    gap: 20px;
  }

  .b2b-logo-carousel__title {
    width: auto;
    white-space: normal;
  }

  .b2b-logo-carousel__track {
    gap: 38px;
    animation-duration: 18s;
  }

  .b2b-logo-carousel__item img {
    height: 24px;
  }
}


/* =========================
   About Section Module-04 CSS
   Popup handled by Woody global popup
   ========================= */

.b2b-about {
  background: #ffffff;
  padding: 40px 67px;
  box-sizing: border-box;
}

.b2b-about__top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 50px;
}

.b2b-about__video {
  flex: 1;
}

.b2b-about__video iframe {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  border: none;
  display: block;
}

.b2b-about__text {
  flex: 1;
}

.b2b-about__tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.b2b-about__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #111111;
}

.b2b-about__desc {
  font-size: 15px;
  line-height: 1.65;
  color: #555555;
  margin: 0 0 10px;
}

.b2b-about__link {
  color: #007bff;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin: 0 0 15px;
}

.b2b-about__link:hover {
  text-decoration: underline;
}

/* 按钮：调用 Woody 全站 Formspree 弹窗 */
.b2b-about__btn {
  background: #007bff;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  text-align: center;
  border: none;
  transition: all .25s ease;
  line-height: 1.2;
}

.b2b-about__btn::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}

.b2b-about__btn:hover {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* 数据统计 */
.b2b-about__stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 24px;
}

.b2b-about__stat {
  flex: 1;
}

.b2b-about__num {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.b2b-about__label {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #000000;
}

/* 平板适配 */
@media (max-width: 1024px) {
  .b2b-about {
    padding: 30px 40px;
  }

  .b2b-about__top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .b2b-about__video,
  .b2b-about__text {
    width: 100%;
  }

  .b2b-about__video iframe {
    height: 300px;
  }

  .b2b-about__title {
    font-size: 26px;
  }
}

/* 手机适配 */
@media (max-width: 767px) {
  .b2b-about {
    padding: 25px 15px;
  }

  .b2b-about__top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
  }

  .b2b-about__video {
    width: 100%;
  }

  .b2b-about__video iframe {
    height: 220px;
  }

  .b2b-about__text {
    width: 100%;
    text-align: left;
  }

  .b2b-about__title {
    font-size: 22px;
  }

  .b2b-about__btn {
    display: inline-flex;
    width: fit-content;
  }

  .b2b-about__stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .b2b-about__stat {
    width: 100%;
    text-align: center;
  }

  .b2b-about__num {
    font-size: 26px;
  }

  .b2b-about__label {
    font-size: 15px;
  }
}

/* =========================
   Main Products Module-05 CSS
   Popup handled by Woody global popup
   ========================= */

.b2b-products {
  background: #f8f9fa;
  padding: 60px 71px;
  margin: 0 auto;
  box-sizing: border-box;
}

.b2b-products__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.b2b-products__heading {
  max-width: 720px;
}

.b2b-products__tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.b2b-products__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #111111;
  line-height: 1.25;
}

.b2b-products__desc {
  color: #555555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* 按钮：调用 Woody 全站 Formspree 弹窗 */
.b2b-products__popup-btn {
  background: #007bff;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
}

.b2b-products__popup-btn::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}

.b2b-products__popup-btn:hover {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* 产品列表 */
.b2b-products__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.b2b-products__item {
  overflow: hidden;
}

.b2b-products__img-link {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.b2b-products__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform .4s ease;
}

.b2b-products__item:hover .b2b-products__img {
  transform: scale(1.05);
}

.b2b-products__item-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #111111;
  line-height: 1.35;
}

.b2b-products__item-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  margin: 0 0 12px;
}

.b2b-products__link {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.b2b-products__link:hover {
  text-decoration: underline;
}

/* 平板 */
@media (max-width: 1024px) {
  .b2b-products {
    padding: 50px 40px;
  }

  .b2b-products__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 手机 */
@media (max-width: 767px) {
  .b2b-products {
    padding: 30px 15px;
  }

  .b2b-products__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .b2b-products__title {
    font-size: 26px;
  }

  .b2b-products__popup-btn {
    width: fit-content;
  }

  .b2b-products__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .b2b-products__img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .b2b-products__list {
    grid-template-columns: 1fr;
  }

  .b2b-products__img {
    height: 200px;
  }
}

/* =========================
   Products 3 Columns Module-06 CSS
   Popup handled by Woody global popup
   ========================= */

.b2b-products-3 {
  background: #ffffff;
  padding: 60px 71px;
  margin: 0 auto;
  box-sizing: border-box;
}

.b2b-products-3__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.b2b-products-3__heading {
  max-width: 720px;
}

.b2b-products-3__tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.b2b-products-3__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #111111;
  line-height: 1.25;
}

.b2b-products-3__desc {
  color: #555555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* 按钮：调用 Woody 全站 Formspree 弹窗 */
.b2b-products-3__popup-btn {
  background: #007bff;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
}

.b2b-products-3__popup-btn::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}

.b2b-products-3__popup-btn:hover {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* 产品网格 */
.b2b-products-3__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.b2b-products-3__card {
  width: 100%;
}

.b2b-products-3__img-link {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.b2b-products-3__img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.b2b-products-3__card:hover .b2b-products-3__img {
  transform: scale(1.05);
}

.b2b-products-3__item-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #111111;
  line-height: 1.35;
}

.b2b-products-3__item-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  margin: 0 0 12px;
}

.b2b-products-3__link {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.b2b-products-3__link:hover {
  text-decoration: underline;
}

/* 平板 */
@media (max-width: 1024px) {
  .b2b-products-3 {
    padding: 50px 40px;
  }

  .b2b-products-3__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 手机 */
@media (max-width: 767px) {
  .b2b-products-3 {
    padding: 30px 15px;
  }

  .b2b-products-3__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .b2b-products-3__title {
    font-size: 26px;
  }

  .b2b-products-3__popup-btn {
    width: fit-content;
  }

  .b2b-products-3__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }

  .b2b-products-3__img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .b2b-products-3__grid {
    grid-template-columns: 1fr;
  }

  .b2b-products-3__img {
    height: 200px;
  }
}



/* =========================
   Module-07: Product Main Feature
   ========================= */

.b2b-feature {
  background: #ffffff;
  padding: 60px 71px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* 顶部标题区 */
.b2b-feature__header {
  margin-bottom: 50px;
}

.b2b-feature__tag {
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.b2b-feature__title {
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 15px;
  line-height: 1.2;
}

.b2b-feature__desc {
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  max-width: 80%;
  margin: 0;
}

/* 4列布局 */
.b2b-feature__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.b2b-feature__card {
  box-sizing: border-box;
}

/* 图标 */
.b2b-feature__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.b2b-feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .25s ease;
}

.b2b-feature__icon img:hover {
  transform: scale(1.15);
}

.b2b-feature__card-title {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 12px;
  line-height: 1.35;
}

.b2b-feature__card-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* 平板适配 */
@media (max-width: 1024px) {
  .b2b-feature__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2b-feature__desc {
    max-width: 100%;
  }
}

/* 手机适配 */
@media (max-width: 767px) {
  .b2b-feature {
    padding: 30px 15px;
  }

  .b2b-feature__header {
    margin-bottom: 35px;
  }

  .b2b-feature__title {
    font-size: 28px;
  }

  .b2b-feature__desc {
    font-size: 16px;
  }

  .b2b-feature__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}




