body { background: #fff; }
a{ text-decoration:none; color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important; }
.logo {
    max-width: 180px;
    height: auto;
}
.pagination li {
  display: flex;
  align-items: center; /* 垂直居中 */
}
.pagination li a {
  display: inline-block;
}

.header-bar, .header-bar a {
    background: #faf7fa; /* 若需白色可改为 #fff */
    border-bottom: 1px solid #eee;
    text-decoration:none;
}
.header-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: row;
    gap: 0;
}
@media (max-width: 991.98px) {
    .header-bar .container {
        flex-direction: column;
        gap: 5px;
    }
    .header-logo {
        text-align: center;
    }
}

.header-menu,
.header-logo, .header-logo a,
.header-right {
    color: #e6007e;
}
.header-menu,
.header-right {
    font-weight: bold;
    font-size: 1.1rem;
}
.header-logo {
    flex: 1;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration:none;
}

.nav-link {
    color: #125287 !important;
}
.nav-link.active {
    font-weight: bold;
    color: #007bff !important; /* 若需主色为粉色可改为 #e6007e */
}

.section-title,
.top-stories-title {
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 30px 0 15px 0;
    color: #125287;
}
.top-stories-title {
    color: #1a1a1a;
    margin-bottom: 10px;
}
.top-stories-subtitle {
    color: #e6007e;
    font-size: 1rem;
    font-weight: bold;
    margin-left: 20px;
}

.top-stories .main-cover {
    position: relative;
}
.top-stories .main-cover .cover-title {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    color: #e6cfcf;
    font-weight: bold;
    z-index: 2;
    pointer-events: none;
    letter-spacing: 2px;
}
@media (max-width: 767.98px) {
    .top-stories .main-cover .cover-title {
        font-size: 2rem;
    }
    .attention-img {
        height: 140px;
    }
}
.top-stories .main-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-box {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 16px;
    margin-bottom: 20px;
}

.sidebar {
    font-size: 0.95rem;
}

.related-articles h6 {
    color: #333333;
}
.related-articles .card {
    border: none;
}
.related-articles .card-text {
    font-size: 0.95rem;
}

.editor-pick {
    border: 0px solid #e6007e;
    border-radius: 8px;
}
.editor-pick-title {
    font-weight: bold;
    margin-bottom: 10px;
    /*text-align:center;*/
}
.editor-pick-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.editor-pick-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}
.editor-pick-list .num {
    color: #e6007e;
    font-weight: bold;
    margin-right: 8px;
}

.footer {
    background: #111;
    color: #fff;
    padding: 20px 0;
    font-size: 0.95rem;
    margin-top: 40px;
}

.article-title {
    font-size: 1.1rem;
    font-weight: bold;
}
.article-meta {
    color: #888;
    font-size: 0.95rem;
}

.attention-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}
.attention-small-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}
article img{ max-width: calc(100% - 20px); }