| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .message_details {
- margin: auto;
- }
- .message_details .title {
- width: 100%;
- text-align: center;
- font-size: 36rpx;
- font-weight: bold;
- padding: 20rpx;
- background-color: #fff;
- }
- .message_details .header {
- display: flex;
- width: 100%;
- background-color: #fff;
- padding: 30rpx;
- margin-bottom: 20rpx;
- }
- .message_details .header .from {
- font-size: 26rpx;
- color: gray;
- width: 50%;
- text-align: left;
- }
- .message_details .header .date {
- font-size: 26rpx;
- color: gray;
- width: 50%;
- text-align: right;
- }
- .message_details .content {
- font-size: 32rpx;
- background-color: #fff;
- padding: 30rpx;
- }
- .message_details .bottom {
- position: fixed;
- bottom: 30rpx;
- text-align: center;
- width: 100%;
- }
- .message_details .bottom button {
- width: 90%;
- background-color: red;
- border-radius: 20rpx;
- color: #fff;
- height: 80rpx;
- line-height: 80rpx;
- margin: auto;
- }
- .fixed {
- bottom: 70rpx !important;
- }
|