a:hover {
    background: #f3f4f6;
}

a:hover[href*="mailto"] {
    color: #3b82f6;
}

a:hover[href*="whatsapp"] {
    color: #25D366;
}



.product-features {
    padding: 40px 20px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    min-width: 120px;
}

.feature-img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.1);
}

.feature-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cta-button {
    background-color: #E62B1E;
    color: #FFFFFF;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #C42418;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .features-container {
        gap: 20px;
    }
    .feature-img {
        width: 40px;
        height: 40px;
    }
    .feature-text {
        font-size: 12px;
    }
}
.button-link {
    display: inline-block;
    text-decoration: none;
}



/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Microsoft YaHei", sans-serif;
    background-image: url('/template/1/e148/images/news.jpg');
    color: #333;
    line-height: 1.6;
}
/* 布局容器 */
.service-container {
    display: flex;
    flex-wrap: wrap; /* 适配小屏幕 */
    max-width: 1440px;
    margin: 40px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}
/* 左侧服务介绍 */
.service-intro {
    flex: 1 1 400px; /* 自适应宽度 */
    padding: 40px;
    background-image: url('/template/1/e148/images/news.jpg');
}
.service-intro h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}
.service-intro p {
    margin-bottom: 16px;
    line-height: 1.8;
}
.btn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 24px;
    background-color: #f43f30;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}
.btn-more:hover {
    background-color: #d62f20;
}
/* 右侧技术展示 */
.service-tech {
    flex: 1 1 400px; /* 自适应宽度 */
    padding: 40px;
    background-image: url('/template/1/e148/images/news.jpg');
}
.tech-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}
.tech-col {
    flex: 1 1 150px;
    margin-right: 20px;
    margin-bottom: 16px;
}
.tech-col h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}
.tech-col ul {
    list-style: none;
    padding-left: 16px;
}
.tech-col li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 10px;
}
.tech-col li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f43f30;
}
/* 响应式适配 */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        margin: 20px;
    }
    .service-intro, .service-tech {
        flex: 1 1 100%;
    }
}


/*333333333333*/
.clients-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
    background-image: url('/template/1/e148/images/news.jpg');
}

.clients-visual {
    width: 45%;
    position: relative; /* 启用定位以便叠加元素 */
}

/* 抠图主体样式（保持不变） */
.clients-visual .main-subject {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2; /* 确保主体在上方 */
}

/* 背景填充层（新照片） */
.clients-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/template/1/e148/images/background-photo.jpg"); /* 替换为新照片路径 */
    background-size: cover;
    background-position: center;
    z-index: 1; /* 背景层在下方 */

    /* 关键遮罩设置：需根据抠图透明区域调整 */
    /* 示例：假设抠图背景是矩形中间的圆形透明区 */
    clip-path: circle(50% at 50% 50%); /* 请根据实际抠图形状修改 */
    /* 若为不规则形状，建议使用SVG路径：
    clip-path: url(#mask-path);
    并在HTML中添加<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
      <clipPath id="mask-path">
        <path d="M..."></path>
      </clipPath>
    </svg>
    */
}

.clients-logos {
    width: 50%;
    overflow: hidden;
    position: relative;
}

.logos-container {
    display: flex;
    transition: transform 0.5s ease;
}

.logo-group {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.logo-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.33%;
}

.logo-item img {
    max-height: 100px;
    max-width: 80%;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
    object-fit: contain;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-text {
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #919191;
}

/* 响应式布局调整 */
@media (max-width: 1024px) {
    .clients-section {
        padding: 30px 40px;
        flex-direction: column;
    }

    .clients-visual, .clients-logos {
        width: 100%;
    }

    .clients-visual {
        margin-bottom: 30px;
    }

    .logo-item img {
        max-height: 80px;
    }
}

@media (max-width: 768px) {
    .logo-item img {
        max-height: 60px;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}

/* 响应式适配 */
@media (max-width: 768px) {
    .features-container {
        gap: 20px;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    .feature-text {
        font-size: 12px;
    }
}
