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.
99 lines
1.2 KiB
99 lines
1.2 KiB
* { |
|
margin: 0; |
|
padding: 0; |
|
box-sizing: border-box; |
|
} |
|
|
|
body { |
|
background-color: #F7FAFF; |
|
margin: 0; |
|
padding: 0; |
|
} |
|
|
|
a { |
|
text-decoration: none; |
|
} |
|
|
|
ul, |
|
ol { |
|
list-style: none; |
|
} |
|
|
|
|
|
|
|
.mode { |
|
width: 100%; |
|
margin: 0 auto; |
|
} |
|
|
|
.modelWidth { |
|
width: 1200px; |
|
margin: 0 auto; |
|
} |
|
|
|
.max { |
|
height: 100%; |
|
} |
|
|
|
.card { |
|
background-color: #fff; |
|
border-radius: 8px; |
|
box-shadow: 0px 3px 9px 0px rgba(123, 123, 123, 0.0900); |
|
padding: 20px; |
|
margin-top: 20px; |
|
} |
|
|
|
.flex { |
|
display: flex; |
|
align-items: center; |
|
} |
|
|
|
.flex_btw { |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
} |
|
|
|
.flex_aro { |
|
display: flex; |
|
justify-content: space-around; |
|
align-items: center; |
|
} |
|
|
|
.flex_center { |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
} |
|
|
|
.flex_col { |
|
display: flex; |
|
flex-direction: column; |
|
justify-content: center; |
|
align-items: center; |
|
} |
|
|
|
.content_title { |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
} |
|
|
|
.content_title img { |
|
width: 35px; |
|
margin-right: 10px; |
|
} |
|
|
|
.content_title h4 { |
|
position: relative; |
|
} |
|
|
|
|
|
.el-empty { |
|
width: 100%; |
|
} |
|
|
|
.el-pagination { |
|
margin-top: 20px; |
|
float: right; |
|
} |