feat: 修改样式 提升部分体验
This commit is contained in:
+228
-1
@@ -1,3 +1,230 @@
|
||||
: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}.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}
|
||||
: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
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=main.css.map?hash=b446ba1443bc4913f472*/
|
||||
Reference in New Issue
Block a user