wujingjing
2024-12-11 2144fb07b53812f565b2801f99e69cee9b28cab3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
@import './index.scss';
 
/* 页面宽度小于768px
------------------------------- */
@media screen and (max-width: $sm) {
    .big-data-down-left {
        width: 100% !important;
        flex-direction: unset !important;
        flex-wrap: wrap;
        .flex-warp-item {
            min-height: 196.24px;
            padding: 0 7.5px 15px 15px !important;
            .flex-warp-item-box {
                border: none !important;
                border-bottom: 1px solid #ebeef5 !important;
            }
        }
    }
    .big-data-down-center {
        width: 100% !important;
        .big-data-down-center-one,
        .big-data-down-center-two {
            min-height: 196.24px;
            padding-left: 15px !important;
            .big-data-down-center-one-content {
                border: none !important;
                border-bottom: 1px solid #ebeef5 !important;
            }
            .flex-warp-item-box {
                @extend .big-data-down-center-one-content;
            }
        }
    }
    .big-data-down-right {
        .flex-warp-item {
            .flex-warp-item-box {
                border: none !important;
                border-bottom: 1px solid #ebeef5 !important;
            }
            &:nth-of-type(2) {
                padding-left: 15px !important;
            }
            &:last-of-type {
                .flex-warp-item-box {
                    border: none !important;
                }
            }
        }
    }
}
 
/* 页面宽度大于768px小于1200px
------------------------------- */
@media screen and (min-width: $sm) and (max-width: $lg) {
    .chart-warp-bottom {
        .big-data-down-left {
            width: 50% !important;
        }
        .big-data-down-center {
            width: 50% !important;
        }
        .big-data-down-right {
            .flex-warp-item {
                width: 50% !important;
                &:nth-of-type(2) {
                    padding-left: 7.5px !important;
                }
            }
        }
    }
}
 
/* 页面宽度小于1200px
------------------------------- */
@media screen and (max-width: $lg) {
    .chart-warp-top {
        .up-left {
            display: none;
        }
    }
    .chart-warp-bottom {
        overflow-y: auto !important;
        flex-wrap: wrap;
        .big-data-down-right {
            width: 100% !important;
            flex-direction: unset !important;
            flex-wrap: wrap;
            .flex-warp-item {
                min-height: 196.24px;
                padding: 0 7.5px 15px 15px !important;
            }
        }
    }
}