123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- .body {
- background-color: #FFFFFF;
- font-size: 16px;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- }
- .select-input{
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- font-size: 16px;
- margin: 20upx 0 50upx 30upx;
- input {
- padding-left: 20upx;
- padding-top: 10upx;
- background-color: #FFFFFF;
- width: 400upx;
- height: 50upx;
- box-shadow: 0upx 0upx 20upx #D3D3D3;
- border-radius: 5upx;
- }
- }
-
- .item {
- box-sizing: border-box;
- width: 100%;
- height: 40px;
- line-height: 40px;
- background-color: #ffffff;
- position: relative;
- padding: 0 10upx 0 200upx;
- text-align: right;
- }
-
- .item .lable {
- position: absolute;
- left: 30upx;
- top: 0px;
- font-size: 16px;
- }
-
- uni-picker-view-column {
- font-size: 24rpx;
- }
-
- .filter_input {
- height: 92rpx;
- padding-top: 10rpx;
- }
-
- .date_item {
- float: left;
- width: 240upx;
- overflow: hidden;
- display: inline-block;
- text-align: center;
- border: 1px solid #ececec;
- height: 72rpx;
- line-height: 72rpx;
-
- // font-size: 28rpx;
- &:last-child {
- // float: right;
- }
-
- input {
- height: 72rpx;
-
- .uni-input-placeholder {
- color: #b5b8c2;
- }
- }
- }
-
- .filter_inputline {
- float: left;
- margin: 0 4rpx;
- line-height: 72rpx;
-
- &:after {
- content: '—';
- font-size: 28rpx;
- color: #848b9a;
- }
- }
- form{
- width: calc(100% - 100upx);
- padding: 50upx;
- .section{
- margin:50upx 0;
- }
-
- .btn-area{
- padding: 50upx;
- padding-top:0upx;
- button{
- background-color:#007AFF;
- }
- }
- }
- .select-text{
- color: #F0AD4E;
- }
|