32 lines
458 B
CSS
Raw Normal View History

2025-03-27 15:45:47 +08:00
/* 基本样式重置 */
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif; /* 默认字体 */
background-color:#f4f4f4;
2025-03-29 21:58:38 +08:00
}
/*主内容区test*/
.container {
width: 60%;
margin: 4% auto 0;
2025-03-29 21:58:38 +08:00
background-color: #f0f0f0;
padding: 2% 5%;
border-radius: 10px
}
ul {
padding-left: 20px;
}
ul li {
line-height: 2.3
}
a {
color: #20a53a
2025-04-05 21:06:01 +08:00
}
.logo {
font-family: 'Pacifico', cursive;
2025-03-29 21:58:38 +08:00
}