Files
LiuGeYuYou-HTML/assets/css/main.css
T

244 lines
3.8 KiB
CSS
Raw Normal View History

2026-08-25 16:55:11 +08:00
:root {
font-size: 16px;
font-family: MiSans, PingFang SC-Bold, PingFang SC, sans-serif;
word-break: break-all
}
button {
cursor: pointer
}
.page {
min-height: 100vh
}
.header {
display: flex;
justify-content: center;
background: rgba(0, 0, 0, .3);
backdrop-filter: blur(10px);
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 10
}
.header #app-left-logo {
position: absolute;
left: 50px;
top: 50%;
transform: translateY(-50%);
cursor: pointer
}
.header__inner {
padding: 22px 0;
width: 1290px;
margin: 0 auto;
display: flex;
align-items: center
}
.header__menu-con {
width: 100%;
display: flex;
justify-content: center
}
.header__logo {
margin-right: 30px
}
.header__logo>img {
width: auto;
height: 32px;
display: block
}
.header__nav {
font-weight: 400;
font-size: 15px;
color: #fff;
cursor: pointer;
height: 44px;
padding: 8px 20px;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none
}
.header__nav--active {
color: #eb662b
}
2026-08-31 11:14:22 +08:00
.header__phone {
position: absolute;
right: 50px;
top: 50%;
transform: translateY(-50%);
color: #fff;
font-weight: 400;
font-size: 14px;
line-height: 28px;
display: flex;
align-items: center;
gap: 10px
}
2026-08-25 16:55:11 +08:00
.footer {
background: #1b1b1b;
font-weight: 400;
font-size: 16px;
color: #fff;
overflow: hidden
}
.footer__inner {
max-width: 1290px;
margin: 0 auto;
display: flex;
padding-top: 67px;
padding-bottom: 80px
}
.footer__logo>img {
width: auto;
height: 32px;
display: block
}
.footer .copyright {
font-family: Inter, sans-serif;
text-align: center;
font-weight: 400;
font-size: 12px;
color: #666;
padding: 25px 0;
border-top: 1px solid #383838;
}
.footer .links {
display: flex;
justify-content: center;
align-items: center;
color: #666;
gap: 15px;
padding: 12px;
font-size: 12px;
border-top: 1px solid #383838
}
.footer .links a {
color: inherit;
text-decoration: none
}
.footer .qr-code-list {
display: flex;
gap: 36px;
margin-top: 66px
}
.footer .qr-code {
width: 132px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center
}
.footer .qr-code>img {
border-radius: 8px;
width: 132px;
height: 132px;
display: block
}
.footer .qr-code>div {
margin-top: 12px;
font-size: 12px;
font-weight: 200;
color: #999
}
.footer__left {
flex: 0 0 auto
}
.footer__right {
flex: 1 1 0;
width: 0;
display: flex;
gap: 52px;
margin-left: 57px
}
.footer__nav {
flex: 0 0 164px
}
.footer__nav__title {
font-weight: 500;
font-size: 20px;
color: #fff;
line-height: 30px;
margin-bottom: 30px
}
.footer__nav__item {
margin-bottom: 20px;
font-weight: 400;
font-size: 15px;
color: #fff
}
.footer__nav__item a {
color: inherit;
text-decoration: none
}
.section-header {
display: flex;
align-items: center;
justify-content: space-between
}
.section-header__title {
line-height: 45px;
font-weight: 600;
font-size: 30px;
color: #191919
}
.section-header__more {
font-weight: 400;
font-size: 16px;
color: #05073c;
line-height: 28px;
display: flex;
align-items: center;
cursor: pointer
}
.section-header__more img {
width: 20px;
height: 20px
}
/* 宽度 <= 1500px */
@media screen and (max-width: 1500px) {
.header__logo>img {
height: 20px;
}
}
@media screen and (max-width: 1200px) {
.header__logo{
display: none;
}
}
2026-08-25 12:01:09 +08:00
/*# sourceMappingURL=main.css.map?hash=b446ba1443bc4913f472*/