index.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .popBox {
  2. width: 100%;
  3. height: 100%;
  4. padding: 22rpx 32rpx;
  5. padding-bottom: calc(22rpx + env(safe-area-inset-bottom)) !important;
  6. box-sizing: border-box;
  7. border-top-left-radius: 20rpx;
  8. border-top-right-radius: 20rpx;
  9. padding-bottom: 30rpx;
  10. background-color: white;
  11. }
  12. .popBox .header {
  13. position: relative;
  14. margin-bottom: 18rpx;
  15. font-size: 36rpx;
  16. color: #000000;
  17. text-align: center;
  18. }
  19. .popBox .header .close {
  20. position: absolute;
  21. right: 10rpx;
  22. top: -16rpx;
  23. line-height: 60rpx;
  24. font-size: 60rpx;
  25. color: #979797;
  26. }
  27. .popBox .tips {
  28. margin-bottom: 14rpx;
  29. font-size: 26rpx;
  30. text-align: center;
  31. color: #666666;
  32. }
  33. .popBox .shareType {
  34. display: flex;
  35. align-items: center;
  36. justify-content: space-around;
  37. width: 100%;
  38. padding: 0 10rpx;
  39. box-sizing: border-box;
  40. }
  41. .popBox .shareType .box {
  42. text-align: center;
  43. padding: 0 30rpx;
  44. }
  45. .popBox .shareType .box .icon {
  46. width: 84rpx;
  47. height: 84rpx;
  48. border-radius: 50%;
  49. }
  50. .popBox .shareType .box .label {
  51. font-size: 31rpx;
  52. }
  53. .popBox .shareText {
  54. margin: 54rpx auto 30rpx;
  55. padding: 42rpx 0rpx;
  56. box-sizing: border-box;
  57. width: 687rpx;
  58. background: #F2F6FC;
  59. border-radius: 20rpx;
  60. }
  61. .popBox .shareText .title {
  62. margin-bottom: 46rpx;
  63. font-size: 36rpx;
  64. text-align: center;
  65. color: #000000;
  66. }
  67. .popBox .shareText .swiper {
  68. height: 300rpx;
  69. }
  70. .popBox .shareText .swiper .content {
  71. padding: 0 70rpx;
  72. font-size: 30rpx;
  73. color: #7B7B7B;
  74. line-height: 52rpx;
  75. margin-bottom: 20rpx;
  76. white-space: pre-line;
  77. overflow: hidden;
  78. text-overflow: ellipsis;
  79. -webkit-line-clamp: 5;
  80. display: -webkit-box;
  81. -webkit-box-orient: vertical;
  82. }
  83. .popBox .shareText .copy {
  84. margin: 20rpx auto 0;
  85. width: 330rpx;
  86. padding: 14rpx 0;
  87. text-align: center;
  88. background: #FFFFFF;
  89. border-radius: 35rpx;
  90. border: 1rpx solid #FF924C;
  91. font-size: 30rpx;
  92. color: #FF924C;
  93. }