考核考试系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.0 KiB

.content{
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
box-sizing: border-box;
.cneter {
flex: 1;
overflow: hidden;
background-color: #F2F5F6;
display: flex;
box-sizing: border-box;
padding: 25px;
>div { background-color: #fff; border-radius: 10px; }
.left {
flex: 20%;
margin-right: 25px;
}
.right {
flex: 80%;
overflow: hidden;
display: flex;
flex-direction: column;
}
}
}
//文本溢出
.overflowText {
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
//左侧
.headerLeft{
display: flex;
align-items: center;
>div {flex: 1;}
height: 36px;
padding: 0 25px;
}
.centerLeft {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
>div {flex: 1; text-align: center;}
height: 36px;
padding: 0 25px;
margin: 0 30px;
font-size: 14px;
border-radius: 3px;
}
.selectPaper {
background-color: #07CDCF;
color: #fff;
}