/* rgba(50, 100, 200, 0.1)/#EBEFF9;
rgba(50, 100, 200, 0.2)/#D8E0F3;
rgba(50, 100, 200, 0.3)/#C5D0EC;
rgba(50, 100, 200, 0.4)/#B2C1E6;
rgba(50, 100, 200, 0.5)/#9EB1E0;
rgba(50, 100, 200, 0.6)/#8BA1DA;
rgba(50, 100, 200, 0.7)/#7891D4;
rgba(50, 100, 200, 0.8)/#6582CE;
rgba(50, 100, 200, 0.9)/#5172C7; 
rgb(50, 100, 200)/#3E63C1;*/


/* ---------------------------------------------------------ALL-------------------------------------------- */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: break-all;
}

.h0 {
    color: rgb(50, 100, 200);
}

h1 {
    color: rgb(45, 90, 180);
    font-size: 1.3em;
    font-weight: bold;
    padding: 0 9px;
    background: linear-gradient(to right, #D8E0F3, #D8E0F3, #EBEFF9);
    margin: 29px 0 9px 0;
    border-left: 3px solid #3E63C1;
}

h2 {
    color: rgb(40, 80, 160);
    font-size: 1.2em;
    font-weight: bold;
    padding: 0 9px;
    background: linear-gradient(to right, #D8E0F3, #EBEFF9);
    margin: 29px 0 9px 0;
    border-left: 3px solid #3E63C1;
}

h3 {
    color: rgb(35, 70, 140);
    font-size: 1.1em;
    font-weight: bold;
    padding: 0 9px;
    background: linear-gradient(to right, #D8E0F3, #EBEFF9, #EBEFF9);
    margin: 29px 0 9px 0;
    border-left: 3px solid #3E63C1;
}

h4 {
    color: #3E63C1;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 0.8em;

}

h5 {
    color: rgb(50, 100, 200);
    font-size: 16px;
    font-weight: bold;
}



blockquote {
    border: 0.5px solid #C5D0EC;
    border-left: 4px solid #C5D0EC;
    /* 左侧边框 */
    padding: 15px;
    /* 内边距 */
    margin: 20px 0;
    /* 外边距 */
    color: rgb(40, 80, 160);
    /* 字体颜色 */
    line-height: 1.5;
    /* 行高 */
    font-weight: bolder;
    box-shadow: 2px 2px 5px rgba(10, 20, 40, 0.1);
    /* 阴影效果 */
}

blockquote p {
    margin: 0;
    /* 去掉段落的默认外边距 */
}

p {
    font-size: 1em;
}

a {
    text-decoration: none;
}

a:link,
a:visited {
    color: #3E63C1;
}

sub {
    font-size: 10px;
    color: red;
}




.h100 {
    height: 100%
}

.h50 {
    height: 50%
}


.w100 {
    width: 100%;
}

.g2 {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.g3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr
}

.s2 {
    grid-column: span 2;
    /* 让这个项目跨越两列 */
}

.s3 {
    grid-column: span 3;
    /* 让这个项目跨越两列 */
}

.cg20 {
    grid-column-gap: 20px
}

button,
.btn {
    background-color: #3E63C1;
    /*1*/
    border: none;
    border-radius: 5px;
    color: white;
    text-align: center;
    cursor: pointer;
}

button:hover,
.btn:hover {
    background-color: #6582CE;
    /*.8*/
}

button:active,
.btn:active {
    background-color: #5172C7;
    /*.9*/
}

/* ---------------------------------------------------------HEAD-------------------------------------------- */
header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    padding: 0 20px;
    height: 80px;
    width: 100%;
    background-color: #3E63C1;
}

#srchg {
    display: grid;
    grid-template-columns: 1fr 30px 30px 30px;
    grid-gap: 10px;
    margin-top: 10px;
}

#srchbox {
    width: 60%;
    height: 30px;
    border: 1px solid #F0f0F0;
    border-right: none;
    border-radius: 5px 0 0 5px;
    color: rgb(10, 20, 40);
    padding-left: 10px;
    float: left
}

#srchbox::placeholder {
    font-size: 12px;
    color: #C5D0EC;
}

#sotitle,
#socontent {
    width: 20%;
    height: 30px;
    border: 1px solid #F0f0F0;
    border-left: none;
    border-radius: 0;
    background: #5172C7;
    color: #FfF;
    cursor: auto;
    text-align: center;
    font-size: 16px;
    float: left
}

#sotitle {
    border-radius: 0 5px 5px 0;
}



#cir1,
#cir2,
#cir3 {
    width: 30px;
    height: 30px;
    border: 1px solid #F0f0F0;
    border-radius: 15px;
    background-color: #5172C7;
    cursor: pointer;
    text-align: center;
    color: #fff;
    z-index: 99;
}

#cir1:hover,
#cir2:hover,
#cir3:hover {
    background-color: #fff;
    color: #5172C7;
}



#nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 10px;
    grid-gap: 2px;
    height: 30px;
    /* position: relative;
    top: 0;
    left: 0 */
}

#nav>li {
    height: 30px;
    border: 1px solid #F0f0F0;
    border-bottom: none;
    background-color: #5172C7;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px 5px 0 0;
    cursor: pointer
}

#nav>li>a {
    width: 100%;
    line-height: 30px;
    font-size: 14px;
    color: #FfF;
    text-align: center
}

#nav>li:hover {
    background-color: #F0f0F0
}

#nav>li:hover>a {
    font-weight: bolder;
    font-size: 15px;
    color: rgb(40, 80, 160)
}



/* --------------------------------------------------------------BODY--------------------------------------------------------- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 14px;
    line-height: 2;
    color: rgb(10, 20, 40);
    height: calc(100vh - 100px);
    min-height: 600px;
    width: 100vw;
    min-width: 1200px;
}


/* --------------------------------------------------------------FOOT--------------------------------------------------------- */
footer {
    height: 20px;
    width: 100%;
}

#footer {
    height: 20px;
    width: 100vw;
    min-width: 1200px;
    background-color: #3E63C1;
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    bottom: 0;
    padding: 0 20px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}


#footer>* {
    display: grid;
    align-items: center;
}

#footer a:link,
#footer a:visited {
    color: #fff;
}

#footer>*:first-child {
    grid-template-columns: 20px 1fr;
}

#footer>*:nth-child(2) {
    grid-template-columns: 1fr;
    justify-items: center;
    justify-content: center;
}

#footer>*:last-child {
    justify-items: end;
}


/*  */


/* ----------------------------------------------SY--------------------------------------------------- */

#Sy00 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 450px auto;
    grid-gap: 10px;
    padding: 10px 20px;
    min-height: 100%;
}

#Sy00>* {
    display: grid;
    grid-template-rows: 30px auto;
    border: 1px solid #9EB1E0;
    box-shadow: 1px 0 0 0 #e3e4e6;
    background-color: #EBEFF9;
    height: 100%;
    width: 100%;
}


#SyLb {
    max-height: 250px;
    grid-column: 1 / -1
}

#SyLlT,
#SyLrT {
    display: grid;
    grid-template-columns: repeat(6, 80px) 1fr;
    grid-gap: 1px
}


#SyLbT {
    display: grid;
    grid-template-columns: repeat(36, 1fr);
    grid-gap: 1px
}




#SyLlT>li,
#SyLrT>li,
#SyLbT>li {
    height: 30px;
    background-color: #3E63C1;
    border-right: 1px solid #FfF;
    color: #FfF;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center
}

#SyLlT>li:hover,
#SyLrT>li:hover,
#SyLbT>li:hover {
    color: #000033
}

#SyLbT>li {
    background-color: #FfF;
    border-right: 1px solid #9EB1E0;
    color: rgba(40, 80, 160, 0.6)
}

#SyLrT>li:last-child,
#SyLbT>li:last-child,
#SyLlT>li:last-child {
    border-right: none
}

#SyLrC {
    font-size: 12px;
}

#SyLb-s00 {
    grid-column: 1 / 3
}

#SyLb-s92 {
    grid-column: 34 / 36
}

#SyLlC,
#SyLrC,
#SyLbC {
    padding: 10px;
    width: 100%;
    overflow: scroll;
}

#SyLrC-sfjs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 180px;
    grid-column-gap: 20px;
    height: 100%
}

#SyLrC input,
#SyLrC select {
    width: 100%;
    height: 30px;
    padding-left: 5px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 5px
}

#tishi,
#tishi1,
#tishi2,
#tishi3 {
    grid-column: 1 / -1;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background-color: #FfF;
    font-size: 12px;
    line-height: 1.5;
    color: #999;
    resize: none;
    overflow: scroll
}

#SyLrC-sjjs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 50px 200px;
    grid-column-gap: 20px;
    height: 100%
}

#SyLrC-lxjs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 50px 150px;
    grid-column-gap: 20px;
    height: 100%
}

#SyLrC-fwzj {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 180px;
    grid-column-gap: 20px;
    height: 100%
}

#SyLbC>ul {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 5px;
    font-weight: bolder;
    list-style-type: none;
    color: #3E63C1;
    height: 100%;
}

#SyLlC>ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(13, 1fr);
    grid-gap: 1px;
    color: rgb(10, 20, 40);
    list-style-type: none;
    height: 100%;
}

#SyLlC a,
#SyLbC a {
    color: inherit
}

#SyLlC>ul>*,
#SyLbC>ul>* {
    height: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 5px;
}



#SyLbC>ul>* {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-gap: 2px;
}

#SyLlC>ul>li>img,
#SyLbC>ul>li>img {
    height: 28px;
    justify-self: center;
    opacity: 0.8
}

#SyLlC>ul>li>a,
#SyLbC>ul>li>a {
    width: 100%;
    height: 100%;
    line-height: 16px;
    font-size: 12px;
    display: flex;
    align-items: center
}


@media (max-width: 1200px) {

    #SyLlC>ul>li>a,
    #SyLbC>ul>li>a {
        font-size: 9px;
        /* 1200px * 1% = 12px */
    }
}

#SyLlC>ul>li:hover,
#SyLbC>ul>li:hover {
    border: 2px solid #3E63C1;
}

#SyLlC>ul>li:hover>img,
#SyLbC>ul>li:hover>img {
    opacity: 1
}

#SyLlC>ul>li:hover>a,
#SyLbC>ul>li:hover>a {
    color: #000033
}

/* ------------------------------------------ZL-------------------------------- */
#Zl00,
#Sz00 {
    display: grid;
    grid-template-columns: 1fr 250px;
    grid-gap: 10px;
    padding: 10px 20px;
    min-height: 100%;
    width: 100%;
}

#Zl00>*,
#Sz00>* {
    border: 1px solid #9EB1E0;
    box-shadow: 1px 0 0 0 #e3e4e6;
    background-color: #EBEFF9;
    /* height: 100%; */
    width: 100%;
}

#SzLlC {
    padding: 10px;
    width: 100%;
}


#ZlLlT {
    height: 30px;
    background-color: #3E63C1;
    color: #FfF;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    display: grid;
}

#ZlLrT {
    position: sticky;
    top: 0;
    height: 600px;
}

#ZlLrT>span {
    height: 30px;
    background-color: #3E63C1;
    color: #FfF;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: center;
    border-bottom: 1px solid #FfF;
}

#ZlLrT>ul {
    display: none;
    height: 450px;
    grid-gap: 5px;
    padding: 5px;
    overflow: scroll;
    align-content: start;
    list-style-type: none;
}

#ZlLrT>ul>li {
    border: 2px solid #9290;
    border-radius: 5px;
    padding: 0 5px;
    background-color: #D8E0F3;
    color: rgb(40, 80, 160);
    font-size: 14px;
    cursor: pointer;
    display: flex;
}

#ZlLrT>ul>li:hover {
    color: rgb(5, 10, 20);
    font-weight: bold;
    border: 2px solid #3E63C1
}


/* -----------------SZ------------ */
#SzLlC table {
    border-collapse: collapse;
    /* 合并边框 */
    width: 100%;
}

#SzLlC th,
#SzLlC td {
    border: 1px solid #3E63C1;
    padding: 5px;
}

#SzLlC th {
    background-color: #D8E0F3;
}

.highlight {
    background-color: yellow
}

.highlight-plus {
    border: 1px solid #7891D4;
    color: red;
    font-weight: bolder;
    font-size: 1.5em;
    border-radius: 5px
}

.tiao {
    color: rgb(50, 100, 200);
    font-weight: bold;
    cursor: copy;
    /* display: inline-block; */
    /* margin-top: 10px; */
}

.tocact {
    background-color: #D8E0F3;
    font-weight: bold;
    display: block
}

#SzLl a {
    display: inline
}

/* #SzLlC {
    font-size: 1em；
} */

#SzLrC {
    height: 100%
}

#SzLrC1 {
    /* border-bottom: 1px solid #EBEFF9; */
    position: sticky;
    top: 0;
    height: 30px;
    display: grid;
    grid-template-columns: 4fr 1fr 1fr;
    background-color: #3E63C1;
    padding: 2px;
    grid-gap: 2px
}


#SzLrC1 button,
#SzLrC2 button {
    border: 1px solid #FfF;
    background-color: #5172C7;
}

#SzLlT {
    display: grid;
    grid-template-columns: 80px 1fr 80px
}

#SzLlT>button {
    border-radius: 0;
}

#SzLlT0 {
    min-height: 30px;
    background-color: #3E63C1;
    color: #FfF;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-left: 1px solid #FfF;
    border-right: 1px solid #FfF
}

#SzLrT1,
#SzLrT2 {
    height: 30px;
    background-color: #3E63C1;
    color: #FfF;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0px;
    z-index: 9;
}

#SzLrT2 {
    z-index: 29;
}

#SzLrC2 {
    border-bottom: 1px solid #EBEFF9;
    position: sticky;
    top: 30px;
    height: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #3E63C1;
    padding: 2px;
    grid-gap: 2px;
    color: #FfF
}

#SzLrC3 {
    border-bottom: 1px solid #5172C7;
    padding: 10px;
    font-size: 14px
}

#SzLrC4 {
    position: sticky;
    top: 0px;
    /* max-height: calc(100vh - 150px); */
    /* overflow-y: auto; */
    padding: 10px;
    font-size: 14px
}

#infotoc {
    position: sticky;
    top: 60px;
    overflow-y: auto;
    max-height: calc(100vh - 90px);


}

#searchInput {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 5px;
    border-radius: 5px;
    border: 1px solid #9EB1E0
}

#searchInput:focus {
    background-color: yellow;
}