12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- @charset "UTF-8";
- .container {
- width: 100%;
- display: flex;
- justify-content: flex-start;
- padding: 20rpx 20rpx;
- background-color: #fff;
- border-bottom: 1rpx solid #ECECEC;
- /* 头像 */
- }
- .container .photo {
- flex: 1;
- }
- .container .photo .head-img {
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- }
- .container .comments {
- flex: 5;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- padding: 0 20rpx;
- }
- .container .comments .product {
- width: 95%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .container .comments .comment-content {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .container .comments .comment-content .imgs {
- width: 100%;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- flex-wrap: wrap;
- }
- .container .comments .comment-content .imgs .comment-img {
- width: 32%;
- padding-right: 1.333333%;
- height: 158rpx;
- }
- .container .comments .comment-content .imgs .comment-img .comm-img {
- width: 100%;
- height: 150rpx;
- border-radius: 15rpx;
- }
- .f13 {
- font-size: 13px;
- }
- .fw300 {
- font-weight: 300;
- }
- .fw400 {
- font-weight: 400;
- }
- .color-gray {
- color: #999;
- }
- .padding5 {
- padding: 5rpx 0;
- }
|