95 lines
1.7 KiB
SCSS
Raw Normal View History

2023-04-25 10:48:27 +08:00
.leftMenu {
width: 16%;
min-height: 94%;
border-radius: 5px;
box-shadow: 0px 4px 4px 0px rgba(0, 55, 143, 0.2);
2023-04-25 10:48:27 +08:00
// background-color: rgba(255 255 255 / 80%);
// background-color: pink;
}
.tab-wrapper {
position: relative;
box-sizing: border-box;
display: flex;
justify-content: center;
width: 100%;
height: 50px;
padding: 0 45px;
user-select: none;
background-color: #ffffff;
border-bottom: 1px solid #f8f8f8;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.line {
position: absolute;
bottom: 0;
height: 2px;
background-color: #409eff;
transition: left 0.2s ease;
}
.tab {
flex: 1;
font-size: 12px;
// font-weight: 400;
line-height: 49px;
color: #808284;
text-align: center;
cursor: pointer;
&.active {
color: #409eff;
}
}
.search-wrapper {
box-sizing: border-box;
display: flex;
align-items: center;
width: 100%;
height: 50px;
padding: 0 10px;
background-color: #ffffff;
}
.search-btn {
2023-04-25 14:37:08 +08:00
margin-left: 12px;
2023-04-25 10:48:27 +08:00
}
.footer {
display: flex;
align-items: center;
justify-content: center;
height: 50px;
background-color: #ffffff;
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
2023-04-25 10:48:27 +08:00
}
.content {
min-height: 83%;
// padding: 0 10px;
2023-04-25 10:48:27 +08:00
background-color: #ffffff;
.fule {
border-top: 1px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
// padding: 0 10px;
// display: flex;
// flex-direction: column;
.item {
height: 101px;
padding: 0px 10px 0 10px;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: space-around;
}
2023-04-25 10:48:27 +08:00
}
}
.isActive {
background-color: #e1eeff;
border-left: 3px solid #0e7eff;
}
:deep(.btn-prev) {
border: 1px solid #e5e5e5;
}
:deep(.btn-next) {
border: 1px solid #e5e5e5;
}