index.scss 1.7 KB

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