index.scss 679 B

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