noticeDetail.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. @import url('./common.css');
  2. main {
  3. width: 100%;
  4. background-color: #F7F7F7;
  5. padding-bottom: 90px;
  6. margin-top: 110px;
  7. }
  8. .title {
  9. color: #666;
  10. margin-bottom: 26px;
  11. padding-top: 26px;
  12. }
  13. .info {
  14. width: 100%;
  15. background-color: #fff;
  16. padding: 50px 100px;
  17. }
  18. .info .notice_title {
  19. font-size: 30px;
  20. }
  21. .info .notice_author {
  22. display: flex;
  23. align-items: center;
  24. justify-content: center;
  25. font-size: 16px;
  26. color: #666;
  27. margin-top: 24px;
  28. margin-bottom: 55px;
  29. }
  30. .info .notice_author p {
  31. margin-right: 20px;
  32. }
  33. .notice_info p{
  34. margin-bottom: 16px;
  35. font-size: 16px;
  36. }
  37. .notice_info p:last-child{
  38. margin-bottom: 0;
  39. }
  40. .notice_info p img{
  41. width: 100%;
  42. }
  43. .back {
  44. text-align: center;
  45. margin-top: 20px;
  46. }
  47. .back button {
  48. width: 120px;
  49. height: 40px;
  50. line-height: 40px;
  51. text-align: center;
  52. margin: 0 auto;
  53. background-color: #fff;
  54. border: 1px solid #D4AA68;
  55. cursor: pointer;
  56. color: #D4AA68;
  57. font-size: 18px;
  58. }