xuxy
2024-06-26 563a0f248d37b8820cdb3e46479d7c8c891b3386
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
95
96
97
98
99
100
101
102
 
// $u-tips-color: #2979ff;
// $u-primary: #2979ff;
 
// @import '@/node_modules/uview-ui/theme.scss';    
 
.component-tab-container{
    display: flex;
    width: fit-content;
    margin:0 auto;
    .tab-item{
        display: flex;
        text-align: center;
        border-radius: 8rpx;
        border: 2rpx solid var(--topicolor);
        background: #fff;
        color: var(--topicolor);
        width: 212rpx;
        line-height: 64rpx;
        font-weight: 600;
        font-size: 28rpx;
        display: block;
    }
    .tab-item.cur{
        background: var(--topicolor);
        // border-radius: 0rpx 8rpx 8rpx 0rpx;
        color: #fff;
    }
    .tab-item:first-child{
        border-top-right-radius: 0rpx;
        border-bottom-right-radius: 0rpx;
    }
    .tab-item:last-child{
        border-top-left-radius: 0rpx;
        border-bottom-left-radius: 0rpx;
    }
}
.component-button-upload{
    width: 96rpx;
    height: 96rpx;
    border-radius: 4rpx;
    border: 2rpx dashed #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: #696969;
    }
}
.component-line-vert{
    width: 2rpx;
    background-color: #EEEEEE;
}
.component-popup_input.white{
    background: #fff;
    
}
.component-popup_input{
    margin: 0 auto;
    margin-top: calc(50% + 200rpx);
 
    // margin-left: 78rpx - 26rpx;
    width: 594rpx;
    
    background: linear-gradient(180deg, #D8F0EE 0%, #FFFFFF 100%);
    border-radius: 16rpx;
    padding: 26rpx;
    position: relative;
    .title{
        font-weight: 400;
        font-size: 28rpx;
        color: #333333;
        line-height: 42rpx;
        text-align: center;
        margin-bottom: 32rpx;
    }
    .uni-easyinput{
        width: auto !important;
    }
    .icon{
        z-index: -1;
        position: absolute;
        width: 266rpx;
        height: 146rpx;
        top: -134rpx;
        left: 50%;
        transform: translateX(-50%);
    }
    .close-parent{
        margin-bottom: 34rpx;
    }
    .button-green{
        margin-top: 50rpx;
    }
}