mine.wxss 969 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* pages/zzdy/components/mine/mine.wxss */
  2. .menu {
  3. margin: auto;
  4. margin-top: 40rpx;
  5. width: 650rpx;
  6. background: #ffffff;
  7. height: 200rpx;
  8. border-radius: 20rpx;
  9. box-shadow: 0 0 10rpx #ececec;
  10. display: flex;
  11. align-items: center;
  12. }
  13. .menu-hover {
  14. background: #f7f7f7;
  15. }
  16. .menu:nth-child(1) {
  17. margin-top: 0rpx;
  18. }
  19. .menu .icon {
  20. margin-left: 50rpx;
  21. width: 80rpx;
  22. height: 80rpx;
  23. }
  24. .menu .icon > image {
  25. width: 100%;
  26. height: auto;
  27. }
  28. .menu .infos {
  29. margin-left: 30rpx;
  30. flex: 1;
  31. height: 100rpx;
  32. }
  33. .menu .infos > view {
  34. width: 100%;
  35. height: 50%;
  36. line-height: 50rpx;
  37. }
  38. .menu .infos > view:nth-child(1) {
  39. font-size: 36rpx;
  40. font-weight: bold;
  41. color: #212121;
  42. }
  43. .menu .infos > view:nth-child(2) {
  44. font-size: 24rpx;
  45. color: #999999;
  46. }
  47. .menu .icon1 {
  48. margin-right: 50rpx;
  49. width: 50rpx;
  50. height: 50rpx;
  51. }
  52. .menu .icon1 > image {
  53. width: 100%;
  54. height: auto;
  55. }