



   /* 轮播容器基础样式 */
.swiper-container {
    height: 650px; /* 自定义轮播高度，可调整 */
    position: relative; /* 作为绝对定位元素的父容器 */
    overflow: hidden; /* 隐藏图片缩放时超出容器的部分 */
}

/* 轮播项：相对定位，确保遮罩层正常覆盖 */
.swiper-slide {
    position: relative;
    height: 100%;
}

/* 图片容器：承载缩放动画 */
.slide-img-box {
    width: 100%;
    height: 100%;
    overflow: hidden; /* 隐藏图片缩放溢出部分 */
}

/* 轮播图片基础样式 */
.slideshow {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持图片比例，避免变形 */
    transform: scale(1.0); /* 初始缩放比例140% */
}



/* 文字居中容器 */
.slide-text-center {
    text-align: center;
    padding: 0 20px;
    color: #fff; /* 文字白色，确保可读性 */
    z-index: 3; /* 文字在遮罩上方 */
}

/* 链接样式重置 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* 响应式调整：移动端适配 */
@media (max-width: 767px) {
    .swiper-container {
        height: 280px; /* 移动端降低轮播高度 */
    }
}

.b-strong {
    font-weight: 600;
}
.text-black {
    color: #000;
}



/* 客户反馈模块核心样式 - 1:1还原 */
.outer-swiper-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.execute-swiper-slide {
    width: 100%;
    height: auto;
}
.swiper-wrapper {
    display: flex;
    position: relative;
}
.swiper-slide {
    flex-shrink: 0;
    position: relative;
}
.newH6_items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px; /* 行间距还原 */
    padding: 10px 0;
}
.newH6_line {
    display: flex;
    gap: 30px; /* 列间距还原 */
    justify-content: flex-start;
    align-items: center;
}
.newH6_item {
    display: flex;
    align-items: center;
    gap: 15px; /* 头像与气泡间距 */
}
.newH6_logo img {
    width: 60px; /* 头像尺寸还原 */
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.newH6_slide {
    position: relative;
}
.newH6_slide i {
    position: absolute;
    left: -8px;
    top: 10px;
    font-style: normal;
    width: 16px;
    height: 16px;
    background: currentColor;
    clip-path: polygon(50% 50%, 100% 0, 100% 100%); /* 气泡小三角 */
    opacity: 0.8;
}
.newH6_text {
    background: #f5f5f5; /* 气泡背景色 */
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    max-width: 400px; /* 气泡最大宽度 */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
/* 分页器样式还原 */
.swiper-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.swiper-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}
.swiper-button:hover {
    background: #eee;
}
.swiper-pagination {
    display: flex;
    gap: 10px;
}
.swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.swiper-pagination-bullet-active {
    background: #007bff;
    color: #fff;
}
.newH6_line:nth-child(2) {
    margin-left: 10%;
}

.newH6_line:nth-child(2) .newH6_item {
    margin-left: 5%;
}
/* 响应式适配 - 还原原移动端效果 */ 
@media (max-width: 768px) {
    .newH6_line:nth-child(2) {
        display: none;
    }
    .newH6_line:nth-child(3) {
        display: none;
    }
    .newH6_line {
        flex-wrap: wrap;
        gap: 20px;
    }
    .newH6_item {
        width: calc(100% - 10px);
    }
    .newH6_logo img {
        width: 50px;
        height: 50px;
    }
    .newH6_text {
        max-width: 250px;
        font-size: 13px;
        padding: 10px 15px;
    }
    .swiper-control {
        gap: 10px;
    }
    .swiper-button {
        width: 35px;
        height: 35px;
    }
    .swiper-pagination-bullet {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

.card-img-top {
    width: 90%;
    margin: 10px auto;
    display: block;
}

.card {
    border-radius: 1rem;
}


.card-title {
  position: relative; 
  padding-bottom: 20px; 
  margin-bottom: 15px; 
}

/* 生成横线伪元素 */
.card-title::after {
  content: ""; 
  position: absolute; 
  left: 0; 
  bottom: 0; 
  width: 100%; 
  height: 0.1rem; 
  background-color: #d9d9d9; 
  
}

.liuyaindex {
    background: center top/cover url(/template/default/images/liuyanbg.jpg);
    min-height: 850px;
    display: flex; 
    align-items: center;
}

.message-box {
            width: 500px;
            margin: 50px auto;
            padding: 30px;
            border: 1px solid #eee;
            border-radius: 8px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            box-sizing: border-box;
        }
        .form-input:focus, .form-select:focus {
            outline: none;
            border-color: #f28e00;
        }
        .verify-group {
            display: flex;
            gap: 10px;
        }
        .verify-input {
            flex: 1;
        }
        .verify-img {
            width: 120px;
            height: 40px;
            cursor: pointer;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .submit-btn {
            width: 100%;
            padding: 12px;
            background-color: #f28e00;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
        }
        .submit-btn:hover {
            background-color: #ea5f88;
        }
        .error-tip {
            color: #f56c6c;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }


         @media (max-width: 767px) {
        .service-process .process-item {
            min-width: 100%;
            margin-bottom: 30px;
        }
        .service-process .process-arrow {
            display: none !important;
        }
        /* 手机端添加垂直箭头 */
        .process-item:not(:last-child)::after {
            content: "↓";
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            color: #f9a8d4;
            font-size: 20px;
        }
    }
    /* 平板适配 */
    @media (min-width: 768px) and (max-width: 991px) {
        .service-process .process-item {
            min-width: 40%;
            margin-bottom: 30px;
        }
        .service-process .process-arrow {
            display: none !important;
        }
        .process-item:nth-child(odd):not(:last-child)::after {
            content: "→";
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            color: #f9a8d4;
            font-size: 20px;
        }
    }

    .btn-info {
        color: #fff;
        background-color: #ea5f88;
        border-color: #ea5f88;
    }


@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1440px;
}
}






.footbg {
    background: url(/template/default/images/581.jpg) center no-repeat;
}
.fankuibg {
    background: url(/template/default/images/655.jpg) center no-repeat;
    padding: 50px 0;
}


.bg-info {
    background-color: #f28e00 !important;
}