@charset "utf-8";
/* CSS Document */

#doc {
    position: fixed;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    color: whitesmoke;
    font-weight: lighter;
    height: 100%;
    width: 100%;
    padding-bottom: 100px;
    background: black;
    overflow: auto;
}

#title-box {
    position: fixed;
    width: 80%;
    height: 200px;
    left: 10%;
    padding: 0 2em;
    background: black;
    border-bottom: 1px solid #C4A886;
}
#title-box h1 {
    position: absolute;
    bottom: 0;
    padding-bottom: 1em;
    color: #C4A886;
    font-size: 1.5em;
}

#doc-box {
    width: 80%;
    margin: 200px auto 0 auto;
    padding: 0 2em;
}
.content {
    padding: 2em 1em 3em 1em;
    border-bottom: 1px dotted rgba(255, 255, 255, .2);
}
.content h2 {
    padding-bottom: .8em;
    font-size: 1.1em;
}
.content h2 span {
    color: #C4A886;
    font-size: .9em;
}
.content p {font-size: .9em;}
.content p a {
    color: #C4A886;
    font-weight: bold;
}
.content p a:hover {
    color: whitesmoke;
    text-decoration: underline;
}
.nobord {border-bottom: none;}


/*自适应性*/
@media (max-width: 1280px) {
    #doc {padding-bottom: 70px;}
    #title-box {height: 140px;}
    #doc-box {margin: 140px auto 0 auto;}
}

@media (max-width: 580px) {
    #title-box {
        width: 90%;
        left: 5%;
    }
    #doc-box {width: 96%;}
}