My_card.scss 523 B

123456789101112131415161718192021222324252627282930
  1. .my-card {
  2. width: 690rpx;
  3. background: #FFFFFF;
  4. border-radius: 16rpx;
  5. margin: 0 auto;
  6. box-sizing: border-box;
  7. overflow: hidden;
  8. .mtitle {
  9. display: flex;
  10. align-items: center;
  11. justify-content: space-between;
  12. width: 100%;
  13. height: 90rpx;
  14. padding: 0 20rpx 0 30rpx;
  15. border-bottom: 1px solid #EEEEEE;
  16. box-sizing: border-box;
  17. .title-l {
  18. font-size: 28rpx;
  19. font-family: PingFang SC-Bold, PingFang SC;
  20. font-weight: bold;
  21. color: #333333;
  22. }
  23. }
  24. }
  25. .hover:hover {
  26. opacity: .95;
  27. }