| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /* pages/tasks/tasks.wxss */
- .li{
- margin: 0;
- padding: 0;
- overflow: hidden
- }
- .li-img{
- margin: 60rpx 0;
- text-align: center;
- }
- .li-img-items{
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- }
- .li-input{
- margin: 0 75rpx;
- border-bottom: 1rpx solid #E5E5E5;
- display: flex;
- justify-content: flex-start;
- padding: 45rpx 0;
- }
- .li-input-name{
- width: 30%;
- text-align: left;
- font-size: 30rpx;
- color: #393939;
- }
- .left{
- width: 18rpx;
- height: 18rpx;
- border-top: 2rpx solid #B1B7D9;
- border-right: 2rpx solid #B1B7D9;
- transform: rotate(45deg);
- display: inline-block;
- margin: auto;
- }
- .li-input-items{
- width: 70%;
- display: flex;
- justify-content: space-between
- }
- .li-input-code{
- font-size:24rpx;
- font-family:PingFang SC;
- font-weight:500;
- color:rgba(255,100,101,1);
- border-left: 2rpx solid #E5E5E5;
- padding-left:20rpx;
- text-align: right;
- margin:auto 0;
- }
- .li-btn{
- width:248rpx;
- height:80rpx;
- background:rgba(255,100,101,1);
- border-radius:40rpx;
- font-size:30rpx;
- font-weight:bold;
- color:rgba(255,255,255,1);
- margin: 207rpx auto;
- text-align: center;
- line-height: 80rpx;
- }
- .showModel{
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- background: #000;
- opacity: 0.4;
- overflow: hidden;
- z-index: 1000;
- color: #fff;
- }
- .model{
- z-index: 1001;
- position: fixed;
- top: 180rpx;
- margin: 0;
- background: #fff;
- width: 100%;
- height: 100%;
- }
- .model-title{
- color: #393939;
- font-size: 34rpx;
- display: flex;
- justify-content: space-between;
- padding: 30rpx 23rpx 40rpx 23rpx;
- border-bottom: 1rpx solid #E5E5E5;
- }
- .model-title-img{
- width: 20rpx;
- height: 20rpx;
- }
- .model-list{
- display: flex;
- justify-content: space-between;
- height: 100%;
- }
- .model-list-left{
- width: 25%;
- height: 100%;
- background: #F8F8F8;
- }
- .model-list-left-items{
- height: 86rpx;
- line-height: 86rpx;
- text-align: center;
- font-size: 28rpx;
- color: #393939;
- border-left: 6rpx solid transparent;
- }
- .model-list-right{
- width: 75%;
- background: #Fff;
- overflow: scroll;
- padding-bottom: 30rpx;
- }
- .model-list-right-items{
- height: 86rpx;
- line-height: 86rpx;
- text-align: center;
- font-size: 28rpx;
- color: #393939;
- width: 100%;
- display: flex;
- justify-content: space-between;
- margin: auto 0;
- padding: 0 24rpx;
- overflow: hidden;
- }
- .area-active{
- background: #fff;
- border-left: 6rpx solid #FF6465;
- }
- .model-list-right-items-img{
- width: 23rpx;
- height: 17rpx;
- margin-top: 33rpx;
- }
|