2022-08-09 11:32:28 +08:00
|
|
|
@import '~uview-ui/index.scss';
|
2022-08-09 11:46:41 +08:00
|
|
|
@import "./ckeditor";
|
|
|
|
|
@import "./party";
|
|
|
|
|
@import "./iconfont";
|
2022-08-09 11:32:28 +08:00
|
|
|
|
2022-08-09 14:27:52 +08:00
|
|
|
@font-face {
|
|
|
|
|
font-family: DIN;
|
|
|
|
|
src: url("https://cdn.cunwuyun.cn/fonts/DIN Alternate Bold.ttf");
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-09 11:32:28 +08:00
|
|
|
/**
|
|
|
|
|
常用内外边距样式
|
|
|
|
|
*/
|
|
|
|
|
@each $padMar, $pm in (mar:margin, pad:padding) {
|
|
|
|
|
@each $pos, $p in (l:left, r:right, t:top, b:bottom) {
|
2022-10-24 18:03:11 +08:00
|
|
|
@each $v in (8, 10, 16, 32, 64, 96) {
|
2022-08-09 11:32:28 +08:00
|
|
|
.#{$padMar}-#{$pos+$v} {
|
|
|
|
|
#{$pm}-#{$p}: #{$v}px
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-25 15:47:46 +08:00
|
|
|
.avatar {
|
|
|
|
|
width: 120px;
|
|
|
|
|
height: 120px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.circle {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-06 10:24:48 +08:00
|
|
|
div[flex],.flex {
|
2022-08-09 11:32:28 +08:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
&.spb {
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.wrap {
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.column {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.start {
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div[shrink] {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
2022-08-09 11:39:26 +08:00
|
|
|
|
|
|
|
|
.fill {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
}
|
2022-10-24 18:03:11 +08:00
|
|
|
|
|
|
|
|
.t-center {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|