1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>自定义起始页</title>
- <style>
- body {
- margin: 0;
- padding: 0;
- background-image: url('https://bing.img.run/uhd.php');
- background-size: cover;
- background-repeat: no-repeat;
- background-attachment: fixed;
- font-family: Arial, sans-serif;
- }
- .header {
- background-color: rgba(255, 255, 255, 0.8);
- padding: 10px 20px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- }
- .logo {
- width: auto;
- height: auto;
- }
- .nav-item {
- margin-left: 20px;
- color: #333;
- text-decoration: none;
- font-size: 16px;
- }
- .search-container {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 50px;
- }
- .search-input {
- width: 60%;
- padding: 10px;
- font-size: 16px;
- }
- .search-button {
- padding: 10px 20px;
- font-size: 16px;
- cursor: pointer;
- }
- </style>
- </head>
- <body>
- <div class="header">
- <img src="https://www.lykns.com.cn/wp-content/uploads/2025/01/pinwheel_48px.png" alt="Logo" class="logo">
- <div>
- <a href="https://www.lykns.com.cn" class="nav-item">LYKNS 主站</a>
- <a href="https://its.lykns.com.cn" class="nav-item">云服务</a>
- <a href="https://dev.lykns.com.cn" class="nav-item">Git 服务</a>
- <a href="https://survey.lykns.com.cn" class="nav-item">问卷考试系统</a>
- </div>
- </div>
- <div class="search-container">
- <input type="text" id="search-input" class="search-input" placeholder="搜索...">
- <button onclick="search()" class="search-button">搜索</button>
- </div>
- <script>
- function search() {
- var query = document.getElementById('search-input').value;
- window.location.href = 'https://cn.bing.com/search?q=' + encodeURIComponent(query);
- }
- </script>
- </body>
- </html>
|