/* 单位简介 */
.intro-container {
    max-width: 1440px;
    margin: 40px auto;
    display: flex;
    gap: 40px;
}

.intro-left {
    width: 100%;
    height: 600px;
    margin-bottom: 40px;
}

.intro-left img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intro-right {
    flex: 1;
    padding-top: 20px;
}

.intro-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.intro-subtitle {
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

.intro-text p {
    margin-bottom: 20px;
}

.section-block {
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    color: #C02025;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #edf2f7;
}

.advantage-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.advantage-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-item h3 {
    color: #C02025;
    margin-bottom: 10px;
}

.service-category {
    font-size: 18px;
    color: #C02025;
    margin: 15px 0 10px;
    font-weight: bold;
}

.service-list {
    margin-left: 20px;
    margin-bottom: 15px;
}

.service-list li {
    margin-bottom: 8px;
    color: #4a5568;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #C02025;
}

.timeline-item .year {
    font-weight: bold;
    color: #C02025;
    margin-right: 10px;
}

.timeline-item p {
    display: inline;
    color: #4a5568;
}


/* 资质荣誉页面样式 */
.honor-container {
    max-width: 1440px;
    margin: 40px auto;
    padding: 0 20px;
}

.honor-title {
    text-align: center;
    margin-bottom: 60px;
}

.honor-title h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.honor-title .en-title {
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.honor-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.honor-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066FF 30%, #FF3366 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease;
}

.honor-card:hover::before {
    transform: scaleX(1);
}

.honor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

}

.honor-image {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.honor-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.honor-image::after {
    content: '查看';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
    border: 2px solid #fff;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.honor-card:hover .honor-image::before {
    background: rgba(0, 0, 0, 0.5);
}

.honor-card:hover .honor-image::after {
    opacity: 1;
}

.honor-image img {
     width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}


.honor-content {
    padding: 20px;
}

.honor-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.honor-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}



.honor-date {
    font-size: 14px;
    color: #999;
}



/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.honor-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.honor-card:nth-child(1n) {
    animation-delay: 0.1s;
}

.honor-card:nth-child(2n) {
    animation-delay: 0.2s;
}

.honor-card:nth-child(3n) {
    animation-delay: 0.3s;
}

.honor-card:nth-child(4n) {
    animation-delay: 0.4s;
}



/* 办公环境详情页面样式 */
.office-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px;
}

.office-header {
    text-align: center;
    margin-bottom: 60px;
}

.office-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.office-header .subtitle {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 办公区域部分样式 */
.office-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    opacity: 1;
    transform: none;
}

.office-section.reverse {
    flex-direction: row-reverse;
}

.section-content {
    flex: 1;
}

.section-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #C02025;
}

.section-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
}

.section-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 4.5s ease;
}

.section-image:hover img {
    transform: scale(1.35);
}

/* 淡入动画 - 移除动画，设置为默认显示 */
.fade-in {
    opacity: 1;
    transform: none;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* 移除动画延迟 */
.office-section:nth-child(2),
.office-section:nth-child(3),
.office-section:nth-child(4) {
    transition-delay: 0s;
}

/* 鼠标悬停效果 */
.section-content:hover h2::after {
    width: 100px;
    transition: width 0.3s ease;
}

/* 图片加载动画 - 移除 */
.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
} 


/* 合作伙伴页面样式 */
.partner-container {
    max-width: 1440px;
    margin: 40px auto;
    padding: 0 20px;
}

.partner-container .intro-title {
    text-align: center;
    margin-bottom: 40px;
}

.partner-container .intro-title h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.partner-container .intro-title .en-title {
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
}

/* 分类导航 */
.partner-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.category {
    padding: 10px 30px;
    border: 2px solid #eee;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #666;
}

.category:hover {
    border-color: #C02025;
    color: #C02025;
}

.category.active {
    background: #C02025;
    color: #fff;
    border-color: #C02025;
}

/* 合作伙伴网格布局 */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.partner-item-detail {
    animation: fadeInUp 0.6s ease forwards;
}

.partner-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    padding: 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    border-bottom: 1px solid #eee;
}

.partner-logo img {
    width: 166px;
    height: auto;
    transition: transform 1s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.5);
    transition: all 1.5s ease;
}


/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-item-detail:nth-child(1) { animation-delay: 0.1s; }
.partner-item-detail:nth-child(2) { animation-delay: 0.2s; }
.partner-item-detail:nth-child(3) { animation-delay: 0.3s; }
.partner-item-detail:nth-child(4) { animation-delay: 0.4s; }


/* 新闻页面容器 */
.news-page-container {
    max-width: 1440px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 新闻分类 */
/* .news-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 30px;
    border: 2px solid #eee;
    border-radius: 30px;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #666;
}

.category-btn:hover,
.category-btn.active {
    background: #C02025;
    color: #fff;
    border-color: #C02025;
} */

/* 新闻列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    height: 200px;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    width: 280px;
    height: 100%;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.3);
}

.news-category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    background: #C02025;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
}

.news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item:hover .news-content h3 {
    color: #C02025;
}

.news-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-date {
    color: #999;
    font-size: 14px;
}

.read-more {
    color: #C02025;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.read-more:hover {
    color: #d4363b;
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover:after {
    transform: translateX(5px);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn,
.page-num {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-btn {
    padding: 8px 20px;
}

.page-num:hover,
.page-btn:hover {
    background: #f5f5f5;
    color: #C02025;
    border-color: #C02025;
}

.page-num.active {
    background: #C02025;
    color: #fff;
    border-color: #C02025;
}

.page-dots {
    color: #666;
}


.news-item {
    animation: fadeInUp 0.6s ease forwards;
}

.news-item:nth-child(2n) {
    animation-delay: 0.2s;
} 