/**/


/**/
.server-project-container {
    width: 100%;
    height: auto;
    /*background-color: #fbf2f2;*/
    background-color: #f5f6fc;
}

.server-project-content {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*justify-content: center;*/
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 50px 0;
    /*border: 1px solid #f1132d;*/
    /*margin-bottom: 50px;*/
}

.section-title {
    text-align: center;
    /*margin-bottom: 40px;*/
}

.section-title h2 {
    font-size: 2.2rem;
    color: #333;
    margin: 0;
}

.section-title .subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
    margin-bottom: 10px;
}

.service-modules {
    display: flex;
    /*justify-content: space-between;*/
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.service-module {
    /*flex: 1;*/
    flex: 0 1 calc(20% - 24px); /* 限制宽度，适应5列布局 */
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.05);*/
    transition: transform 0.3s ease;
}

.service-module:hover {
    transform: translateY(-5px);
}

.module-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    background-color: #007bff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.module-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    color: white;
}

.module-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.module-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/**/

/*.server-scale-container {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    !*background-color: #fbf2f2;*!*/
/*    background-color: #4a78f4;*/
/*}*/

/*.server-scale-content {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    width: 100%;*/
/*    max-width: 1600px;*/
/*    height: 100%;*/
/*    margin: 0 auto;*/
/*    padding: 50px 0;*/
/*    border: 1px solid #f1132d;*/
/*}*/

/*  */
.server-pro-container {
    width: 100%;
    height: 300px;
    background-image: url('/public/image/probg.jpg'); /*  */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    background-color: #4a78f4;
}

/*  */
.server-pro-content {
    width: 100%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    justify-content: flex-end; /* 水平靠右 */
    align-items: center;         /* 垂直居中 */
    margin:  0  auto  ;
    /*border: 1px solid #f1132d;*/
}

.btn-customize {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 12px 50px;
    font-size: 32px;
    border-radius: 50px;
    cursor: pointer;
    /*margin-top: 20px;*/
    margin-right: 100px;
    float: right; /* 右对齐 */
    transition: background-color 0.3s ease;
}

.btn-customize:hover {
    background-color: #357abd;
}





/* 服务规模容器背景图 */
.server-scale-container {
    width: 100%;
    height: auto;
    background-image: url('/public/image/scale_bg.jpg'); /*  */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    background-color: #4a78f4;
}

/* 服务规模内容布局 */
.server-scale-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 0;
    position: relative;
    z-index: 1;
    /*border: 1px solid #f1132d;*/
}

/* 标题样式 */
.server-section-title h2 {
    font-size: 2.2rem;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

/* 数据项容器 */
.scale-data {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
}

/* 单个数据项 */
.scale-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 20px;
    white-space: nowrap;
}

.scale-item .number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.unit {
    font-size: 22px;
    /*vertical-align: middle;*/
}


.scale-item .label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}


/**/
.about-us-container {
    width: 100%;
    height: auto;
    background-color: #fff;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 80px 0;
    /*border: 1px solid #f1132d;*/
}

/* 关于我们整体布局 */
.about-us-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    gap: 40px;
}

/* 左侧图片 */
.about-us-image {
    flex: 1;
    overflow: hidden;
    /*border-radius: 8px;*/
}

.about-us-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /*border-radius: 8px;*/
}

/* 右侧文字内容 */
.about-us-text {
    flex: 1;
    padding: 20px;
}

.about-us-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.about-us-text .subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block; /*  */
}

.about-us-text .subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #007bff;
}

.about-us-text .content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-us-text .btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid #007bff;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    /*margin-top: 30px;*/
}

.about-us-text .btn:hover {
    background-color: #007bff;
    color: white;
}


/**/

.success-cases-container {
    width: 100%;
    height: auto;
    background-color: #4a78f4;
}

.success-cases-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 80px 0;
    /*border: 1px solid #f1132d;*/
}

/* 成功案例网格布局 */
.cases-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /*justify-content: center;*/
    margin-top: 40px;
}

/* 单个案例项 */
.case-item {
    flex: 1 1 calc(25% - 20px); /* 每行最多4个 */
    /*max-width: 250px;*/
    max-width: 385px;
    text-align: center;
    background: white;
    /*border-radius: 8px;*/
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
}

.case-item img {
    width: 100%;
    height: 265px;
    object-fit: cover;
    display: block;
}

.case-title {
    font-size: 16px;
    color: #333;
    padding: 10px;
    text-align: center;
}

.case-section-title {
    text-align: center;
    /*margin-bottom: 40px;*/
}

.case-section-title h2 {
    font-size: 48px;
    /*font-weight: bold;*/
    color: #fff;
    margin: 0;
}

.case-section-title .subtitle {
    font-size: 16px;
    color: #fff;
    margin-top: 8px;
}

/**/

.partner-container {
    width: 100%;
    height: auto;
    background-color: #f4f4f6;
}

.partner-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 100px 0;
    /*border: 1px solid #f1132d;*/

    background-image: url('/public/image/partner_bg.png'); /* 替换为实际背景图路径 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

/* 合作伙伴整体布局 */
.partner-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    gap: 200px;
}

/* 左侧文字区域 */
.partner-text {
    min-width: 300px;
    width: 25%;
    padding: 20px;
}

.partner-text h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.partner-text .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.partner-text .description {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    padding: 30px 0;
    margin-bottom: 50px;
}

.partner-text .btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid #007bff;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.partner-text .btn:hover {
    background-color: #007bff;
    color: white;
}

/* 右侧 logo 区域 */
.partner-logos {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.logo-item {
    flex: 1 1 calc(25% - 20px);
    /*max-width: 150px;*/
    text-align: center;
    background: white;
    /*border-radius: 8px;*/
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    /*border-color: #007bff;*/
}


.logo-item img {
    width: 100%;
    height: 100%;
    /*height: auto;*/
    object-fit: cover;
    transition: all 0.3s ease;
    /*padding: 10px;*/
}

.logo-item:hover img {
    transform: scale(1.05);
}

/**/
.news-center-container {
    width: 100%;
    height: auto;
    background-color: #fff;
}

.news-center-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 50px 0;
    /*border: 1px solid #f1132d;*/

}

/* 新闻中心网格布局 */
.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 40px;
}

/* 单个新闻项 */
.news-item {
    flex: 1 1 calc(50% - 15px);
    /*max-width: 50%;*/
    max-width: 785px;
    background: #f7f7f7;
    /*border-radius: 8px;*/
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

/* 时间 */
.news-date {
    color: #007bff;
    font-size: 14px;
    margin-bottom: 10px;
}

/* 标题 */
.news-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* 内容摘要 */
.news-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 查看详情按钮 */
.read-more {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
}

.read-more:hover {
    text-decoration: underline;
}

.news-section-title {
    text-align: center;
    /*margin-bottom: 40px;*/
}

.news-section-title h2 {
    font-size: 2.2rem;
    color: #333;
    margin: 0;
}

.news-section-title .subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
}


/**/


