/**
 * 全栈学习网 by fullstackln
 * fullstackln.com ｜ @xubingtao.cn
 */

.active>a {
    /* padding: 14px 17px;
    border-radius: 2px; */
    background: #00a3c8 !important;
    color: white !important;
}
.header {
    webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.175);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.175);
    /* padding: 12px 0px 4px; */
    padding: 8px 80px;
    -webkit-animation: fadeInDown 1s both;
    animation: fadeInDown 1s both;
    /* opacity: 0.7; */
}
.menu {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 10px;
}
.menu a {
    color: black;
}
.nav-left {
    width: 50%;
    align-items: center;
    display: flex;
}
.nav-left a {
    padding: 14px 17px;
    border-radius: 2px
}
.cursorText {
    cursor: text;
}
#index {
    margin-left: 14px;
}

#brand a {
    padding: 0;
}
.brand {
    width: 140px;
    margin-right: 5px;
}
.brand:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: blink 1s ease-in 1s infinite;
    animation: blink 1s ease-in 1s infinite;
}

@-webkit-keyframes blink {
    from {left: -500px;top: 15px;}
    to {left: 100px;top: 15px;}
}
@-o-keyframes blink {
    from {left: -500px;top: 15px;}
    to {left: 100px;top: 15px;}
}
@-moz-keyframes blink {
    from {left: -500px;top: 15px;}
    to {left: 100px;top: 15px;}
}
@keyframes blink {
    from {left: -500px;top: 15px;}
    to {left: 100px;top: 15px;}
}

.brand-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #242526 !important;
    line-height: 32px;
    font-size: 22px;
}
.brand-name::first-letter {
    color: #00a3c8 !important;
}
.brand-domain {

}
.nav-left>*:not(:first-child) {
    /* margin-left: 31px; */
}
.nav-left > li {
    position: relative;
    display: block;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    /* border-top: 4px solid #00a3c8; */
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.dropdown-menu {
    left: 0;
    right: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    z-index: 10001;
    display: none;
    /* opacity: 0; */
    float: left;
    min-width: 200px;
    border-radius: 0;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
    margin: 10px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    /* border: 1px solid #ccc; */
    border: 1px solid rgba(0, 0, 0, .15);
}
.nav-left li:hover > .dropdown-menu,
.nav-left li.focus > .dropdown-menu {
    /* opacity: 1;
    visibility: visible; */
    display: block;
}
.dropdown-menu > ul, .dropdown-menu > li {
    padding: 0;
    margin: 0;
}
/* .dropdown-menu > li {
    padding: 10px 13px;
    width: 100%;
} */
.dropdown-menu > li > a {
    width: 100%;
    display: block;
    /* padding: 3px 20px; */
    clear: both;
    font-weight: normal;
    /* line-height: 1.42857143; */
    color: #333;
    white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #337ab7;
    outline: 0;
}

.nav-right {
    /*width: 50%;*/
    align-items: center;
    display: flex;
    padding-left: 5px;
}
/*.nav-right>*:not(:first-child) {*/
.nav-right-item {
    margin-left: 24px;

}
.nav-right-item>a {
    padding-right: 20px;
}
.nav-search {
    padding: 5px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 6px;
    background-color: #f4f4f4;
}
.nav-search>input {
    height: 30px;
    outline: none;
    border: none;
    background: #f4f4f4;
}
.nav-search>li {
    padding-left: 10px;
}

.footer {
    background: #242526;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer>* {
    margin-left: 5px;
    color: #FFFFFF;
}