index.wxss 1.6 KB

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