/* pages/home/home.wxss */
|
.page__hd {
|
background: linear-gradient(to bottom right, #D9FDFB, white);
|
}
|
|
.top-card {
|
border-radius: 4px;
|
background: linear-gradient(to bottom right, #bbf3eb, #62EAD2);
|
color: white;
|
padding: 8px;
|
}
|
|
.top-card .top-card__time {
|
text-align: end;
|
font-size: 12px;
|
color: #ffffffde;
|
}
|
|
.top-card .top-card__score {
|
font-size: 26px;
|
font-weight: 600;
|
text-align: center;
|
margin: 16px;
|
}
|
|
.top-card .top-card__items {
|
display: flex;
|
justify-content: space-around;
|
}
|
|
.top-card__items .top-card__item {
|
text-align: center;
|
}
|
|
.top-card__items .top-card__item view {
|
color: #ffffffde;
|
font-size: 12px;
|
}
|
|
.top-card__items .top-card__item text {
|
font-weight: 600;
|
}
|
|
.icon {
|
width: 13px;
|
height: 13px;
|
}
|
|
.title {
|
padding: 8px;
|
}
|
|
.title::after {
|
height: 1px;
|
background-color: var(--fyui-text-color_2);
|
}
|
|
.notice {
|
color: var(--fyui-text-color_2);
|
font-size: 12px;
|
white-space: nowrap;
|
overflow: hidden;
|
text-overflow: ellipsis;
|
}
|