﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #d6ba86
}

::-webkit-scrollbar-track {
    border-radius: 0;
    background: transparent
}
body {
	font-family: 'Microsoft YaHei',sans-serif;
	overflow: hidden;
	background: #000
}
       

/* Logo样式 */
.logo {
    position: absolute; /* 绝对定位 */
    top: 0.1px; /* 距离顶部的距离 */
    left: 35px; /* 距离左侧的距离 */
    z-index: 21; /* 确保Logo在导航栏上方 */
}

.logo img {
    width: 200px; /* 设置Logo的宽度 */
    height: auto; /* 高度自适应 */
}
.nav-container {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 25;
	background: rgba(0,0,0,0)!important;
	}

.nav-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	padding: 1.2rem 0;	
}

.nav-tabs a {
	color: rgba(255,255,255,.95)!important;
	text-decoration: none;
	font-size: 1.3rem;
	font-weight: bold; /* 添加字体加粗效果 */
	padding: .8rem 1.5rem;
	transition: all .3s cubic-bezier(.4,0,.2,1);
	position: relative;
	border-radius: 6px
}

.nav-tabs a:hover {
	background: rgba(147,197,253,.15);
	transform: translateY(-2px);
	color: #d6ba86 !important; /* 鼠标悬停时文字变为黄色 */
}

.nav-tabs a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 2px;
	background: #93c5fd;
	transition: all .3s
}

.nav-tabs a:hover::after {
	width: 70%;
	left: 15%
}



.page-body {
    position: relative;
	margin-top: 150px !important;
	height: calc(100vh - 184px);
}
.layer {
	position: relative;
    height: 100%;
    max-width: 1920px;
    padding: 0 30px 0 30px;
    margin: 0 auto;
}
.page-body .page-tip {
    min-width: 340px;
    text-align: left;
    position: absolute;
    bottom: 102px
}

.page-body .page-tip .title_box {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.page-body .page-tip .tip-title {
    width: 126px;
    height: 36px;
    background: url(../image/notBg.2669e142.png) no-repeat;
    background-size: 100% 100%;
    line-height: 36px;
    padding: 0 12px
}

.page-body .page-tip .tip-title .icon {
    width: 18px;
    vertical-align: middle
}

.page-body .page-tip .tip-title span {
    margin-left: 3px;
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.page-body .page-tip .tip-list {
    position: relative;
    z-index: 1;
    margin-top: -1px;
    border: 1px solid #d6ba85;
    background: rgba(0,0,0,.4);
    width: 480px;
    padding: 0 12px
}

.page-body .page-tip .tip-list .tip-item {
    font-size: 14px;
    font-weight: 500;
    color: #d6ba86;
    opacity: .7;
    background-size: 100% 100%;
    height: 36px;
    line-height: 36px;
    display: flex;
    border-bottom: 1px solid rgba(214,186,133,0.2);
    justify-content: space-between;
    
}

.tip-item p a{     
    white-space: nowrap; /* 防止标题换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */    
}

.tip-item span {
    margin-left: 10px; /* 调整日期与标题的间距 */
    flex-shrink: 0; /* 防止日期被挤压 */
    width: 90px; /* 固定日期部分的宽度 */
    text-align: right; /* 日期右对齐 */       
}

.page-body .page-tip .tip-list .tip-item>div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0
}

.page-body .page-tip .tip-list .tip-item>div p {
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #d6ba86
}

.page-body .page-tip .tip-list .tip-item>div span {
    flex-shrink: 0;
    margin-left: 10px
}

.page-body .page-tip .tip-list .tip-item:hover {
    opacity: 1;
    color: #fff
}

.page-body .page-tip .tip-list .tip-item:hover p {
    color: #fff
}

.page-body .page-tip .tip-more {
    font-size: 14px;
    color: #d6ba86;
    display: flex;
    z-index: 1
}

.page-body .page-tip .tip-more>div {
    display: flex;
    align-items: center
}

.page-body .page-tip .tip-more a {
    color: #d6ba86
}
.page-body .page-tip .tip-more a:hover {
    color: #fff
}
.page-body .page-tip .tip-more .icon {
    width: 18px;
    margin-left: 5px
}
.page-body .qr-container {
    position: absolute;
    right: 30px;
    bottom: 102px
}

.page-body .qr-container .qrcode_box {
    position: relative;
    width: 132px;
    height: 132px;
    margin-bottom: 12px;
    cursor: pointer
}

.page-body .qr-container .qrcode_box:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: -55px;
    width: 150px;
    height: 204px;
    z-index: 2
}

.page-body .qr-container .qrcode_box .qrcode {
    position: relative;
    width: 132px;
    height: 132px
}

.page-body .qr-container .qr-description {
    color: #fff;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    margin-top: 20px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center
}
.people-online {
    margin-bottom: 12px;
    background: url(../image/peopleBg.a29834d6.png) no-repeat;
    background-size: 100% 100%
}

.people-online img {
    max-width: 100%
}

.people-online>p {
    font-size: 18px;
    font-weight: 700;
    text-align: right
}

.people-online-wrap {
    width: 300px;
    height: 72px;
    display: flex
}

.people-online-inner {
    display: flex;
    width: 100%;
    color: #fff;
    font-size: 18px;
    margin: 6px;
    position: relative;
    font-weight: 700
}

.people-online-inner .name {
    transform: translateY(-50%);
    font-size: 14px;
    color: #d6ba85;
    height: 10px
}

.people-online__leftNum {
    position: absolute;
    left: 30%;
    top: 70%;
    transform: translate(-50%,-50%);
    z-index: 2
}

.people-online__rightNum {
    position: absolute;
    right: 16%;
    top: 70%;
    transform: translate(-50%,-50%);
    z-index: 2
}

.people-online__left {
    background-color: #3e9efd;
    height: 32px;
    display: flex;
    width: 50%;
    align-items: center;
    padding-left: 6px;
    position: relative
}

.people-online__right {
    padding-right: 6px;
    width: 50%;
    background-color: #e24756;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

/* 去掉所有 <a> 标签的下划线 */
a {
    text-decoration: none;
}

/* 或者只针对下载部分的 <a> 标签 */
.download-item a {
    text-decoration: none;
}
/* .tip-list .tip-item a {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
} */

.tip-item a {
    display: flex; /* 使用 flex 布局 */
    align-items: center; /* 垂直居中对齐 */
    justify-content: space-between; /* 标题和日期分散对齐 */
    width: 100%; /* 占据整个宽度 */
    text-decoration: none; /* 去掉下划线 */
    color: inherit; /* 继承父元素颜色 */
}
.people-online__icon {
    width: 0;
    height: 0;
    border-color: #3e9efd transparent transparent #3e9efd;
    border-width: 16px 8px 16px 8px;
    border-style: solid;
    position: absolute;
    left: 100%;
    top: 0
}

.people-online__img {
    width: 24px
}

.people-online__img img {
    display: block
}

.people-online:last-of-type {
    margin-bottom: 0
}
.page-body .page-download {
    position: absolute;
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%);
    z-index: 9
}

.page-body .page-download__text {
    position: absolute;
    top: -100px;
    font-size: 14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.page-body .page-download .download-list {
    display: flex;
    align-items: center;
    justify-content: center
}

.page-body .page-download .download-list .download-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff
}

.page-body .page-download .download-other {
    color: #fff;
    display: flex;
    justify-content: center;
    margin-top: 54px
}

.page-body .page-download .download-other .other-item {
    display: flex;
    font-size: 14px
}

.page-body .page-download .download-other .other-item:before {
    content: "";
    width: 2px;
    height: 12px;
    background: #fff;
    opacity: .4;
    display: flex;
    margin: auto 12px
}

.page-body .page-download .download-other .other-item:first-child:before {
    width: 0;
    height: 0;
    margin: 0
}

.page-body .page-download .item-reg {
    width: 242px;
    height: 66px;
    background: url(../image/downL.52b777df.png) no-repeat;
    background-size: 100% 100%;
    cursor: pointer
}

.page-body .page-download .item-down {
    cursor: pointer;
    width: 120px;
    height: 120px;
    background: url(../image/down.e01cd565.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px
}

.page-body .page-download .item-down img {
    width: 24px;
    margin-bottom: 5px
}

.page-body .page-download .item-down2 {
    width: 360px;
    height: 120px;
    background: url(../image/down.134df87d.png) no-repeat;
    background-size: 100% 100%
}

.page-body .page-download .item-reg2 {
    background: url(../image/downR.ee66a3ee.png) no-repeat;
    background-size: 100% 100%
}
.footer {
	position: fixed;
	bottom: 1.5rem;
	width: 100%;
	text-align: center;
	z-index: 20;
	display: flex;
	justify-content: center;
	gap: 2rem
}

.footer span {
	color: rgba(255,255,255,.85)!important;
	font-size: .9rem;
	padding: .6rem 1.2rem;
	border-radius: 20px;
	background: rgba(255,255,255,.05);
	transition: all .3s;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: .5rem
}

.footer span:hover {
	background: rgba(147,197,253,.2);
	transform: translateY(-2px)
}

.fullscreen-img,.fullscreen-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100vh;
    width: auto;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -90;
    transform: translateX(-50%) translateY(-50%);
    transition: opacity 1s
}
.page-post .shadow-top{
    background: url(../image/bg-header.7c390c13.png) no-repeat;
    background-size: 100% 100%;
    position: fixed;
    height: 210px;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}
.page-post .page-mask{
    background-color: rgba(10,18,41,.9);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed
}
.page-post .page-body {
    position: relative;
    display: flex;
    justify-content: center
}
.page-post .page-body .post-essay {
    width: 1200px;
    display: flex;
    flex-direction: column
}

.page-post .page-body .post-essay .title_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    color: #fff;
    font-size: 20px
}

.page-post .page-body .post-essay .title_box .name {
    position: relative;
    font-weight: 700
}

.page-post .page-body .post-essay .title_box .name:after {
    content: " ";
    position: absolute;
    right: -10px;
    bottom: 1px;
    width: 5px;
    height: 5px;
    background-color: #d6ba85
}

.page-post .page-body .post-essay .title_box .page-back {
    position: unset!important;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #d6ba85;
    cursor: pointer
}

.page-post .page-body .post-essay .title_box .page-back img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    margin-top: 3px
}

.page-post .page-body .post-essay .html_box {
    flex: 1;
    min-height: 1px;
    position: relative;
    overflow-y: auto;
    z-index: 9;
    border: 1px solid #d6ba86;
    padding: 45px 60px;
    background: rgba(0,0,0,.4)
}

.page-post .page-body .post-essay__html {
    display: flex;
    width: 100%;
    position: relative;
    color: #fff
}

.page-post .page-body .post-essay__head {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    position: relative;
    border-bottom: 1px solid #d6ba86
}

.page-post .page-body .post-essay__headtext {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.page-post .page-body .post-essay__headtime {
    font-size: 14px;
    color: #d6ba85;
    text-align: right;
    margin-bottom: 10px
}
.page-post .page-body .post-essay__item {
    display: flex;
    align-items: center;
    width: 1200px;
    height: 90px;
    background-color: rgba(0,0,0,.4);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
    padding: 0 30px;
    position: relative;
    margin-bottom: 1px
}

.page-post .page-body .post-essay__item:hover {
    background-color: #d6ba85;
    color: #392a0e
}

.page-post .page-body .post-essay__item:hover .post-essay__itemtext .bg {
    background: url(../image/bg.80810f12.png) no-repeat;
    background-size: 100% 100%
}

.page-post .page-body .post-essay__item:hover .post-essay__itemtime {
    color: #392a0e
}

.page-post .page-body .post-essay__itemtext {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #fff;
}

.page-post .page-body .post-essay__itemtext .bg {
    width: 36px;
    height: 36px;
    background: url(../image/bg_.94b56ea1.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 12px
}

.page-post .page-body .post-essay__itemtime {
    position: absolute;
    right: 30px;
    font-size: 16px;
    color: #fff
}
.page-post .page-body .page-pag {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin-top: 47px!important
}

.page-post .page-body .page-pag .page-num {
    color: #fff;
    font-size: 16px
}

.page-post .page-body .page-pag .page-btn__left {
    cursor: pointer;
    margin-right: 40px
}

.page-post .page-body .page-pag .page-btn__right {
    cursor: pointer;
    margin-left: 40px
}

.page-post .page-body .page-pag .page-btn img {
    width: 30px;
    height: auto
}

.page-post .page-body .page-pag-num {
    font-size: 16px
}

@media (max-width:768px) {
	.nav-tabs {
		gap: 1rem;
		padding: 1rem 0
	}

	.nav-tabs a {
		font-size: 1rem;
		padding: .6rem 1rem
	}

	.announcement-table {
		left: 2rem;
		right: 4rem;
		width: auto;
		bottom: 5rem;
		height: 200px
	}

	.footer {
		flex-wrap: wrap;
		bottom: 1rem;
		gap: .8rem
	}
}