| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- page {
- width: 100%;
- height: 100%;
- background-color: #e7e7e7;
- }
- .box {
- width: 100%;
- height: 25vh;
- background-color: #FFFFFF;
- margin: 1.5vh 0;
- }
- .title,
- .author {
- width: 94%;
- margin-left: 3%;
- height: 30%;
- font-size: 30rpx;
- }
- .shang {
- font-size: 30rpx;
- width: 94%;
- margin-left: 3%;
- height: 40%;
- }
- .shang,
- .title,
- .author {
- display: flex;
- align-items: center;
- flex-direction: row;
- }
- .bottom {
- width: 100%;
- height: 64vh;
- background-color: #FFFFFF;
- }
- #text {
- width: 94%;
- margin-left: 3%;
- }
- .input {
- position: relative;
- width: 90rpx;
- height: 90rpx;
- border: 1rpx #ccad52 solid;
- font-size: 100rpx;
- }
- .haha {
- color: #ccad52;
- display: block;
- position: absolute;
- top: -30%;
- left: 50%;
- transform: translateX(-50%);
- }
|