| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- .page {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .card {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 700rpx;
- margin: 50rpx 0rpx;
- padding-bottom: 20rpx;
- background-color: #ffffff;
- border-radius: 28rpx;
- box-shadow: 5rpx 5rpx 8rpx 0rpx rgba(0, 0, 0, 0.16);
- }
- .card1 {
- margin-top: 20rpx;
- }
- .avatar-name {
- display: flex;
- align-items: center;
- }
- .publisher-avatar {
- width: 50rpx;
- height: 50rpx;
- border-radius: 25rpx;
- margin-left: 10rpx;
- z-index: 1;
- border-color: #9E9E9E;
- border-style: solid;
- border-width: 2rpx;
- background-color: #ffffff;
- }
- .profile {
- display: flex;
- justify-content: space-between;
- position: relative;
- top: -20rpx;
- margin-right: 10rpx;
- }
- .publisher-name {
- font-size: 24rpx;
- background-color: #ffffff;
- padding: 5rpx 20rpx 5rpx 30rpx;
- margin-left: -20rpx;
- border-radius: 20rpx;
- box-shadow: 5rpx 5rpx 8rpx 0rpx rgba(0, 0, 0, 0.16);
- }
- .time {
- margin-left: 10rpx;
- font-size: 20rpx;
- }
- .message-attribute {
- font-size: 24rpx;
- align-self: center;
- padding-top: 5rpx;
- padding-bottom: 5rpx;
- padding-right: 20rpx;
- padding-left: 20rpx;
- border-radius: 28rpx;
- box-shadow: 5rpx 5rpx 8rpx 0rpx rgba(0, 0, 0, 0.16);
- }
- .title {
- font-size: 28rpx;
- }
- .title2 {
- font-size: 32rpx;
- }
- .title-time {
- margin-left: 50rpx;
- margin-right: 30rpx;
- margin-bottom: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: flex-end;
- }
- .bottom-line {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin: 10rpx 10rpx 30rpx 10rpx;
- }
- .message-poster {
- height: 330rpx;
- width: 700rpx;
- border-radius: 20rpx 20rpx 0rpx 0rpx;
- }
- .message-block {
- width: 650rpx;
- padding-bottom: 100rpx;
- }
- .like {
- height: 50rpx;
- width: 50rpx;
- }
- .question {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 80rpx;
- padding-left: 20rpx;
- padding-right: 20rpx;
- position: fixed;
- bottom: 0rpx;
- left: 0rpx;
- right: 0rpx;
- }
- .question-inside {
- border-radius: 20rpx;
- background: #dadada;
- }
- .question-input {
- font-size: 35rpx;
- }
- .question-button {
- height: 80rpx;
- width: 100rpx;
- line-height: 80rpx;
- font-size: 30rpx;
- text-align: center;
- }
- .text {
- font-size: 24rpx;
- margin-left: 50rpx;
- margin-bottom: 20rpx;
- margin-right: 20rpx;
- }
- .line {
- height: 2rpx;
- margin: 10rpx 20rpx 20rpx 20rpx;
- }
- .btn-icon {
- height: 30rpx;
- width: 30rpx;
- margin-right: 10rpx;
- }
- .btn {
- display: flex;
- font-size: 24rpx;
- padding: 5rpx 20rpx;
- border-radius: 28rpx;
- box-shadow: 5rpx 5rpx 8rpx 0rpx rgba(0, 0, 0, 0.16);
- margin-right: 20rpx;
- }
- .bottom {
- display: flex;
- width: 100%;
- justify-content: flex-end;
- }
|