mirror of https://gitee.com/topnuomi/zxf
63 lines
1015 B
CSS
63 lines
1015 B
CSS
.header {
|
|
width: 100vw;
|
|
background-color: #010101;
|
|
}
|
|
.header .main {
|
|
max-width: 1366px;
|
|
height: 90px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.header .logo img {
|
|
max-height: 50px;
|
|
}
|
|
.header .menu .group {
|
|
display: flex;
|
|
}
|
|
.header .menu .item {
|
|
margin-left: 50px;
|
|
}
|
|
.header .menu .link {
|
|
font-size: 18px;
|
|
color: #FFFFFF;
|
|
}
|
|
.header .menu .link.active,
|
|
.header .menu .link:hover {
|
|
font-weight: bold;
|
|
}
|
|
.footer {
|
|
width: 100vw;
|
|
background-color: #343434;
|
|
}
|
|
.footer .main {
|
|
max-width: 1366px;
|
|
margin: 0 auto;
|
|
padding: 30px 0;
|
|
}
|
|
.footer .main .row:first-child {
|
|
margin-top: 0;
|
|
}
|
|
.footer .main .row {
|
|
font-size: 18px;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
line-height: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
.footer .main .tel {
|
|
display: inline-block;
|
|
width: 355px;
|
|
border: 2px solid #DDDDDD;
|
|
border-radius: 30px;
|
|
padding: 20px;
|
|
font-size: 24px;
|
|
}
|
|
.footer .main .icp {
|
|
color: #999999;
|
|
}
|
|
.footer .main .icp a {
|
|
color: unset;
|
|
}
|