tougao.css 772 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. page {
  2. width: 100%;
  3. height: 100%;
  4. background-color: #e7e7e7;
  5. }
  6. .box {
  7. width: 100%;
  8. height: 25vh;
  9. background-color: #FFFFFF;
  10. margin: 1.5vh 0;
  11. }
  12. .title,
  13. .author {
  14. width: 94%;
  15. margin-left: 3%;
  16. height: 30%;
  17. font-size: 30rpx;
  18. }
  19. .shang {
  20. font-size: 30rpx;
  21. width: 94%;
  22. margin-left: 3%;
  23. height: 40%;
  24. }
  25. .shang,
  26. .title,
  27. .author {
  28. display: flex;
  29. align-items: center;
  30. flex-direction: row;
  31. }
  32. .bottom {
  33. width: 100%;
  34. height: 64vh;
  35. background-color: #FFFFFF;
  36. }
  37. #text {
  38. width: 94%;
  39. margin-left: 3%;
  40. }
  41. .input {
  42. position: relative;
  43. width: 90rpx;
  44. height: 90rpx;
  45. border: 1rpx #ccad52 solid;
  46. font-size: 100rpx;
  47. }
  48. .haha {
  49. color: #ccad52;
  50. display: block;
  51. position: absolute;
  52. top: -30%;
  53. left: 50%;
  54. transform: translateX(-50%);
  55. }