index.wxss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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-around;
  36. width: 100%;
  37. padding: 0 10rpx;
  38. box-sizing: border-box;
  39. }
  40. .popBox .shareType .box {
  41. text-align: center;
  42. }
  43. .popBox .shareType .box .icon {
  44. width: 84rpx;
  45. height: 84rpx;
  46. border-radius: 50%;
  47. }
  48. .popBox .shareType .box .label {
  49. font-size: 31rpx;
  50. }
  51. .popBox .shareText {
  52. margin: 54rpx auto 30rpx;
  53. padding: 42rpx 0rpx;
  54. box-sizing: border-box;
  55. width: 687rpx;
  56. background: #F2F6FC;
  57. border-radius: 20rpx;
  58. }
  59. .popBox .shareText .title {
  60. margin-bottom: 46rpx;
  61. font-size: 36rpx;
  62. text-align: center;
  63. color: #000000;
  64. }
  65. .popBox .shareText .swiper {
  66. height: 300rpx;
  67. }
  68. .popBox .shareText .swiper .content {
  69. padding: 0 80rpx;
  70. font-size: 30rpx;
  71. color: #7B7B7B;
  72. line-height: 52rpx;
  73. margin-bottom: 20rpx;
  74. }
  75. .popBox .shareText .copy {
  76. margin: 20rpx auto 0;
  77. width: 330rpx;
  78. padding: 14rpx 0;
  79. text-align: center;
  80. background: #FFFFFF;
  81. border-radius: 35rpx;
  82. border: 1rpx solid #FF924C;
  83. font-size: 30rpx;
  84. color: #FF924C;
  85. }