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.
57 lines
1021 B
57 lines
1021 B
@charset "UTF-8";
|
|
/* 水平间距 */
|
|
/* 水平间距 */
|
|
.uni-section {
|
|
background-color: #fff;
|
|
margin-top: 10px;
|
|
}
|
|
.uni-section-header {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding: 12px 10px;
|
|
font-weight: normal;
|
|
}
|
|
.uni-section__head {
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-right: 10px;
|
|
}
|
|
.line {
|
|
height: 12px;
|
|
background-color: #2979ff;
|
|
border-radius: 10px;
|
|
width: 4px;
|
|
}
|
|
.circle {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-top-right-radius: 50px;
|
|
border-top-left-radius: 50px;
|
|
border-bottom-left-radius: 50px;
|
|
border-bottom-right-radius: 50px;
|
|
background-color: #2979ff;
|
|
}
|
|
.uni-section__content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
color: #333;
|
|
}
|
|
.uni-section__content-title {
|
|
font-size: 14px;
|
|
color: #2979ff;
|
|
}
|
|
.distraction {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
.uni-section__content-sub {
|
|
font-size: 12px;
|
|
color: #999;
|
|
line-height: 16px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
|