邃芒智像相册
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

57 line
971 B

  1. /* pages/checkImg/checkImg.wxss */
  2. page {
  3. background-color: #333333;
  4. padding: 50rpx 0;
  5. .name {
  6. text-align: center;
  7. font-size: 45rpx;
  8. color: #ffffff;
  9. margin-bottom: 40rpx;
  10. }
  11. .imageList {
  12. width: 100%;
  13. height: 800rpx;
  14. text-align: center;
  15. overflow: hidden;
  16. image {
  17. width: 75%;
  18. border-radius: 40rpx;
  19. }
  20. }
  21. .indicator {
  22. display: flex;
  23. justify-content: space-between;
  24. padding: 0 280rpx;
  25. margin-bottom: 100rpx;
  26. .item {
  27. width: 20rpx;
  28. height: 20rpx;
  29. background-color: #ffffff50;
  30. border-radius: 10rpx;
  31. transition: all 0.3s;
  32. &.active {
  33. width: 28rpx;
  34. background-color: #fff;
  35. }
  36. }
  37. }
  38. .downloadImage {
  39. width: 70%;
  40. height: 100rpx;
  41. line-height: 100rpx;
  42. font-weight: 600;
  43. background-color: #ff4f00;
  44. color: #ffffff;
  45. font-size: 32rpx;
  46. text-align: center;
  47. border-radius: 50rpx;
  48. margin: auto;
  49. }
  50. }