@charset "utf-8";
/* CSS Document */

.product-tabs{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

/* ===== Tabs ===== */

.tabs-nav{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.tab{
    padding:10px 20px;
    border:none;
    background:#f3f3f3;
    border-radius:30px;
    cursor:pointer;
    transition:.3s;
}

.tab.active{
    background:#0073aa;
    color:#fff;
}

/* ===== 面板 ===== */

.tab-panel{
    display:none;
}

.tab-panel.active{
    display:block;
}

/* ===== 产品自适应Grid（重点）===== */

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

/* 产品卡片 */

.product-card{
    background:#fff;
    padding:15px;
    border-radius:8px;
    transition:.3s;
}

.product-card img{
    width:auto;
    /*height:auto;*/
    display:block;
	height:200px;
	margin:auto
	
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}


@media(max-width:768px){

.tabs-nav{
    overflow-x:auto;
    flex-wrap:nowrap;
}

.tab{
    flex:0 0 auto;
}

}


.title-subtitle {
    color: var(--wd-primary-color);
}



#c_static_001-16838120243050 {
    min-height: 0px;
    display-radio: 1;
    padding-left: 20px;
    padding-right: 20px;
    background-fill-value: background-image;
    overflow: hidden;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  
    background_radio: 2;
}


.response-animated {
    font_radio: 2;
    display-radio: 1;
    font-size: 48px;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    line-height: 1.5;
    font-family: "c4a3d919-565b-4e7d-a5e8-9542ef39b502";
    text-align: center;
}


.response-transition {
 /*   display: flex;
    flex-wrap: wrap;
    flex-direction: row;*/
    width: 100%;
    display-radio: flex;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    background_radio: 1;
    height: 500px;
}

.e_h2-7 {
    font_radio: 2;
    display-radio: 1;
    font-size: 48px;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    line-height: 1.5;
    font-family: "c4a3d919-565b-4e7d-a5e8-9542ef39b502";
    text-align: center;
}

.e_text-3 {
    line-height: 24px;
    font_radio: 2;
    display-radio: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-family: "1880b586-ea1b-4468-8be2-4e57edc814f0";
    margin-bottom: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    padding-top: 15px;
}

.e_button-6:hover {
    background-color: #013f31;
    font-size: 16px;
    border-style: solid;
    border-color: #013f31;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    border-width: 1px;
    color: rgba(255, 255, 255, 1);
}
.e_button-6 {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    width: 180px;
    padding: 10px;
    background_radio: 2;
    border_radio: 2;
    font_radio: 2;
    radius_radio: 2;
    display-radio: block;
    color: #fff;
    font-size: 18px;
    border-style: solid;
    border-color: #fff;
    border-width: 1px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    background-color: rgba(255, 255, 255, 0);
    font-family: "1880b586-ea1b-4468-8be2-4e57edc814f0";
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    padding-top: 15px;
    padding-bottom: 15px;
}
.e_button-6 span {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
    outline: 0;
    margin: 0px;
    overflow: hidden;
}
.e_h2-5 {
    font_radio: 2;
    display-radio: 1;
    font-size: 48px;
    transform: scaleX(1.08);
    text-transform: uppercase;
    color: rgba(25, 25, 25, 1);
    line-height: 1;
    text-align: center;
    font-family: "c4a3d919-565b-4e7d-a5e8-9542ef39b502";
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
}

.liner-continer {
    border-bottom: 2px solid   #CCC;
}
 .title {
    margin-bottom: -2px;
   /* padding-bottom: 10px;*/
   /* border-bottom: 2px solid  rgb(236 159 26);*/
}

.widget-wd_title{
    max-width: 1200px;
    margin: auto;
}

/* ===== 车间网格 ===== */
.workshop-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    width:100%;
}

/* 单个模块 */
.workshop-item{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

/* 图片 */
.workshop-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

/* 遮罩信息 */
.workshop-info{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:18px;
    background:linear-gradient(to top, rgba(0,0,0,.7), transparent);
    color:#fff;
    transform:translateY(100%);
    transition:.4s ease;
}

/* hover效果 */
.workshop-item:hover img{
    transform:scale(1.1);
}

.workshop-item:hover .workshop-info{
    transform:translateY(0);
}

/* ===== 平板 ===== */
@media (max-width:1024px){
    .workshop-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ===== 手机 ===== */
@media (max-width:600px){
    .workshop-grid{
        grid-template-columns:1fr;
    }

    .workshop-item img{
        height:220px;
    }
}

.wd-fontsize-xxxl {
    font-size: 46px;
	    font-size: 46px;
    width: fit-content;
    border-bottom: 2px solid rgb(236 159 26);
    margin-top: 30px;
}
.title-wrapper [class*="title"] {
    /* display: inline-block; */
    width: fit-content;
    margin: auto;
}
.wd-cookies-popup {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1510;
    padding: 15px 30px;
    background-color: var(--bgcolor-white);
    box-shadow: 0 0 9px rgba(0,0,0,0.14);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translate3d(0, 100%, 0);
}
.wd-set-mb>* {
    margin-bottom:20px;
}

.elementor-widget-container {
	    margin-bottom: 30px;
	}
	
	.title {
    display: block;
    /*margin-bottom: 20px;*/
    color: #333;
    text-transform: var(--wd-title-transform);
    font-weight: 600;
    font-style: var(--wd-title-font-style);
    font-family: var(--wd-title-font);
    line-height: 1.4;
}


.site-footer {
  background: #0f0f0f;
  color: #cfcfcf;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* list */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
}

/* links */
.footer-col a {
  color: #cfcfcf;
  text-decoration: none;
  transition: .3s;
}

.footer-col a:hover {
  color: #ffffff;
}

/* ===== CONTACT ICON STYLE ===== */
.contact-list li {
  display: flex;
  align-items: center; /* 垂直居中 */
  gap: 10px;
}

.contact-list img {
  width: 24px;   /* 图标 24px */
  height: 24px;  /* 图标 24px */
  flex-shrink: 0; /* 防止缩小 */
}

.address span {
  line-height: 1.6;
  font-size: 13px;
  color: #aaa;
}

/* newsletter */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px;
}

.newsletter-form button {
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 3px;
}

.newsletter-form button:hover {
  background: #ff8533;
}

/* bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding: 18px;
  font-size: 13px;
  color: #888;
}

/* ===== responsive ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}



.ai-product-collection{
    max-width:1200px;
    margin:0 auto;
    padding:40px 20px;
}

.collection-title{
    text-align:center;
    font-size:32px;
    margin-bottom:12px;
}

.ai-definition{
    text-align:center;
    /*max-width:780px;*/
    margin:0 auto 35px;
    color:#666;
    line-height:1.6;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.product-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-6px);
}

.product-img{
    aspect-ratio:1/1;
}

.product-img img{
    width:100%;
    height:100%;
   object-fit: contain;
}

.product-info{
    padding:0px;
}

.product-meta span{
    display:block;
    font-size:14px;
    margin-bottom:6px;
}

.discount{
    color:#e63946;
    font-weight:600;
}

.product-btn{
    display:inline-block;
    margin-top:12px;
    padding:10px 16px;
    background:#111;
    color:#fff;
    border-radius:6px;
    text-decoration:none;
}

@media(max-width:1024px){
    .product-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:640px){
    .product-grid{grid-template-columns:1fr;}
}


/* Container */
.who-we-serve {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: Arial, sans-serif;
}

.who-we-serve h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #333;
}

.who-we-serve p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards Grid */
.serve-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: stretch;
}

/* Individual Card */
.serve-cards .card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 260px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serve-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.serve-cards .card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.serve-cards .card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.serve-cards .card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  text-align:left
}



/* ====== General Container ====== */
.ai-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'Inter', Arial, sans-serif;
}

/* ====== Hero Section ====== */
.ai-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #d9e4ff 100%);
  color: #111;
}

.ai-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ai-hero p {
  font-size: 1.2rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

/* ====== Who We Serve Section ====== */
.ai-serve {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.ai-serve h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
  position: relative;
  display: inline-block;
}

.ai-serve h2::after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  background: #0070f3;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.ai-serve p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 50px;
}

/* Cards Grid */
.ai-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-items: center;
}

.ai-card {
  background-color: #f5f8ff;
  border-radius: 16px;
  padding: 30px 20px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.ai-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.ai-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 10px;
}

.ai-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #111;
}

.ai-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ====== FAQ Section ====== */
.ai-faq {
  padding: 80px 20px;
  background-color: #f0f4ff;
}

.ai-faq h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #222;
  position: relative;
  display: inline-block;
}

.ai-faq h2::after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  background: #0070f3;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.ai-faq .faq-item {
  margin-bottom: 25px;
  padding: 25px 30px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border-left: 5px solid #0070f3;
  transition: transform 0.2s ease;
}

.ai-faq .faq-item:hover {
  transform: translateY(-3px);
}

.ai-faq .faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}

.ai-faq .faq-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .ai-hero h1 {
    font-size: 2rem;
  }

  .ai-serve h2, .ai-faq h2 {
    font-size: 2rem;
  }

  .ai-cards {
    grid-template-columns: 1fr;
  }
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(135deg, #1fb6ff, #28a745);
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}