123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- .videoSection{
- width: 750rpx;
- height: 428rpx;
- }
- .readAuthorSection{
- width: 100%;
- height: 152rpx;
- display: flex;
- /* justify-items: center; */
- align-items: center
-
- }
- .readAuthorSection .avatar{
- width: 108rpx;
- height: 108rpx;
- border-radius: 50%;
- margin-left: 22rpx;
- }
- .readAuthorSection .nickName{
- margin-left: 8rpx;
- width: 160rpx;
- height: 46rpx;
- font-size: 32rpx;
- color: #101010;
- }
- .readAuthorSection .like{
- display: flex;
- align-items: center;
- justify-content: center;
- margin-left: 90rpx;
- width: 160rpx;
- height: 60rpx;
- border: 2rpx solid rgba(255,152,0,1);
- font-size: 28rpx;
- border-radius: 30rpx;
- text-align: center;
- /* line-height: 60rpx; */
- color: #ff9800;
- }
- .readAuthorSection .like image{
- width: 36rpx;
- height: 36rpx;
- margin-right: 15rpx;
- }
- .readAuthorSection .follow{
- margin-left: 12rpx;
- width: 160rpx;
- height: 60rpx;
- border: 2rpx solid #259b24;
- font-size: 28rpx;
- border-radius: 30rpx;
- text-align: center;
- line-height: 60rpx;
- color: #259b24;
- }
- .userSection{
- width: 100%;
- height: 196rpx;
- }
- .userSection .title{
-
- }
- .userSection .avatarRow{
- display: flex;
- align-items: center;
- overflow: hidden;
- }
- .userSection .avatarRow .userItem{
- margin-right: 20rpx;
- }
- .avatarRow .userItem image {
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- }
- .avatarRow .userItem .nickName {
- width: 100rpx;
- height: 20rpx;
- color: #101010;
- font-size: 24rpx;
- text-align: center;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .commentSection{
- }
- .commentSection .title{
- }
- .commentSection .commentInput{
- }
- .commentSection .commentArea{
-
- }
- .footSection{
- width: 750rpx;
- height: 124rpx;
- position: fixed;
- bottom: 0;
- background: #aaa;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .readingBtn{
- width: 148rpx;
- height: 148rpx;
- border-radius: 50%;
- background: #aaa;
- }
- .footerBtn{
- display: flex;
- flex-direction: column;
- }
- .footerBtn image{
- width: 48rpx;
- height: 48rpx;
- }
|