首页/style.css
更多操作
/* 首页样式:仅在首页生效 */ body.page-首页 .banner {
height: auto; display: flex; flex-direction: column; justify-content: center; align-items: center; background: linear-gradient(135deg, #8B0000, #B22222); color: white; font-weight: bold; border-radius: 12px; padding: 12px 24px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); text-align: center;
}
body.page-首页 .banner-text {
margin: 0; line-height: 1.4;
}
body.page-首页 .banner .chinese-text {
font-size: 24px; font-weight: 700;
}
body.page-首页 .banner .english-text {
font-size: 16px; font-weight: 500; opacity: 0.9;
}
@media screen and (min-width: 768px) {
body.page-首页 .banner .chinese-text {
font-size: 28px;
}
body.page-首页 .banner .english-text {
font-size: 18px;
}
}
@media screen and (max-width: 480px) {
body.page-首页 .banner .chinese-text {
font-size: 20px;
}
body.page-首页 .banner .english-text {
font-size: 14px;
}
}
body.page-首页 .content-box {
margin: 10px; padding: 20px; border-radius: 10px; border: 1px solid #e0e0e0; transition: transform 0.3s ease, box-shadow 0.3s ease; will-change: transform; backface-visibility: hidden;
}
body.page-首页 .content-box:hover {
transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
body.page-首页 .content-box:focus {
outline: 2px solid #0066cc; outline-offset: 2px;
}
body.page-首页 .content-box h2 {
position: relative; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 2px solid red;
}
body.page-首页 .content-box p {
line-height: 1.6;
}
body.page-首页 .flex-container {
display: flex; justify-content: space-between; gap: 20px;
}
body.page-首页 .flex-container .content-box {
flex: 1; max-width: 33.33%; box-sizing: border-box;
}
@media (max-width: 768px) {
body.page-首页 .flex-container {
flex-direction: column;
gap: 15px;
}
body.page-首页 .flex-container .content-box {
max-width: none;
width: 100%;
margin-bottom: 0;
}
body.page-首页 .banner .chinese-text,
body.page-首页 .banner .english-text {
text-align: center;
}
body.page-首页 .banner .chinese-text {
font-size: 20px;
}
body.page-首页 .banner .english-text {
font-size: 14px;
}
}
@media (prefers-reduced-motion: reduce) {
body.page-首页 .content-box {
transition: none;
}
body.page-首页 .content-box:hover {
transform: none;
}
}
.skin-theme-clientpref-night body.page-首页 .banner {
background: linear-gradient(135deg, #3a0c0c, #5a1a1a); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}
.skin-theme-clientpref-night body.page-首页 .content-box {
border-color: #2f2f2f; background-color: #1c1c1c;
}
.skin-theme-clientpref-night body.page-首页 .content-box:hover {
box-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
}
.skin-theme-clientpref-night body.page-首页 .content-box:focus {
outline-color: #5ea0ff;
}
.skin-theme-clientpref-night body.page-首页 .content-box h2 {
border-bottom-color: #b94a4a;
}