@font-face {
    src: url("../font/pht-bold.woff2") format("woff2");
    font-family: pht;
    font-weight: 900;
}

@font-face {
    src: url("../font/pht-medium.woff2") format("woff2");
    font-family: pht;
    font-weight: 600;
}

@font-face {
    src: url("../font/pht-regular.woff2") format("woff2");
    font-family: pht;
    font-weight: 400;
}

@font-face {
    src: url("../font/pht-light.woff2") format("woff2");
    font-family: pht;
    font-weight: 200;
}

@font-face {
    src: url("../font/pht-thin.woff2") format("woff2");
    font-family: pht;
    font-weight: 100;
}

:root {
    --main-color: #1890FF;
}

body {
    font-family: pht, sans-serif;
}

a {
    text-decoration: none;
    color: #085EB2;
}

a:hover {
    color: var(--main-color);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-truncate-2 {
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.my-container {
    width: 1200px;
    position: relative;
}

.header {
    height: 100px;
    background-color: #FFF;
}

.menu {
    border-top: solid 1px #F5F5F5;
    background-color: #FFF;
}

.menu-item {
    font-size: 18px;
    width: 140px;
    height: 60px;
    text-align: center;
    color: #333;
    text-decoration: none;
}

.menu-item:hover {
    color: var(--main-color);
}

.submenu {
    border: none;
    border-radius: 0;
    background-color: #FFF;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    top: -2px !important;
}

.submenu-item {
    font-size: 16px;
    color: #333;
    line-height: 2;
}

.submenu-item:hover {
    background-color: var(--main-color);
    color: #FFF;
}

.footer {
    height: 156px;
    background-color: #3C4A55;
}

.footer .foot-admin-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 14px;
    display: block;
}

.footer .footer-column {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.footer .footer-column:first-child {
    justify-content: flex-start;
}

.footer .footer-column:last-child {
    justify-content: flex-end;
}

.footer .qr-code-container {
    display: inline-block;
    text-align: center;
    margin-right: 30px;
}

.footer .qr-label {
    color: #FFFFFF;
    margin-top: 5px;
    font-size: 14px;
}

.footer .logo-container {
    text-align: center;
}

.footer .contact-info {
    color: #FFFFFF;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    text-align: right;
}

.content-bg {
    background-image: url("../img/default-bg.png");
    background-repeat: no-repeat;
    background-size: 100%;
}

.content-card {
    background: #FFF;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 120px;
    margin-bottom: 40px;
}

.pages {
    margin-top: 26px;
}

.page {
    height: 32px;
    width: 32px;
    border-radius: 6px;
    border: 1px solid #D9D9D9;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
    margin: 4px;
}

.page.active {
    color: #FFF;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}

.page:hover {
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.page.active:hover {
    color: #FFF;
}

.card-title-box {
    position: relative;
    height: 44px;
    border-bottom: solid 2px rgba(0, 0, 0, 0.05);
}

.card-title {
    font-size: 22px;
    line-height: 44px;
    color: var(--main-color);
    border-bottom: solid 2px var(--main-color);
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
}

.card-title img {
    position: absolute;
    top: 11px;
}

.card-title span {
    margin-left: 34px;
}

.card-more {
    font-size: 12px;
    color: #085EB2;
    text-decoration: none;
}

.news-title {
    font-size: 16px;
    color: #333;
    line-height: 1;
    margin-top: 20px;
    text-decoration: none;
}

.news-title.md {
    font-size: 14px;
}

.news-title:hover {
    color: var(--main-color);
}

.news-date {
    font-size: 12px;
    color: #999;
    line-height: 1;
    margin-top: 20px;
}

.news-title:hover + .news-date {
    color: var(--main-color);
}

.nav-tabs {
    --bs-nav-tabs-link-active-bg: rgba(0, 0, 0, 0);
    --bs-nav-tabs-link-active-color: var(--main-color);
    --bs-nav-tabs-link-hover-border-color: rgba(0, 0, 0, 0);
    --bs-nav-tabs-link-active-border-color: rgba(0, 0, 0, 0);
    border: none;
}