index.wxss 551 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @import "/utils/styles/index.wxss";
  2. .item {
  3. /* height: 300rpx; */
  4. background-color: #fff;
  5. padding: 30rpx;
  6. margin-top: 22rpx;
  7. box-sizing: border-box;
  8. font-size: 26rpx;
  9. }
  10. .item image {
  11. width: 180rpx;
  12. }
  13. .icon {
  14. /* flex-basis: 30%; */
  15. position: relative;
  16. }
  17. .icon text {
  18. position: absolute;
  19. color: #fff;
  20. top: 50%;
  21. left: 50%;
  22. transform: translate(-50%, -50%);
  23. }
  24. .desc {
  25. flex-basis: 70%;
  26. }
  27. .desc text {
  28. color: #666;
  29. margin: 5rpx 0;
  30. }
  31. .title {
  32. font-size: 30rpx;
  33. color: #333;
  34. font-weight: bold;
  35. margin: 5px 0;
  36. }