123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>诊断指南</title>
- <style>
- *{
- margin: 0;
- padding: 0;
- }
- ul,li{
- list-style: none;
- }
- table{
- border-collapse: collapse;
- border-spacing: 0;
- }
- body{
- font-size: 12px;
- overflow-y: scroll;
- font-family: '微软雅黑', '宋体';
- background: #dde2ea;
- height: 100%;
- color: #33475f;
- }
- h1{
- margin-bottom: 50px;
- }
- h2{
- font-size: 18px;
- position: absolute;
- top: -12px;
- background: #fff;
- padding-right: 6px;
- }
- .content{
- position: relative;
- height: 550px;
- }
- .infos{
- height: 100%;
- overflow-y: auto;
- overflow-x: hidden;
- }
- .infos>div{
- margin-right: 210px;
- }
- .title{
- position: relative;
- height:24px;
- margin: 34px 0 10px;
- }
- .line{
- border-bottom: 1px dashed #ccc;
- }
- .container{
- width: 76%;
- overflow: hidden;
- background: #fff;
- margin: 0 auto;
- padding: 30px 24px;
- }
- .anchors{
- width: 160px;
- position: absolute;
- right: 15px;
- top: 0;
- margin-right: 14px;
- overflow: auto;
- }
- .anchors ul{
- padding: 15px 18px;
- border-radius: 4px;
- border: 1px solid #eee;
- background-color: #eee;
- }
- .anchors li{
- position: relative;
- height: 20px;
- }
- .anchors .anchor-line{
- height: 15px;
- width: 0;
- border: 1px solid #ccc;
- background-color: #ccc;
- margin-left: 4px;
- }
- .anchors .anchor-line:last-child{
- display: none;
- }
- .anchors i{
- display: inline-block;
- width: 8px;
- height: 8px;
- border-radius: 5px;
- border: 1px solid #ccc;
- margin-top: 5px;
- background-color: #eee;
- margin-right: 10px;
- }
- .anchors a{
- position: absolute;
- top: 0;
- left: 0;
- width: calc(100% - 20px);
- padding-left: 20px;
- text-decoration: none;
- font-size: 13px;
- font-weight: 400;
- color: #000;
- word-wrap: break-word;
- }
- .anchors .active a{
- color: #0089be!important;
- font-weight: 700!important;
- }
- .anchors .active i{
- background: #0089be;
- }
- a:visited{
- color:#33475f
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h1></h1>
- <div class="content">
- <div class="infos"></div>
- <div class="anchors">
- <ul></ul>
- </div>
- </div>
- </div>
- <script src="./hisLib/jquery-1.9.1.min.js"></script>
- <script src="./hisLib/infomation.js"></script>
- </body>
- </html>
|