| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .list {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- height: 77rpx;
- padding-right: 30rpx;
- padding-left: 30rpx;
- }
- .list text {
- font-size: 28rpx;
- font-family: SourceHanSansCN-Regular;
- font-weight: 400;
- color: rgba(34, 34, 34, 1);
- }
- .list view {
- width: 70%;
- height: 100%;
- border-bottom: 2rpx solid rgba(221, 221, 221, 1);
- }
- .list view input {
- display: flex;
- align-items: center;
- width: 100%;
- height: 100%;
- text-align: left;
- padding-left: 23rpx;
- font-size: 28rpx;
- font-family: SourceHanSansCN-Regular;
- font-weight: 400;
- color: rgba(153, 153, 153, 1);
- }
- .list view picker {
- line-height: 77rpx;
- width: 100%;
- height: 100%;
- text-align: left;
- padding-left: 30rpx;
- font-size: 28rpx;
- font-family: SourceHanSansCN-Regular;
- font-weight: 400;
- color: rgba(153, 153, 153, 1);
- }
- /* btn */
- .fixed-footer {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- }
- .btn-group {
- background: #fff;
- 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: linear-gradient(90deg, rgba(59, 120, 207, 1), rgba(80, 166, 195, 1));
- border-radius: 44rpx;
- justify-content: center;
- font-size: 38rpx;
- font-family: SourceHanSansCN-Normal;
- font-weight: 400;
- color: rgba(255, 254, 254, 1);
- }
|