46 lines
882 B
SCSS
46 lines
882 B
SCSS
.container {
|
|
padding: 0 16px 14px;
|
|
.swiper {
|
|
margin: 14px 0 18px;
|
|
}
|
|
.title {
|
|
margin: 14px 0 15px;
|
|
}
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 10px;
|
|
.item {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 76px;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
font-size: 24px;
|
|
color: #fff;
|
|
line-height: 30px;
|
|
font-weight: 600;
|
|
background-image: linear-gradient(to right, rgba(37, 192, 229, 1) 0%, rgba(187, 229, 240, 1) 100%);
|
|
cursor: pointer;
|
|
&:nth-child(2n) {
|
|
background-image: linear-gradient(to right, rgba(15, 54, 117, 1) 0%, rgba(102, 118, 176, 1) 100%);
|
|
}
|
|
.bgIcon {
|
|
position: absolute;
|
|
left: -10px;
|
|
top: -8px;
|
|
width: 95px;
|
|
height: 93px;
|
|
}
|
|
.icon {
|
|
position: absolute;
|
|
top: 28px;
|
|
right: 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|