album.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. height: 60rpx;
  56. margin-top: 52rpx;
  57. font-size: 36rpx;
  58. }
  59. .album-code text {
  60. margin-right: 26rpx;
  61. }
  62. .album-code .code view {
  63. width: 60rpx;
  64. height: 60rpx;
  65. background: #fff;
  66. border-radius: 10rpx;
  67. margin-right: 10rpx;
  68. text-align: center;
  69. line-height: 60rpx;
  70. float: left;
  71. }
  72. .photo {
  73. display: flex;
  74. flex-wrap: wrap;
  75. margin-top: 22rpx;
  76. }
  77. .img {
  78. position: relative;
  79. width: 332rpx;
  80. height: 241rpx;
  81. border-radius: 20rpx;
  82. margin-top: 30rpx;
  83. }
  84. .img image{
  85. width: 100%;
  86. height: 100%;
  87. border-radius: 20rpx;
  88. }
  89. .img .delect {
  90. position: absolute;
  91. top: 15rpx;
  92. right: 15rpx;
  93. width: 53rpx;
  94. height: 53rpx;
  95. }
  96. .img:nth-child(even) {
  97. margin-left: 26rpx;
  98. }