.company-introduction{
    background-image: url('/static/index/images/aboutUsBg.png');
    padding-bottom: 195px;
    background-size: cover;
}

.product-title{
    color: rgba(56, 56, 56, 1);
    padding-top: 70px;
}

.company-introduction .introduction{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.7);
}
.company-introduction .more-btn{
    margin-top: 60px;
}
.precision-list{
    display: flex;
    width: 100%;
    margin-top: 75px;
}
.precision-list .precision-item{
    flex: 1;
    text-align: center;
}
.precision-list .precision-item img{
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
}
.precision-list .precision-item div{
    font-size: 30px;
    color: rgba(0, 0, 0, 0.9);
}
.gocl-text{
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}


/* 容器：控制卡片布局 */
.cards-container {
    display: flex;
    justify-content: center;
    padding: 100px 0;
}

/* 卡片基础样式 */
.card {
    background-color: #333;
    color: #fff;
    padding: 10px 10px 80px;
    transition: all 0.3s ease; /* 动效过渡 */
    border-radius: 0;
    max-width: 400px;
}

/* 卡片悬浮效果：上浮 + 阴影强化 */
.card:hover, .card.active {
    transform: translateY(-50px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.7);
}

/* 卡片左上角圆点 */
.card-dot {
    width: 24px;
    height: 24px;
    background-color: rgba(242, 242, 242, 1);
    border-radius: 50%;
    margin-bottom: 40px;
    opacity:1;
}

/* 卡片标题 */
.card h2 {
    font-size: 30x;
    margin-bottom: 24px;
    transition: color 0.3s ease; /* 文字颜色过渡 */
    padding: 0 28px;
    color: rgba(255, 255, 255, 1);
}

/* 悬浮时标题高亮 */
.card:hover h2 {
    color: #cda76b; /* 与品牌色统一 */
}

/* 卡片描述文字 */
.card p {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    padding: 0 28px;
}

/* 悬浮时文字更清晰 */
.card:hover p {
    opacity: 1;
}

/* 联系按钮样式 */
.card .more-btn{
    margin-left:28px;
}

.quality{
    background-color: rgba(245, 245, 245, 1);
}
.quality-item{
    display: flex;
    gap: 70px;
    padding: 50px 0 90px;
}
.quality-text{
    font-size: 15px;
    font-weight: 500;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.7);
}

.certifications{
    background-image: url('/static/index/images/aboutUsBg1.png');
    padding-bottom: 100px;
}
.certifications .img-list{
    display: flex;
}
.certifications .img-list img{
    flex: 1;
}

.advantage{
    background-image: url('/static/index/images/aboutUsBg2.png');
    padding-bottom: 100px;
}

.advantageWeb{
    display: block;
}
.advantagePhone{
    display: none;
}

.advantage .advantage-list{
    display: flex;
    gap: 34px;
    margin-top: 30px;
}
.advantage .advantage-list img{
    width: 100%;
    height: 300px;
}
.advantage .advantage-list .advantage-item{
    flex: 1;
}
.advantage .advantage-list .advantage-item div{
    background-color: transparent;
    padding: 15px 22px 28px;
}
.advantage .advantage-list .advantage-item div h4{
    font-size: 20px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.8);
}
.advantage .advantage-list .advantage-item div p{
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.5);
}
.advantage .advantage-list .advantage-item:hover div{
    background-color: rgba(205, 167, 107, 1);
}
.advantage .advantage-list .advantage-item:hover div h4, .advantage .advantage-list .advantage-item:hover div p{
    color: #fff;
}

 /* 滚动容器样式 */
    .scroll-container-wrapper {
      position: relative;
      overflow: hidden;
      margin: 0 auto;
    }
    
    #scrollWrapper {
      display: flex;
      gap: 1.5rem;
      transition: transform 0.3s ease-out;
      padding: 0.5rem 0;
    }
    
    /* 隐藏滚动条 */
    #scrollWrapper {
      scrollbar-width: none;
    }
    
    #scrollWrapper::-webkit-scrollbar {
      display: none;
    }
    
    /* 图片卡片样式 */
    .image-card {
      min-width: 300px;
      border-radius: 0.75rem;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .title-line{
        display: block;
    }
    
    @media (min-width: 768px) {
      .image-card {
        min-width: 350px;
      }
    }
    
    .image-card img {
      width: 100%;
      object-fit: cover;
    }
    
    .image-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    @media (max-width: 768px){
        .product-title{
            padding-top: 20px;
            font-size: 26px;
            font-weight: 700;
        }
        .title-line{
            display: none;
        }
        .company-introduction{
            background-image: url('/static/index/images/phoneImg/aboutBG.png');
            padding-bottom: 100px;
        }
        .company-introduction .introduction{
            font-size: 14px;
            text-align: left;
            vertical-align: top;
        }
        .precision-list{
            gap: 10px;
            margin-top: 25px;;
        }
        .precision-list .precision-item img{
            width: 35px;
            height: 35px;
        }
        .precision-list .precision-item div{
            font-size: 18px;
            font-weight: 400;
        }
        .company-introduction .more-btn{
            margin-top: 25px;
        }
        .gocl-text{
            font-size: 14px;
            line-height: 27px;
        }
        .cards-container{
            padding: 30px 0 60px;
            flex-direction: column;
            gap: 1px;
        }
        .card:hover, .card.active{
            transform: none;
        }

        .quality-item{
            padding: 30px 0 45px;
            flex-direction: column;
            gap: 0px;
        }
        .quality-img-list{
            width: 100%;
        }
        .quality-img-list img{
            width: 100%;
        }

        .certifications{
            background-image: url('/static/index/images/phoneImg/aboutBG1.png');
            background-size: cover;
        }

        .advantageWeb{
            display: none;
        }
        .advantagePhone{
            display: block;
        }

        .advantage{
            background-image: url('/static/index/images/phoneImg/aboutBG2.png');
            background-size: cover;
            padding-bottom: 30px;
        }
        #advantage-swiper{
            padding-bottom: 60px;
            box-sizing: content-box;
        }
        .swiper-slide .advantage-item div{
            background-color: rgba(205, 167, 107, 1);
            color: #fff;
            padding: 10px 18px 20px;
        }
        .swiper-slide .advantage-item div h4{
            font-size: 20px;
            font-weight: 700;
        }
         .swiper-slide .advantage-item div p{
            font-size: 14px;
            font-weight: 500;
            line-height: 25px;
             display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;  /* 控制显示的行数 */
            overflow: hidden;        /* 隐藏超出部分 */
            text-overflow: ellipsis;
         }
    }