123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /* 列表 */
- /* #ifndef APP-NVUE */
- .uni-list {
- background-color: #FFFFFF;
- position: relative;
- width: 100%;
- display: flex;
- flex-direction: column;
- font-size: 32rpx;
- }
- .title{
- font-size:14px;
- }
- .uni-list:after {
- position: absolute;
- z-index: 10;
- right: 0;
- bottom: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-list-cell {
- position: relative;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .uni-list-cell-hover {
- background-color: #eee;
- }
- .uni-list-cell-pd {
- padding: 22rpx 30rpx;
- }
- .uni-list-cell-left {
- white-space: nowrap;
- font-size: 28rpx;
- padding: 0 30rpx;
- }
- .uni-list-left-pl {
- margin-right: 20rpx;
- }
- .minw{
- min-width: 180rpx;
- }
- .uni-list-cell-db,
- .uni-list-cell-right {}
- .uni-list-cell::after {
- position: absolute;
- z-index: 3;
- right: 0;
- bottom: 0;
- left: 30rpx;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-list .uni-list-cell:last-child::after {
- height: 0rpx;
- }
- .uni-list-cell-last.uni-list-cell::after {
- height: 0rpx;
- }
- .uni-list-cell-divider {
- position: relative;
- display: flex;
- color: #999;
- background-color: #f7f7f7;
- padding: 15rpx 20rpx;
- }
- .uni-list-cell-divider::before {
- position: absolute;
- right: 0;
- top: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-list-cell-divider::after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0rpx;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-list-cell-navigate {
- font-size: 30rpx;
- padding: 22rpx 30rpx;
- line-height: 48rpx;
- position: relative;
- display: flex;
- box-sizing: border-box;
- width: 100%;
- flex: 1;
- justify-content: space-between;
- align-items: center;
- }
- .uni-list-cell-navigate {
- padding-right: 36rpx;
- }
- .uni-navigate-badge {
- padding-right: 50rpx;
- }
- .uni-list-cell-navigate.uni-navigate-right:after {
- font-family: uniicons;
- content: '\e583';
- position: absolute;
- right: 24rpx;
- top: 50%;
- color: #bbb;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .uni-list-cell-navigate.uni-navigate-bottom:after {
- font-family: uniicons;
- content: '\e581';
- position: absolute;
- right: 24rpx;
- top: 50%;
- color: #bbb;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .uni-list-cell-navigate.uni-navigate-bottom.uni-active::after {
- font-family: uniicons;
- content: '\e580';
- position: absolute;
- right: 24rpx;
- top: 50%;
- color: #bbb;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .uni-collapse.uni-list-cell {
- flex-direction: column;
- }
- .uni-list-cell-navigate.uni-active {
- background: #eee;
- }
- .uni-list.uni-collapse {
- box-sizing: border-box;
- height: 0;
- overflow: hidden;
- }
- .uni-collapse .uni-list-cell {
- padding-left: 20rpx;
- }
- .uni-collapse .uni-list-cell::after {
- left: 52rpx;
- }
- .uni-list.uni-active {
- height: auto;
- }
- .uni-input {
- height: 50rpx;
- text-align: right;
- padding: 5rpx 5rpx;
- min-width: 330rpx;
- line-height: 50rpx;
- font-size: 28rpx;
- background: #FFF;
- padding-right: 20rpx !important;
- }
- .uni-input-time {
- font-size: 28rpx;
- padding: 15rpx 25rpx;
- }
- .uni-textarea {
- padding: 5rpx 5rpx;
- text-align: right;
- width: auto !important;
- min-width: 330rpx;
- font-size: 28rpx;
- background: #FFF;
- height: 50rpx;
- }
- ::placeholder{
- font-size: 28rpx;
- }
- /* #endif */
|