1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- .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;
- }
- /* 附件 */
- .accessory {
- display: flex;
- align-items: center;
- height: 122rpx;
- background: #FFFFFF;
- border: 1rpx solid #CCCCCC;
- .icon {
- width: 58rpx;
- height: 58rpx;
- margin-left: 30rpx;
- .iconfont {
- font-size: 58rpx;
- color: var(--assist);
- }
- }
- .explian {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin-left: 30rpx;
- height: 80rpx;
- .title {
- width: 380rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- word-break: break-all;
- }
- .time {
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- }
- }
- .v-but {
- width: 140rpx;
- height: 60rpx;
- border-radius: 30rpx;
- margin-left: 30rpx;
- }
- }
- .line-1 {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
|