1234567891011121314151617181920212223242526272829303132 |
- .my-card {
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin: 0 auto;
- margin-top: 20rpx;
- box-sizing: border-box;
- overflow: hidden;
- .mtitle {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- height: 90rpx;
- padding: 0 20rpx 0 30rpx;
- border-bottom: 1px solid #EEEEEE;
- box-sizing: border-box;
- .title-l {
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- }
- }
- .hover:hover {
- opacity: .95;
- // background: #f4f5f7;
- }
|