/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* 主色调 */
    --primary-color: #004B8D;
    --primary-hover: #075AA8;
    --primary-light: #0B63B6;
    /* 辅助色 */
    --bg-light-blue: #EAF4FF;
    --bg-gray: #F7F9FC;
    /* 强调色 */
    --accent-green: #2E8B57;
    --accent-purple: #6A5ACD;
    --accent-orange: #E67E22;
    /* 文字颜色 */
    --text-main: #222222;
    --text-secondary: #666666;
    --text-muted: #999999;
    --text-white: #FFFFFF;
    /* 边框与阴影 */
    --border-color: #EAEAEA;
    --border-light: #F0F0F0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 75, 141, 0.12);
    /* 动画过渡 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Microsoft YaHei", sans-serif;
    color: var(--text-main);
    background-color: var(--text-white);
    line-height: 1.6;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 50px 0;
}

.bg-light {
    background-color: var(--bg-gray);
}

/* 标题样式 */
.section-header {
    margin-bottom: 30px;
}

.title-with-line {
    display: flex;
    align-items: center;
}

.title-with-line::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    background-color: var(--primary-color);
    margin-right: 12px;
    border-radius: 2px;
}

.section-title {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    width: 100%;
}

.box-header h3 {
    font-size: 20px;
    color: var(--text-main);
    font-weight: 600;
    position: relative;
    flex-shrink: 0;
}

.box-header h3::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.box-header .more {
    font-size: 14px;
    color: var(--text-muted);
    flex-shrink: 0;
    white-space: nowrap;
}

.box-header .more:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    background-color: var(--text-white);
    height: 110px; /* 控制在 100px - 120px 之间 */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
}

.header-brand {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    gap: 24px;
    /* 整体向左移动约 40px~60px */
    transform: translateX(-50px);
}

.school-logo {
    position: relative;
    display: block;
    width: 460px;
    max-width: 100%;
    height: 75px; /* 垂直居中 */
    display: flex;
    align-items: center;
    visibility: visible;
    opacity: 1;
}



.header-divider {
    width: 1px;
    height: 46px;
    background: #b8c7d8;
    flex-shrink: 0;
}

.center-name {
    font-size: 30px;
    font-weight: 500;
    color: #07549a;
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
    white-space: nowrap;
}

.header-decor {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 600px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    pointer-events: none;
}

.skyline-svg {
    width: 100%;
    height: auto;
    max-height: 100px;
    margin-bottom: -2px; /* 紧贴导航栏上边缘 */
}

.navbar {
    background-color: var(--primary-color);
    height: 50px;
    position: relative;
    z-index: 1000;
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    flex: 1;
    text-align: center;
    position: relative;
    height: 100%;
}

.nav-item > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-white);
    font-size: 15px;
    padding: 0 10px;
    white-space: nowrap;
    text-decoration: none;
}

.nav-item > a:hover, .nav-item > a.active {
    background-color: var(--primary-light);
}

/* PC 下拉菜单 */
@media (min-width: 769px) {
    .submenu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, 8px);
        background: #ffffff;
        min-width: 160px;
        border-top: 3px solid #07549A;
        box-shadow: 0 5px 16px rgba(0, 60, 110, 0.12);
        border-radius: 0 0 3px 3px;
        list-style: none;
        padding: 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
        z-index: 1100;
    }

    .nav-item:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .submenu li {
        border-bottom: 1px solid #edf1f5;
    }

    .submenu li:last-child {
        border-bottom: none;
    }

    .submenu a {
        display: block;
        padding: 13px 20px;
        color: #333;
        font-size: 15px;
        white-space: nowrap;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.2s, color 0.2s;
    }

    .submenu a:hover {
        background: #f0f7fd;
        color: #07549A;
    }
}

.menu-toggle {
    display: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
}

/* ==========================================================================
   Banner
   ========================================================================== */
.banner {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
    background-color: var(--bg-gray);
}

.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.banner .slide.active {
    opacity: 1;
    z-index: 2;
}

.banner .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    width: 100%;
    pointer-events: none;
}

.banner-title {
    color: var(--text-white);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.banner-subtitle {
    color: var(--text-white);
    font-size: 22px;
    letter-spacing: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.banner-indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
}

.banner-indicators .dot:hover,
.banner-indicators .dot.active {
    background-color: var(--text-white);
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* ==========================================================================
   Quick Links
   ========================================================================== */
.quick-links {
    padding: 30px 0;
    background-color: var(--text-white);
    border-bottom: 1px solid var(--border-color);
}

.ql-wrapper {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.ql-wrapper {
    display: flex;
    justify-content: space-between;
}

.ql-item, .quick-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    position: relative;
    text-decoration: none;
}

.ql-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--border-color);
}

.quick-item img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
    transition: var(--transition-normal);
}

.ql-item span {
    font-size: 16px;
    color: var(--text-main);
    font-weight: 500;
}

.ql-item:hover {
    background-color: var(--bg-light-blue);
}

.quick-item:hover img {
    transform: translateY(-5px);
}

.ql-item:hover span {
    color: var(--primary-color);
}

/* ==========================================================================
   News Center
   ========================================================================== */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.news-box {
    background-color: var(--text-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    width: 100%;
    min-width: 0;
}

.news-box:hover {
    box-shadow: var(--shadow-md);
}

.news-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
    width: 100%;
    gap: 12px;
    min-height: 38px;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list a {
    flex: 1;
    position: relative;
    padding-left: 15px;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.news-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.news-list a:hover {
    color: var(--primary-color);
}

.news-list .date {
    color: var(--text-muted);
    font-size: 13px;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ==========================================================================
   Exchange & Study
   ========================================================================== */
.es-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.image-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    aspect-ratio: 4/5;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    color: var(--text-white);
}

.card-overlay h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.card-overlay p {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   Business Entries
   ========================================================================== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.biz-module {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.white-card {
    background-color: var(--text-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.white-card:hover {
    box-shadow: var(--shadow-md);
}

.biz-header h3 {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex: 1;
}

.biz-btn {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    background-color: var(--bg-gray);
    border-radius: 6px;
    transition: var(--transition-normal);
    text-decoration: none;
}

.biz-btn:hover {
    background-color: var(--bg-light-blue);
    transform: translateY(-3px);
}

.service-entry img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    margin-right: 15px;
    flex-shrink: 0;
}

.biz-text, .entry-text {
    display: flex;
    flex-direction: column;
}

.biz-text .cn {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 4px;
}

.biz-text .en {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.biz-banner-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 8px;
    color: var(--text-white);
    transition: var(--transition-normal);
    text-decoration: none;
}

.biz-banner-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(7, 84, 154, 0.3);
}

.bb-text, .recruit-content {
    display: flex;
    flex-direction: column;
}

.bb-text .cn, .recruit-content .cn {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0;
}

.bb-text .en, .recruit-content .en {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.bb-arrow, .recruit-icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.recruit-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.biz-banner-btn:hover .bb-arrow, .recruit-card:hover .recruit-icon {
    transform: translateX(5px);
}

/* ==========================================================================
   Partners
   ========================================================================== */
.partners {
    padding: 50px 0 60px;
    background-color: var(--bg-white);
}

.school-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.school-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e4e8ed;
    border-radius: 6px;
    padding: 22px 18px;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.school-card:hover {
    transform: translateY(-4px);
    border-color: #b8d7f0;
    box-shadow: 0 8px 20px rgba(0, 76, 140, 0.08);
}

.school-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.school-image img {
    max-width: 80%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.school-card:hover .school-image img {
    transform: scale(1.05);
}

.school-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.school-name-cn {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 6px;
    transition: color 0.25s ease;
}

.school-card:hover .school-name-cn {
    color: var(--primary-color);
}

.school-name-en {
    font-size: 13px;
    color: #8b9299;
    line-height: 1.5;
}

/* 院校图片加载失败样式 */
.school-image.image-error::after {
    content: "图片暂缺";
    font-size: 13px;
    color: #a0a8b1;
    background: #f8f9fa;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #052a53; /* 深蓝色 */
    color: var(--text-white);
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h4, .footer-links h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-info h4::after, .footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--bg-light-blue);
}

.footer-info p {
    color: #a3c2e0;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-info p i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul a {
    color: #a3c2e0;
    font-size: 14px;
}

.footer-links ul a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #031c38;
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    color: #7b9cc0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1199px) {
    .nav-links a {
        padding: 0 5px;
        font-size: 14px;
    }
    .ql-item span {
        font-size: 14px;
    }
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .school-logo {
        width: 440px;
    }
    .center-name {
        font-size: 25px;
    }
    .header-brand {
        gap: 18px;
        transform: translateX(0); /* 取消整体左移 */
    }
    .header-divider {
        height: 38px;
    }
    .header-decor {
        opacity: 0.5; /* 降低建筑线稿透明度 */
    }
    .news-grid, .es-grid, .business-grid {
        grid-template-columns: 1fr;
    }
    .ql-wrapper {
        flex-wrap: wrap;
    }
    .ql-item {
        flex: 1 1 33.33%;
    }
    .ql-item:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        height: 78px;
    }
    .header-container {
        height: 100%;
        padding: 0 14px;
        display: flex;
        align-items: center;
    }
    .header-brand {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        transform: none;
    }
    .school-logo {
        width: min(65vw, 300px);
        height: auto;
        flex-shrink: 1;
    }
    .school-logo::before {
        /* 手机端由于 height 变为 auto，需要调整 mask 适配 */
        height: 100%;
    }
    .header-divider {
        width: 1px;
        height: 30px;
        flex-shrink: 0;
    }
    .center-name {
        font-size: 18px;
        font-weight: 500;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .header-decor {
        display: none; /* 手机端隐藏校园建筑线稿 */
    }
    .menu-toggle {
        display: block;
        color: var(--primary-color);
        font-size: 24px;
        position: absolute;
        right: 14px;
        z-index: 10;
        cursor: pointer;
    }
    .navbar {
        height: auto;
        position: relative;
    }
    .navbar .container {
        padding: 0;
    }
    .nav-links {
        display: none; /* 默认隐藏 */
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-item {
        width: 100%;
        text-align: left;
        height: auto;
    }
    .nav-item > a {
        padding: 14px 18px;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        justify-content: flex-start; /* 恢复原样居左 */
        height: auto;
        background-color: #07549A;
    }
    .submenu {
        display: none; /* 默认隐藏 */
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #06477f;
    }
    .submenu.open {
        display: block;
    }
    .submenu a {
        display: block;
        padding: 12px 18px 12px 35px;
        font-size: 14px;
        color: var(--text-white);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .submenu li:last-child a {
        border-bottom: none;
    }

    .ql-item {
        flex: 1 1 50%;
    }
    .ql-item:nth-child(2n)::after {
        display: none;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .school-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .school-card {
        padding: 16px 10px;
    }

    .school-image {
        height: 85px;
        margin-bottom: 10px;
    }

    .school-image img {
        max-width: 90%;
        max-height: 65px;
    }

    .school-name-cn {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .school-name-en {
        font-size: 11px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .banner {
        height: 300px;
    }
    .banner .slide img {
        object-fit: cover;
        object-position: 63% center;
    }
    .banner .slide:nth-child(1) img {
        object-position: 62% center;
    }
    .banner .slide:nth-child(2) img {
        object-position: 65% center;
    }
    .banner .slide:nth-child(3) img {
        object-position: 68% center;
    }
    .banner-content {
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }
    .banner-title {
        font-size: 28px;
        line-height: 1.4;
    }
    .banner-subtitle {
        font-size: 15px;
    }
    .banner-indicators .dot {
        width: 8px;
        height: 8px;
    }
    .news-center {
        width: 100%;
        padding: 0 15px;
        margin: 0;
    }
    .news-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
    }
    .news-card {
        width: 100%;
        padding: 18px 16px;
        border-radius: 6px;
        overflow: hidden;
    }
    .news-list a {
        font-size: 13px;
    }
    .news-list .date {
        font-size: 11px;
    }
    .box-header .more {
        font-size: 12px;
    }
    .section-title {
        font-size: 20px;
    }
    .section-header {
        margin-bottom: 18px;
    }
    .quick-item img {
        width: 32px;
        height: 32px;
    }
    .service-entry img {
        width: 40px;
        height: 40px;
    }
    .recruit-icon img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    .header-brand {
        gap: 7px;
    }
    .school-logo {
        width: 60vw;
        max-width: 245px;
    }
    .header-divider {
        height: 26px;
    }
    .center-name {
        font-size: 16px;
    }
    .banner {
        height: 290px;
    }
    .banner-title {
        font-size: 24px;
    }
}

@media (max-width: 375px) {
    .school-grid {
        grid-template-columns: 1fr;
    }
    .banner {
        height: 270px;
    }
    .news-list a {
        font-size: 12px;
    }
    .news-list .date {
        font-size: 10px;
    }
}