register.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /* pages/tasks/tasks.wxss */
  2. .li{
  3. margin: 0;
  4. padding: 0;
  5. overflow: hidden
  6. }
  7. .li-img{
  8. margin: 60rpx 0;
  9. text-align: center;
  10. }
  11. .li-img-items{
  12. width: 120rpx;
  13. height: 120rpx;
  14. border-radius: 50%;
  15. }
  16. .li-input{
  17. margin: 0 75rpx;
  18. border-bottom: 1rpx solid #E5E5E5;
  19. display: flex;
  20. justify-content: flex-start;
  21. padding: 45rpx 0;
  22. }
  23. .li-input-name{
  24. width: 30%;
  25. text-align: left;
  26. font-size: 30rpx;
  27. color: #393939;
  28. }
  29. .left{
  30. width: 18rpx;
  31. height: 18rpx;
  32. border-top: 2rpx solid #B1B7D9;
  33. border-right: 2rpx solid #B1B7D9;
  34. transform: rotate(45deg);
  35. display: inline-block;
  36. margin: auto;
  37. }
  38. .li-input-items{
  39. width: 70%;
  40. display: flex;
  41. justify-content: space-between
  42. }
  43. .li-input-code{
  44. font-size:24rpx;
  45. font-family:PingFang SC;
  46. font-weight:500;
  47. color:rgba(255,100,101,1);
  48. border-left: 2rpx solid #E5E5E5;
  49. padding-left:20rpx;
  50. text-align: right;
  51. margin:auto 0;
  52. }
  53. .li-btn{
  54. width:248rpx;
  55. height:80rpx;
  56. background:rgba(255,100,101,1);
  57. border-radius:40rpx;
  58. font-size:30rpx;
  59. font-weight:bold;
  60. color:rgba(255,255,255,1);
  61. margin: 207rpx auto;
  62. text-align: center;
  63. line-height: 80rpx;
  64. }
  65. .showModel{
  66. width: 100%;
  67. height: 100%;
  68. position: fixed;
  69. top: 0;
  70. left: 0;
  71. background: #000;
  72. opacity: 0.4;
  73. overflow: hidden;
  74. z-index: 1000;
  75. color: #fff;
  76. }
  77. .model{
  78. z-index: 1001;
  79. position: fixed;
  80. top: 180rpx;
  81. margin: 0;
  82. background: #fff;
  83. width: 100%;
  84. height: 100%;
  85. }
  86. .model-title{
  87. color: #393939;
  88. font-size: 34rpx;
  89. display: flex;
  90. justify-content: space-between;
  91. padding: 30rpx 23rpx 40rpx 23rpx;
  92. border-bottom: 1rpx solid #E5E5E5;
  93. }
  94. .model-title-img{
  95. width: 20rpx;
  96. height: 20rpx;
  97. }
  98. .model-list{
  99. display: flex;
  100. justify-content: space-between;
  101. height: 100%;
  102. }
  103. .model-list-left{
  104. width: 25%;
  105. height: 100%;
  106. background: #F8F8F8;
  107. }
  108. .model-list-left-items{
  109. height: 86rpx;
  110. line-height: 86rpx;
  111. text-align: center;
  112. font-size: 28rpx;
  113. color: #393939;
  114. border-left: 6rpx solid transparent;
  115. }
  116. .model-list-right{
  117. width: 75%;
  118. background: #Fff;
  119. overflow: scroll;
  120. padding-bottom: 30rpx;
  121. }
  122. .model-list-right-items{
  123. height: 86rpx;
  124. line-height: 86rpx;
  125. text-align: center;
  126. font-size: 28rpx;
  127. color: #393939;
  128. width: 100%;
  129. display: flex;
  130. justify-content: space-between;
  131. margin: auto 0;
  132. padding: 0 24rpx;
  133. overflow: hidden;
  134. }
  135. .area-active{
  136. background: #fff;
  137. border-left: 6rpx solid #FF6465;
  138. }
  139. .model-list-right-items-img{
  140. width: 23rpx;
  141. height: 17rpx;
  142. margin-top: 33rpx;
  143. }