index.wxss 837 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. flex: 1;
  20. display: flex;
  21. flex-direction: column;
  22. margin-left: 30rpx;
  23. }
  24. .grey_rectangle_text_title {
  25. font-size: 32rpx;
  26. color: #000000;
  27. margin-bottom: 8rpx;
  28. }
  29. .grey_rectangle_text_row {
  30. font-size: 28rpx;
  31. color: #000000;
  32. opacity: .4;
  33. margin-bottom: 4rpx;
  34. }
  35. /* 图标 */
  36. .grey_rectangle_icon {
  37. display: flex;
  38. align-items: center;
  39. height: 100%;
  40. width: 48rpx;
  41. }
  42. .grey_rectangle_icon>image {
  43. width: 48rpx;
  44. height: 48rpx;
  45. border-radius: 50%;
  46. }