index.less 2.4 KB

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