index.less 2.8 KB

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