欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

平臺(tái)css網(wǎng)站代碼

平臺(tái)css網(wǎng)站代碼

/* reset.css */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* 全局樣式 */
body {
font-size: 14px;
font-family: '微軟雅黑', sans-serif;
color: #333;
background-color: #fafafa;
}
a {
color: #666;
text-decoration: none;
}
ul, ol {
list-style: none;
}
/* 主要布局 */
.container {
max-width: 1200px;
margin: 0 auto;
}
.header {
height: 60px;
line-height: 60px;
background-color: #f60;
color: #fff;
text-align: center;
}
.content {
margin-top: 20px;
display: flex;
flex-wrap: wrap;
}
.content-item {
width: 33.33%;
padding: 10px;
}
.footer {
height: 60px;
line-height: 60px;
background-color: #666;
color: #fff;
text-align: center;
}
/* 響應(yīng)式布局 */
@media (max-width: 768px) {
.content-item {
width: 50%;
}
}
@media (max-width: 480px) {
.header, .footer {
height: 40px;
line-height: 40px;
}
.content-item {
width: 100%;
}
}