| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /* 输入框部分 */
- page {
- background: #f5f5f5;
- padding-top: 20rpx;
- }
- .list {
- min-height: 86rpx;
- font-size: 30rpx;
- background: #fff;
- font-family: SourceHanSansCN-Regular;
- font-weight: 400;
- padding: 15rpx 30rpx;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- border-bottom: 2rpx solid #f5f5f5;
- }
- .list text {
- color: #666666;
- }
- .list-content {
- flex: 1;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .list-content input {
- height: 100%;
- text-align: right;
- padding-left: 23rpx;
- font-size: 28rpx;
- display: flex;
- align-items: center;
- }
- .list-content .picker {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .delete {
- height: 100rpx;
- font-size: 34rpx;
- color: #0177FF;
- background: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 20rpx 0;
- }
- icon {
- margin-right: 15rpx;
- }
- /* btn */
- .fixed-footer {
- width: 100%;
- }
- .btn-group {
- width: 100%;
- padding: 20rpx;
- box-sizing: border-box;
- }
- .selfBtn {
- display: flex;
- height: 88rpx;
- line-height: 88rpx;
- align-items: center;
- /* box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); */
- background: #0177FF;
- border-radius: 10rpx;
- justify-content: center;
- align-items: center;
- font-size: 34rpx;
- font-family: SourceHanSansCN-Normal;
- font-weight: 400;
- color: rgba(255, 254, 254, 1);
- }
- .disabled {
- background: #D8D8D8;
- }
- button::after {
- border: none;
- }
- .arrow {
- width: 17rpx;
- height: 29rpx;
- margin-left: 15rpx;
- }
- .endDate {
- width: 100%;
- height: 100%;
- text-align: right;
- }
- .pick-view {
- position: fixed;
- bottom: 0;
- left: 0;
- background: rgba(0, 0, 0, 0.5);
- width: 100%;
- height: 100%;
- z-index: 99999;
- }
- .indicator {
- line-height: 50rpx;
- color: #000;
- background: #fff;
- }
- .pick-view-header {
- height: 50px;
- width: 100%;
- padding: 0 30rpx;
- box-sizing: border-box;
- border-bottom: 2rpx solid #ebebeb;
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: #fff;
- position: absolute;
- left: 0;
- bottom: 300px;
- }
|