54 lines
884 B
CSS
54 lines
884 B
CSS
header {
|
|
height: 121px;
|
|
width: 100%;
|
|
position: absolute;
|
|
z-index: 10000;
|
|
background: url(../images/header.png) 100% 100% / contain no-repeat;
|
|
display: grid;
|
|
place-content: center;
|
|
}
|
|
header > div {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 0;
|
|
}
|
|
header > div .header--logo {
|
|
margin-top: 12px;
|
|
width: 48px;
|
|
height: 67px;
|
|
background: url(../images/logo.png) center/contain no-repeat;
|
|
}
|
|
|
|
header h1 {
|
|
margin-bottom: 0;
|
|
margin-left: 36px;
|
|
font-size: 52px;
|
|
/* line-height: 97px; */
|
|
user-select: none;
|
|
letter-spacing: 9px;
|
|
font-weight: 400;
|
|
color: #6bf2ff;
|
|
font-family: '微软雅黑', sans-serif;
|
|
}
|
|
|
|
.header--wing {
|
|
left: 0;
|
|
bottom: -12px;
|
|
height: 48px;
|
|
font-size: 28px;
|
|
line-height: 48px;
|
|
color: #51f0ff;
|
|
}
|
|
|
|
.company {
|
|
margin-left: 960px;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.datetime {
|
|
text-align: center;
|
|
left: unset;
|
|
right: 1100px;
|
|
letter-spacing: 1px;
|
|
}
|