@charset "utf-8";
/* CSS Document */
/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}
body {
  overflow-x: hidden;
  color: #333;
}
/* 容器样式 */
.in-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}








/* 顶部导航栏 */
.in-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  
  z-index: 999;
 
  padding: 35px 0;
}
.in-header-content {
  position: relative;
  width: 100%;
  height: 50px;
}
.in-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.in-logo img {
  height: 90px;
}
/* ========== 这里已修复：距离屏幕右侧 80px ========== */
.in-header-right {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}
/* 语言切换下拉 */
.in-lang-dropdown {
  position: relative;
  cursor: pointer;
}
.in-lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}
.in-lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: none;
  flex-direction: column;
  min-width: 120px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.in-lang-menu a {
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  transition: background 0.3s;
}
.in-lang-menu a:hover {
  background: #f5f5f5;
}
.in-lang-dropdown:hover .in-lang-menu {
  display: flex;
}
/* 汉堡菜单按钮 */
.in-menu-btn {
  font-size: 24px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #ffffff;
}
/* 全屏导航菜单 —— 居中版 + 下划线hover */
.in-fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #333;
  color: #fff;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.in-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #fff;
  z-index: 10;
}
.in-menu-list {
  list-style: none;
  margin-top: 0;
  text-align: center;
  width: 100%;
}
.in-menu-list li {
  margin: 20px 0;
}
.in-menu-list a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  transition: color 0.3s;
}
.in-menu-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #4CAF50;
  transition: all 0.3s ease;
}
.in-menu-list a:hover::after {
  width: 80%;
}
.in-menu-list a:hover, .in-menu-list a.active {
  color: #4CAF50;
}
/* 轮播图样式 */
.in-carousel {
  
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.in-carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.in-carousel-slide {
  min-width: 100%;
  height: 100%;
}
.in-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.in-prev-arrow {
  left: 20px;
}
.in-next-arrow {
  right: 20px;
}
.in-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.in-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.in-dot.active {
  background: #fff;
}
/* 6列导航模块 */
.in-six-col-nav {
  padding: 80px 0;
}
.in-nav-wrapper {
  width: 1320px;
  margin: 0 auto;
}
.in-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

a.no-style {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.in-nav-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.in-nav-item:hover {
  transform: translateY(-5px);
}
.in-nav-item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
}
.in-nav-item h3 {
  font-size: 16px;
  color: #333;
}
/* 关于我们模块 */
.in-about-section {
    display: flex;
    width: 1320px;       /* 固定宽度 */
    max-width: 100%;
    margin: 0 auto;      /* 居中 */
    align-items: stretch; /* 左右等高 */
    padding: 60px 15px;
    gap: 0; /* 不需要间距 */
}

/* 左图：固定 725*562px */
.in-about-img {
    width: 725px;
    height: 690px;
    flex-shrink: 0;
}
.in-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 右文：占剩余宽度 */
.in-about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    background: #f9f9f9;
}
.in-about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}
.in-about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}
/* 数字滚动模块 - 无背景 + 一排显示 */
.in-counter-section {
    margin-top: 30px;
    background: none !important;
    color: #333 !important;
    padding: 0;
    border: none;
}
.in-counter-section::before {
    display: none; /* 去掉遮罩 */
}
.in-counter-grid {
	margin-top: 40px;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}
.in-counter-item {
    flex: 1;
    min-width: 140px;
    padding: 0;
}
.in-counter-icon {
    font-size: 32px;
    margin-bottom: 10px;
    color: #3498db;
}
.in-counter-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}
.in-counter-text {
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
}
/* 产品展示模块 */
.in-products-section {
  padding: 100px 0;
}
.in-section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
  color: #333;
}
.in-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
}
.in-product-item {
  text-align: center;
  transition: transform 0.3s ease;
}
.in-product-item:hover {
  transform: translateY(-10px);
}
.in-product-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 20px;
}
.in-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.in-product-item:hover .in-product-img img {
  transform: scale(1.05);
}
.in-product-title {
  font-size: 20px;
  color: #333;
}



.lx-tab-module {
            width: 100%;
            margin: 50px auto;
            /* 背景图：所有内容都在这张图上面 */
            background-image: url("/uploadfile/202605/066a439169a09a5a6cb898f0b4b6351b.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 60px 40px;
            position: relative;
            color: #fff;
        }

        /* 背景遮罩（保证文字看得清） */
        .lx-tab-module::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        /* 所有内容放在遮罩上面 */
        .lx-tab-wrapper {
            position: relative;
            z-index: 2;
        }

        /* 标题区域：居中 */
        .lx-title-group {
            text-align: center;
            margin: 60px 0;
        }
        .lx-main-title {
            font-size: 38px;
            margin-bottom: 12px;
        }
        .lx-sub-title {
            font-size: 18px;
            opacity: 0.95;
        }

        /* Tab 按钮 */
        .lx-tab-nav {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 50px;
        }
        .lx-tab-btn {
            padding: 14px 32px;
            font-size: 16px;
            border: none;
            border-radius: 6px;
            background: rgba(255,255,255,0.9);
            cursor: pointer;
            transition: 0.3s;
        }
        .lx-tab-btn.active {
            background: #666;
            color: #fff;
        }
        .lx-tab-btn:hover {
            transform: translateY(-2px);
        }

        /* Tab 内容区域：左右结构（左图右文） */
        .lx-tab-content {
            width: 100%;
        }
        .lx-content-item {
			margin-bottom: 60px;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 50px;
            animation: lxFade 0.4s ease;
        }
        .lx-content-item.active {
            display: flex;
        }
        @keyframes lxFade {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* 左边图片 */
        .lx-content-img {
			object-fit: cover;
            width: 500px;
            height: 340px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }

        /* 右边文字 */
        .lx-content-text {
            width: 580px;
        }
        .lx-content-text h3 {
            font-size: 30px;
            margin-bottom: 20px;
        }
        .lx-content-text p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 10px;
            opacity: 0.95;
        }



/* 4图轮播模块 */
.home-four-slider {
    padding: 60px 0;
}
.container {
    width: 1320px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.slider-wrapper {
    overflow: hidden;
    width: 100%;
	margin-bottom: 20px;
}
.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}
.slider-item {
    width: 310px;
    height: 240px;
    flex-shrink: 0;
}
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* 页脚样式 */
.in-footer {
  background: #333;
  color: #fff;
  padding: 80px 0 40px;
}
.in-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.in-footer-col h3 {
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.in-footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #4CAF50;
}
.in-footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}
.in-footer-desc {
  line-height: 1.8;
  color: #ccc;
}
.in-footer-links {
  list-style: none;
}
.in-footer-links li {
  margin-bottom: 15px;
}
.in-footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.in-footer-links a:hover {
  color: #4CAF50;
}
.in-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #ccc;
}
.in-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.in-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.in-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #444;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s;
}
.in-social-link:hover {
  background: #4CAF50;
}
/* 版权信息 */
.in-copyright {
  text-align: center;
  padding-top: 40px;
  color: #ccc;
  position: relative;
}
.in-copyright::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: #444;
}
/* WhatsApp客服按钮 */
.in-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10 rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s;
}
.in-whatsapp-btn:hover {
  transform: scale(1.1);
}
/* 响应式适配 */
@media (max-width: 1360px) {
  .in-nav-wrapper {
    width: 100% !important;
    padding: 0 20px;
  }
  .in-nav-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .in-about-img, .in-about-content {
    flex: 1 1 100%;
  }
  .in-about-content {
    padding: 60px 40px;
  }
  .in-carousel {
    height: 400px;
  }
  .in-header-right {
    right: 20px;
  }
}
@media (max-width: 768px) {
  .in-carousel {
    height: 300px;
  }
  .in-about-content h2 {
    font-size: 28px;
  }
  .in-section-title {
    font-size: 28px;
  }
  .in-logo img {
    height: 45px;
  }
  .in-nav-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 576px) {
  .in-carousel {
    height: 250px;
  }
  .in-counter-number {
    font-size: 30px;
  }
  .in-whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .in-logo img {
    height: 40px;
  }
}
.lx-container {
  width: 100%;
  max-width: 1320px;
  margin: 60px auto 0;
  padding: 0 20px;
}
.lx-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  z-index: 999;
}
.lx-whatsapp-btn:hover {
  transform: scale(1.1);
}
/* ========== 图标动态呼吸动画（新增） ========== */
.lx-icon-animate {
  animation: lxIconBreathe 2s infinite ease-in-out;
}
@keyframes lxIconBreathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
/* 1. 联系信息与表单模块 */
.lx-contact-section {
  padding: 80px 0;
  background: #fff;
}
.lx-contact-wrapper {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.lx-contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.lx-contact-info h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}
.lx-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.lx-info-item i {
  font-size: 30px;
  color: #3498db;
  margin-top: 5px;
  width: 30px;
  text-align: center;
}
.lx-info-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}
.lx-info-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}
.lx-info-content a {
  color: #3498db;
  text-decoration: none;
}
.lx-contact-form {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lx-contact-form input, .lx-contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}
.lx-contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.lx-contact-form button {
  padding: 15px;
  background: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.lx-contact-form button:hover {
  background: #2980b9;
}
/* 2. 背景CTA模块 */
.lx-cta-section {
  padding: 100px 0;
  background: #2c3e50;
  color: #fff;
  text-align: center;
}
.lx-cta-section h2 {
  font-size: 50px;
  margin-bottom: 30px;
}
.lx-cta-section p {
  font-size: 26px;
  margin-bottom: 50px;
  opacity: 0.9;
}
.lx-cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.lx-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.lx-cta-btn.lx-email {
  background: #3498db;
  color: #fff;
}
.lx-cta-btn.lx-email:hover {
  background: #2980b9;
}
.lx-cta-btn.lx-call {
  border: 2px solid #3498db;
  color: #3498db;
  background: transparent;
}
.lx-cta-btn.lx-call:hover {
  background: rgba(52, 152, 219, 0.1);
}
/* 响应式适配 */
@media (max-width: 992px) {
  .lx-contact-wrapper {
    flex-direction: column;
  }
  .lx-cta-section h2 {
    font-size: 36px;
  }
  .lx-cta-section p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .lx-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .lx-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/*service*/
/* 容器样式 */
.serv-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
/* 悬浮客服按钮 */
.serv-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s;
}
.serv-whatsapp-btn:hover {
  transform: scale(1.1);
}
/* 1. 顶部横幅 */
.serv-page-banner {
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.serv-page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.serv-banner-content {
	margin-top: 40px;
  position: relative;
  z-index: 1;
}
.serv-banner-content h1 {
  font-size: 55px;
  margin-bottom: 20px;
}
.serv-banner-content p {
  font-size: 28px;
  opacity: 0.9;
}
/* 2. 图文介绍模块 */
.serv-intro-section {
  padding: 80px 0;
  background: #fff;
}
.serv-intro-wrapper {
  display: flex;
  align-items: stretch; /* 左右等高 */
  gap: 60px;
}
.serv-intro-img {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.serv-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.serv-intro-img:hover img {
  transform: scale(1.05); /* hover放大 */
}
.serv-intro-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.serv-intro-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}
.serv-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}
/* 3. 优势卡片模块 */
.serv-advantages-section {
  padding: 80px 0;
}
.serv-section-head {
  text-align: center;
  margin-bottom: 60px;
}
.serv-section-head h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333;
}
.serv-section-head p {
  font-size: 18px;
  color: #d9534f; /* 副标题红色 */
}
.serv-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.serv-advantage-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.serv-advantage-card:hover {
  transform: translateY(-10px); /* hover上浮 */
}
.serv-advantage-icon {
  font-size: 36px;
  color: #3498db;
  margin-bottom: 20px;
}
.serv-advantage-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}
.serv-advantage-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}
/* 响应式适配 */
@media (max-width: 992px) {
  .serv-intro-wrapper {
    flex-direction: column;
  }
  .serv-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .serv-banner-content h1 {
    font-size: 40px;
  }
  .serv-banner-content p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .serv-advantages-grid {
    grid-template-columns: 1fr;
  }
  .serv-intro-text h2 {
    font-size: 28px;
  }
}

/* 全屏布局 无卡片 无边框 无阴影 */
.lx-commitment-section {
    padding: 80px 0;
    background: #fff;
    width: 100%;
    overflow: hidden;
}
.lx-section-head {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}
.lx-section-head h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}
.lx-section-head p {
    font-size: 22px;
    color: #d9534f;
}

/* 全屏两列网格 */
.lx-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

/* 左右结构 基础样式 */
.lx-full-item {
    display: flex;
    width: 100%;
    min-height: 500px;
    align-items: center;
	background-color: #f4f2f0;
}
.lx-full-img {
    width: 50%;
    height: 500px;
}
.lx-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lx-full-text {
    width: 50%;
    padding: 60px 80px;
}

/* 图标 */
.lx-commitment-icon {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 25px;
    /* 强制禁用所有动画和过渡 */
    animation: none !important;
    transition: none !important;
    transform: none !important;
}
.lx-commitment-icon i {
    vertical-align: middle;
    /* 伪元素也禁用 */
    animation: none !important;
    transition: none !important;
    transform: none !important;
}
.lx-commitment-icon i::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.lx-full-text h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #222;
    font-weight: 600;
}
.lx-line {
    width: 60px;
    height: 3px;
    background: #3498db;
    margin-bottom: 25px;
    border-radius: 3px;
}
.lx-full-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
}
.lx-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.lx-list li {
    font-size: 17px;
    line-height: 2;
    color: #555;
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}
.lx-list li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: #3498db;
    font-size: 16px;
}

/* 响应式 */
@media (max-width: 1200px) {
    .lx-full-grid {
        grid-template-columns: 1fr;
    }
    .lx-full-item {
        flex-direction: column !important;
    }
    .lx-full-img,
    .lx-full-text {
        width: 100%;
    }
    .lx-full-text {
        padding: 40px 30px;
        text-align: center;
    }
    .lx-line {
        margin-left: auto;
        margin-right: auto;
    }
}

.pro-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}
.pro-core-business {
    padding: 80px 0;
    background: #fff;
}
.pro-business-wrap {
    display: flex;
    align-items: stretch;
    gap: 60px;
    margin-bottom: 80px;
}
.pro-row-reverse {
    flex-direction: row-reverse;
    margin-bottom: 0;
}
.pro-business-img {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.pro-business-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pro-business-img:hover img {
    transform: scale(1.05);
}
.pro-business-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pro-business-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}
.pro-business-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 992px) {
    .pro-business-wrap,
    .pro-row-reverse {
        flex-direction: column;
    }
}



/*products*/
/* 容器样式 */
/* 产品卡片模块样式 */
.pro-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.pro-product-section {
  padding: 80px 0;
  background: #fff;
}
.pro-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.pro-product-card {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pro-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.pro-card-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.pro-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pro-card-title {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* 响应式 */
@media (max-width: 992px) {
  .pro-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pro-product-grid {
    grid-template-columns: 1fr;
  }
}

.pro-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
/* 悬浮客服按钮 */
.pro-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s;
}
.pro-whatsapp-btn:hover {
  transform: scale(1.1);
}
/* 1. 左文右图模块 */
.pro-content-section {
  padding: 80px 0;
  background: #fff;
}
.pro-content-wrapper {
  display: flex;
  align-items: stretch; /* 图片与文字等高 */
  gap: 60px;
}
.pro-content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pro-content-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}
.pro-content-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}
.pro-content-img {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.pro-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro-content-img:hover {
  transform: translateY(-10px); /* hover上浮效果 */
}
/* 2. 左图右文模块 */
.pro-reverse-section {
  background: #f9f9f9;
}
.pro-reverse-wrapper {
  flex-direction: row-reverse;
}
/* 3. 联系CTA模块 */
.pro-cta-section {
  padding: 100px 0;
  background: url('/uploadfile/202605/17148dd578a73329bf4a511ea81050eb.jpg') center/cover no-repeat;
  position: relative;
  text-align: center;
  color: #fff;
}
.pro-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 48, 68, 0.85); /* 深色半透明遮罩 */
}
.pro-cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.pro-cta-container h2 {
  font-size: 43px;
  margin-bottom: 30px;
}
.pro-cta-container p {
  font-size: 24px;
  margin-bottom: 40px;
  opacity: 0.9;
}
.pro-cta-btn {
  display: inline-block;
  padding: 18px 40px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.pro-cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}
/* 响应式适配 */
@media (max-width: 992px) {
  .pro-content-wrapper {
    flex-direction: column;
  }
  .pro-reverse-wrapper {
    flex-direction: column;
  }
  .pro-cta-container h2 {
    font-size: 32px;
  }
  .pro-cta-container p {
    font-size: 18px;
  }
}
/*our-team*/
.our-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
/* 悬浮客服按钮 */
.our-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  z-index: 999;
}
.our-whatsapp-btn:hover {
  transform: scale(1.1);
}
/* 1. 左文右图模块 */
.our-intro-section {
  padding: 80px 0;
  background: #fff;
}
.our-intro-wrapper {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.our-intro-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.our-intro-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}
.our-intro-img {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.our-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-intro-img:hover {
  transform: translateY(-10px);
}
/* 2. 理念卡片模块 */
.our-philosophy-section {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}
.our-section-head h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333;
}
.our-section-head p {
  font-size: 20px;
  color: #d9534f;
  margin-bottom: 50px;
}
.our-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.our-philosophy-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.our-philosophy-card:hover {
  transform: translateY(-10px);
}
.our-philosophy-icon {
  font-size: 40px;
  color: #3498db;
  margin-bottom: 20px;
}
.our-philosophy-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #333;
}
.our-philosophy-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}
/* 3. 团队成员卡片模块 */
.our-team-section {
  padding: 80px 0;
  text-align: center;
}
.our-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.our-team-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.our-team-card:hover {
  transform: translateY(-10px);
}
.our-team-avatar {
  width: 80px;
  height: 80px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: #3498db;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.our-team-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #333;
}
.our-team-card .our-position {
  color: #3498db;
  font-size: 14px;
  margin-bottom: 15px;
}
.our-team-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
  text-decoration: none;
  justify-content: center;
}
.our-team-contact:hover {
  color: #3498db;
}
/* 4. 招聘CTA模块 */
.our-cta-section {
  padding: 100px 0;
  background: url('https://picsum.photos/1920/600?random=cta') center/cover no-repeat;
  position: relative;
  text-align: center;
  color: #fff;
}
.our-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 48, 68, 0.85);
}
.our-cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.our-cta-container h2 {
  font-size: 42px;
  margin-bottom: 30px;
}
.our-cta-container p {
  font-size: 22px;
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.8;
}
.our-cta-btn {
  display: inline-block;
  padding: 18px 40px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.our-cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}
/* 响应式适配 */
@media (max-width: 1320px) {
  .our-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .our-intro-wrapper {
    flex-direction: column;
  }
  .our-philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .our-cta-container h2 {
    font-size: 32px;
  }
  .our-cta-container p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .our-philosophy-grid {
    grid-template-columns: 1fr;
  }
  .our-team-grid {
    grid-template-columns: 1fr;
  }
}
/*about*/
.ab-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.ab-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  z-index: 999;
}
.ab-whatsapp-btn:hover {
  transform: scale(1.1);
}
/* 1. 公司历史时间线模块 */
.ab-history-section {
  padding: 80px 0;
  background: #fff;
}
.ab-history-wrapper {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.ab-history-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ab-history-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}
.ab-history-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.ab-history-timeline {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  border-left: 2px solid #3498db;
}
.ab-timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}
.ab-timeline-item:last-child {
  margin-bottom: 0;
}
.ab-timeline-item::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e74c3c;
}
.ab-timeline-year {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.ab-timeline-desc {
  font-size: 18px;
  color: #555;
}
/* 2. 核心理念卡片模块 */
.ab-principles-section {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}
.ab-section-head h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #333;
}
.ab-section-head p {
  font-size: 22px;
  color: #d9534f;
  margin-bottom: 50px;
}
.ab-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ab-principle-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.ab-principle-card:hover {
  transform: translateY(-10px);
}
.ab-principle-icon {
  font-size: 40px;
  color: #3498db;
  margin-bottom: 20px;
}
.ab-principle-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #333;
}
.ab-principle-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}
/* 3. 全球布局模块 */
.ab-global-section {
  padding: 80px 0;
  background: #fff;
}
.ab-global-wrapper {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.ab-global-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ab-global-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}
.ab-global-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}
.ab-global-features {
  display: flex;
  gap: 30px;
}
.ab-feature-item {
  text-align: center;
}
.ab-feature-item i {
  font-size: 40px;
  color: #3498db;
  margin-bottom: 10px;
}
.ab-feature-item span {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.ab-global-img {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.ab-global-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ab-global-img:hover img {
  transform: scale(1.05);
}
/* 4. 会员资质模块 */
.ab-cert-section {
  padding: 80px 0;
  background: #f9f9f9;
}
.ab-cert-wrapper {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.ab-cert-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-cert-logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
.ab-cert-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ab-cert-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}
.ab-cert-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.ab-cert-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #333;
  text-decoration: none;
  margin-top: 10px;
}
.ab-cert-link i {
  font-size: 30px;
  color: #e74c3c;
}
/* 响应式适配 */
@media (max-width: 992px) {
  .ab-history-wrapper, .ab-global-wrapper, .ab-cert-wrapper {
    flex-direction: column;
  }
  .ab-principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ab-section-head h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .ab-principles-grid {
    grid-template-columns: 1fr;
  }
  .ab-global-features {
    flex-direction: column;
    gap: 20px;
  }
}


/*se*/
.se-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.se-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D360;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  z-index: 999;
}
.se-whatsapp-btn:hover {
  transform: scale(1.1);
}
/* 1. 道德与企业价值观模块 */
.se-ethics-section {
  padding: 80px 0;
  background: #fff;
}
.se-ethics-wrapper {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.se-ethics-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.se-ethics-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}
.se-ethics-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.se-ethics-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.se-ethics-tag {
  background: #27ae60;
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 16px;
}
.se-ethics-img {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.se-ethics-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.se-ethics-img:hover img {
  transform: scale(1.05);
}
/* 2. 多元包容模块 */
.se-diversity-section {
  padding: 80px 0;
  background: #f9f9f9;
}
.se-diversity-wrapper {
  display: flex;
  align-items: stretch;
  gap: 60px;
  flex-direction: row-reverse;
}
.se-diversity-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.se-diversity-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}
.se-diversity-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}
.se-diversity-btn {
  display: inline-block;
  padding: 15px 30px;
  background: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  transition: background 0.3s ease;
}
.se-diversity-btn:hover {
  background: #2980b9;
}
.se-diversity-img {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.se-diversity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.se-diversity-img:hover img {
  transform: scale(1.05);
}
/* 3. 企业承诺卡片模块 */
.se-commitments-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.se-section-head h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #333;
}
.se-section-head p {
  font-size: 22px;
  color: #d9534f;
  margin-bottom: 50px;
}
.se-commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.se-commitment-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.se-commitment-card:hover {
  transform: translateY(-10px);
}
.se-commitment-icon {
  font-size: 40px;
  color: #3498db;
  margin-bottom: 20px;
}
.se-commitment-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #333;
}
.se-commitment-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}
/* 响应式适配 */
@media (max-width: 992px) {
  .se-ethics-wrapper, .se-diversity-wrapper {
    flex-direction: column;
  }
  .se-commitments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .se-section-head h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .se-commitments-grid {
    grid-template-columns: 1fr;
  }
}



/* 全屏外层背景容器 */
.jy-videos {
    width: 100%;
    padding: 126px 0;
    background: #f1f1f1 url(/uploadfile/202606/b7aac13e1be606d897581d2f43e2b87a.jpg) no-repeat center center;
    background-size: cover;
}

/* 视频网格容器 一行2个 共2排 */
.jy-videos__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* 视频卡片容器 */
.jy-videos__item {
  overflow: hidden;
  background: #181818;
  aspect-ratio: 16 / 9;
}

/* 视频样式 */
.jy-videos__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 移动端 768px以内一行1个 */
@media (max-width: 768px) {
  .jy-videos__wrap {
    grid-template-columns: 1fr;
  }
}



