organization.acss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. .header {
  2. background: #fff;
  3. padding: 24rpx;
  4. position: sticky;
  5. top: 0;
  6. }
  7. .search {
  8. background-color: #f1f1f1;
  9. border-radius: 10rpx;
  10. padding: 8rpx 10rpx;
  11. }
  12. .search input {
  13. background-color: #f1f1f1;
  14. font-size: 26rpx;
  15. }
  16. .search image {
  17. width: 30rpx;
  18. height: 30rpx;
  19. margin-left: 10rpx;
  20. }
  21. .li {
  22. background-color: #fff;
  23. }
  24. .img-left {
  25. margin: 0 28rpx;
  26. background-color: rgba(38, 162, 255, 0.1);
  27. padding: 10rpx;
  28. border-radius: 50%;
  29. width: 90rpx;
  30. height: 90rpx;
  31. text-align: center;
  32. box-sizing: border-box;
  33. }
  34. .img-tx {
  35. margin: 0 28rpx;
  36. }
  37. .img-left image {
  38. width: 50rpx;
  39. height: 50rpx;
  40. position: relative;
  41. top: 5rpx;
  42. }
  43. .img-right {
  44. width: 24rpx;
  45. height: 24rpx;
  46. margin-right: 28rpx;
  47. }
  48. .li-right {
  49. padding: 32rpx 0;
  50. }
  51. .logo {
  52. width: 100rpx;
  53. height: 100rpx;
  54. border-radius: 6rpx;
  55. margin-right: 20rpx;
  56. }
  57. .name {
  58. padding-right: 20rpx;
  59. font-size: 36rpx;
  60. overflow: hidden;
  61. text-overflow: ellipsis;
  62. word-break: break-all;
  63. display: -webkit-box;
  64. -webkit-line-clamp: 2;
  65. -webkit-box-orient: vertical;
  66. width: 4.3rem;
  67. }
  68. .title2 {
  69. font-size: 28rpx;
  70. padding: 20rpx 28rpx;
  71. }
  72. .shu {
  73. padding: 24rpx 28rpx;
  74. font-size: 28rpx;
  75. color: #26A2FF;
  76. padding-top: 0rpx;
  77. }
  78. .shu view:last-child {
  79. color: #ccc;
  80. }
  81. .footer {
  82. position: fixed;
  83. left: 0;
  84. right: 0;
  85. bottom: 0;
  86. background: rgba(245, 247, 250, 1);
  87. padding: 10rpx;
  88. padding-bottom: 30rpx;
  89. /* border-top: 1px solid #f1f1f1; */
  90. }
  91. .footer .jin {
  92. border-radius: 6rpx;
  93. background: #fff;
  94. color: #F56C6C;
  95. height: 88rpx;
  96. text-align: center;
  97. line-height: 88rpx;
  98. border: 1px solid #F56C6C;
  99. margin-right: 28rpx
  100. }
  101. .footer .kai {
  102. border-radius: 6rpx;
  103. background: #26A2FF;
  104. color: #fff;
  105. height: 88rpx;
  106. text-align: center;
  107. line-height: 88rpx;
  108. border: 1px solid #26A2FF;
  109. }
  110. .tbImg {
  111. width: 50rpx;
  112. height: 50rpx;
  113. }
  114. .tbText {
  115. font-size: 24rpx;
  116. color: #26A2FF;
  117. }
  118. .userItem {
  119. padding: 14rpx 24rpx;
  120. border-bottom: 1px solid #f1f1f1;
  121. }
  122. .state {
  123. font-size: 24rpx;
  124. }
  125. .selectText{
  126. position: relative
  127. }
  128. .selectText::after {
  129. position: absolute;
  130. top:50%;
  131. right: -0.2rem;
  132. margin-top: -0.1rem;
  133. border-width: 0.06rem;
  134. border-style: solid;
  135. border-image: initial;
  136. border-color: transparent transparent rgb(192, 196, 204) rgb(192, 196, 204);
  137. transform: rotate(-45deg);
  138. opacity: 0.8;
  139. content: "";
  140. }