/* 全局样式 */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.indent {
    text-indent: 2em; /* 首行缩进两个字 */
}

/* 页面头部 */
header {
    background-color: #0066cc;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

.subtitle {
    font-size: 1.2em;
    margin-top: 10px;
}

/* 内容区域 */
.content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content img {
    width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* 特定图片的样式 */
.content .li-songyu {
    display: block; /* 确保是块级元素 */
    margin: 0 auto; /* 水平居中 */
    width: 400px;  /* 特定图片宽度 */
    height: 700px; /* 特定图片高度 */
    object-fit: cover; /* 裁剪图片以适应容器 */
    border-radius: 10%; /* 使图片呈圆形 */
}

h2 {
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 10px;
    margin-top: 30px;
}

/* 联系我们 */
.contact {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
}

.contact-item {
    margin-bottom: 10px;
}

/* 页面底部 */
footer {
    text-align: center;
    padding: 20px;
    background-color: #0066cc;
    color: white;
    margin-top: 30px;
}