41 lines
807 B
CSS
41 lines
807 B
CSS
/* ============================================
|
||
40项细分能力分析页样式
|
||
页面固定尺寸:1309×926px
|
||
============================================ */
|
||
|
||
.sa-page {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
width: 100%;
|
||
height: 100%;
|
||
padding: 0;
|
||
}
|
||
|
||
/* 板块标题(左上角) */
|
||
.sa-section-title {
|
||
align-self: flex-start;
|
||
font-size: 24px;
|
||
font-weight: 700;
|
||
color: var(--text-color);
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
/* 红色副标题(居中) */
|
||
.sa-subtitle {
|
||
font-size: 22px;
|
||
font-weight: 700;
|
||
color: #C41A1A;
|
||
text-align: center;
|
||
margin-bottom: 6px;
|
||
letter-spacing: 4px;
|
||
}
|
||
|
||
/* 雷达图容器 */
|
||
.sa-chart-wrap {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
flex: 1;
|
||
}
|