main.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. <!DOCTYPE html>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>患者随访系统 - 智慧医疗管理平台</title>
  7. <link rel="shortcut icon" href="favicon.ico">
  8. <link href="../static/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
  9. <link href="../static/css/font-awesome.min.css" th:href="@{/css/font-awesome.min.css}" rel="stylesheet"/>
  10. <link href="../static/css/style.min.css" th:href="@{/css/style.min.css}" rel="stylesheet"/>
  11. <style>
  12. body {
  13. background: linear-gradient(135deg, #0c1445 0%, #1a2980 50%, #26d0ce 100%);
  14. min-height: 100vh;
  15. font-family: 'Microsoft YaHei', Arial, sans-serif;
  16. overflow-x: hidden;
  17. }
  18. .hero-section {
  19. position: relative;
  20. height: 100vh;
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. background: radial-gradient(ellipse at center, rgba(26, 41, 128, 0.8) 0%, rgba(12, 20, 69, 0.9) 100%);
  25. }
  26. .hero-content {
  27. text-align: center;
  28. color: white;
  29. z-index: 2;
  30. position: relative;
  31. }
  32. .hero-title {
  33. font-size: 4rem;
  34. font-weight: 300;
  35. margin-bottom: 1rem;
  36. text-shadow: 0 0 20px rgba(38, 208, 206, 0.5);
  37. animation: glow 2s ease-in-out infinite alternate;
  38. }
  39. .hero-subtitle {
  40. font-size: 1.9rem;
  41. margin-bottom: 2rem;
  42. opacity: 0.9;
  43. font-weight: 300;
  44. }
  45. .hero-description {
  46. font-size: 1.8rem;
  47. max-width: 600px;
  48. margin: 0 auto 3rem;
  49. line-height: 1.6;
  50. opacity: 0.8;
  51. }
  52. @keyframes glow {
  53. from { text-shadow: 0 0 20px rgba(38, 208, 206, 0.5); }
  54. to { text-shadow: 0 0 30px rgba(38, 208, 206, 0.8), 0 0 40px rgba(38, 208, 206, 0.3); }
  55. }
  56. .feature-cards {
  57. position: absolute;
  58. bottom: 10%;
  59. left: 50%;
  60. transform: translateX(-50%);
  61. display: flex;
  62. gap: 2rem;
  63. flex-wrap: wrap;
  64. justify-content: center;
  65. }
  66. .feature-card {
  67. background: rgba(255, 255, 255, 0.1);
  68. backdrop-filter: blur(10px);
  69. border: 1px solid rgba(255, 255, 255, 0.2);
  70. border-radius: 15px;
  71. padding: 1.5rem;
  72. width: 220px;
  73. text-align: center;
  74. color: white;
  75. transition: all 0.3s ease;
  76. cursor: pointer;
  77. }
  78. .feature-card:hover {
  79. transform: translateY(-10px);
  80. background: rgba(255, 255, 255, 0.2);
  81. box-shadow: 0 10px 30px rgba(38, 208, 206, 0.3);
  82. }
  83. .feature-icon {
  84. font-size: 2.5rem;
  85. margin-bottom: 1rem;
  86. color: #26d0ce;
  87. }
  88. .feature-title {
  89. font-size: 1.9rem;
  90. font-weight: 600;
  91. margin-bottom: 0.5rem;
  92. }
  93. .feature-desc {
  94. font-size: 1.5rem;
  95. opacity: 0.8;
  96. line-height: 1.4;
  97. }
  98. .floating-elements {
  99. position: absolute;
  100. top: 0;
  101. left: 0;
  102. width: 100%;
  103. height: 100%;
  104. overflow: hidden;
  105. z-index: 1;
  106. }
  107. .floating-element {
  108. position: absolute;
  109. background: rgba(38, 208, 206, 0.1);
  110. border-radius: 50%;
  111. animation: float 6s ease-in-out infinite;
  112. }
  113. .floating-element:nth-child(1) {
  114. width: 80px;
  115. height: 80px;
  116. top: 20%;
  117. left: 10%;
  118. animation-delay: 0s;
  119. }
  120. .floating-element:nth-child(2) {
  121. width: 120px;
  122. height: 120px;
  123. top: 60%;
  124. right: 15%;
  125. animation-delay: 2s;
  126. }
  127. .floating-element:nth-child(3) {
  128. width: 60px;
  129. height: 60px;
  130. top: 80%;
  131. left: 20%;
  132. animation-delay: 4s;
  133. }
  134. .floating-element:nth-child(4) {
  135. width: 100px;
  136. height: 100px;
  137. top: 30%;
  138. right: 30%;
  139. animation-delay: 1s;
  140. }
  141. @keyframes float {
  142. 0%, 100% { transform: translateY(0px) rotate(0deg); }
  143. 50% { transform: translateY(-20px) rotate(180deg); }
  144. }
  145. .tech-stack {
  146. position: absolute;
  147. top: 20px;
  148. right: 20px;
  149. background: rgba(0, 0, 0, 0.3);
  150. backdrop-filter: blur(10px);
  151. border-radius: 10px;
  152. padding: 1rem;
  153. color: white;
  154. font-size: 0.9rem;
  155. max-width: 250px;
  156. }
  157. .tech-stack h5 {
  158. color: #26d0ce;
  159. margin-bottom: 0.5rem;
  160. font-size: 1rem;
  161. }
  162. .tech-item {
  163. margin-bottom: 0.3rem;
  164. opacity: 0.8;
  165. }
  166. .system-logo {
  167. position: absolute;
  168. top: 20px;
  169. left: 20px;
  170. color: white;
  171. font-size: 3rem;
  172. font-weight: 600;
  173. }
  174. .system-logo i {
  175. color: #26d0ce;
  176. margin-right: 0.5rem;
  177. }
  178. @media (max-width: 768px) {
  179. .hero-title { font-size: 2.5rem; }
  180. .hero-subtitle { font-size: 1.5rem; }
  181. .feature-cards {
  182. flex-direction: column;
  183. align-items: center;
  184. gap: 1rem;
  185. }
  186. .feature-card { width: 280px; }
  187. .tech-stack { display: none; }
  188. }
  189. </style>
  190. </head>
  191. <body>
  192. <div class="hero-section">
  193. <!-- 系统Logo -->
  194. <div class="system-logo">
  195. <i class="fa fa-heartbeat"></i>
  196. 患者管理平台
  197. </div>
  198. <!-- 技术栈信息 -->
  199. <div class="tech-stack">
  200. <h5><i class="fa fa-cogs"></i> 技术架构</h5>
  201. <div class="tech-item">• Spring Boot 核心框架</div>
  202. <div class="tech-item">• Apache Shiro 安全框架</div>
  203. <div class="tech-item">• Thymeleaf 模板引擎</div>
  204. <div class="tech-item">• MyBatis 持久层</div>
  205. <div class="tech-item">• Quartz 定时任务</div>
  206. <div class="tech-item">• Druid 连接池</div>
  207. </div>
  208. <!-- 浮动装饰元素 -->
  209. <div class="floating-elements">
  210. <div class="floating-element"></div>
  211. <div class="floating-element"></div>
  212. <div class="floating-element"></div>
  213. <div class="floating-element"></div>
  214. </div>
  215. <!-- 主要内容 -->
  216. <div class="hero-content">
  217. <h1 class="hero-title">患者随访系统</h1>
  218. <p class="hero-subtitle">智慧医疗管理平台</p>
  219. <p class="hero-description">
  220. 专业的医疗处方管理和患者随访平台,集成处方登记管理、患者档案管理、
  221. 随访任务管理和数据分析报表于一体,为医疗机构提供全方位的智能化解决方案
  222. </p>
  223. </div>
  224. <!-- 功能特色卡片 -->
  225. <div class="feature-cards">
  226. <div class="feature-card">
  227. <div class="feature-icon">
  228. <i class="fa fa-file-text-o"></i>
  229. </div>
  230. <div class="feature-title">处方管理</div>
  231. <div class="feature-desc">规范化处方登记与审核管理</div>
  232. </div>
  233. <div class="feature-card">
  234. <div class="feature-icon">
  235. <i class="fa fa-users"></i>
  236. </div>
  237. <div class="feature-title">患者档案</div>
  238. <div class="feature-desc">完整的患者信息与购药记录</div>
  239. </div>
  240. <div class="feature-card">
  241. <div class="feature-icon">
  242. <i class="fa fa-calendar-check-o"></i>
  243. </div>
  244. <div class="feature-title">随访任务</div>
  245. <div class="feature-desc">智能化随访计划与任务管理</div>
  246. </div>
  247. <div class="feature-card">
  248. <div class="feature-icon">
  249. <i class="fa fa-bar-chart"></i>
  250. </div>
  251. <div class="feature-title">数据分析</div>
  252. <div class="feature-desc">多维度业务数据分析报表</div>
  253. </div>
  254. </div>
  255. </div>
  256. <script th:src="@{/js/jquery.min.js}"></script>
  257. <script th:src="@{/js/bootstrap.min.js}"></script>
  258. <script th:src="@{/ajax/libs/layer/layer.min.js}"></script>
  259. <script type="text/javascript">
  260. // 功能卡片点击效果
  261. $('.feature-card').click(function(){
  262. $(this).addClass('animate__pulse');
  263. setTimeout(() => {
  264. $(this).removeClass('animate__pulse');
  265. }, 600);
  266. });
  267. // 添加页面加载动画
  268. $(document).ready(function(){
  269. $('.hero-content').hide().fadeIn(1500);
  270. $('.feature-cards').hide().delay(800).fadeIn(1000);
  271. });
  272. </script>
  273. </body>
  274. </html>