/* 样式基础设置 */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.banner {
    position: relative;
    width: 100%;
    height: 100px; /* 可以根据需要调整高度 */
    background: #0B3764;
    background-size: cover; /* 自适应背景图 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.banner h1 {
    font-size: 2em; /* 大标题的字体大小 */
    margin: 0;
	text-transform: none;
	line-height: 35px;
}

.banner p {
    
    margin: 10px 0 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .banner {
        height: 100px; /* 小屏幕上高度调整 */
    }

    .banner h1 {
        font-size: 1.5em; /* 小屏幕上标题字体调整 */
        line-height: 35px;
    }

    .banner p {
        font-size: 0.8em; /* 小屏幕上正文字体调整 */
    }
}
