297 lines
6.7 KiB
CSS
297 lines
6.7 KiB
CSS
.interview-rating-wrapper {
|
|
width: 836px;
|
|
height: 860px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
border-radius: 8px;
|
|
box-sizing: border-box;
|
|
background-color: #f2f3f5;
|
|
padding: 0;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
gap: 20px;
|
|
|
|
.interview-rating-header {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid #e5e6eb;
|
|
margin-bottom: 20px;
|
|
|
|
.interview-rating-header-title {
|
|
cursor: default;
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
color: #1d2129;
|
|
}
|
|
}
|
|
|
|
.interview-rating-video-section {
|
|
width: 100%;
|
|
position: relative;
|
|
background-color: #fff;
|
|
padding: 16px;
|
|
border-radius: 8px;
|
|
box-sizing: border-box;
|
|
|
|
.interview-rating-video {
|
|
width: 100%;
|
|
height: 450px;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
background-color: #000;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
> video {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
> img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
/* 面试评分图表区域 */
|
|
.interview-evaluation-charts-wrapper {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
background-color: #fff;
|
|
padding: 16px;
|
|
border-radius: 8px;
|
|
flex-shrink: 0;
|
|
|
|
.interview-rating-header {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.charts-content {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
.charts-content-top {
|
|
width: 100%;
|
|
height: 262px;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
background-color: #f4f7f9;
|
|
border-radius: 12px;
|
|
margin-bottom: 10px;
|
|
|
|
.score-chart {
|
|
width: 402px;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: relative;
|
|
&::after {
|
|
content: "";
|
|
width: 340px;
|
|
height: 170px;
|
|
position: absolute;
|
|
bottom: 55px;
|
|
background-image: url("@/assets/images/InterviewSimulationPage/chart_bg.png");
|
|
background-size: 100% 100%;
|
|
}
|
|
}
|
|
|
|
.score-info {
|
|
width: 402px;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
.score-info-item {
|
|
width: 354px;
|
|
height: 99px;
|
|
border-radius: 12px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
padding: 20px 10px 20px 20px;
|
|
background-color: #fff;
|
|
|
|
.score-info-item-title {
|
|
width: 100%;
|
|
height: 24px;
|
|
line-height: 24px;
|
|
color: #1d2129;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
padding-left: 24px;
|
|
|
|
&::before {
|
|
content: "";
|
|
width: 24px;
|
|
height: 24px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
background-image: url("https://ddcz-1315997005.cos.ap-nanjing.myqcloud.com/static/img/teach_sys_icon/recuW0XRVB1bpV.png");
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.score-info-item-value {
|
|
position: absolute;
|
|
right: 0px;
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
|
|
.score-info-line {
|
|
margin-top: 20px;
|
|
width: 299px;
|
|
height: 12px;
|
|
background-color: #f4f7f9;
|
|
border-radius: 12px;
|
|
position: relative;
|
|
|
|
> i {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 12px;
|
|
border-radius: 12px;
|
|
}
|
|
.score-info-line-total-value {
|
|
color: #86909c;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
position: absolute;
|
|
right: -25px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.score-info-item.item1 {
|
|
.score-info-item-value {
|
|
color: #2c7aff;
|
|
}
|
|
.score-info-line {
|
|
> i {
|
|
background-image: linear-gradient(to right, #2d7fff, #38aaff);
|
|
}
|
|
}
|
|
}
|
|
|
|
.score-info-item.item2 {
|
|
.score-info-item-value {
|
|
color: #25c343;
|
|
}
|
|
.score-info-line {
|
|
> i {
|
|
background-image: linear-gradient(to right, #2dc546, #8de46c);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.charts-content-bottom {
|
|
width: 100%;
|
|
height: 360px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
.radar-chart {
|
|
width: 394px;
|
|
height: 100%;
|
|
background-color: #f4f7f9;
|
|
border-radius: 12px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.interview-evaluation-text-wrapper {
|
|
width: 100%;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
background-color: #fff;
|
|
padding: 16px;
|
|
border-radius: 8px;
|
|
|
|
.interview-rating-text {
|
|
width: 100%;
|
|
border-radius: 8px;
|
|
background-color: #f2f3f5;
|
|
text-align: left;
|
|
box-sizing: border-box;
|
|
padding: 16px;
|
|
color: #1d2129;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
line-height: 1.6;
|
|
|
|
h1 {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
margin: 16px 0 12px 0;
|
|
color: #1d2129;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin: 14px 0 10px 0;
|
|
color: #1d2129;
|
|
}
|
|
|
|
p {
|
|
margin: 8px 0;
|
|
line-height: 1.8;
|
|
text-indent: 2em;
|
|
}
|
|
|
|
ol, ul {
|
|
margin: 8px 0;
|
|
padding-left: 24px;
|
|
|
|
li {
|
|
margin: 6px 0;
|
|
line-height: 1.8;
|
|
text-indent: 2em;
|
|
}
|
|
}
|
|
|
|
strong {
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|