123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /**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: #323233;
- height:40rpx;
- line-height: 40rpx;
- font-weight: bold;
- padding:0 32rpx;
- margin:40rpx 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;
- }
- .input-block{
- height: 88rpx;
- display: flex;
- align-items: center;
- border-bottom:1rpx solid #EBEDF0;
- }
- .input-label{
- line-height: 88rpx;
- color: #646566;
- width:200rpx;
- }
- .input-value{
- flex:1;
- padding-left:20rpx;
- height: 88rpx;
- line-height: 88rpx;
- }
- .input-placeholder{
- color: #C8C9CC;
- }
- .select-block{
- height: 88rpx;
- display: flex;
- align-items: center;
- border-bottom:1rpx solid #EBEDF0;
- }
- .no-border{
- border-bottom:none;
- }
- .select-label{
- line-height: 88rpx;
- color: #646566;
- width:200rpx;
- }
- .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-scroll{
- margin:8rpx 4rpx 0;
- background: #fff;
- border-radius: 8rpx;
- width:742rpx;
-
- }
- .worker-item{
- height: 80rpx;
- padding:0 40rpx;
- line-height: 80rpx;
- border-bottom:2rpx solid #F4F2F2;
- }
|