117 lines
1.9 KiB
CSS
117 lines
1.9 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background: linear-gradient(135deg, #f4f4f9, #e6f7ff);
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.container {
|
|
width: 80%;
|
|
margin: 50px auto;
|
|
background-color: white;
|
|
padding: 30px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #333;
|
|
}
|
|
|
|
.section {
|
|
margin: 30px 0;
|
|
}
|
|
|
|
.section input,
|
|
.section button {
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
width: 100%;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.section input[type="file"] {
|
|
width: auto;
|
|
}
|
|
|
|
.section button {
|
|
background-color: #4c68af;
|
|
color: white;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.section button:hover {
|
|
background-color: #4553a0;
|
|
}
|
|
/*
|
|
|
|
.result {
|
|
margin-top: 20px;
|
|
padding: 10px;
|
|
background-color: #f9f9f9;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.result p {
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.result.success {
|
|
border-color: #4CAF50;
|
|
color: #4CAF50;
|
|
}
|
|
|
|
.result.error {
|
|
border-color: #f44336;
|
|
color: #f44336;
|
|
}
|
|
*/
|
|
.section button {
|
|
background-color: #4c68af;
|
|
color: white;
|
|
cursor: pointer;
|
|
width: auto; /* 修改宽度 */
|
|
padding: 10px 20px; /* 调整内边距 */
|
|
border-radius: 20px; /* 添加圆角 */
|
|
}
|
|
/* 添加的设置页面样式 */
|
|
.section label {
|
|
display: block;
|
|
margin: 10px 0;
|
|
font-size: 16px;
|
|
color: #555;
|
|
}
|
|
|
|
.section select {
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
width: 100%;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.section input[type="checkbox"],
|
|
.section input[type="radio"] {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.section button {
|
|
background-color: #4c68af;
|
|
color: white;
|
|
cursor: pointer;
|
|
width: auto;
|
|
padding: 10px 20px;
|
|
border-radius: 20px;
|
|
border: none;
|
|
font-size: 16px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.section button:hover {
|
|
background-color: #4553a0;
|
|
} |