:root {
    --bs-body-color: #000;
    --primary: #FF6A00;
}

@font-face {
    src: url(./font-family/书体坊颜体.ttf);
    font-family: "书体坊颜体";
}

a {
    text-decoration: none;
    color: #404040;
}

ul {
    margin: 0;
    padding: 0;
}

/* 清除li前面的小圆点 */
li {
    list-style: none;
}

img {
    vertical-align: top;
}

.text-primary {
    color: var(--primary) !important;
}

.color-red {
    color: #CC0000 !important;
}

.text-secondary {
    color: #707070;
}

.tc-3 {
    color: #333;
}

.tc-6 {
    color: #666;
}

.tc-9 {
    color: #999;
}

.tc-0 {
    color: #000;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-18 {
    font-size: 18px;
}

.fs-22 {
    font-size: 22px;
}

.fs-40 {
    font-size: 40px;
}

.fw-500 {
    font-weight: 500;
}

.title {
    font-weight: bold;
    font-size: 48px;
    color: #000000;
    text-align: center;
    padding-top: 80px;
}

.subtitle {
    font-style: 18px;
    color: #666;
    text-align: center;
    margin: 24px 0 80px;
}

.subtitle a {
    color: var(--primary);
    /* text-decoration: underline; */
}

/* 文本溢出隐藏，鼠标放上去显示全部 */
.over-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.over-text:hover {
    white-space: normal;
    overflow: visible;
    max-width: none;
}

/* 重置选项卡样式 */
.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    cursor: pointer;
    color: #333;
}