﻿* {
	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,.nav-tabs a.active {
	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(/css/images/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 .game-intro-box {
    min-width: 480px;
    max-width: 600px;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 102px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #d6ba85;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.page-body .game-intro-box .intro-title {
    width: 126px;
    height: 36px;
    background: url(/css/images/notBg.2669e142.png) no-repeat;
    background-size: 100% 100%;
    line-height: 36px;
    padding: 0 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.page-body .game-intro-box .intro-title .icon {
    width: 18px;
    vertical-align: middle;
}

.page-body .game-intro-box .intro-title span {
    margin-left: 3px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.page-body .game-intro-box .intro-content {
    color: #d6ba86;
    font-size: 14px;
    line-height: 1.8;
}

.page-body .game-intro-box .intro-content p {
    margin-bottom: 10px;
    text-indent: 2em;
}

.page-body .game-intro-box .intro-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.page-body .game-intro-box .intro-content ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.page-body .game-intro-box .intro-content ul li:before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #d6ba85;
    font-size: 16px;
}
.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(/css/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(/css/image/017.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(/css/image/down.134df87d.png) no-repeat;
    background-size: 100% 100%
}

.page-body .page-download .item-reg2 {
    background: url(/css/image/017.png) no-repeat;
    background-size: 100% 100%
}

.page-layer{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.4);z-index:9999}
.page-layer .layer-title{margin:60px 0 45px 0;display:flex;width:409px}
.page-layer .layer-title img{width:100%;height:auto}
.page-layer .layer-body{width:100%;height:481px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background-color:#17191e;padding:30px 30px 60px}
.page-layer .layer-body .close{width:24px;height:24px;position:relative;top:60px}
.page-layer .layer-body-title{width:409px;height:20px;background:url(/images/title.034122c3.png) no-repeat;background-size:100% 100%;margin:20px auto 50px}
.page-layer .layer-body .layer-top-title{text-align:center;font-size:24px;border-bottom:1px solid #d6ba86;padding-bottom:30px;position:relative;margin-bottom:48px}
.page-layer .layer-body .layer-top-title .layer-close{cursor:pointer;position:absolute;right:0;top:0}
.page-layer .layer-body .layer-top-title .layer-close i{font-size:24px;color:#d6ba86}
.page-layer .layer-body .layer-wrap{position:relative}
.page-layer .layer-body .layer-wrap .left_box,.page-layer .layer-body .layer-wrap .right_box{text-align:left}
.page-layer .layer-body .layer-wrap .left_box .title_img,.page-layer .layer-body .layer-wrap .right_box .title_img{position:relative;width:197px;height:48px;line-height:48px;margin-bottom:20px;color:#fff;font-size:14px;text-align:center}
.page-layer .layer-body .layer-wrap .left_box .title_img img,.page-layer .layer-body .layer-wrap .right_box .title_img img{position:absolute;left:0;top:0;width:100%;height:100%;z-index:-1}
.page-layer .layer-body .layer-wrap .left_box p,.page-layer .layer-body .layer-wrap .right_box p{color:#3b55b8;line-height:30px;white-space:nowrap}
.page-layer .layer-body .layer-wrap .left_box p span,.page-layer .layer-body .layer-wrap .right_box p span{font-weight:700}
.page-layer .layer-body .layer-wrap .left_box{position:absolute;left:0;top:60px;transform:translateX(-120%)}
.page-layer .layer-body .layer-wrap .right_box{position:absolute;left:calc(100% + 96px);top:60px}
.page-layer .layer-body:after{content:" ";position:absolute;bottom:-6px;left:0;width:100%;height:6px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAAMCAMAAABFuLTgAAAAAXNSR0IArs4c6QAAAPBQTFRFAAAA1buI0rmG2bmG1bWF1ruE4sWO1bmF17uF2b2H38GL38OL48WN1rqH1rqH2LuI17qG0raE0reE1rmF17uH2byI2b2I2r2I48SO3L6JsZtyDxIZEBMaERQbExYcFBccFRcdFhgdFxkeGhsgHB0hHR4hHh4iJiYmKCgnKikoKikpMC4sMC8sRkE4R0E4SEI5T0g9WVFCZVtIamBMa2BMa2FMb2RPcmZQlYNilYNjloRjmYdlmodlmohmm4hmo49rq5Zvr5lxr5pxwql7xKt+xq1/yrCBzrSCzrSD17uH2LyH2r2I3cCK3sCK4sSN5MaOgvQ0ewAAABt0Uk5TAB4oKDA4fICAgICAgJDHz9fY2NjY2Njh4fD55CRFqAAAAQtJREFUGBntwedSwkAUBtCbpYRVmhIlQChLDxpKRFBKIKEJCfD+b6PjOIztAfbHdw6pydNh7wfHAABAUsfA3x9OSZUiatrfudOJ48wBACTkOJOp++an1QhRKJZdvQysbg8AQEpda/C6ysZC9EFR77dPD6LebAAASKdZF4/P2ztVoU/s+mY5bBULJQAA6RSKreHy9orRF8Z1z25XRBUAQDKi0rY9nTO6ULi2tk1DVAEApCIM015rXKFvWFzzRmbZKAEASMQomyNPizP6gXHdtTu1BgCARGod29U5o18UntmM+1YPAEAaVn+8yXCF/mDRVH4xmwMASGO2yKeijP4RTuTOAQCARM65RJgu3gFnFFTltu0k/gAAAABJRU5ErkJggg==) no-repeat;background-size:contain;background-position:50%}
.form-input{margin-bottom:20px;display:flex;position:relative}
.form-input input{display:flex;flex:1;height:42px;padding:11px 14px;background-color:transparent;border:solid #d6ba86;font-size:14px;font-weight:400;color:#fff;border-width:1px;outline:0}
.form-input input:disabled{border-color:#e4e7ed;cursor:not-allowed}
.form-input__slot{position:absolute;top:50%;transform:translateY(-50%);left:12px;color:#fff}
.form-input__after{position:absolute;right:0;cursor:pointer;top:50%;transform:translateY(-50%);width:78px;height:30px;margin-right:6px;background:#0e0e0f;border:1px solid #d6ba86;font-size:14px;font-weight:400;color:#d6ba86;display:flex;align-items:center;justify-content:center}
.form-input__after:hover{background:url(/css/image/but96.5354630e.png) no-repeat;background-size:100% 100%;border:none;color:#fff}
.page-layer{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1050}
.page-layer .layer-mask{position:absolute;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.4)}
.page-layer .layer-body{width:1200px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background-color:#17191e;border:1px solid #d6ba86}
.page-layer .layer-body-log{background:linear-gradient(0deg,#3d1c57,#0f1b51)!important;border:1px solid #ffdf9c}
.page-layer .layer-body .layer-wrap{margin:0 30px;padding-bottom:60px;position:relative}
.page-layer .layer-body .layer-title{height:48px;display:flex;align-items:center;position:relative;border-bottom:1px solid #d6ba86;color:#fff;font-size:16px}
.page-layer .layer-body .layer-close{cursor:pointer;position:absolute;right:0;top:12px}
.page-layer .layer-body .layer-close i{font-size:24px;color:#d6ba86}
.page-layer .layer-body:after{content:" ";position:absolute;bottom:-6px;left:0;width:100%;height:6px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAAMCAMAAABFuLTgAAAAAXNSR0IArs4c6QAAAPBQTFRFAAAA1buI0rmG2bmG1bWF1ruE4sWO1bmF17uF2b2H38GL38OL48WN1rqH1rqH2LuI17qG0raE0reE1rmF17uH2byI2b2I2r2I48SO3L6JsZtyDxIZEBMaERQbExYcFBccFRcdFhgdFxkeGhsgHB0hHR4hHh4iJiYmKCgnKikoKikpMC4sMC8sRkE4R0E4SEI5T0g9WVFCZVtIamBMa2BMa2FMb2RPcmZQlYNilYNjloRjmYdlmodlmohmm4hmo49rq5Zvr5lxr5pxwql7xKt+xq1/yrCBzrSCzrSD17uH2LyH2r2I3cCK3sCK4sSN5MaOgvQ0ewAAABt0Uk5TAB4oKDA4fICAgICAgJDHz9fY2NjY2Njh4fD55CRFqAAAAQtJREFUGBntwedSwkAUBtCbpYRVmhIlQChLDxpKRFBKIKEJCfD+b6PjOIztAfbHdw6pydNh7wfHAABAUsfA3x9OSZUiatrfudOJ48wBACTkOJOp++an1QhRKJZdvQysbg8AQEpda/C6ysZC9EFR77dPD6LebAAASKdZF4/P2ztVoU/s+mY5bBULJQAA6RSKreHy9orRF8Z1z25XRBUAQDKi0rY9nTO6ULi2tk1DVAEApCIM015rXKFvWFzzRmbZKAEASMQomyNPizP6gXHdtTu1BgCARGod29U5o18UntmM+1YPAEAaVn+8yXCF/mDRVH4xmwMASGO2yKeijP4RTuTOAQCARM65RJgu3gFnFFTltu0k/gAAAABJRU5ErkJggg==) no-repeat;background-size:contain;background-position:50%}
.sw_login_reg_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    margin: 0 auto
}

.sw_login_reg_box .sw_item {
	position: relative;
    flex: 1;
    text-align: center;
    color: #d6ba86;
    cursor: pointer
}

.sw_login_reg_box .sw_item.active {
    color: #fff
}

.sw_login_reg_box .sw_item.active:after {
    position: absolute;
    content: " ";
    bottom: -30px;
    left: 0;
    width: 180px;
    height: 42px;
    background: url(/css/image/layerActive.8061851e.png) no-repeat;
    background-position: bottom;
    background-size: contain
}
.login_box .layer-body {
    width: 100vw;
    max-width: unset;
    border-right: 0;
    border-left: 0;
    padding-right: 0;
    padding-left: 0
}

.login_box .layer-body .layer-close {
    margin-right: 390px
}

.login_box .layer-body .layer-form {
    position: relative
}

.login_box .layer-body .layer-form .login_list {
    position: absolute;
    left: 0;
    top: -47px;
    width: 150px;
    height: calc(100% + 106px);
    background: hsla(0,0%,100%,.04);
    padding-top: 48px;
    padding-bottom: 60px
}

.login_box .layer-body .layer-form .login_list .item_box {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    cursor: pointer
}

.login_box .layer-body .layer-form .login_list .item_box.active {
    background: url(/css/image/active.dc7e00c7.png) no-repeat;
    background-size: 100% 100%
}

.login_box .layer-body .layer-form .login_list .item_box span {
    color: #90ee90
}

.login_box .layer-body .layer-form .login_info_box {
    position: absolute;
    left: 175px;
    top: 0;
    color: rgba(254,254,255,.4);
    width: 555px;
    text-align: left;
    line-height: 1.7
}
.form-body {
    width: 360px;
    margin: 0 auto;
	
}
.form-body > div,.page-index .login_box{
	display:none;
}
.form-body > div.show{
	display:block;
}
.form-body .area_box {
    display: flex;
    align-items: center
}

.form-body .area_box .el-divider {
    background-color: #d6ba86;
    margin: 0 12px;
    height: 18px
}

.form-body__repassword {
    text-align: right;
    color: #33cbff;
    cursor: pointer
}

.form-body .regTip {
    display: flex;
    align-items: center;
    color: #d6ba86;
    font-size: 14px;
    text-align: left
}

.form-body .regTip img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-right: 9px
}

.form-body .regTip ::v-deep .el-checkbox__inner {
    border-radius: 50%
}

.form-body .form-footer__btn {
    margin: 40px 0 0 0;
    width: 100%;
    height: 42px;
    background: #0e0e0f;
    cursor: pointer;
    color: #d6ba86;
    outline: none;
    border: none;
    font-size: 14px;
    border-radius: 0;
    border: 1px solid #d6ba86
}

.form-body .form-footer__btn:hover {
    background: url(/css/image/but360.13097632.png) no-repeat;
    background-size: 100% 100%;
    border: 0;
    color: #fff
}

.form-body .form-footer .el-button.is-disabled {
    background-color: #0e0e0f;
    border: 1px solid #d6ba86;
    color: #d6ba86
}

.form-body .form-footer .el-button.is-disabled:focus,.form-body .form-footer .el-button.is-disabled:hover {
    background-color: #0e0e0f;
    border-color: #d6ba86;
    color: #d6ba86
}

.form-body .form-footer .el-button:focus,.form-body .form-footer .el-button:hover {
    color: #fff;
    border-color: #d6ba86;
    background-color: #0e0e0f
}

.form-body .form-footer .but-uploader .el-upload {
    width: 100%
}

.form-body .switch_type {
    display: flex;
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
    border: 1px solid #d6ba86;
    height: 42px;
    padding: 3px
}

.form-body .switch_type .switch_item {
    position: relative;
    flex: 1;
    cursor: pointer;
    color: #fff;
    line-height: 36px
}

.form-body .switch_type .switch_item.active {
    background: #3b55b8
}

.form-body .flex_box {
    display: flex;
    align-items: center
}

.form-body .flex_box .input_box,.form-body .flex_box .upImg_box {
    flex: 1
}

.form-body .flex_box .input_box .form-input,.form-body .flex_box .upImg_box .form-input {
    margin-bottom: 14px
}

.form-body .flex_box .input_box,.form-body .flex_box .upImg_box {
    width: 360px
}

.form-body .flex_box2 {
    align-items: flex-start;
    width: 780px;
    transform: translateX(-26.6%)
}

.form-body .flex_box2 .el-divider--vertical {
    position: relative;
    height: 154px;
    margin: 0 30px;
    background: #d6ba86
}

.form-body .upImg_box {
    display: flex;
    text-align: left;
    margin-bottom: 15px
}

.form-body .upImg_box .upImg_box_left {
    margin-right: 10px;
    flex: 1
}

.form-body .upImg_box .upImg_box_left p {
    font-size: 14px;
    margin-top: 10px;
    color: #d6ba86;
    text-align: center
}

.form-body .upImg_box .upImg_box_left img {
    width: 175px
}

.form-body .upImg_box .upImg_box_right {
    flex: 1
}

.form-body .upImg_box .upImg_box_right p {
    font-size: 14px;
    margin-top: 10px;
    color: #d6ba86;
    text-align: center
}

.form-body .upImg_box .upImg_box_right .upload_box {
    width: 175px;
    height: 120px;
    border: 1px solid #d6ba86;
    font-size: 34px;
    color: #d6ba86;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.form-body .upImg_box .upImg_box_right .upload_box .upImg {
    width: 24px
}

.form-body .upImg_box .upImg_box_right .upload_box .avatar {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}
@font-face{font-family:HanYi;src:url(/css/fonts/HanYilingXin.c8e33fec.TTF) format("truetype")}.HanYiFont{font-family:HanYi}
.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(/css/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(/css/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(/css/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
}

.bigtitle{
    position: fixed;
    top: 40%;
	left:0;
    color: #fff;
    text-align: center;
    width: 100%;
	line-height:2
}
.bigtitle h2{
    font-size: 50px;
}
.bigtitle span{
    font-size: 20px;
}

@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
	}
	.bigtitle h2{
		font-size: 40px;
	}
	.footer {
		flex-wrap: wrap;
		bottom: 1rem;
		gap: .8rem
	}
}