uni.css 2.2 KB
Newer Older
Y
init  
yurj26 已提交
1 2 3 4 5 6 7 8 9 10
.uni-padding-wrap {
    padding: 0 30rpx;
}

.uni-title {
    padding: 20rpx 0;
}

.uni-title-text {
    font-size: 30rpx;
Y
yurj26 已提交
11
    font-weight: bold;
Y
init  
yurj26 已提交
12 13 14 15 16 17
}

.uni-subtitle-text {
    margin-top: 10rpx;
    font-size: 24rpx;
    color: #888;
Y
yurj26 已提交
18
    font-weight: bold;
Y
init  
yurj26 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
}

.uni-common-mb {
    margin-bottom: 30rpx;
}

.uni-common-pb {
    padding-bottom: 30rpx;
}

.uni-common-pl {
    padding-left: 30rpx;
}

.uni-common-mt {
    margin-top: 30rpx;
}

.uni-hello-text {
    color: #7A7E83;
Y
yurj26 已提交
39
    line-height: 22px;
Y
init  
yurj26 已提交
40 41 42 43 44 45 46
}

.uni-list {
    background-color: #FFFFFF;
    position: relative;
    display: flex;
    flex-direction: column;
Y
yurj26 已提交
47
    border-bottom: 1px solid #c8c7cc;
Y
init  
yurj26 已提交
48 49 50 51 52 53 54 55 56 57
}

.uni-list-cell {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

Y
yurj26 已提交
58 59 60 61
.uni-list-cell-line {
    border-bottom: 1px solid #c8c7cc;
}

Y
init  
yurj26 已提交
62 63 64 65 66
.uni-list-cell-hover {
    background-color: #eee;
}

.uni-list-cell-pd {
Y
yurj26 已提交
67
    padding: 22rpx 30rpx 22rpx 0;
Y
init  
yurj26 已提交
68 69 70
}

.uni-list-cell-left {
Y
yurj26 已提交
71
    padding: 0 30rpx 0 20rpx;
Y
init  
yurj26 已提交
72 73 74 75 76
}

.uni-list-cell-db,
.uni-list-cell-right {
    flex: 1;
Y
yurj26 已提交
77 78
}

Y
init  
yurj26 已提交
79
.uni-label {
Y
yurj26 已提交
80 81 82 83 84
    width: 210rpx;
    font-size: 28rpx;
    /* word-wrap: break-word;
    word-break: break-all;
    text-indent:20rpx; */
Y
yurj26 已提交
85
}
Y
init  
yurj26 已提交
86 87

.uni-input {
Y
yurj26 已提交
88 89
    height: 50rpx;
    padding: 15rpx 25rpx;
Y
yurj26 已提交
90 91
    /* line-height: 50rpx;
    font-size: 28rpx; */
Y
yurj26 已提交
92 93 94
    background: #FFF;
    flex: 1;
    box-sizing: content-box;
Y
init  
yurj26 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
}

.uni-flex {
    /* #ifdef H5 */
    display: flex;
    /* #endif */
    flex-direction: row;
}

.uni-flex-item {
    flex: 1;
}

.uni-row {
    flex-direction: row;
}

.uni-column {
    flex-direction: column;
}

/* 背景色 */
.uni-bg-red {
    background: #F76260;
}

.uni-bg-green {
    background: #09BB07;
}

.uni-bg-blue {
    background: #007AFF;
}

.uni-btn-v {
    padding: 10rpx 0;
}

.uni-btn {
    margin-top: 20rpx;
}

.uni-link {
    color: #576B95;
    font-size: 26rpx;
}

.uni-center {
    flex-direction: row;
    justify-content: center;
}

/* textarea */
.uni-textarea-box {
    background: #ffffff;
}

.uni-textarea {
    padding: 18rpx;
Y
yurj26 已提交
154 155 156
    /* line-height: 1.6;
    font-size: 28rpx; */
}