uni.css 2.3 KB
Newer Older
Y
init  
yurj26 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
.uni-padding-wrap {
    padding: 0 30rpx;
}

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

.uni-title-text {
    font-size: 30rpx;
    font-weight: 500;
}

.uni-subtitle-text {
    margin-top: 10rpx;
    font-size: 24rpx;
    color: #888;
Y
yurj26 已提交
18
    font-weight: 500;
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
    padding-left: 30rpx;
Y
yurj26 已提交
48
    border-bottom: 1px solid #c8c7cc;
Y
init  
yurj26 已提交
49 50 51 52 53 54 55 56 57 58
}

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

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

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

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

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

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

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

.uni-input {
Y
yurj26 已提交
89 90 91 92 93 94 95
    height: 50rpx;
    padding: 15rpx 25rpx;
    line-height: 50rpx;
    font-size: 28rpx;
    background: #FFF;
    flex: 1;
    box-sizing: content-box;
Y
init  
yurj26 已提交
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 154 155 156 157 158 159 160
}

.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;
    color: #FFF;
}

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

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

.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;
    line-height: 1.6;
    font-size: 28rpx;
}