organization.acss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. /* border-top: 1px solid #f1f1f1; */
  85. }
  86. .footer view{
  87. border-radius: 6rpx;
  88. background: #fff;
  89. color: #26A2FF;
  90. height: 88rpx;
  91. text-align: center;
  92. line-height: 88rpx;
  93. border:1px solid #f1f1f1;
  94. }