/* 简单文章列表样式 */
.simple-article-list {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 0 0 40%;
}

.simple-article-item {
    border-bottom: 1px solid #eee;
}

.simple-article-item:last-child {
    border-bottom: none;
}

.simple-article-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.simple-article-link:hover {
    background-color: #f8f9fa;
    color: #2c5aa0;
}

.simple-article-title {
    font-size: 15px;
    font-weight: 500;
    flex: 1 0 80%;
    overflow: hidden;
    margin-right: 15px;
    line-height: 1.5;
}

.simple-article-date {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 768px) {


    .simple-articles-list {
        padding: 15px 0;
    }

    .simple-article-link {
        padding: 12px 15px;
    }

    .simple-article-title {
        font-size: 14px;
    }

    .simple-article-date {
        font-size: 12px;
    }
}

/* NIST 8425页面专用样式 */

/* 页面头部样式优化 */
.page-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.breadcrumb {
    font-size: 16px;
    opacity: 0.8;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

/* 认证概述样式优化 */
.certification-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 36px;
    color: #1e3c72;
    margin-bottom: 30px;
    position: relative;
}

.overview-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.overview-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.point-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1e3c72;
    transition: all 0.3s ease;
}

.point-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.1);
}

.point-item i {
    font-size: 24px;
    color: #1e3c72;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.point-item span {
    font-weight: 600;
    color: #333;
}

.overview-image {
    text-align: center;
}

.overview-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 认证范围样式 */

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1e3c72;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.scope-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.scope-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
    border-color: #1e3c72;
}

.scope-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.scope-item:hover .scope-icon {
    transform: scale(1.1);
}

.scope-icon i {
    font-size: 36px;
    color: white;
}

.scope-item h4 {
    font-size: 22px;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 600;
}

.scope-item p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* 认证要求样式 */

.requirements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.requirement-category {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 15px;
    border-left: 5px solid #1e3c72;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.requirement-category::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.05), rgba(42, 82, 152, 0.05));
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.requirement-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
    border-left-color: #2a5298;
}

.requirement-category h4 {
    font-size: 20px;
    color: #1e3c72;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.requirement-category h4 i {
    font-size: 24px;
    margin-right: 12px;
    color: #2a5298;
}

.requirement-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.requirement-category li {
    padding: 8px 0;
    color: #555;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.requirement-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .key-points {
        grid-template-columns: 1fr;
    }

    .scope-grid {
        grid-template-columns: 1fr;
    }

    .requirements-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}/* .page .archive-banner{
    display: none;
} */
.banner-content{
    max-width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

.main-content-area {
    padding: 0;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-item {
    display: flex;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.advantage-icon i {
    font-size: 28px;
    color: #fff;
}

.advantage-content {
    flex: 1;
}

.advantage-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.advantage-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* 规范标准样式 */
.standards-section {
    padding: 50px 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.standard-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.standard-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.standard-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.standard-icon i {
    font-size: 28px;
    color: #fff;
}

.standard-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.standard-item ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.standard-item li {
    margin-bottom: 10px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.standard-item li:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .advantages-grid,
    .standards-grid,
    .service-types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-type-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        margin: 0 auto 15px;
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .service-types-section {
        padding: 50px 0;
    }
    
    .service-type-image {
        height: 160px;
        padding: 20px;
    }
    
    .service-type-content {
        padding: 20px;
    }
    
    .service-type-content h4 {
        font-size: 20px;
        padding-bottom: 10px;
    }
    
    .service-type-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .service-types-section {
        padding: 40px 0;
    }
    
    .service-type-image {
        height: 140px;
        padding: 15px;
    }
    
    .service-type-content {
        padding: 15px;
    }
    
    .service-type-content h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-type-content h4:after {
        width: 30px;
        height: 2px;
    }
    
    .service-type-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .service-type-link {
        font-size: 14px;
    }

}

/* 四大核心优势新增样式 */
.mainbox {
    width: 100%;
    margin: 0 auto;
}

.ntitlebox {
    margin-bottom: 30px;
}

.ntitlebox .title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ntitlebox .des {
    font-size: 18px;
    color: #666;
}

.zhubox {
    position: relative;
}

.flexbox {
    display: flex;
    justify-content: space-between;
}

.fsbs {
    justify-content: space-between;
}

.fccc {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fcc {
    align-items: center;
    justify-content: center;
}

.partbox {
    flex: 1;
}

.partbox .title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}


.partbox .des .dot {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.partbox .des .dot:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.vsbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 2;
}

.vsbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.youdianbox {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.morebox {
    flex: 1;
    text-align: center;
}

.more {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.more .mark {
    margin-right: 8px;
}

.more .mark i {
    font-size: 18px;
}

.more .text {
    font-size: 16px;
    font-weight: 500;
}

.fanbai {
    background: #fff;
    color: var(--primary-color);
}

/* 服务类型部分样式 */
.service-types-section {
    padding: 70px 0;
    background-color: #f9f9f9;
    position: relative;
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-type-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-type-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 102, 204, 0.1);
}

.service-type-image {
    height: 220px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-type-item:hover .service-type-image {
    background-color: #f0f4f9;
}

.service-type-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.service-type-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-bottom: 12px;
}

.service-type-content h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 3px;
}

.service-type-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    flex: 1;
}

.service-type-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    font-size: 15px;
}

.service-type-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.service-type-link:hover {
    color: var(--secondary-color);
}

.service-type-link:hover:after {
    width: 100%;
}

.service-type-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.service-type-link:hover i {
    transform: translateX(5px);
}

/* 规范标准新增样式 */
.des.textof {
    padding: 8px 15px;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}
.des.textof:nth-child(odd){
    background-color: #dde2f8;
}

.des.textof:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.des.textof.nobg {
    background-color: transparent;
    box-shadow: none;
}

@media (max-width: 992px) {
    .flexbox {
        flex-direction: column;
    }
    
    .partbox {
        margin: 15px 0;
    }
    
    .vsbox {
        top: -26px;
        transform: translate3d(-50%, 0,0);
    }
    
    .youdianbox {
        flex-wrap: wrap;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 100%;
    }
    .page-advantages-section .partbox.rightbox{
        margin-top: 150px;
    }
    
    .morebox {
        flex: 0 0 25%;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .morebox {
        flex: 0 0 50%;
    }
}
@media (max-width: 480px){
    .page-advantages-section .partbox.rightbox{
        margin-top: 225px;
    }
    .morebox {
        flex: 0 0 100%;
    }
}

/* 服务流程样式 */
.process-steps-container {
    width: 100%;
    overflow-x: auto;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 900px;
    gap: 15px;
}

.process-step-item {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 120px;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.step-icon i {
    font-size: 36px;
    color: #fff;
}

.step-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.step-number {
    font-size: 14px;
    color: #666;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 24px;
    margin: 0 5px;
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-arrow i {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .process-steps {
        min-width: 700px;
    }

    .process-step-item {
        width: 100px;
        padding: 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .process-steps {
        min-width: 600px;
    }

    .process-step-item {
        width: 80px;
        padding: 10px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        font-size: 24px;
    }

    .step-text {
        font-size: 14px;
    }

    .step-number {
        font-size: 12px;
    }
}

/* 自定义菜单样式 */
.custom-menu-section {
    padding: 30px 0 15px;
    background-color: #f8f9fa;
}

.page-links-menu {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-links-menu li {
    text-align: center;
    padding: 20px 15px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.page-links-menu li:hover,
.page-links-menu .current-menu-item {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
    color: white;
}

.page-links-menu li a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.page-links-menu li:hover a,
.page-links-menu .current-menu-item a {
    color: white;
}

/* 移动端适配 */
@media (max-width: 992px) {
    .page-links-menu {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-links-menu li a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-links-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-links-menu li a {
        font-size: 12px;
    }
}

.index-section {
    padding: 50px 0;
}

/* 服务详情页样式 */

.service-detail-section .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.service-detail-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-detail-header {
    display: flex;
    align-items: stretch;

    overflow: hidden;

}

.service-detail-intro {
    flex: 1;
    padding: 40px;
    color: #333;
    flex-direction: column;
    justify-content: center;
}

.service-detail-image {
    background-color: #fff;
    flex: 0 0 45%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.service-detail-image a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    
}

.service-detail-icon-top {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-detail-icon-top i {
    font-size: 28px;
    color: #fff;
}

.service-detail-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.service-detail-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-detail-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.service-detail-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-detail-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    color: #fff;
}

.service-detail-cta:hover i {
    transform: translateX(5px);
}

.service-features {

}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    
    border-radius: 10px;
    width: 100%;
}

.feature-item {
    background-color: transparent;
    padding: 20px 10px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    box-shadow: none;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 36px;
    color: #ffffff;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.feature-desc {
    display: none;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-process {}

.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.process-step {
    position: relative;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:before {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    z-index: 1;
}

.process-step:nth-child(1):before {
    content: '1';
}

.process-step:nth-child(2):before {
    content: '2';
}

.process-step:nth-child(3):before {
    content: '3';
}

.process-step:nth-child(4):before {
    content: '4';
}

.process-step h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.service-cases {}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.case-item:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 20px;
    background-color: #fff;
}

.case-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.case-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.case-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.case-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.case-link:hover i {
    transform: translateX(5px);
}

.service-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 77, 153, 0.15) 100%);
    border-radius: 15px;
}

.service-cta h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.service-cta p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.4);
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .service-detail-intro{
        padding: 10px;
        padding-bottom: 0;
    }
    .service-detail-header {
        flex-direction: column-reverse;
        margin-bottom: 0;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .service-detail-intro h2 {
        font-size: 28px;
    }

    .service-detail-intro p {
        font-size: 16px;
    }

    .feature-item {
        padding: 0px;
    }

    .process-step {
        padding: 20px;
    }
}

@media (max-width: 576px) {

    .service-cta {
        padding: 30px 20px;
    }

    .service-cta h3 {
        font-size: 24px;
    }

    .service-cta p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

.page-advantages-section .partbox{
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin: 0 15px;
}
.page-advantages-section .partbox.leftbox{
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}
.standards-section .partbox{
    margin: 0 15px;
    background: #fff;
}
