@charset "UTF-8";

:root {
    --nav-font-size: clamp(14px, 0.9375vw, 18px);
    --primary-blue: #2966f3;
    --hover-blue: #1a4fd8;
    --dark-text: #1a1a1a;
    --light-text: #f8f9ff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;

    overflow-x: hidden;
    /* 防止横向滚动条 */
}

.app-container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
    background: #fff;
}

.app-container .navbar {
    background-image: url('/img/nav-bg.png');
    background-size: 101% 116px;
    background-position: center;
}

.app-container .site-footer {
    background: #F7F8FC;
}

.app-container .site-footer .footer-title,
.app-container .site-footer .footer-list div {
    color: #333;
}

.app-container .footer-list a {
    color: #333;
}

.app-container .site-footer .iconfont {
    color: #000;
}

.app-container .site-footer .footer-arrow {
    border-left-color: #333;
}

.crumb {
    padding: 20px 15%;
    color: #777777;
}

.crumb text {}

.crumb a {
    text-decoration: none;
    color: #777777;
}

.crumb .active {
    color: #333;
}

.news-container {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    padding: 20px 15%;
}

.news-container>div {
    flex: 0 0 calc(66.66% - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.news-container .news-title {
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-text);
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    text-align: center;
}

.visit-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    color: #777777;
    font-size: 14px;
    padding: 10px 0;
}

.news-container .hot-point {
    flex: 0 0 calc(33.33% - 70px);
    display: flex;
}

.hot-point .hot-point-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 16px 0;
    position: relative;
}

.hot-point .hot-point-title::after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 2px;
    left: -1px;
    height: 1px;
    background: #ddd;
    align-self: center;
    z-index: 9;
}

.hot-point .hot-point-title p {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
}

.hot-point .hot-point-title p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #287CF7;
}

.hot-point .hot-point-title .hot-point-more {
    font-size: 14px;
    color: #777777;
}

.hot-point-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hot-point-item {
    padding: 24px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.hot-point-item .hot-point-item-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    position: relative;
    padding-left: 20px;
}

.hot-point-item .hot-point-item-title::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C9C9C9;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.hot-point-item .hot-point-item-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 限制显示的行数 */
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    font-size: 14px;
    color: #777777;
    margin-top: 24px;
    padding-left: 20px;
}