/* 全局样式 */
body {
    font-family: "Microsoft YaHei", sans-serif;
}

/* Banner样式 */
.banner {
    height: 400px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 卡片样式 */
.card {
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* 新闻列表样式 */
.card ul li {
    margin-bottom: 10px;
}

.card ul li a {
    color: #333;
    text-decoration: none;
}

.card ul li a:hover {
    color: #0d6efd;
}

/* 页脚样式 */
footer {
    margin-top: 50px;
}

footer a {
    text-decoration: none;
}

footer ul li {
    margin-bottom: 10px;
}

/* 二维码样式 */
.qrcode-img {
    width: 120px;
    height: 120px;
    margin: 10px auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
} 