invite.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* pages/about/invite.wxss */
  2. .invite{
  3. padding: 10px;
  4. }
  5. .invite_introduce{
  6. color: darkgray;
  7. font-size: 24rpx;
  8. height: 72rpx;
  9. }
  10. .empty{
  11. text-align: center;
  12. line-height: 150px;
  13. color: darkgray;
  14. }
  15. .shadow{
  16. box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 6px 0px;
  17. border-radius: 5px;
  18. }
  19. .invite_list{
  20. margin-top: 20px;
  21. min-height: 200px;
  22. }
  23. .head{
  24. width: fit-content;
  25. padding: 5px 15px;
  26. border-radius: 5px;
  27. color: white;
  28. font-size: 24rpx;
  29. background: var(--themeColor)
  30. }
  31. .invite_list_content{
  32. margin-top: 10px;
  33. padding: 8px;
  34. height: calc(100vh - 200px - 70rpx);
  35. overflow-y: auto;
  36. }
  37. .invite_list_item{
  38. background-color: var(--themeColor);
  39. padding: 8px;
  40. border-radius: 10px;
  41. color: white;
  42. margin-bottom: 10px;
  43. display: flex;
  44. align-items: center;
  45. justify-content: space-between;
  46. }
  47. .invite_list_item_left{
  48. display: flex;
  49. align-items: center;
  50. }
  51. .invite_list_item_right{
  52. font-size: 28rpx;
  53. }
  54. .message{
  55. margin-left: 15px;
  56. }
  57. .name{
  58. font-size: 34rpx;
  59. }
  60. .phone{
  61. color: darkgray;
  62. font-size: 26rpx;
  63. }
  64. .invite_btn{
  65. margin-top: 20px;
  66. /* width: calc(100vw - 40px); */
  67. /* position: fixed;
  68. bottom: 50px;
  69. margin: 10px; */
  70. }
  71. .btn{
  72. width: 70%;
  73. height: 40px;
  74. text-align: center;
  75. line-height: 40px;
  76. margin: auto;
  77. color: white;
  78. border-radius: 40px;
  79. background-color: var(--themeColor);
  80. }