.service-wrap {
    position: relative;
    width: 100%;
    min-height: 520px;
    background: url("bg.jpg") center center / cover no-repeat;
    padding: 70px 0px;
    overflow: hidden;
}

/* 高级感渐变遮罩 */
.service-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background:
        linear-gradient(135deg, rgba(12, 35, 64, 0.55) 0%, rgba(44, 82, 130, 0.35) 50%, rgba(12, 35, 64, 0.6) 100%); */
    z-index: 1;
}

/* 顶部装饰线 */
.service-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a86c, transparent);
     background: linear-gradient(90deg, transparent, #1f8a4c, transparent);
    z-index: 2;
}

/* 限定最大宽度1200px，居中 */
.service-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    /* background: linear-gradient(135deg, rgba(12, 35, 64, 0.55) 0%, rgba(44, 82, 130, 0.35) 50%, rgba(12, 35, 64, 0.6) 100%); */
    /* background: linear-gradient(135deg, rgba(14, 58, 32, 0.62) 0%, rgba(30, 110, 62, 0.40) 50%, rgba(14, 58, 32, 0.65) 100%); */
    /* background: linear-gradient(135deg, rgba(32, 54, 42, 0.60) 0%, rgba(56, 94, 72, 0.38) 50%, rgba(32, 54, 42, 0.63) 100%); */
    /* background: linear-gradient(135deg, rgba(28,32,36,0.62) 0%, rgba(60,66,72,0.40) 50%, rgba(28,32,36,0.65) 100%); */
    /* background: linear-gradient(135deg, rgba(22,48,48,0.60) 0%, rgba(44,88,88,0.36) 50%, rgba(22,48,48,0.64) 100%); */
    /* background: linear-gradient(135deg, rgba(14, 58, 32, 0.40) 0%, rgba(30, 110, 62, 0.22) 50%, rgba(14, 58, 32, 0.43) 100%); */
}

/* 服务卡片 */
.service-item {
    position: relative;
    padding: 40px 22px 30px;
    border: 1px solid rgb(205 205 205, .6);
    border: 1px solid rgb(191 191 191 / 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition: all 0.45s ease;
}
/* 3列布局：第3、6个去掉右边框 */
.service-item:nth-child(3n) {
    /* border-right: none; */
}

/* 逐个延迟出现 */
.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.25s; }
.service-item:nth-child(3) { animation-delay: 0.4s; }
.service-item:nth-child(4) { animation-delay: 0.55s; }
.service-item:nth-child(5) { animation-delay: 0.7s; }
.service-item:nth-child(6) { animation-delay: 0.85s; }

/* 悬停动效 */
.service-item:hover {
    transform: translateY(-12px);
    background: rgba(31, 138, 76, 0.12);
    
    backdrop-filter: blur(6px);
}

.service-item:hover .service-icon {
    transform: scale(1.15) rotate(-6deg);
     
}

.service-item:hover .num {
    color: #f7e9c6;
    color: #7be495;
    transform: scale(1.08);
}

.service-item:hover .title {
    letter-spacing: 2px;
}

.service-item:hover .down-arrow {
    transform: translateY(6px);
    opacity: 0.6;
}

/* 图标圆形背景 */
.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    /* background: linear-gradient(145deg, #2b547c, #133254); */
    /* border: 2px solid rgba(201, 168, 108, 0.7); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f7e9c6;
    margin-bottom: 18px;
    transition: all 0.45s ease;
    background: #23ac38;
    /* border: 2px solid rgba(31, 138, 76, 0.75); */
    color: #fff;
    /* border: 1px solid #fff; */
}

/* 序号 */
.num {
    font-size: 48px;
    font-weight: 800;
    color: #c9a86c;
    color: #e2e2e2;
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1;
    margin-bottom: 14px;
    transition: all 0.4s ease;
}

/* 标题 */
.title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    padding-bottom: 10px;
    position: relative;
    transition: all 0.4s ease;
}

.title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a86c, transparent);
      background: linear-gradient(90deg, transparent, #1f8a4c, transparent);
}

/* 描述文字 */
.desc {
    font-size: 14px;
    line-height: 1.9;
    color: #333;
    margin-top: 10px;
    flex: 1;
}

/* 向下箭头 */
.down-arrow {
    margin-top: 28px;
    font-size: 20px;
    color: #c9a86c;
    opacity: 0.8;
    transition: all 0.4s ease;
    animation: arrowBounce 2s infinite ease-in-out;
}

/* 进入动画 */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 箭头呼吸跳动 */
@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.service-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(1.1);
}

/* 手机端 750px以下 一排2个 */
@media (max-width:750px) {
    .service-wrap {
        padding: 50px 10px;
        box-sizing: border-box;
    }
    .service-container {
        grid-template-columns: repeat(2,1fr);
    }
    .service-item {
        padding:36px 14px;
        border: none;
    }
    .service-item:nth-child(3n) {
        border-right:1px solid rgba(255,255,255,0.25);
    }
    .service-item:nth-child(2n) {
        border-right:none;
    }
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .num {
        font-size: 36px;
    }
    .title {
        font-size: 17px;
    }
    .desc {
        font-size: 13px;
    }
    .down-arrow {
        font-size: 16px;
    }
}





.service-wrap .section-title {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    width: 100%!important;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}
.service-wrap .section-title strong:after{
 
    
}

.cff{
  color:#fff!important;  
    
}

