| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @import '../../components/My_card/index.scss';
- /* 附件 */
- .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;
- }
|