index.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* pages/meeting/index/index.wxss */
  2. .search-box {
  3. background-color: #fff;
  4. height: 114rpx;
  5. width: 100vw;
  6. padding: 16rpx 32rpx;
  7. box-sizing: border-box;
  8. margin-bottom: 24rpx;
  9. }
  10. .search {
  11. background-color: #f3f4f6;
  12. padding: 14rpx 22rpx;
  13. }
  14. .pl-css {
  15. color: #909399;
  16. }
  17. input {
  18. width: 600rpx;
  19. display: inline-block;
  20. vertical-align: middle;
  21. }
  22. .contenr {
  23. padding: 0 24rpx;
  24. margin-bottom: 50rpx;
  25. }
  26. .item {
  27. width: 702rpx;
  28. height: 202rpx;
  29. padding: 24rpx;
  30. background-color: #fff;
  31. position: relative;
  32. color: rgba(58, 60, 101, 0.70);
  33. line-height: 45rpx;
  34. margin-bottom: 24rpx;
  35. box-sizing: border-box;
  36. }
  37. .item>image {
  38. position: absolute;
  39. top: 0;
  40. right: 0;
  41. width: 100%;
  42. height: 100%;
  43. }
  44. van-icon {
  45. margin-right: 10rpx;
  46. }
  47. .rooom-name {
  48. color: #3A3C65;
  49. font-size: 36rpx;
  50. font-weight: 700;
  51. margin-bottom: 20rpx;
  52. max-width: 484rpx;
  53. overflow: hidden;
  54. text-overflow: ellipsis;
  55. white-space: nowrap;
  56. }
  57. .go-subscribe {
  58. position: absolute;
  59. top: 22rpx;
  60. right: 32rpx;
  61. background-color: #d3fbf5;
  62. color: #317d9e;
  63. padding: 8rpx 17rpx 8rpx 32rpx;
  64. border-radius: 40rpx;
  65. /* margin-top: 25rpx; */
  66. display: inline-block;
  67. font-weight: 500;
  68. font-size: 26rpx;
  69. }
  70. .green {
  71. color: #6DA8C1;
  72. font-size: 28rpx;
  73. font-weight: 500;
  74. margin-top: 16rpx;
  75. }
  76. .m-l {
  77. margin-left: 28rpx;
  78. }