/* Newsroom 页面特定样式 */
.what-we-do-content .explore-btn a {
    color:#fff;
    
}
/* 面包屑导航样式 */
.breadcrumb {
    margin: 20px 0;
    padding: 0 20px;
}

.breadcrumb-container {
    max-width: 1600px;
    margin: 0 auto;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 14px;
    color: #666;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #00629b;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #666;
}

/* Newsroom 标题样式 */
.newsroom-title {
    padding: 0 20px;
    margin-bottom: 40px;
    height: 120px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.newsroom-title h1 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
    max-width: 1200px;
    margin: 0 auto;
}

/* 最新新闻区域样式 */
.latest-news {
    padding: 0 20px;
    margin-bottom: 60px;
}

.latest-news-container {
    max-width: 1600px;
    margin: 0 auto;
}

.latest-news-header {
    margin-bottom: 20px;
}

.latest-news-header h2 {
    font-size: 1.75rem;
    color: #333;
    font-weight: 600;
}

.latest-news-description {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* 新闻滚动模块样式 */
.news-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.news-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    flex: 1;
    scrollbar-width: none;
}

.news-cards::-webkit-scrollbar {
    display: none;
}

.news-card {
    min-width: 280px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-card-type {
    font-size: 12px;
    color: #00629b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-card-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.news-card-title {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-card-arrow {
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    color: #00629b;
    font-weight: 600;
}

/* 滚动按钮样式 */
.scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.scroll-btn:hover {
    background-color: #00629b;
    border-color: #00629b;
    color: #fff;
}

.scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .newsroom-title h1 {
        font-size: 2rem;
    }
    
    .latest-news-header h2 {
        font-size: 1.5rem;
    }
    
    .news-card {
        min-width: 250px;
    }
    
    .breadcrumb {
        margin: 15px 0;
    }
    
    .breadcrumb-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .newsroom-title h1 {
        font-size: 1.75rem;
    }
    
    .latest-news-header h2 {
        font-size: 1.25rem;
    }
    
    .scroll-btn {
        width: 35px;
        height: 35px;
    }
    
    .news-card {
        min-width: 220px;
        padding: 15px;
    }
    
    .news-card-title {
        font-size: 14px;
    }
}

/* What We Do 模块样式 */
.what-we-do {
    background-color: #f5f7fa;
    padding: 60px 20px;
    margin-top: 4px;
}

.what-we-do-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.what-we-do-content {
    flex: 1;
}

.what-we-do-content h2 {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.what-we-do-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.explore-btn {
    background-color: #00629b;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.explore-btn:hover {
    background-color: #004d7a;
}

.what-we-do-image {
    flex: 1;
    max-width: 500px;
}

.what-we-do-image img {
    width: 470px;
    height: 330px;
    object-fit: cover;
    border-radius: 4px;
}

/* 虚线分隔符样式 */
.divider-dashed {
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    margin: 0 20px;
}

/* Awards and Recognition 模块样式 */
.awards-section {
    padding: 60px 20px;
    background-color: #fff;
}

.awards-container {
    max-width: 1600px;
    margin: 0 auto;
}

.awards-title {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.awards-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.award-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 30px;
    background-color: #fff;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.award-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.award-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.award-title {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.award-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

.view-all-awards {
    background-color: transparent;
    color: #00629b;
    border: 1px solid #00629b;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.view-all-awards:hover {
    background-color: #00629b;
    color: white;
}

/* What We Do 模块响应式设计 */
@media (max-width: 768px) {
    .what-we-do {
        padding: 40px 20px;
    }
    
    .what-we-do-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .what-we-do-content h2 {
        font-size: 1.75rem;
    }
    
    .what-we-do-image {
        max-width: 100%;
    }
    
    .what-we-do-image img {
        width: 100%;
        height: auto;
        max-width: 470px;
        max-height: 330px;
    }
    
    /* Awards and Recognition 响应式样式 */
    .awards-section {
        padding: 40px 20px;
    }
    
    .awards-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .awards-cards {
        gap: 20px;
    }
    
    .award-card {
        min-width: 250px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .what-we-do {
        padding: 30px 15px;
    }
    
    .what-we-do-content h2 {
        font-size: 1.5rem;
    }
    
    .what-we-do-content p {
        font-size: 14px;
    }
    
    .explore-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .what-we-do-image img {
        width: 100%;
        height: auto;
    }
    
    /* Awards and Recognition 移动端响应式样式 */
    .awards-section {
        padding: 30px 15px;
    }
    
    .awards-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .award-card {
        min-width: 100%;
        padding: 20px;
    }
    
    .award-title {
        font-size: 14px;
    }
    
    .award-description {
        font-size: 13px;
    }
    
    .view-all-awards {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Contact Information 模块样式 */
.contact-section {
    background-color: #f5f7fa;
    padding: 60px 20px;
}

.contact-container {
    max-width: 1600px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    color: #00629b;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.contact-column {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-btn {
    background-color: #00629b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

.contact-btn:hover {
    background-color: #004a73;
}

/* 768px 响应式设计 */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }
    
    .contact-column {
        min-width: 100%;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
}

/* 480px 响应式设计 */
@media (max-width: 480px) {
    .contact-section {
        padding: 30px 15px;
    }
    
    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-text {
        font-size: 14px;
    }
    
    .contact-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}