/* 全局样式 */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color:  white;
}

/* 容器样式 */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;


}

/* 每个项目的样式 */
.item {
    margin-bottom: 20px;
    text-align: center;
}

/* 图片样式 */
.item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 文案样式 */
.item p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}
