album.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* pages/album/album.wxss */
  2. .album {
  3. width: 100%;
  4. height: 100%;
  5. padding: 0 30rpx;
  6. box-sizing: border-box;
  7. background: #eaeaea;
  8. }
  9. .album-state {
  10. display: flex;
  11. align-items: center;
  12. padding-top: 52rpx;
  13. }
  14. .album-state text {
  15. font-size: 36rpx;
  16. margin-right: 62rpx;
  17. }
  18. .state {
  19. display: flex;
  20. align-items: center;
  21. justify-content: space-between;
  22. position: relative;
  23. width: 188rpx;
  24. height: 64rpx;
  25. background: #fff;
  26. border-radius: 64rpx;
  27. padding: 0 20rpx;
  28. box-sizing: border-box;
  29. }
  30. .state view {
  31. font-size: 28rpx;
  32. color: #797979;
  33. }
  34. .state .open {
  35. position: absolute;
  36. left: 10rpx;
  37. top: 5rpx;
  38. width: 68rpx;
  39. height: 54rpx;
  40. background: #A1d100;
  41. border-radius: 54rpx;
  42. }
  43. .state .private {
  44. position: absolute;
  45. right: 10rpx;
  46. top: 5rpx;
  47. width: 68rpx;
  48. height: 54rpx;
  49. background: #ce3800;
  50. border-radius: 54rpx;
  51. }
  52. .album-code {
  53. display: flex;
  54. align-items: center;
  55. margin-top: 52rpx;
  56. font-size: 36rpx;
  57. }
  58. .album-code text {
  59. margin-right: 26rpx;
  60. }
  61. .album-code .code view {
  62. width: 60rpx;
  63. height: 60rpx;
  64. background: #fff;
  65. border-radius: 10rpx;
  66. margin-right: 10rpx;
  67. text-align: center;
  68. line-height: 60rpx;
  69. float: left;
  70. }
  71. .photo {
  72. display: flex;
  73. flex-wrap: wrap;
  74. margin-top: 22rpx;
  75. }
  76. .img {
  77. position: relative;
  78. width: 332rpx;
  79. height: 241rpx;
  80. border-radius: 20rpx;
  81. margin-top: 30rpx;
  82. }
  83. .img image{
  84. width: 100%;
  85. height: 100%;
  86. border-radius: 20rpx;
  87. }
  88. .img .delect {
  89. position: absolute;
  90. top: 15rpx;
  91. right: 15rpx;
  92. width: 53rpx;
  93. height: 53rpx;
  94. }
  95. .img:nth-child(even) {
  96. margin-left: 26rpx;
  97. }