* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    padding: 20px 20px 0px 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
	max-width: 1200px;
    margin: 0 auto; /* 水平居中 */
    padding-bottom: 10px; /* Ensure space for footer */
}

.image-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    /*max-width: 600px;*/
    margin-bottom: 20px;
}

.image-text img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.image-text .text {
    width: 100%;
}

.image-text .text h2 {
    margin-bottom: 10px;
}

.image-text .text p {
    color: #333;
	text-align: left;
	margin-bottom: 10px;
}

footer {
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #222;
    color: #fff;
    text-align: center;
    position: relative; /* Relative positioning */
    bottom: 0;
}

footer p {
    margin: 5px 0;
}

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

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