1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* 盒子 */
- .display-item-box {
- display: flex;
- height: 162rpx;
- width: 100%;
- padding-bottom: 20rpx;
- }
- /* 图片盒子 */
- .display-item-image {
- width: 162rpx;
- height: 162rpx;
- border-radius: 15rpx;
- overflow: hidden;
- margin-right: 30rpx;
- }
- /* 图片 */
- .display-item-image>image {
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- }
- /* 文本说明 */
- .display-item-textExplain {
- width: 460rpx;
- height: 100%;
- }
- /* 标题 */
- .textExplain-title {
- font-size: 28rpx;
- color: #000000;
- }
- /* 说明 */
- .textExplain-explain {
- width: 456rpx;
- font-size: 24rpx;
- color: rgba(51, 51, 51, 0.7);
- margin-top: 20rpx;
- }
- /* 用户信息和时间 */
- .textExplain-userData-time {
- height: 28rpx;
- display: flex;
- justify-content: space-between;
- align-items: flex-end;
- font-size: 20rpx;
- color: rgba(51, 51, 51, 0.7);
- margin-top: 40rpx;
- }
- .textExplain-userData {
- display: flex;
- align-items: flex-end;
- }
- .textExplain-userData>image {
- height: 28rpx;
- width: 28rpx;
- border-radius: 50%;
- overflow: hidden;
- margin-right: 8rpx;
- }
- .textExplain-time {
- margin-right: 10rpx;
- }
|