/* 内页公共样式 */

/* 页面Banner */
.page-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.page-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.page-banner-content h1 {
    font-size: 42px;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeFromLeft 1.2s ease forwards;
}

.page-banner-content p {
    font-size: 14px;
    font-family: "Microsoft YaHei";
    opacity: 0;
    transform: translateY(30px);
    animation: fadeFromBottom 1.2s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 面包屑导航 */
.breadcrumb-bar {
    background: url('https://tpl-ce91c6e-pic48.websiteonline.cn/upload/ededed.jpg') repeat-x center bottom;
    background-color: #fff;
    height: 60px;
}

.breadcrumb-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.breadcrumb-left {
    display: flex;
    align-items: center;
}

.breadcrumb-left img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.breadcrumb-left span {
    font-size: 14px;
    color: #999;
    font-family: "Microsoft YaHei";
}

.breadcrumb-left a {
    font-size: 14px;
    color: #555;
    font-family: "Microsoft YaHei";
    margin: 0 5px;
}

.breadcrumb-left a:hover {
    color: #0052d9;
}

.breadcrumb-left .separator {
    color: #ccc;
    font-size: 12px;
    margin: 0 5px;
}

.breadcrumb-tabs {
    display: flex;
}

.breadcrumb-tabs .tab-item {
    padding: 0 30px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    color: #555;
    font-family: "Microsoft YaHei";
    background: #fff;
    transition: all 0.3s;
}

.breadcrumb-tabs .tab-item:hover {
    color: #0052d9;
}

.breadcrumb-tabs .tab-item.active {
    background: #0052d9;
    color: #fff;
}

.tab-btn {
    padding: 0 30px;
    height: 59px;
    line-height: 59px;
    font-size: 16px;
    color: #555;
    font-family: "Microsoft YaHei";
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    color: #003581;
}

/* 关于我们页面 */
.about-intro {
    padding: 60px 0;
    background: #fff;
}

.about-intro-content {
    display: flex;
    gap: 30px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: "Microsoft YaHei";
}

.about-image {
    width: 518px;
    height: 295px;
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 企业理念 */
.company-values {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.company-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 53, 129, 0.85);
}

.company-values .container {
    position: relative;
    z-index: 1;
}

.values-desc {
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 50px;
    font-family: "Microsoft YaHei";
}

.values-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.value-icon img {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    font-family: "Microsoft YaHei";
}

.value-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-family: "Microsoft YaHei";
}

/* 发展历程 */
.timeline-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0052d9;
}

.timeline-item {
    text-align: center;
    position: relative;
    flex: 1;
}

.timeline-year {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #0052d9;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.timeline-content h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
    font-family: "Microsoft YaHei";
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    font-family: "Microsoft YaHei";
}

/* 业务范围页面 */
.business-list-section {
    padding: 80px 0;
    background: #fff;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    width: calc(33.333% - 20px);
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 82, 217, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
    font-family: "Microsoft YaHei";
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: "Microsoft YaHei";
}

/* 服务流程 */
.process-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 0 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(to right, rgb(0, 65, 223), rgb(0, 138, 255));
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
    font-family: "Microsoft YaHei";
}

.process-step p {
    font-size: 14px;
    color: #666;
    font-family: "Microsoft YaHei";
}

.process-arrow {
    font-size: 30px;
    color: #0052d9;
    margin: 0 10px;
}

/* 解决方案页面 */
.solutions-list-section {
    padding: 80px 0;
    background: #fff;
}

.solution-detail-card {
    display: flex;
    margin-bottom: 60px;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.solution-detail-card.reverse {
    flex-direction: row-reverse;
}

.solution-detail-image {
    width: 500px;
    height: 350px;
}

.solution-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-detail-content {
    flex: 1;
    padding: 50px;
}

.solution-detail-content h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 20px;
    font-family: "Microsoft YaHei";
}

.solution-detail-content > p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: "Microsoft YaHei";
}

.solution-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.solution-features-list li {
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    font-family: "Microsoft YaHei";
}

/* 客户案例页面 */
.cases-list-section {
    padding: 80px 0;
    background: #fff;
}

.cases-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    font-size: 14px;
    color: #555;
    background: #f5f7fa;
    border-radius: 20px;
    font-family: "Microsoft YaHei";
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0052d9;
    color: #fff;
}

.case-info {
    padding: 20px;
    background: #fff;
}

.case-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-family: "Microsoft YaHei";
}

.case-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-family: "Microsoft YaHei";
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    padding: 10px 18px;
    font-size: 14px;
    color: #555;
    background: #f5f7fa;
    border-radius: 4px;
    font-family: "Microsoft YaHei";
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: #0052d9;
    color: #fff;
}

/* 新闻资讯页面 */
.news-list-section {
    padding: 80px 0;
    background: #fff;
}

.news-list-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-list-item {
    display: flex;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.news-list-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-list-image {
    width: 300px;
    height: 200px;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list-content {
    flex: 1;
    display: flex;
    padding: 30px;
}

.news-list-date {
    width: 80px;
    text-align: center;
    padding: 15px;
    background: #fff;
    margin-right: 30px;
    border-radius: 4px;
}

.news-list-date .day {
    display: block;
    font-size: 32px;
    color: #0052d9;
    font-weight: bold;
}

.news-list-date .month {
    display: block;
    font-size: 14px;
    color: #0052d9;
}

.news-list-info {
    flex: 1;
}

.news-list-info h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 15px;
    font-family: "Microsoft YaHei";
    transition: color 0.3s;
}

.news-list-item:hover .news-list-info h3 {
    color: #0052d9;
}

.news-list-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: "Microsoft YaHei";
}

.read-more {
    font-size: 14px;
    color: #0052d9;
    font-family: "Microsoft YaHei";
}

.read-more:hover {
    text-decoration: underline;
}

/* 联系我们页面 */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    width: 400px;
}

.contact-info h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 30px;
    font-family: "Microsoft YaHei";
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.contact-icon img {
    width: 100%;
    height: 100%;
}

.contact-detail h4 {
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
    font-family: "Microsoft YaHei";
}

.contact-detail p {
    font-size: 14px;
    color: #666;
    font-family: "Microsoft YaHei";
}

.contact-qrcode {
    margin-top: 30px;
    text-align: center;
}

.contact-qrcode img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.contact-qrcode p {
    font-size: 12px;
    color: #666;
    font-family: "Microsoft YaHei";
}

.contact-form {
    flex: 1;
}

.contact-form h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 30px;
    font-family: "Microsoft YaHei";
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full {
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-family: "Microsoft YaHei";
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-family: "Microsoft YaHei";
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0052d9;
}

.form-group textarea {
    resize: vertical;
}

/* 联系我们页面 - 与原站一致 */
.contact-main-section {
    background: #fff;
    padding-bottom: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-map {
    width: 100%;
    height: 335px;
    background: #e5e5e5;
}

.contact-map .map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ddd;
}

.contact-map .map-placeholder p {
    font-size: 24px;
    color: #999;
    margin-bottom: 10px;
    font-family: "Microsoft YaHei";
}

.contact-map .map-placeholder span {
    font-size: 14px;
    color: #666;
    font-family: "Microsoft YaHei";
}

.contact-info-form {
    display: flex;
    background: #fafafa;
}

.contact-info-box {
    width: 50%;
    padding: 40px 50px;
    background: #fafafa;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    margin-right: 25px;
    flex-shrink: 0;
}

.contact-info-icon img {
    width: 100%;
    height: 100%;
}

.contact-info-detail .label {
    font-size: 14px;
    color: #555;
    font-family: "Microsoft YaHei";
    margin-bottom: 5px;
}

.contact-info-detail .value {
    font-size: 14px;
    color: #555;
    font-family: "Microsoft YaHei";
    line-height: 1.8;
}

.contact-info-detail .value.phone {
    font-size: 24px;
    color: #0052d9;
    font-family: "arial black";
}

.contact-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 10px 0;
}

.contact-form-box {
    width: 50%;
    padding: 40px 50px;
    background: #fafafa;
}

.message-form .form-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.message-form .form-item label {
    width: 80px;
    font-size: 14px;
    color: #333;
    font-family: "Microsoft YaHei";
    line-height: 40px;
    flex-shrink: 0;
}

.message-form .form-item input,
.message-form .form-item textarea {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 14px;
    font-family: "Microsoft YaHei";
    background: #fff;
    transition: border-color 0.3s;
    height: 40px;
    box-sizing: border-box;
}

.message-form .form-item input:focus,
.message-form .form-item textarea:focus {
    outline: none;
    border-color: #0052d9;
}

.message-form .form-item textarea {
    resize: vertical;
    min-height: 80px;
    height: auto;
}

.message-form .form-submit {
    padding-left: 80px;
}

.btn-submit {
    display: inline-block;
    padding: 12px 50px;
    background: linear-gradient(to right, rgb(0, 65, 223), rgb(0, 138, 255));
    color: #fff;
    font-size: 14px;
    font-family: "Microsoft YaHei";
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: rgba(0, 81, 214, 1);
}

/* 关于我们页面 - 与原站一致 */
.about-intro-section {
    padding: 60px 0;
    background: #fff;
}

.about-intro-grid {
    display: flex;
    gap: 30px;
}

.about-intro-text {
    width: 650px;
    flex-shrink: 0;
}

.about-intro-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: "Microsoft YaHei";
}

.about-intro-image {
    width: 518px;
    height: 295px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-values-section {
    padding: 75px 0;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

.about-values-title {
    font-size: 38px;
    color: #fff;
    text-align: center;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    margin-bottom: 20px;
}

.about-values-desc {
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    font-family: "Microsoft YaHei";
}

.about-values-card {
    width: 568px;
    background: #fff;
    padding: 45px 43px;
}

.values-card-item h3 {
    font-size: 18px;
    color: #000;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    margin-bottom: 15px;
}

.values-card-item h3 span {
    color: #0052d9;
}

.values-card-item p {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    font-family: "Microsoft YaHei";
}

.values-card-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 25px 0;
}

/* 业务范围页面 - 与原站一致 */
.business-list-section {
    padding: 50px 0 80px;
    background: #fff;
}

.business-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.business-card-item {
    min-height: 280px;
    padding: 38px 40px;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #e8f4fd 0%, #ffffff 100%);
    border: 1px solid #e6eef9;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.business-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
    border-color: #d7e6ff;
}

.business-card-item.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 0.8s ease forwards;
}

.business-card-item:nth-child(1) { animation-delay: 0s; }
.business-card-item:nth-child(2) { animation-delay: 0.1s; }
.business-card-item:nth-child(3) { animation-delay: 0.2s; }
.business-card-item:nth-child(4) { animation-delay: 0.3s; }
.business-card-item:nth-child(5) { animation-delay: 0.4s; }
.business-card-item:nth-child(6) { animation-delay: 0.5s; }
.business-card-item:nth-child(7) { animation-delay: 0.6s; }
.business-card-item:nth-child(8) { animation-delay: 0.7s; }

@keyframes fadeUpIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.business-card-item .card-icon {
    width: 47px;
    height: 47px;
    margin-bottom: 15px;
}

.business-card-item h3 {
    font-size: 18px;
    color: #222;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    margin-bottom: 10px;
}

.business-card-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-family: "Microsoft YaHei";
    margin-bottom: 20px;
    flex: 1;
}

.business-card-item .card-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #d9d9d9;
    font-size: 12px;
    color: #555;
    font-family: "Microsoft YaHei";
    transition: all 0.3s;
    align-self: flex-start;
}

.business-card-item .card-btn:hover {
    background: #1c72ff;
    border-color: #005aee;
    color: #fff;
}

@media (max-width: 1200px) {
    .business-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .business-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .business-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* 解决方案页面 */
.solutions-content-section {
    padding: 17px 0 80px;
    background: #f8f8f8;
}

.solutions-layout {
    display: flex;
    gap: 22px;
}

.solutions-sidebar {
    width: 261px;
    background: #fff;
    padding: 14px 18px;
    flex-shrink: 0;
}

.solutions-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solutions-category-list li {
    margin-bottom: 3px;
}

.solutions-category-list li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    font-family: "Microsoft YaHei";
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
}

.solutions-category-list li a::before {
    content: "→";
    margin-right: 8px;
    color: #999;
}

.solutions-category-list li a:hover,
.solutions-category-list li a.active {
    color: #0052d9;
}

.solutions-detail {
    flex: 1;
    background: #fff;
    border-top: 1px solid #0052d9;
    padding: 36px 49px;
}

.detail-title {
    font-size: 24px;
    color: #222;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    margin-bottom: 20px;
}

.detail-intro {
    font-size: 14px;
    color: #868686;
    line-height: 22px;
    font-family: "Microsoft YaHei";
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    padding: 15px;
    margin-bottom: 20px;
}

.detail-content {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.8;
    font-family: "Microsoft YaHei";
}

.detail-content p {
    margin-bottom: 15px;
}

.detail-content img {
    max-width: 100%;
    margin-bottom: 15px;
}

.detail-nav {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.detail-nav .prev-article,
.detail-nav .next-article {
    font-size: 14px;
    color: #888;
    font-family: "Microsoft YaHei";
    margin-bottom: 10px;
}

.detail-nav a {
    color: #333;
    transition: color 0.3s;
}

.detail-nav a:hover {
    color: #0052d9;
}

/* 客户案例页面 - 与原站一致 */
.cases-page-section {
    padding: 50px 0 80px;
    background: #fff;
}

.cases-page-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.case-page-item {
    width: calc(33.333% - 14px);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.case-page-image {
    height: 200px;
    overflow: hidden;
}

.case-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.case-page-item:hover .case-page-image img {
    transform: scale(1.05);
}

.case-page-info {
    padding: 20px;
}

.case-page-info h4 {
    font-size: 16px;
    color: #333;
    font-family: "Microsoft YaHei";
    margin-bottom: 10px;
}

.case-page-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-family: "Microsoft YaHei";
}

/* 新闻资讯页面 - 与原站一致 */
.news-page-section {
    padding: 30px 0 80px;
    background: #fff;
}

.news-page-list {
    display: flex;
    flex-direction: column;
}

.news-page-item {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
    cursor: pointer;
    transition: background-color 0.3s;
}

.news-page-item:hover {
    background-color: #f8f9fa;
}

.news-page-item:first-child {
    padding-top: 0;
}

.news-page-date {
    width: 70px;
    min-width: 70px;
    text-align: center;
    margin-right: 30px;
    padding-top: 5px;
}

.news-page-date .day {
    display: block;
    font-size: 36px;
    color: #999;
    font-weight: normal;
    line-height: 1;
    font-family: "Microsoft YaHei";
}

.news-page-date .month {
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 5px;
    font-family: "Microsoft YaHei";
}

.news-page-content {
    flex: 1;
    border-left: 1px solid #eee;
    padding-left: 30px;
}

.news-page-content h4 {
    font-size: 16px;
    color: #333;
    font-family: "Microsoft YaHei";
    margin-bottom: 12px;
    transition: color 0.3s;
}

.news-page-item:hover .news-page-content h4 {
    color: #0052d9;
}

.news-page-content p {
    font-size: 13px;
    color: #888;
    line-height: 1.8;
    font-family: "Microsoft YaHei";
}

/* 荣誉资质模块 */
.about-honors-section {
    padding: 60px 0 80px;
    background: #fff;
}

.section-title-center {
    font-size: 32px;
    color: #222;
    text-align: center;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    margin-bottom: 20px;
}

.section-desc-center {
    font-size: 14px;
    color: #5a5a5a;
    text-align: center;
    font-family: "Microsoft YaHei";
    margin-bottom: 40px;
}

.honors-scroll-wrapper {
    width: 100%;
    overflow: hidden;
}

.honors-scroll-track {
    display: flex;
    gap: 25px;
    animation: honorsScroll 20s linear infinite;
}

.honors-scroll-wrapper:hover .honors-scroll-track {
    animation-play-state: paused;
}

@keyframes honorsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.honor-item {
    border: 1px solid #eee;
    padding: 12px;
    transition: border-color 0.3s;
    flex-shrink: 0;
}

.honor-item:hover {
    border-color: #3c78d8;
}

.honor-image {
    width: 380px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-image img {
    max-width: 100%;
    max-height: 100%;
}

.honor-title {
    font-size: 14px;
    color: #000;
    text-align: center;
    font-family: "Microsoft YaHei";
    margin-top: 10px;
}

/* 新闻详情页样式 */
.news-detail-section {
    padding: 50px 0 80px;
    background: #fff;
}

.news-detail-article {
    max-width: 900px;
    margin: 0 auto;
}

.news-detail-title {
    font-size: 28px;
    color: #222;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}

.news-detail-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    background: #f5f5f5;
    border-left: 3px solid #0052d9;
    padding: 20px 25px;
    margin-bottom: 30px;
    font-family: "Microsoft YaHei";
}

.news-detail-content {
    font-size: 14px;
    color: #333;
    line-height: 1.9;
    font-family: "Microsoft YaHei";
}

.news-detail-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.news-detail-content h3 {
    font-size: 18px;
    color: #222;
    font-weight: bold;
    margin: 30px 0 15px;
    font-family: "Microsoft YaHei";
}

.news-detail-content ul {
    padding-left: 40px;
    margin-bottom: 20px;
}

.news-detail-content li {
    margin-bottom: 10px;
    list-style: disc;
}

.news-detail-content strong {
    color: #0052d9;
    font-weight: bold;
}

.news-detail-nav {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    font-family: "Microsoft YaHei";
}

.news-detail-nav .prev-article,
.news-detail-nav .next-article {
    flex: 1;
}

.news-detail-nav .next-article {
    text-align: right;
}

.news-detail-nav a {
    color: #0052d9;
    transition: color 0.3s;
}

.news-detail-nav a:hover {
    color: #003581;
    text-decoration: underline;
}

/* 招聘页面样式 */
.careers-section {
    padding: 60px 0 80px;
    background: #f5f5f5;
}

.careers-simple-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.career-simple-item {
    background: #fff;
    padding: 25px 40px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: background 0.3s;
    cursor: pointer;
    position: relative;
}

.career-simple-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.career-simple-item:hover {
    background: #fafafa;
}

.career-icon {
    color: #999;
    font-size: 14px;
    margin-right: 15px;
}

.career-title {
    font-size: 16px;
    color: #666;
    font-family: "Microsoft YaHei";
    flex: 1;
}

.career-detail {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 0;
}

.career-simple-item.active .career-detail {
    margin-top: 20px;
}

.career-detail p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
    font-family: "Microsoft YaHei";
}

.career-detail strong {
    color: #0052d9;
    font-weight: bold;
    display: block;
    margin: 15px 0 10px;
}

.career-detail p:first-child strong {
    margin-top: 0;
}
