xuxy
2024-06-24 a3ad988e9f74049a6b17efd4f3db8389ae6fe7ed
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
.component-tab-container{
    display: flex;
    .tab-item{
        display: flex;
        text-align: center;
        border-radius: 8rpx;
        border: 2rpx solid var(--topicolor);
        background: #fff;
        color: var(--topicolor);
    }
    .tab-item.cur{
        background: var(--topicolor);
        border-radius: 0rpx 8rpx 8rpx 0rpx;
    }
}
.component-button-upload{
    width: 96rpx;
    height: 96rpx;
    border-radius: 4rpx;
    border: 2rpx solid #CECECE;
    position: relative;
    background-image: 100% 100%;
    &::after{
        content: "+";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(50%,50%);
        // width: 22rpx;
        // height: 22rpx;
        font-size: 24rpx;
        color: #000000;
    }
}