organization.acss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. overflow: hidden;
  59. text-overflow: ellipsis;
  60. white-space: nowrap;
  61. padding-right: 20rpx;
  62. font-size: 36rpx;
  63. }
  64. .title2 {
  65. font-size: 28rpx;
  66. padding: 20rpx 28rpx;
  67. }
  68. .shu {
  69. padding: 24rpx 28rpx;
  70. font-size: 28rpx;
  71. color: #26A2FF;
  72. padding-top: 0rpx;
  73. }
  74. .shu view:last-child {
  75. color: #ccc;
  76. }
  77. .footer {
  78. position: fixed;
  79. left: 0;
  80. right: 0;
  81. bottom: 0;
  82. background: rgba(245, 247, 250, 1);
  83. padding: 10rpx;
  84. padding-bottom: 30rpx;
  85. /* border-top: 1px solid #f1f1f1; */
  86. }
  87. .footer .jin {
  88. border-radius: 6rpx;
  89. background: #fff;
  90. color: #F56C6C;
  91. height: 88rpx;
  92. text-align: center;
  93. line-height: 88rpx;
  94. border: 1px solid #F56C6C;
  95. margin-right: 28rpx
  96. }
  97. .footer .kai {
  98. border-radius: 6rpx;
  99. background: #26A2FF;
  100. color: #fff;
  101. height: 88rpx;
  102. text-align: center;
  103. line-height: 88rpx;
  104. border: 1px solid #26A2FF;
  105. }
  106. .tbImg {
  107. width: 50rpx;
  108. height: 50rpx;
  109. }
  110. .tbText {
  111. font-size: 24rpx;
  112. color: #26A2FF;
  113. }
  114. .userItem {
  115. padding: 14rpx 24rpx;
  116. border-bottom: 1px solid #f1f1f1;
  117. }
  118. .state {
  119. font-size: 24rpx;
  120. }
  121. .selectText{
  122. position: relative
  123. }
  124. .selectText::after {
  125. position: absolute;
  126. top:50%;
  127. right: -0.2rem;
  128. margin-top: -0.1rem;
  129. border-width: 0.06rem;
  130. border-style: solid;
  131. border-image: initial;
  132. border-color: transparent transparent rgb(192, 196, 204) rgb(192, 196, 204);
  133. transform: rotate(-45deg);
  134. opacity: 0.8;
  135. content: "";
  136. }