/* ===== 字体导入 ===== */
@import url(http://fonts.googleapis.com/css?family=Raleway:500,600,700,100,800,900,400,200,300);
@import url(http://fonts.googleapis.com/css?family=Playball);

html,
/* ===== 通用基础样式 ===== */
body {
    margin: 0;
    color: #fff;
    background-color: #17191E;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

a {
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: #2F937B;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

#tf-home,
#tf-home .overlay {
    background-color: #17191E;
    color: #f0f0f0;
}

/* ===== 通用导航栏 ===== */
#tf-home {
    background: transparent;
    color: #cfcfcf;
}

#tf-home .overlay {
    background: transparent;
    height: auto;
}

/* ===== 导航栏主体 ===== */
#tf-menu {
    margin-bottom: 0;
    background: transparent;
    border: 0;
    color: #fff !important;
    padding: 0.75% 0;
    transition: all 0.5s;
}

#tf-menu.stick {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(23, 25, 30, 0.8);
    padding: 0.25% 0;
}

/* ===== 导航链接样式 ===== */
#tf-menu.navbar-default .navbar-nav>li>a {
    color: #E6E6E6;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

#tf-menu.navbar-default .navbar-nav>li>a:hover,
#tf-menu.navbar-default .navbar-nav>li>a:focus {
    color: #2F937B;
    background-color: transparent;
}

/* ===== Logo 样式 ===== */
.logo {
    font-family: 'Playball', cursive;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.logo img {
    height: 30px;
    width: 30px;
    margin-right: 8px;
}

/* ===== 移动端导航按钮 ===== */
.navbar-toggle {
    border: none;
    background: transparent !important;
}

.navbar-toggle .icon-bar {
    background-color: #C5C5C5;
}

.navbar-default .navbar-brand.logo {
    color: #E6E6E6 !important;
}

/* ===== 滚动条样式 ===== */
::-webkit-scrollbar {
    width: 15px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 8px;
    border: 2px solid #1e1e1e;
}

/* Firefox 等非 WebKit 内核浏览器 */
html {
    scrollbar-color: #444 #1e1e1e;
    scrollbar-width: thin;
    overflow-y: scroll;
}