info.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. .full-screen {
  2. height: 100vh;
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. }
  7. .about-container {
  8. background: linear-gradient(to top left, #5c907e, #2e4638);
  9. }
  10. .app-container {
  11. background: linear-gradient(to bottom right, pink, #ff4081);
  12. padding: 10px;
  13. display: flex;
  14. }
  15. .contact-container {
  16. background: linear-gradient(to top left, #054879, #14161a);
  17. padding-left: 60px;
  18. display: flex;
  19. justify-content: start;
  20. align-items: center;
  21. }
  22. .section-title {
  23. padding: 20px;
  24. font-size: 56px;
  25. font-weight: 900;
  26. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
  27. }
  28. .company-info {
  29. padding-bottom: 10px;
  30. width: 80%;
  31. }
  32. .about-content {
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: center;
  36. align-items: center;
  37. max-width: 90%;
  38. }
  39. .contact-content {
  40. display: flex;
  41. color: white;
  42. flex-direction: column;
  43. justify-content: start;
  44. align-items: start;
  45. max-width: 90%;
  46. }
  47. .contact-content a {
  48. text-decoration: none;
  49. font-size: 20px;
  50. color: #e864ff;
  51. padding: 20px;
  52. }
  53. .contact-content a:hover {
  54. color: white;
  55. }
  56. .left {
  57. padding: 40px;
  58. max-width: 800px;
  59. }
  60. .right {
  61. padding: 10px;
  62. display: flex;
  63. justify-content: center;
  64. }
  65. .app-name {
  66. font-size: 56px;
  67. font-weight: 900;
  68. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  69. margin-top: 20px;
  70. margin-bottom: 20px;
  71. }
  72. .app-description {
  73. font-size: 18px;
  74. margin-bottom: 40px;
  75. }
  76. .app-icon {
  77. width: 150px;
  78. border: 3px solid #eeeeee;
  79. border-radius: 8px;
  80. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  81. }
  82. .app-download-btn {
  83. background-color: black;
  84. display: inline-block;
  85. border-radius: 8px;
  86. margin-right: 20px;
  87. margin-bottom: 10px;
  88. }
  89. .app-download-btn img {
  90. width: 150px;
  91. height: 40px;
  92. cursor: pointer;
  93. }
  94. .app-download-btn:hover {
  95. border: 1px solid #ff4081;
  96. }
  97. /* 媒体查询:当屏幕宽度小于768px时,改为上下排布 */
  98. @media (max-width: 768px) {
  99. .left {
  100. padding: 10px;
  101. }
  102. .contact-container {
  103. padding-left: 20px;
  104. }
  105. .right {
  106. display: none;
  107. }
  108. .company-info {
  109. width: 100%;
  110. }
  111. .app-name {
  112. font-size: 48px;
  113. }
  114. .section-title {
  115. font-size: 48px;
  116. }
  117. }
  118. .slideshow-container {
  119. position: relative;
  120. max-width: 1000px;
  121. margin: auto;
  122. }
  123. .mySlides {
  124. display: none;
  125. }
  126. .fade {
  127. animation-name: fade;
  128. animation-duration: 2.5s;
  129. }
  130. @keyframes fade {
  131. from {opacity: .1}
  132. to {opacity: 1}
  133. }