forked from gzzfw/frontEnd/gzDyh

zhangyongtian
2024-09-03 a54284270f39f155960e7bd9d0921e7b204ccdae
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
@import '../../styles/theme.less';
 
.pageHead {
    width: 100%;
    background-color: #ffffff;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
 
    .pageHead-breadcrumb {
        margin-bottom: 8px;
 
        &-item {
            cursor: pointer;
 
            &:hover {
                color: @main-color;
            }
        }
    }
 
    &-title {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
 
        &-detailH {
            font-weight: 600;
        }
 
        &-h {
            font-weight: 600;
            font-size: 20px;
            line-height: 28px;
        }
    }
 
    &-subtitle {
        margin-bottom: 8px;
    }
 
    .ant-tabs-ink-bar {
        width: 28px !important;
    }
}