@charset 'utf-8';
html {
  scroll-behavior: smooth;
}
[id]{
  scroll-margin-top: 80px; /* 和导航高度一致！锚点跳转时向上留出80px空隙 */
}
 /* 最外层容器 主宽度限制1600px */
        .reyo-page-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 60px 10px 0;
        }
        /* 顶部小标题 */
        .reyo-core-tagline {
            text-align: center;
            color: #9c43b3;
            font-size: 14px;
            letter-spacing: 0.4px;
            margin-bottom: 18px;
            text-transform: uppercase;
            font-weight: bold;
        }
        /* 大标题 */
        .reyo-main-headline {
            font-size: 50px;
            text-align: center;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 22px;
            transition: transform 0.3s ease;
        }
        .reyo-main-headline:hover {
            transform: translateY(-3px);
        }
        /* 标题下方简介 */
        .reyo-top-desc-text {
            /* max-width: 920px; */
            margin: 0 auto 52px;
            text-align: center;
            color: #555555;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        .reyo-top-desc-text:hover {
            color: #2f2f2f;
        }
        /* 图片+文本横向布局行 */
        .reyo-two-column-row {
            display: flex;
            gap: 50px;
            align-items: flex-start;
        }
        /* 左侧图片列 */
        .reyo-factory-column {
            flex: 1;
        }
        .reyo-factory-card {
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .reyo-factory-card img {
            width: 100%;
            display: block;
        }
        .reyo-factory-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 14px 38px rgba(0, 0, 0, 0.11);
        }
        /* 右侧文本列 */
        .reyo-about-column {
            flex: 1;
        }
        .reyo-about-title {
            font-size: 48px;
            margin-bottom: 22px;
        }
        .reyo-purple-brand {
            color: #9c43b3;
        }
        .reyo-about-para {
            font-size: 16px;
            color: #333333;
            margin-bottom: 16px;
            transition: color 0.3s ease;
        }
        .reyo-about-para:hover {
            color: #111111;
        }
        /* 平板适配 */
        @media screen and (max-width: 1200px) {
            .reyo-main-headline {
                font-size: 48px;
            }
            .reyo-about-title {
                font-size: 36px;
            }
            .reyo-two-column-row {
                gap: 35px;
            }
        }
        /* 移动端适配 */
        @media screen and (max-width: 820px) {
            .reyo-page-container {
                padding: 40px 20px;
            }
            .reyo-main-headline {
                font-size: 36px;
            }
            .reyo-two-column-row {
                flex-direction: column;
            }
            .reyo-about-title {
                font-size: 28px;
            }
        }
		
	 

/* 产品模块外层容器 纯白背景 + 页面入场淡入动画 */
.product_wrap1{
  width: 100%;
  background: #ffffff;
  padding: 70px 20px;
  animation: fadeInWrap 0.8s ease-out forwards;
}

.product_wrap{
  width: 100%;
  background: #f5f5f5;
  padding: 70px 20px;
  animation: fadeInWrap 0.8s ease-out forwards;
}
@keyframes fadeInWrap {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 主内容容器 固定最大宽度1600px 居中统一规范 */
.product_main{
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* 左侧设备图片区域 + 悬浮缩放交互 */
.product_img_box{
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
}
.product_img_box img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.product_img_box:hover img{
  transform: scale(1.05);
}

/* 右侧文案信息区域 */
.product_info_box{
  flex: 1;
}
/* 型号小标签紫色样式 + hover变色交互 */
.product_model{
  font-size: 24px;
  color: #7b3fbc;
  font-weight: 600;
  margin-bottom: 12px;
  transition: letter-spacing 0.3s ease;
}
.product_model:hover{
  letter-spacing: 2px;
}

/* 产品大标题 + 下划线hover动效 */
.product_title{
  font-size: 56px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}
.product_title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #7b3fbc;
  transition: width 0.4s ease;
}
.product_title:hover::after{
  width: 100%;
}

/* 两段详情介绍文本 + 文字微微上浮 */
.product_desc_text{
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.product_desc_text:hover{
  transform: translateX(4px);
  color: #222;
}

/* 按钮组容器 */
.product_btn_group{
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
/* 通用按钮基础样式 + 上浮、阴影、颜色过渡交互 */
.product_btn{
  padding: 18px 40px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.product_btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(123, 63, 188, 0.25);
}
.product_btn:active{
  transform: translateY(1px);
}

/* 紫色按钮 READ MORE */
.btn_purple{
  background-color: #7b3fbc;
  color: #fff;
}
.btn_purple:hover{
  background-color: #6a34a8;
}

/* 黑色按钮 GET QUICK QUOTE */
.btn_black{
  background-color: #222;
  color: #fff;
}
.btn_black:hover{
  background-color: #000;
}

/* ========== 平板响应式 1200px ========== */
@media screen and (max-width: 1200px) {
  .product_main{
    flex-direction: column;
    gap: 40px;
  }
  .product_title{
    font-size: 42px;
  }
  .product_wrap1{
    padding: 50px 20px;
  }
  
   .product_wrap{
    padding: 50px 20px;
  }
}

/* ========== 手机端响应式 768px ========== */
@media screen and (max-width: 768px) {
  .product_model{
    font-size: 20px;
  }
  .product_title{
    font-size: 32px;
  }
  .product_desc_text{
    font-size: 16px;
  }
  .product_btn{
    padding: 14px 28px;
    font-size: 16px;
  }
  .product_btn_group{
    flex-wrap: wrap;
  }
  .product_wrap{
    padding: 35px 15px;
  }
  .product_wrap1{
    padding: 35px 15px;
  }
}

/* ========== 极小屏适配 480px ========== */
@media screen and (max-width: 480px) {
  .product_title{
    font-size: 26px;
  }
  .product_btn_group{
    flex-direction: column;
    gap:12px;
  }
  .product_btn{
    width: 100%;
  }
}


/* 主内容容器 固定最大宽度1600px 居中统一规范 */
.product_main{
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* 左侧文案信息区域 */
.product_info_box{
  flex: 1;
}
/* 型号小标签紫色样式 + hover字间距动效 */
.product_model{
  font-size: 20px;
  color: #7b3fbc;
  font-weight: 600;
  margin-bottom: 12px;
  transition: letter-spacing 0.3s ease;
}
.product_model:hover{
  letter-spacing: 2px;
}

/* 产品大标题 + 底部紫色下划线hover展开动效 */
.product_title{
  font-size: 40px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}
.product_title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #7b3fbc;
  transition: width 0.4s ease;
}
.product_title:hover::after{
  width: 100%;
}

/* 两段详情介绍文本 + hover右移加深文字交互 */
.product_desc_text{
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.product_desc_text:hover{
  transform: translateX(4px);
  color: #222;
}

/* 按钮组容器 */
.product_btn_group{
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
/* 通用按钮基础样式 + 上浮、阴影、按压回弹交互 */
.product_btn{
  padding: 18px 40px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.product_btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(123, 63, 188, 0.25);
}
.product_btn:active{
  transform: translateY(1px);
}

/* 紫色按钮 READ MORE */
.btn_purple{
  background-color: #7b3fbc;
  color: #fff;
}
.btn_purple:hover{
  background-color: #6a34a8;
}

/* 黑色按钮 GET QUICK QUOTE */
.btn_black{
  background-color: #222;
  color: #fff;
}
.btn_black:hover{
  background-color: #000;
}

/* 右侧设备图片区域 + 悬浮缩放交互 */
.product_img_box{
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
}
.product_img_box img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.product_img_box:hover img{
  transform: scale(1.05);
}

/* ========== 平板响应式 1200px ========== */
@media screen and (max-width: 1200px) {
  .product_main{
    flex-direction: column;
    gap: 40px;
  }
  .product_title{
    font-size: 42px;
  }
  .product_wrap{
    padding: 50px 20px;
  }  .product_wrap1{
    padding: 50px 20px;
  }
}

/* ========== 手机端响应式 768px ========== */
@media screen and (max-width: 768px) {
  .product_model{
    font-size: 20px;
  }
  .product_title{
    font-size: 32px;
  }
  .product_desc_text{
    font-size: 16px;
  }
  .product_btn{
    padding: 14px 28px;
    font-size: 16px;
  }
  .product_btn_group{
    flex-wrap: wrap;
  }
  .product_wrap1{
    padding: 35px 15px;
  }  .product_wrap{
    padding: 35px 15px;
  }
}

/* ========== 极小屏适配 480px ========== */
@media screen and (max-width: 480px) {
  .product_title{
    font-size: 26px;
  }
  .product_btn_group{
    flex-direction: column;
    gap:12px;
  }
  .product_btn{
    width: 100%;
  }
}


/* 相关产品外层容器 */
.related_wrap{
  width: 100%;
  background: #ffffff;
  padding: 70px 20px;
  animation: fadeInWrap 0.8s ease-out forwards;
}
@keyframes fadeInWrap {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 主容器固定1600px宽度 */
.related_main{
  max-width: 1600px;
  margin: 0 auto;
}

/* 标题栏：标题居左，箭头组居右，同一行对齐 */
.related_head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.related_title{
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin: 0;
}
/* 箭头按钮组，横向并排，不再由swiper自动定位 */
.swiper-buttons{
  display: flex;
  gap:16px;
}
/* 清除swiper原生绝对定位 */
.swiper-button-prev,
.swiper-button-next{
  position: static !important;
  left:auto;
  right:auto;
  top:auto;
  margin:0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #7b3fbc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.swiper-button-next{
  background: #eeeeee;
}
.swiper-button-prev:hover{
  background: #6a34a8;
}
.swiper-button-next:hover{
  background: #dddddd;
}
/* 隐藏swiper默认after箭头 */
.swiper-button-prev::after,
.swiper-button-next::after{
  display: none;
}
/* 内置左右箭头SVG */
.arrow_left{
  width: 16px;
  height: 16px;
  fill: #fff;
}
.arrow_right{
  width: 16px;
  height: 16px;
  fill: #333;
}

/* Swiper容器基础样式 */
.related_swiper{
  width: 100%;
  overflow: hidden;
}
.swiper-slide{
  text-align: center;
  padding: 0 8px;
}

/* 产品卡片样式 */
.product_card{
  /* border: 1px solid #eee; */
  padding: 10px;
  height: 100%;
  transition: all 0.3s ease;
}
.product_card:hover{
  box-shadow: 0 8px 20px rgba(123, 63, 188, 0.15);
  transform: translateY(-4px);
}
.card_img_box{
  overflow: hidden;
  margin-bottom: 24px;
  min-height: 300px;
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
}
.card_img_box img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.card_img_box:hover img{
  transform: scale(1.05);
}
.card_name{
  font-size: 18px;
  color: #222;
  margin-bottom: 24px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 设置显示的最大行数为3 */
  overflow: hidden;
  font-weight: 600;
}
.card_btn_group{
  display: flex;
  gap: 12px;
}
.card_btn{
  flex: 1;
  padding: 14px 0;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.card_btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 63, 188, 0.2);
}
.btn_purple{
  background-color: #7b3fbc;
  color: #fff;
}
.btn_purple:hover{
  background-color: #6a34a8;
}
.btn_black{
  background-color: #222;
  color: #fff;
}
.btn_black:hover{
  background-color: #000;
}

/* ========== 响应式适配 ========== */
@media screen and (max-width: 1200px) {
  .related_title{
    font-size: 42px;
  }
  .related_wrap{
    padding: 50px 20px;
  }
}
@media screen and (max-width: 768px) {
  .related_head{
    flex-direction: column;
    align-items: flex-start;
    gap:20px;
  }
  .related_title{
    font-size: 32px;
  }
  .swiper-button-prev, .swiper-button-next{
    width: 36px;
    height: 36px;
  }
  .related_wrap{
    padding: 35px 15px;
  }
  .card_name{
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .related_title{
    font-size: 26px;
  }
  .card_btn_group{
    flex-direction: column;
    gap: 8px;
  }
}