42 lines
758 B
CSS
42 lines
758 B
CSS
/* 个人档案页面样式 */
|
|
.personal-profile {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* 统一布局系统 */
|
|
.unified-profile-layout {
|
|
box-sizing: border-box;
|
|
padding: 20px;
|
|
width: 100%;
|
|
height: 781px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
.unified-profile-left {
|
|
width: 360px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
.unified-profile-rank {
|
|
height: 385px;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.unified-profile-right {
|
|
width: 744px;
|
|
height: 100%;
|
|
border-radius: 8px;
|
|
background-color: #fff;
|
|
}
|
|
}
|