@media (orientation: landscape){
    body{-webkit-text-size-adjust:100%;}
}
body{
    color: #333;
    margin: 0 0 20px;
    padding: 0 10px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 22px;
    text-align: justify;
}
strong{
    font-family: "Google Sans", "Product Sans", Helvetica, Arial, sans-serif;
}
#container{max-width: 1400px; margin: 0 auto;}
p{
    margin: 10px 0;
}
a{
    color: #025feb;
}
.logo-box{
    width: 100%;
    height: 30px;
    padding: 20px 0 10px;
}
.logo{
    width: 150px;
    height: 30px;
    position: fixed;
    left: 10px; top: 16px;
}
.logo span{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 0;
    height: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    opacity: 0;
}
.logo img{
    display: block;
    height: 100%;
    -webkit-transition: width 0.3s ease, height 0.3s ease;
    -moz--webkit-transition: width 0.3s ease, height 0.3s ease;
    -ms--webkit-transition: width 0.3s ease, height 0.3s ease;
    transition: width 0.3s ease, height 0.3s ease;
}
.logo.on{
    position: fixed;
    width: 100%;
    padding: 10px 0;
    height: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}
.logo.on img{
    padding: 0 10px;
    -webkit-transition: width 0.3s ease, height 0.3s ease;
    -moz--webkit-transition: width 0.3s ease, height 0.3s ease;
    -ms--webkit-transition: width 0.3s ease, height 0.3s ease;
    transition: width 0.3s ease, height 0.3s ease;
}
.logo.top span{
    padding: 0 10px;
    margin-left: 120px;
    opacity: 1;
    width: auto;
    height: auto;
    border-left: 1px solid #dedede;
}
.logo.top img{
    position: absolute;
    top: 10px;
    left: 0;
    width: 100px;
    height: 20px;
    transition: none;
}
.page-title{
    font-size: 20px;
    margin-top: 20px;
	padding-bottom: 5px;
}
.update-time{
    color: #B0B2BC;
}
.page-border{
    border: 1px solid #CECECE;
    padding: 0 16px;
    border-radius: 4px;
}
table{
    table-layout: fixed;
    word-wrap: break-word;
    border-collapse: collapse;
    border: none;
    border:1px solid #e0e0e0;
    margin-bottom: 10px;
}
table tr{
    border:1px solid #e0e0e0;
}
table td{
    padding: 0 5px;
    border:1px solid #e0e0e0;
    text-align:start;
    vertical-align: top;
}
table td.xl65 {
    vertical-align: middle;
    text-align: center;
}

h1 {  
    color: #2c3e50;  
    border-bottom: 3px solid #3498db;  
    padding-bottom: 15px;  
    margin-top: 30px;  
}  
h2 {  
    color: #34495e;  
    margin-top: 40px;  
    border-bottom: 1px solid #eee;  
    padding-bottom: 10px;  
    text-align: left;
}  
h3 {  
    color: #4a5568;  
    margin-top: 25px;  
    text-align: left;
}  
.warning {  
    background-color: #fff8dc;  
    padding: 15px;  
    border-left: 5px solid #ffd700;  
    margin: 20px 0;  
}  
.last-modified {  
    color: #7f8c8d;  
    font-style: italic;  
    margin-bottom: 30px;  
}  
.toc {  
    background: #f8f9fa;  
    padding: 20px 30px;  
    border-radius: 8px;  
    margin: 30px 0;  
    text-align: left;
}  
.toc h2 {  
    margin-top: 0;  
    border: none;  
}  
.toc ul {  
    padding-left: 20px;  
    margin-bottom: 0;  
}  
.toc li {  
    margin-bottom: 8px;  
}  
a {  
    color: #2980b9;  
    text-decoration: none;  
}  
a:hover {  
    text-decoration: underline;  
    color: #3498db;  
}  
p {  
    margin: 15px 0;  
}  
ul, ol {  
    margin: 15px 0;  
    padding-left: 30px;  
}  
li {  
    margin-bottom: 10px;  
}  
address {  
    font-style: normal;  
    margin: 20px 0;  
    padding: 15px;  
    background: #f8f9fa;  
    border-radius: 5px;  
    line-height: 1.8;  
}  
section {  
    margin-bottom: 40px;  
}  
@media (max-width: 768px) {  
    body {  
        padding: 15px;  
    }  
    .toc {  
        padding: 15px;  
    }  
}  

.back-to-toc, .back-to-toc:visited {  
    padding: 0px 10px;  
    background-color: #f0f0f0;  
    color: #333;  
    text-decoration: none;  
    border-radius: 4px;  
    font-size: 10px;
    font-weight: bold;    
    transition: all 0.3s ease;  
    float: right;
  }  
  
  .back-to-toc:hover {  
    background-color: #e0e0e0;   
  }  

  .table {
    width: 100%; 
    height: 650px; 
    overflow: scroll;
  }

  .table table {
    width: 100%; 
    min-width: 800px;
    border-collapse:
    collapse;
    table-layout:fixed;
  }

/* 深色模式自动适配 */
@media (prefers-color-scheme: dark) {
  body {
    background: #181818;
    color: #e0e0e0;
  }
  .logo.on {
    background: #222;
  }
  .page-title, h1, h2, h3 {
    color: #e0e0e0;
    border-bottom-color: #444;
  }
  .update-time, .last-modified {
    color: #888;
  }
  .page-border {
    border-color: #444;
  }
  table, table tr, table td {
    border-color: #444;
    background: #222;
    color: #e0e0e0;
  }
  .warning {
    background-color: #332a00;
    border-left-color: #ffd700;
    color: #ffe082;
  }
  .toc, address {
    background: #232323;
    color: #e0e0e0;
  }
  a {
    color: #8ab4f8;
  }
  a:hover {
    color: #a3d3ff;
  }
}