index.less 2.4 KB

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