1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>“十四五”普通高等教育本科国家级规划教材申报系统</title>
- <base href="/">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="icon" type="image/x-icon" href="favicon.ico">
- <link href="https://fonts.loli.net/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
- <link href="https://fonts.loli.net/icon?family=Material+Icons" rel="stylesheet">
- <!-- Authing -->
- <script type="text/javascript" src="https://cdn.authing.co/packages/guard/latest/guard.min.js"></script>
- <link rel="stylesheet" href="https://cdn.authing.co/packages/guard/latest/guard.min.css" />
- </head>
- <style>
- *{
- font-family: PingFang SC;
- }
- *::-webkit-scrollbar {
- width: 5px;
- height: 5px;
- }
- *::-webkit-scrollbar-thumb {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 5px #f4cbcd;
- background: #f4cbcd;
- /* -webkit-box-shadow: inset 0 0 5px #e6e6e6;
- background: #e6e6e6; */
- }
- *::-webkit-scrollbar-track {
- border-radius: 10px;
- /* -webkit-box-shadow: inset 0 0 5px #f4cbcd;
- background: #f5f5f5; */
- -webkit-box-shadow: inset 0 0 5px #ffffff00;
- background: #ffffff00;
- }
- </style>
- <body class="mat-typography">
- <app-root></app-root>
- </body>
- </html>
|