|
@@ -55,3 +55,85 @@
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+.row_data_statistics {
|
|
|
+ display: flex;
|
|
|
+ flex-flow: row wrap;
|
|
|
+ width: 100%;
|
|
|
+ row-gap: 0;
|
|
|
+ margin-top: 14px;
|
|
|
+ .statistics_item_container {
|
|
|
+ width: 50%;
|
|
|
+ .statistics_item {
|
|
|
+ height: 80px;
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+ align-items: center;
|
|
|
+ &.blue {
|
|
|
+ background-color: rgba(0,153,204,.55);
|
|
|
+ border: 1px solid rgba(0,153,204,.65);
|
|
|
+ }
|
|
|
+ &.purple {
|
|
|
+ background-color: rgba(153,51,255,.55);
|
|
|
+ border: 1px solid rgba(153,51,255,.65);
|
|
|
+ }
|
|
|
+ .left_text {
|
|
|
+ color: hsla(0,0%,100%,.85);
|
|
|
+ text-align: center;
|
|
|
+ width: 50%;
|
|
|
+ .number {
|
|
|
+ font-size: 1.2em;
|
|
|
+ font-weight: 500;
|
|
|
+ color: hsla(0,0%,100%,.85);
|
|
|
+ }
|
|
|
+ .text {
|
|
|
+ font-size: 1em;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .divider {
|
|
|
+ position: relative;
|
|
|
+ display: inline-block;
|
|
|
+ margin: 0 8px;
|
|
|
+ vertical-align: middle;
|
|
|
+ border-top: 0;
|
|
|
+ border-left: 1px solid hsla(0,0%,100%,.3);
|
|
|
+ padding-left: 6px;
|
|
|
+ padding-right: 6px;
|
|
|
+ height: 60%;
|
|
|
+ top: -.06em;
|
|
|
+ color: rgba(0,0,0,.85);
|
|
|
+ font-size: 14px;
|
|
|
+ font-variant: tabular-nums;
|
|
|
+ line-height: 1.5715;
|
|
|
+ list-style: none;
|
|
|
+ font-feature-settings: "tnum","tnum";
|
|
|
+ }
|
|
|
+ .right_text {
|
|
|
+ width: 50%;
|
|
|
+ font-size: 1em;
|
|
|
+ color: hsla(0,0%,100%,.85);
|
|
|
+ line-height: 30px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.row_radio_group {
|
|
|
+ position: relative;
|
|
|
+ margin: 14px 0;
|
|
|
+ .el-radio-group .el-radio {
|
|
|
+ height: 26px;
|
|
|
+ --el-radio-text-color: #09c;
|
|
|
+ --el-border: var(--el-border-width) var(--el-border-style) #09c;
|
|
|
+ --el-radio-input-border-color: #09c;
|
|
|
+ --el-radio-input-border-color-hover: #00fffc;
|
|
|
+ &.is-checked {
|
|
|
+ --el-color-primary: #00fffc;
|
|
|
+ --el-color-white: #09c;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.data_container {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100% - 200px);
|
|
|
+}
|