/* PC端样式 */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

input[type="text"] {
    width: 800px;
    height: 60px;
    font-size: 24px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
	display: block;
	margin:0 auto;
	margin-bottom:20px;
}

button {
    width: 210px;
    height: 40px;
    font-size: 18px;
    color: white;
    background-color: #FF5252;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	margin-bottom:40px;
}

button:hover {
    background-color: #d95656;
}

textarea {
    resize: vertical;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.7;
    padding: 10px;
	margin-top: 10px;
	background-color: #f0f0f0;
	color: #380640;
}


/* 移动端样式 */
@media (max-width: 768px) {
    .container {
        width: 95%; /* 在小屏幕上占用更多宽度 */
		
    }

    input[type="text"], button, textarea {
        font-size: 14px; /* 调整字体大小以适应小屏幕 */
    }

    button {
        display: block; /* 让按钮占据一行 */
        margin: 10px auto 20px; /* 按钮与输入框之间有间隔 */
        width: 100%; /* 按钮全宽 */
		font-size: 24px;
    }
	input[type="text"] {
	width: 90%;
    font-size: 24px;
}
     textarea {
     width: 95%;
}
	
}
