index.wxss 879 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* 盒子大小 */
  2. .grey_rectangle_box {
  3. display: flex;
  4. align-items: center;
  5. justify-content: space-between;
  6. width: 100%;
  7. height: 136rpx;
  8. }
  9. /* 图片 */
  10. .grey_rectangle_image {
  11. overflow: hidden;
  12. }
  13. .grey_rectangle_image>image {
  14. width: 100%;
  15. height: 100%;
  16. }
  17. /* 文本 */
  18. .grey_rectangle_text {
  19. width: 360rpx;
  20. display: flex;
  21. flex-direction: column;
  22. justify-content: space-between;
  23. margin-left: 30rpx;
  24. }
  25. .grey_rectangle_text_title {
  26. font-size: 32rpx;
  27. color: #000000;
  28. margin-bottom: 8rpx;
  29. }
  30. .grey_rectangle_text_row {
  31. font-size: 28rpx;
  32. color: #000000;
  33. opacity: .4;
  34. margin-bottom: 4rpx;
  35. }
  36. /* 图标 */
  37. .grey_rectangle_icon {
  38. display: flex;
  39. align-items: center;
  40. height: 100%;
  41. width: 48rpx;
  42. }
  43. .grey_rectangle_icon>image {
  44. width: 48rpx;
  45. height: 48rpx;
  46. border-radius: 50%;
  47. }