index.wxss 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /**index.wxss**/
  2. @import '../../app.wxss';
  3. .bg {
  4. width: 100%;
  5. height: 0;
  6. position: relative;
  7. overflow: hidden;
  8. padding-bottom: 54%;
  9. background: #eee;
  10. z-index: 1;
  11. }
  12. .list {
  13. padding: 0 40rpx;
  14. position: relative;
  15. overflow: visible;
  16. z-index: 2;
  17. margin-top: -56rpx;
  18. }
  19. .list > view {
  20. width: 100%;
  21. position: relative;
  22. overflow: hidden;
  23. background: #fff;
  24. border-radius: 10rpx;
  25. margin-top: 20rpx;
  26. box-shadow: 0 0 20rpx 10rpx rgba(0, 0, 0, 0.05);
  27. padding: 30rpx 0;
  28. align-items: center;
  29. }
  30. .list > view:first-child {
  31. margin-top: 0;
  32. }
  33. .list > view text {
  34. line-height: 50rpx;
  35. font-size: 26rpx;
  36. color: #666;
  37. }
  38. .list > view image:first-child {
  39. width: 36rpx;
  40. display: inline-block;
  41. margin-left: 30rpx;
  42. margin-right: 15rpx;
  43. }
  44. .list > view image:last-child {
  45. width: 12rpx;
  46. display: inline-block;
  47. margin-right: 30rpx;
  48. }
  49. .tips {
  50. text-align: center;
  51. width: 100%;
  52. display: block;
  53. position: absolute;
  54. left: 0;
  55. bottom: 60rpx;
  56. font-size: 24rpx;
  57. line-height: 40rpx;
  58. color: #ccc;
  59. z-index: 1;
  60. }