123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /**index.wxss**/
- page {
- /* background: #f3f3f3; */
- background:#F4F2F2;
- }
- .container{
- padding-top:20rpx;
- padding-bottom:80rpx;
- }
- view{
- font-size: 28rpx;
- }
- .edit-btn{
- width: 686rpx;
- height: 80rpx;
- background: #09AFFF;
- border-radius: 200rpx;
- line-height: 80rpx;
- position: fixed;
- left:28rpx;
- right:28rpx;
- bottom:94rpx;
- color: #fff;
- text-align: center;
- /* margin:94rpx 28rpx 0; */
- }
- .title{
- color: #646566;
- height:40rpx;
- line-height: 40rpx;
- /* font-weight: bold; */
- /* padding:0 32rpx; */
- margin:0rpx 0 16rpx;
- }
- .tips{
- color: #969799;
- line-height: 32rpx;
- font-size:24rpx;
- line-height: 32rpx;
- padding:0 32rpx;
- margin-bottom:16rpx;
- }
- .common-module{
- width: 750rpx;
- /* background: #FFFFFF; */
- /* padding:0 32rpx; */
- box-sizing: border-box;
- position: relative;
- }
- .input-block{
- height: 88rpx;
- display: flex;
- align-items: center;
- /* border-bottom:1rpx solid #EBEDF0; */
- padding:0 30rpx 0 20rpx;
- background: #fff;
- margin-bottom:10rpx;
- }
- .input-label{
- line-height: 88rpx;
- color: #646566;
- width:160rpx;
- }
- .input-value{
- flex:1;
- padding-left:20rpx;
- height: 88rpx;
- line-height: 88rpx;
- color:#333;
- }
- .input-placeholder{
- color: #C8C9CC;
- }
- .select-block{
- height: 88rpx;
- display: flex;
- align-items: center;
- /* border-bottom:1rpx solid #EBEDF0; */
- padding:0 30rpx 0 20rpx;
- background: #fff;
- margin-bottom:10rpx;
- }
- .no-border{
- border-bottom:none;
- }
- .select-label{
- line-height: 88rpx;
- color: #646566;
- width:160rpx;
- }
- .select-value{
- flex:1;
- padding-left:20rpx;
- height: 88rpx;
- line-height: 88rpx;
- }
- .select-value.default-value{
- color: #C8C9CC;
- }
- .special-tips{
- height: 48rpx;
- line-height: 32rpx;
- color: #969799;
- font-size: 24rpx;
- padding:12rpx 20rpx 0 32rpx;
- }
- .worker-item{
- height: 80rpx;
- padding:0 40rpx;
- line-height: 80rpx;
- border-bottom:2rpx solid #F4F2F2;
- }
- .disable-input{
- color:#999;
- }
- .address-block{
- min-height: 160rpx;
- height: auto;
- }
- .address-block .input-value{
- line-height: 44rpx;
- white-space: pre-wrap;
- /* display: flex;
- align-items: center; */
- height: 120rpx;
- padding:0 0 0rpx 20rpx;
- /* overflow-y: auto; */
- /* margin-bottom:16rpx; */
- }
- .receipt-content{
- width: 750rpx;
- background: #FFFFFF;
- padding:30rpx 30rpx 24rpx 20rpx;
- /* margin:0 24rpx; */
- }
- .receipt-content .title{
- height:48rpx;
- }
- .receipt-content .title text{
- color: red;
- }
- .receipt-content .textarea{
- height: 174rpx;
- border-radius: 12rpx;
- border: 2rpx solid #DADADA;
- margin:18rpx 0 22rpx;
- width:700rpx;
- padding:16rpx 22rpx;
- box-sizing: border-box;
- }
- .upload-block{
- background: #fff;
- padding:24rpx 30rpx 24rpx 20rpx;
- margin-bottom:10rpx;
- }
- .upload-block view{
- color: #646566;
- }
- .scroll-wrapper{
- position: fixed;
- bottom:0;
- left:0;
- right:0;
- top:0;
- z-index:99;
- background: rgba(0,0,0,0.4);
- padding-top:108rpx;
- }
- .worker-scroll{
- padding:8rpx 4rpx 0;
- background: #fff;
- /* border-radius: 8rpx; */
- width:750rpx;
- background: #fff;
- position: fixed;
- bottom:0;
- left:0;
- right:0;
- z-index:999;
- }
- .worker-item{
- height: 80rpx;
- padding:0 40rpx;
- line-height: 80rpx;
- border-bottom:2rpx solid #F4F2F2;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .selected-result.worker-item{
- color:#09afff;
- }
- .scroll-title{
- height: 100rpx;
- position: fixed;
- bottom:520rpx;
- left:0;
- right:0;
- z-index:1000;
- background: #fff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding:0 24rpx;
- box-shadow: 0 2rpx 8rpx 2rpx #f0f0f0;
- }
- .conf-btn{
- color:#09afff;
- }
- .result-select.select-block{
- min-height: 88rpx;
- height: auto;
- }
- .result-select .select-value{
- line-height:44rpx ;
- padding:20rpx 0 20rpx 20rpx;
- height: auto;
- }
|