index.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. page {
  2. background: #fff;
  3. }
  4. .container {
  5. padding-bottom: 160rpx;
  6. .content{
  7. background: #fff;
  8. padding-bottom: 50rpx;
  9. .topIcon{
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. // height:600rpx;
  14. padding-top: 150rpx;
  15. justify-content: center;
  16. image{
  17. width: 100rpx;
  18. height: 100rpx;
  19. border-radius: 50%;
  20. }
  21. .txt{
  22. margin-top: 50rpx;
  23. font-size: 34rpx;
  24. color:#26B3A0 ;
  25. }
  26. }
  27. .btn{
  28. width:90%;
  29. background: #26B3A0;
  30. height: 90rpx;
  31. border-radius: 20rpx;
  32. font-size: 30rpx;
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. color: #fff;
  37. // font-weight: 600;
  38. margin-left: 50%;
  39. transform: translateX(-50%);
  40. margin-top: 80rpx;
  41. }
  42. .tips{
  43. font-size: 32rpx;
  44. color: #26B3A0;
  45. margin-top: 100rpx;
  46. height: 100rpx;
  47. display: flex;
  48. align-items: center;
  49. justify-content: center;
  50. }
  51. }
  52. .line{
  53. height: 12rpx;
  54. background: #eee;
  55. }
  56. .sunTitle{
  57. padding: 0 40rpx;
  58. font-size: 36rpx;
  59. font-weight: 600;
  60. margin-top: 40rpx;
  61. margin-bottom: 20rpx;
  62. }
  63. .content2{
  64. margin-left: 50%;
  65. transform: translateX(-50%);
  66. margin-top: 30rpx;
  67. width: 90%;
  68. background: #eee;
  69. padding: 30rpx;
  70. border-radius: 20rpx;
  71. margin-bottom: 50rpx;
  72. line-height: 50rpx;
  73. font-size: 32rpx;
  74. }
  75. }
  76. // 图片上传区域
  77. .chooscontainer {
  78. display: flex;
  79. flex-wrap: wrap;
  80. position: relative;
  81. // border-bottom: 1rpx solid #EDEDED;
  82. margin-bottom: 48rpx;
  83. padding: 0 30rpx;
  84. .addpicall {
  85. width: 28%;
  86. margin-right: 6rpx;
  87. margin-left: 6rpx;
  88. margin-top: 15rpx;
  89. position: relative;
  90. // z-index: 10;
  91. &:nth-child(3n) {
  92. margin-right: 0;
  93. }
  94. .image {
  95. width: 100%;
  96. height: 100%;
  97. border-radius: 20rpx;
  98. }
  99. .playBtn{
  100. position: absolute;
  101. width: 50rpx;
  102. height: 50rpx;
  103. z-index: 11;
  104. right: 40%;
  105. transform: translateX(40%);
  106. top: 50%;
  107. transform: translateY(-50%);
  108. }
  109. }
  110. }
  111. // 图片上传区域结束