123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <!DOCTYPE html>
- <html lang="ch-zh">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
- <link rel="stylesheet" href="./css/reset.css">
- <link rel="stylesheet" href="./css/main.css">
- <title>-</title>
- </head>
- <style>
- .myTitle {
- letter-spacing: 4px;
- margin: 0 auto;
- color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 315px;
- height: 55px;
- background: url('./img/titleBac.png') no-repeat center;
- background-size: 100% 100%;
- font-size: 26px;
- }
- .containers {
- padding-top: 40px;
- width: 100%;
- height: 100%;
- /* max-width: 1080px; */
- /* height: 100vh; */
- background-color: #285b5e;
- padding-bottom: 10px;
- padding-right: 10px;
- box-sizing: border-box;
- }
- .pageBox {
- position: fixed;
- z-index: 99;
- right: 20px;
- top: 10px;
- display: flex;
- }
- .pageBox>div {
- width: 24px;
- height: 24px;
- background-color: #fff;
- cursor: pointer;
- margin-left: 15px;
- line-height: 24px;
- text-align: center;
- border-radius: 5px;
- border: 1px solid #ccc;
- }
- .pageBox>div:hover {
- background-color: #285b5e;
- color: #fff;
- }
- .pageBox .active {
- pointer-events: none;
- background-color: #285b5e;
- color: #fff;
- }
- .Logo {
- width: 200px;
- /* height: 100px; */
- position: absolute;
- right: 0px;
- top: 0px;
- z-index: 10;
- }
- .support-box {
- color: white;
- text-align: right;
- font-size: 12px;
- /* margin-bottom: 10px; */
- display: flex;
- align-items: center;
- justify-content: end;
- }
- .support-box>img {
- width: 20px;
- height: 20px;
- margin: 0 2px;
- }
- </style>
- <body>
- <div class="containers">
- <!-- <img class="Logo" src="./img/logo.jpg" alt=""> -->
- <div class="myTitle"></div>
- <ul class="con"> </ul>
- <div class="support-box">
- 技术支持:
- <img src="./img/support.png" alt="">
- 粤泓山脉(广东)科技有限公司
- </div>
- <!-- 分页指示器 -->
- <!-- <div class="pageBox">
- <div class="active">1</div>
- <div>2</div>
- <div>3</div>
- </div> -->
- </div>
- <script src="./info.js"></script>
- <script src="js/jquery.js"></script>
- <script src="js/ui.js"></script>
- <script>
- document.title = titleInfo
- $('.myTitle').text(titleInfo)
- </script>
- </body>
- </html>
|