exchangeShare.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .right_icon {
  28. width: 40rpx;
  29. height: 40rpx;
  30. position: absolute;
  31. top: 26rpx;
  32. right: 26rpx;
  33. }
  34. .invitations {
  35. width: 100%;
  36. position: relative;
  37. top: 88rpx;
  38. margin-bottom: 50px;
  39. }
  40. .invitations .invitations_item {
  41. width: 90%;
  42. margin: 0 auto;
  43. display: flex;
  44. justify-content: space-between;
  45. padding: 30rpx 0;
  46. }
  47. .invitations .invitations_item .invitations_item_left {
  48. width: 26%;
  49. }
  50. .invitations .invitations_item .invitations_item_left image {
  51. width: 100%;
  52. height: 180rpx;
  53. }
  54. .invitations .invitations_item .invitations_item_right {
  55. width: 71%;
  56. position: relative;
  57. }
  58. .invitations .invitations_item .invitations_item_right .invitations_item_right_top {
  59. width: 100%;
  60. }
  61. .invitations .invitations_item .invitations_item_right .invitations_item_right_top image {
  62. width: 32rpx;
  63. height: 32rpx;
  64. margin: 0 16rpx 0 0;
  65. vertical-align: text-bottom;
  66. }
  67. .invitations .invitations_item .invitations_item_right .invitations_item_right_top ._span {
  68. font-weight: 700;
  69. }
  70. .invitations .invitations_item .invitations_item_right .delinvit {
  71. position: absolute;
  72. right: 0;
  73. top: 0;
  74. color: #ff0000;
  75. }
  76. .invitations .invitations_item .invitations_item_right .invitations_item_right_contert {
  77. width: 100%;
  78. margin: 10rpx 0;
  79. overflow: hidden;
  80. -webkit-line-clamp: 2;
  81. text-overflow: ellipsis;
  82. display: -webkit-box;
  83. -webkit-box-orient: vertical;
  84. }
  85. .invitations .invitations_item .invitations_item_right .invitations_item_right_bot {
  86. display: flex;
  87. position: absolute;
  88. bottom: 12rpx;
  89. height: 50rpx;
  90. width: 100%;
  91. }
  92. .invitations .invitations_item .invitations_item_right .invitations_item_right_bot image {
  93. width: 50rpx;
  94. height: 50rpx;
  95. position: absolute;
  96. }
  97. .invitations .invitations_item .invitations_item_right .invitations_item_right_bot ._span {
  98. color: #B9B9B9;
  99. margin-left: 74rpx;
  100. line-height: 50rpx;
  101. }
  102. .invitations .invitations_item .invitations_item_right .invitations_item_right_bot ._p {
  103. width: 100rpx;
  104. height: 40rpx;
  105. font-size: 24rpx;
  106. border: 2rpx solid #5FAE50;
  107. line-height: 40rpx;
  108. padding: 0 10rpx;
  109. position: absolute;
  110. right: 0;
  111. top: 6rpx;
  112. color: #5FAE50;
  113. }
  114. .addindent {
  115. width: 100%;
  116. position: fixed;
  117. bottom: 0;
  118. left: 0;
  119. height: 80rpx;
  120. text-align: center;
  121. line-height: 80rpx;
  122. background-color: #71cd9a;
  123. color: #ffffff;
  124. font-size: 16px;
  125. z-index: 100;
  126. }
  127. .top {
  128. position: fixed;
  129. right: 30px;
  130. bottom: 100px;
  131. z-index: 100;
  132. }
  133. .top image {
  134. width: 100rpx;
  135. height: 100rpx;
  136. }