Files
jiaowu-test/src/components/LiveSummary/index.css

135 lines
2.9 KiB
CSS
Raw Normal View History

.live-summary-wrapper {
width: 304px;
height: 798px;
border-radius: 8px;
background-color: #fff;
box-sizing: border-box;
padding: 20px 16px;
.not-living {
&::after {
display: none;
}
}
.live-summary-title {
width: 100%;
height: 30px;
position: relative;
box-sizing: border-box;
font-size: 20px;
font-weight: 600;
line-height: 20px;
color: #1d2129;
padding-bottom: 10px;
border-bottom: 1px solid #e5e6eb;
margin-bottom: 20px;
&::before {
content: "";
position: absolute;
left: 20px;
bottom: 5px;
width: 31px;
height: 3px;
background-image: url("@/assets/images/Common/title_icon.png");
background-size: 100% 100%;
}
}
.live-summary-list {
width: 100%;
max-height: 530px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
overflow-y: auto;
.live-summary-item:last-child {
margin-bottom: 0;
}
.live-summary-item {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
overflow-y: auto;
margin-bottom: 20px;
flex-shrink: 0;
.live-summary-item-title {
width: 100%;
height: 22px;
text-align: left;
box-sizing: border-box;
padding-left: 25px;
position: relative;
line-height: 22px;
font-size: 14px;
font-weight: 600;
color: #2c7aff;
/* margin-bottom: 10px; */
&::before {
content: "";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 20px;
background-image: url("@/assets/images/Common/title_dot_icon.png");
background-size: 100% 100%;
}
}
.live-summary-item-content-list:last-child {
margin-bottom: 0;
}
.live-summary-item-content-list {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
margin-top: 10px;
.live-summary-item-content-item {
flex-shrink: 0;
width: 100%;
height: 46px;
box-sizing: border-box;
background-color: #f7f8fa;
border-radius: 8px;
padding: 0 10px;
line-height: 46px;
font-size: 14px;
font-weight: 400;
color: #1d2129;
text-align: left;
margin-bottom: 10px;
cursor: pointer;
flex-shrink: 0;
}
}
}
}
.job-search-strategy-btn {
width: 100%;
height: 36px;
border-radius: 2px;
background-color: #2c7aff;
font-size: 14px;
font-weight: 600;
color: #fff;
line-height: 36px;
text-align: center;
margin-top: 30px;
cursor: pointer;
}
}