/* 新闻页特定样式 */
.news-content {
    max-width: 1723px;
    width: 100%;
    margin: 0 auto -150px;
    font-family: 'Roboto', sans-serif;
    padding: 100px 0;
    word-spacing: 4px;
}

.news-title {
    color: #180B50;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 58px;
    text-align: left;
    text-transform: none;
}

.news-date {
    color: #F6854C; /* 橙色 */
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
}

.news-section {
    margin-bottom: 50px;
}

.news-section h3 {
    color: #F6854C;
    font-size: 32px;
    font-weight: 500;
    display: inline-block;
    line-height: 39px;
    text-align: left;
    text-transform: none;
}

.news-section h2 { /* 用于大的章节标题 */
    color: #180B50;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 58px;
    text-align: left;
    text-transform: none;
}

.news-text {
    line-height: 1.8;
    color: #444444;
    margin-top: -15px;
    text-align: left;
    font-size: 30px;
    font-weight: 400;
}

.news-text-bold {
    line-height: 1.8;
    color: #444444;
    margin-top: -15px;
    text-align: left;
    font-size: 30px;
    font-weight: 500;
}

.news-text.news-text-full {
    max-width: 100%;
}

.dec1{
    margin-left: -70px;
}

.dec2{
    margin: -40px -70px 0 auto;
}

/* 图文混排布局 */
/* 图文混排布局 */
.flex-row {
    display: flex;
    gap: 52px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.flex-row.reverse {
    flex-direction: row-reverse;
}

.flex-col-text {
    flex: 1;
}

/* 控制图片容器 */
.flex-col-img {
    flex: 0 0 auto;
    max-width: 838px;
}

.flex-col-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    max-width: 838px;
    max-height: 629px;
}


/* 奖项/认可 盒子 */
.recognition-box {
    background-color: #eeeeee;
    padding: 0 40px;
    border-radius: 35px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 151.47px;
    box-sizing: border-box;
}

.recognition-box div:last-child {
    font-size: 28px;
    font-weight: 400;
    color: #444444;
    text-align: left;
}

/* 引用样式 */
.quote-box {
    background-color: #eeeeee;
    padding: 40px;
    border-left: 20px solid #f6854c;
    border-radius: 0 35px 35px 0;
    margin-bottom: 20px;
    font-style: italic;
    color: #444444;
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 500;
    box-sizing: border-box;
}
.quote-box.blue {
    border-left-color: #0c2bc2;
}

/* 相关媒体链接 */
.related-media-container {
    width: 100%;
    height: 1000px;
    background: #eeeeee;
    border-radius: 0;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.related-media-item p {
    color: #444444;
    font-weight: 500;
    font-size: 30px;
    line-height: 33px;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}
.related-media-item a {
    font-size: 30px;
    color: #0C2BC2;
    margin: 0;
    word-break: break-all;
}

@media (max-width: 1440px) {
    .flex-col-img {
        max-width: 700px;
    }
    
    .flex-col-img img {
        max-width: 700px;
        max-height: 525px;
    }
    
    h2 {
        font-size: 42px;
    }
    .news-text, .news-text-bold, .quote-box, .related-media-item-text{
        font-size: 26px;
    }
    .dec1, .dec2{
        display: none;
    }
    .related-media-container {
        height: 1100px;
    }
}

@media (max-width: 1200px) {
    .flex-col-img {
        max-width: 550px;
    }
    
    .flex-col-img img {
        max-width: 600px;
        max-height: 450px;
    }
    
    h2 {
        font-size: 36px;
    }
    .news-text, .news-text-bold, .quote-box, .related-media-item-text{
        font-size: 24px;
    }
    .dec1, .dec2{
        display: none;
    }
    .related-media-container {
        height: 1200px;
    }
}

@media (max-width: 1024px) {
    .flex-col-img {
        max-width: 400px;
    }
    
    .flex-col-img img {
        max-width: 100%;
        max-height: none;
        width: 100%;
        height: auto;
    }
    
    h2 {
        font-size: 32px;
    }
    .news-text, .news-text-bold, .quote-box, .related-media-item-text{
        font-size: 22px;
    }
    .dec1, .dec2{
        display: none;
    }
    .related-media-container {
        height: 1300px;
    }
}

@media (max-width: 768px) {
    .flex-col-img {
        max-width: 100%;
    }
    
    .flex-col-img img {
        max-width: 100%;
        max-height: none;
        width: 100%;
        height: auto;
    }
    .flex-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .flex-row.reverse {
        flex-direction: column;
    }
    h2 {
        font-size: 30px;
    }
    .news-text, .news-text-bold, .quote-box, .related-media-item-text{
        font-size: 20px;
    }
    .dec1, .dec2{
        display: none;
    }
    .related-media-container {
        height: 1400px;
    }
}