/* 整体页面样式 */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* 头部样式 */
header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    margin: 0;
}

/* 各介绍板块通用样式 */
section {
    padding: 20px;
    margin: 20px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #333;
}

/* 关于我板块样式 */
.about-me p {
    text-align: justify;
}

/* 网站内容板块样式 */
.website-content ul {
    list-style-type: none;
    padding: 0;
}

.website-content li {
    margin-bottom: 10px;
}

/* 特色图片板块样式 */
.featured-image {
    text-align: center;
    margin: 20px;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* 页脚样式 */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
}

footer p {
    margin: 0;
    font-size: 14px;
}

footer a {
    color: #0099ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}