33 lines
586 B
Plaintext
33 lines
586 B
Plaintext
.root {
|
|
background-color: #333333;
|
|
height: 378px;
|
|
padding: 44px;
|
|
font-family: Source Han Sans SC;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
color: #ffffff;
|
|
line-height: 34px;
|
|
|
|
.content {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
.menuBox {
|
|
// flex: 1;
|
|
display: grid;
|
|
grid-template-columns: auto auto 1fr;
|
|
grid-column-gap: 200px;
|
|
.menuItem {
|
|
margin-bottom: 10px;
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: #2bb2a8;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.info {
|
|
margin-top: 90px;
|
|
text-align: center;
|
|
}
|
|
}
|