/* 人力资源许可证解决方案 */
.renli-solution {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    padding: 0 20px;
    margin-top: 30px;
}

/* 蓝色横幅区域 */
.renli-banner {
    position: relative;
    margin-bottom: 30px;

}

.renli-banner-content {
    position: relative;
    z-index: 1;
}

.renli-subtitle {
    font-size: 18px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.renli-title {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.3;
}

.renli-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

/* 卡片区域 */
.renli-cards {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr);*/
    gap: 24px;
    margin-bottom: 40px;
}

.renli-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.renli-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 3px solid #2271e8;
    border-bottom: 3px solid #2271e8;
    z-index: 6;
    -webkit-animation: borderRotate 0.5s forwards;
    animation: borderRotate 0.5s forwards;
    opacity: 0;
}

.renli-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-right: 3px solid #2271e8;
    border-top: 3px solid #2271e8;
    z-index: 6;
    -webkit-animation: borderRotate 0.5s forwards;
    animation: borderRotate 0.5s forwards;
    opacity: 0;
}

.renli-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(34, 113, 232, 0.15);
}

.renli-card:hover::before,
.renli-card:hover::after {
    opacity: 1;
}

.renli-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 1px solid #e3eefe;
}

.renli-icon svg {
    width: 100%;
    height: 100%;
}

.renli-icon svg path,
.renli-icon svg rect,
.renli-icon svg circle {
    stroke: #2271e8;
}

.renli-card-content {
    flex: 1;
}

.renli-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.3;
}

.renli-card-text {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.renli-card-note {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    padding: 16px;
    background: #f8faff;
    border-radius: 6px;
    border-left: 3px solid #2271e8;
}

/* 底部区域 */
.renli-footer {
    text-align: center;
    padding: 20px 0 40px;
}

.renli-summary {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
    padding: 0 20px;
}

.renli-summary strong {
    color: #2271e8;
    font-weight: bold;
}

.renli-btn {
    display: inline-block;
    background: linear-gradient(135deg, #064df3 0%, #2271e8 100%);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(6, 77, 243, 0.4);
    transition: all 0.5s ease;
    cursor: pointer;
    border: none;
}

.renli-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(6, 77, 243, 0.5);
    background: linear-gradient(135deg, #ff7a00 0%, #ff7a01 100%);
}

/* 响应式 */
@media (max-width: 768px) {
    .renli-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .renli-card {
        padding: 20px;
        flex-direction: column;
    }

    .renli-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .renli-title {
        font-size: 26px;
    }

    .renli-desc {
        font-size: 16px;
    }

    .renli-card-title {
        font-size: 20px;
    }

    .renli-btn {
        font-size: 18px;
        padding: 16px 40px;
    }
}

@keyframes borderRotate {
    50% {
        height: 100%;
        width: 0;
    }

    100% {
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .renli-solution {
        padding: 0 15px;
    }
}

/* 实力过硬区域 - 优化版 */
.company-sl {
    width: 100%;
    margin-top: -40px;
    margin-bottom: 30px;
    /* background: url(../images/rl2.png) no-repeat center;
    background-size: cover;
    */
}

.sl-section {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 80px 0;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.sl-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.sl-title {
    font-size: 44px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}


.sl-subtitle {
    font-size: 22px;
    color: #2271e8;
    font-weight: bold;
    letter-spacing: 1px;
}

.sl-content {
    position: relative;

}



.sl-intro {
    font-size: 17px;
    color: #fff;
    line-height: 1.9;
    text-align: center;
    margin: 0 auto 50px;
    padding: 25px 40px;
    background: url(../images/ggw.png) no-repeat left center;
    background-size: cover;
    border-radius: 12px;
    border-left: 5px solid #2271e8;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.sl-center-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.sl-left-points,
.sl-right-points {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sl-left-points {
    align-items: flex-end;
}

.sl-right-points {
    align-items: flex-start;
}

.sl-point {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 25px 30px;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    max-width: 370px;
    width: 370px;
    height: 115px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f7ff;
}

.sl-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2271e8 0%, #064df3 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.sl-point:hover::before {
    transform: scaleY(1);
}

.sl-point:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(34, 113, 232, 0.2);
    border-color: #e3f0ff;
}

.sl-point-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2271e8 0%, #064df3 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(34, 113, 232, 0.3);
    z-index: 2;
}

.sl-promise .sl-point-num {
    background: linear-gradient(135deg, #ff7a00 0%, #ff6600 100%);
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 122, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
    }
}

.sl-point-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    z-index: 2;
}

.sl-point-text strong {
    color: #2271e8;
    font-weight: bold;
    font-size: 17px;
}

.sl-point-text .highlight {
    color: #ff7a00;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(255, 122, 0, 0.2);
}

.sl-center {
    position: relative;
    width: 360px;
    height: 360px;
    flex-shrink: 0;
    filter: drop-shadow(0 15px 30px rgba(34, 113, 232, 0.2));
}

.sl-circle-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f0ff 0%, #d4e5ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.sl-circle-bg::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px dashed #c5d8ff;
    border-radius: 50%;
    animation: rotate 25s linear infinite;
}

.sl-circle-bg::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(34, 113, 232, 0.1);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.sl-inner-circle {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #2271e8 0%, #064df3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(34, 113, 232, 0.3);
    position: relative;
    z-index: 2;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.sl-core {
    text-align: center;
    color: #fff;
}

.sl-core-icon {
    display: block;
    font-size: 48px;
    margin-bottom: 8px;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.sl-core-text {
    display: block;
    font-size: 38px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sl-desc {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    color: #2271e8;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.sl-desc::before {
    content: '—';
    margin-right: 10px;
}

.sl-desc::after {
    content: '—';
    margin-left: 10px;
}

.sl-footer {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.sl-btn {
    display: inline-block;
    width: 320px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, #2271e8 0%, #064df3 100%);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(34, 113, 232, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.sl-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.sl-btn:hover::before {
    left: 100%;
}

.sl-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(34, 113, 232, 0.5);
    background: linear-gradient(135deg, #ff7a00 0%, #ff6600 100%);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 响应式 */
@media (max-width: 992px) {
    .sl-center-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .sl-left-points,
    .sl-right-points {
        align-items: center;
        width: 100%;
    }

    .sl-point {
        max-width: 100%;
        width: 100%;
    }

    .sl-center {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .sl-title {
        font-size: 30px;
    }

    .sl-title::after {
        width: 60px;
        height: 3px;
    }

    .sl-content {
        padding: 40px 20px;
    }

    .sl-intro {
        font-size: 14px;
        padding: 20px 25px;
    }

    .sl-center {
        width: 170px;
        height: 170px;
    }

    .sl-circle-bg::before {
        width: 200px;
        height: 200px;
    }

    .sl-circle-bg::after {
        width: 140px;
        height: 140px;
    }

    .sl-inner-circle {
        width: 140px;
        height: 140px;
    }

    .sl-core-icon {
        font-size: 36px;
    }

    .sl-core-text {
        font-size: 14px;
    }

    .sl-point-text {
        font-size: 14px;
    }

    .sl-point-text .highlight {
        font-size: 16px;
    }

    .sl-btn {
        width: 280px;
        height: 54px;
        line-height: 54px;
        font-size: 18px;
    }
}

/* 尊重企业不玩套路区域 */

.company-zzqy {
    width: 100%;
    background: url("../images/img34.jpg") no-repeat center bottom;

}

.zzqy-section {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 80px 20px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.zzqy-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.zzqy-title {
    font-size: 44px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}


.zzqy-subtitle {
    font-size: 22px;
    color: #2271e8;
    font-weight: bold;
    letter-spacing: 1px;
}

.zzqy-content {

    position: relative;
}

.zzqy-intro {
    font-size: 18px;
    color: #fff;
    line-height: 1.9;
    text-align: center;
    margin: 0 auto 60px;
    padding: 25px 35px;
    background: url(../images/ggw.png) no-repeat left center;
    background-size: cover;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    border-left: 5px solid #2271e8;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(34, 113, 232, 0.1);
}

.zzqy-intro .highlight {
    color: #ff7a00;
    font-weight: bold;
    font-size: 20px;
    padding: 0 8px;
    position: relative;
    display: inline-block;
}

.zzqy-intro .highlight::before {
    content: '“';
    position: absolute;
    left: -5px;
    top: -15px;
    font-size: 36px;
    color: rgba(255, 122, 0, 0.3);
    font-family: serif;
}

.zzqy-intro .highlight::after {
    content: '”';
    position: absolute;
    right: -5px;
    bottom: -25px;
    font-size: 36px;
    color: rgba(255, 122, 0, 0.3);
    font-family: serif;
}

.zzqy-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.zzqy-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f5f5f5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.zzqy-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(34, 113, 232, 0.15);
    border-color: #e8f0ff;
}

.zzqy-feature:hover .zzqy-icon {
    transform: scale(1.1) rotate(5deg);
}

.zzqy-icon {
    width: 102px;
    height: 102px;

    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid #e3f0ff;
}

.zzqy-icon img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.zzqy-feature-text h4 {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.zzqy-feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.zzqy-footer {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.zzqy-btn {
    display: inline-block;
    padding: 18px 60px;
    background: linear-gradient(135deg, #2271e8 0%, #064df3 100%);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(34, 113, 232, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.zzqy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.zzqy-btn:hover::before {
    left: 100%;
}

.zzqy-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(34, 113, 232, 0.5);
    background: linear-gradient(135deg, #ff7a00 0%, #ff6600 100%);
}

/* 响应式 */
@media (max-width: 768px) {
    .zzqy-title {
        font-size: 30px;
    }

    .zzqy-title::after {
        width: 60px;
        height: 3px;
    }

    .zzqy-content {
        padding: 40px 20px;
    }

    .zzqy-intro {
        font-size: 16px;
        padding: 20px 25px;
        margin-bottom: 40px;
    }

    .zzqy-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zzqy-feature {
        padding: 20px;
    }

    .zzqy-icon {
        width: 60px;
        height: 60px;
    }

    .zzqy-feature-text h4 {
        font-size: 18px;
    }

    .zzqy-feature-text p {
        font-size: 14px;
    }

    .zzqy-btn {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .zzqy-intro .highlight::before,
    .zzqy-intro .highlight::after {
        display: none;
    }
}

.renli-1-title {
    display: flex;
    border-bottom: 1px solid #cacaca;
    font-weight: bold;
    color: #4976f5;
    position: relative;
    padding: 18px 0px 20px 0px;
    text-align: left;
    font-size: 28px;
    line-height: 36px;
    color: #333;
    flex-direction: column;



    /*
    background: url(../images/dian.png) no-repeat left 25px;
    border-radius: 8px 8px 0 0;
    padding: 18px 20px 12px;
    background: #f2f2f2;
    background: linear-gradient(to bottom, #f2f2f2, #dfdfdf);
    */

}

.renli-1-title p {



    padding-top: 8px;
}

/* 解决方案卡片 - 参考图片风格 */
.solution-card {
    margin-bottom: 24px;


}



.solution-body {
    margin-top: 30px;
    transition: all 0.4s ease;
}

.solution-body:hover {
    transform: translateY(-5px);
    cursor: pointer;
    /* box-shadow: 0 8px 30px rgba(34, 113, 232, 0.12); */
}

.solution-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e8e8e8;

}

.tag-line {
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #2271e8 0%, #064df3 100%);
    border-radius: 2px;
}

.tag-text {
    font-size: 18px;
    font-weight: bold;
    color: #2271e8;
}

.tag-sub {
    font-size: 14px;
    color: #999;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
}



.solution-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.solution-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2271e8 0%, #064df3 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.title-text {
    font-weight: bold;
    color: #ff7a00;
}

.hot-tag {
    font-size: 12px;
    color: #ff7a00;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid #ff7a00;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.solution-desc {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

/* 响应式 */
@media (max-width: 768px) {
    .solution-card {
        padding: 0px;
    }

    .solution-tag {
        flex-wrap: wrap;
        gap: 8px;
    }

    .tag-text {
        font-size: 16px;
    }

    .solution-title {
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .title-text {
        font-size: 20px;
    }

    .solution-desc {
        font-size: 16px;
        padding: 15px 0;
    }
}

/* 办事能力展示区域 */
.capability-showcase {
    position: relative;
    overflow: hidden;

}

.capability-showcase::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(34, 113, 232, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.6;
}

.showcase-header {
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.showcase-icon {
    font-size: 48px;
    color: #2271e8;
    margin-bottom: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.showcase-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    position: relative;
}

.showcase-desc {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    margin: 0 auto;
    /*
    padding: 20px 30px;
    background: #ecf4fc;
    border-radius: 10px;
    border-left: 4px solid #2271e8;
    */
}

.capability-items {
    display: flex;
    position: relative;
    z-index: 1;
    gap: 20px;
    flex-direction: column;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}



.capability-item:hover::before {
    transform: scaleY(1);
}

.capability-item:hover {
    transform: translateY(-5px);
    cursor: pointer;

}

.item-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2271e8 0%, #064df3 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    flex-shrink: 0;

}

.item-content {
    flex: 1;
}

.item-label {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 8px;
}

.item-comparison {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.old-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
}

.old-value {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
}

.old-miaoshu {
    font-size: 16px;
    color: #444;
}

.arrow {
    font-size: 20px;
    color: #2271e8;
    font-weight: bold;
}

.new-value {
    font-size: 18px;
    font-weight: bold;
    color: #ff7a00;
    background: rgba(255, 122, 0, 0.1);
    padding: 4px 13px;
    border-radius: 20px;
    border: 1px solid rgba(255, 122, 0, 0.3);
}

.improve-rate {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff6600 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
    animation: pulse 2s infinite;
}

.improve-rate.price {
    font-size: 14px;
    line-height: 1.2;
}

.capability-note {
    text-align: center;
    font-size: 16px;
    color: #2271e8;
    font-weight: bold;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.note-icon {
    font-size: 20px;
    margin-right: 8px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 122, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
    }
}

/* 响应式 */
@media (max-width: 768px) {
    .capability-showcase {
        padding: 5px 0px;
    }

    .showcase-icon {
        font-size: 36px;
    }

    .showcase-title {
        font-size: 22px;
    }

    .showcase-desc {
        font-size: 16px;
        padding: 0px;
        color: #666;
        line-height: 1.8;
    }

    .capability-item {

        text-align: center;
        gap: 10px;
        padding: 10px 0;
    }

    .item-comparison {
        justify-content: center;
        flex-wrap: nowrap;
    }

    .item-label {
        font-size: 16px;
    }

    .new-value {
        font-size: 16px;
    }

    .improve-rate {
        width: 70px;
        height: 70px;
        font-size: 14px;
    }
}

.renli-k3 {
    width: 100%;
    height: 600px;
    background: #fff url(../images/if.jpg) no-repeat center bottom;
    position: relative;
}

/* 成功案例区域 */
.success-cases {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 450px;
    padding: 0 20px;
    text-align: center;
}

.cases-header {
    margin-bottom: 50px;
}

.cases-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 36px;
    font-weight: bold;
}

.title-brand {
    color: #222;
}

.title-dot {
    width: 10px;
    height: 10px;
    background: #ff7a00;
    border-radius: 50%;
    display: inline-block;
}

.title-text {
    font-size: 24px;
    font-weight: bold;
    color: #222;
}

.cases-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cases-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    color: #999;
}

.case-tag {
    color: #666;
    font-weight: 500;
}

.tag-separator {
    color: #ccc;
}

.cases-services {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.65);
    border: 2px solid #ff7a00;
    border-radius: 30px;
    color: #ff7a00;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-btn:hover {
    background: linear-gradient(135deg, #ff7a00 0%, #ff6600 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

/* 响应式 */
@media (max-width: 768px) {
    .renli-k3 {
        padding: 0px 0;
        height: 140px;
        background-size: cover;
    }

    .cases-title {
        font-size: 28px;
        gap: 10px;
    }

    .title-dot {
        width: 8px;
        height: 8px;
    }

    .cases-desc {
        font-size: 15px;
        padding: 0 20px;
    }

    .cases-tags {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 14px;
    }

    .cases-services {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-btn {
        width: 90%;
        max-width: 400px;
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* 全屏横幅区域 */
.ban-new {
    width: 100%;
    height: 143px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #0482fb url(../images/ad.png) no-repeat center top;
}

.ban-new img {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* 响应式 */
@media (max-width: 768px) {
    .ban-new img {
        width: 100%;
        min-width: 100%;
    }

    .ban-new {
        height: 60px;
        background-size: cover;
    }

    .renli-1-title {
        font-size: 20px;
        padding: 18px 0px 10px 0px;
    }

    .title-text {
        font-size: 18px;
    }

    .renli-summary {
        padding: 0;
        font-size: 16px;
    }

    .old-title {
        font-size: 16px;
    }

    .old-value {
        font-size: 16px;
        padding: 4px 5px;
    }

    .showcase-header {
        margin-top: 5px;
    }

    .renli-solution {
        padding: 0 15px;
        margin-top: 0;
        box-sizing: border-box;
    }

    .solution-body {
        margin-top: 10px;
    }



}