@charset "utf-8";
html, body {
    font-size: 10px;
}

body {
    font-family: "microsoft yahei";
}

body > * {
    font-size: 1.4rem;
}

.message_content {
    word-break: break-all;
    white-space: pre-wrap;
}

.btn-inline {
    margin: .2rem .5rem;
}

.icp_content {
    text-align: center;
    font-size: 1.6rem;
}

.icp_icon {
    width: 2rem;
    height: 2rem;
}

#scrollUp {
    position: fixed;
    z-index: 2147483647;
    display: block;
    background-color: #777;
    color: #eee;
    font-size: 40px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    bottom: 20px;
    right: 20px;
    overflow: hidden;
    width: 46px;
    height: 46px;
    border: none;
    opacity: .8;
}

#scrollUp:hover {
    background-color: #333
}

@media screen and (min-width: 992px) {
    #scrollUp {
        bottom: 100px
    }
}

.jumbotron {
    position: relative;
    padding: 4rem 0;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .4), 0 0 30px rgba(0, 0, 0, .075);
    -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
    box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
}

.jumbotron:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../image/bs-docs-masthead-pattern.png) repeat center center;
    opacity: .4;
}

.jumbotron_bg {
    color: #fff;
    background: #020031;
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0, #020031), color-stop(100%, #6d3353));
    background: -webkit-linear-gradient(45deg, #020031 0, #6d3353 100%);
    background: -o-linear-gradient(45deg, #020031 0, #6d3353 100%);
    background: linear-gradient(45deg, #020031 0, #6d3353 100%);
}

.intro-shelf {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #fff), linear-gradient(70deg, #dbedff 32%, #ebfff0);
}

.masthead {
    padding: 6rem 0 8rem;
    margin-bottom: 0;
}

.jumbotron h1 {
    font-size: 6rem;
    line-height: 1;
    letter-spacing: -0.2rem;
    font-weight: 700;
}

.jumbotron h2 {
    font-size: 1.8rem;
    font-weight: 200;
    line-height: 1.25;
}

.projects_header {
    height: 3rem;
}

.project_desc {
    display: block;
    min-height: 4rem;
}

.main_title:after {
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.container .main_title h1 {
    margin-bottom: 0.68rem;
}

.container .main_title_right {
    margin-bottom: 1rem;
}

@media screen and (min-width: 400px) {
    .container .main_title h1 {
        float: left;
        margin-bottom: 1.68rem;
    }

    .container .main_title_right {
        float: right;
        margin-top: 4rem;
    }
}

.link_item {
    margin: 2rem auto;
}

.link_item h3 {
    margin: 0;
    font-size: 2rem;
}

.link_item .link_href {
    margin: 3px auto;
    color: #006621;
    word-break: break-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link_item .link_desc {
    color: #545454;
}

.bc-sidebar > ul > li > a {
    display: block;
    margin: 0 0 -1px;
    padding: 8px 14px;
    border: 1px solid #e5e5e5;
}

.friend_links:after {
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.friend_links li {
    float: left;
    margin: 0 0 1rem 1rem;
}

/* loading */
.spinner {
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
body > .spinner { position: fixed; }

.spinner > div {
    width: 30px;
    height: 30px;
    margin: 0 10px 0;
    background-color: #b3d2ff;  /* dbedff 67CF22*/
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}