1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* 容器 */
- .item_box {
- display: flex;
- width: 95vw;
- border-bottom: 1rpx solid #E4E4E4;
- padding: 20rpx 0;
- margin: 0 auto;
- }
- /* 容器左侧 */
- .item_left {
- width: 260rpx;
- height: 160rpx;
- }
- /* 左侧图片 */
- .item_left .img {
- width: 100%;
- height: 100%;
- background-color: blue;
- margin: 0 15rpx;
- }
- /* 容器右侧 */
- .item_right {
- flex: 1;
- margin-left: 25rpx;
- }
- /* 设置右侧宽度 */
- .item_right view {
- width: 450rpx;
- }
- /* 右侧-标题 */
- .item_right_title {
- height: 60rpx;
- line-height: 50rpx;
- font-size: 34rpx;
- font-weight: 600;
- color: #666666;
- }
- /* 右侧-说明 (第二行) */
- .item_right_explain {
- color: #000000;
- opacity: 0.9;
- margin-bottom: 5rpx;
- }
- /* 右侧-用户名 */
- .item_right_user {
- height: 60rpx;
- line-height: 60rpx;
- }
- .item_right_user .icon {
- float: left;
- width: 60rpx;
- height: 60rpx;
- font-size: 50rpx;
- }
|