@charset "utf-8";

body{
    font-size: 14px;
}

header {
	position: fixed;
	z-index: 1000;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 80px;
	transition: all .8s ease;
	padding-bottom: 0px;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, 0) 100%);
}

header .logo {
    display: block;
	height: 56px;
	margin-left: 30px;
	margin-right: 30px;
}

header .logo img {
	height: 56px;
}

header .mini {
	margin-bottom: 5px;
	margin-right: 15px;
	line-height: 1;
	font-size: 12px;
	color: rgba(255, 255, 255, .5);
}

header .mini a {
	color: rgba(255, 255, 255, .5);
}

header .mini a:hover {
	color: #fff;
}

header .mini a.mobile {
	padding-left: 14px;
	background: url("../images/mobile-alt.svg") left center no-repeat;
	background-size: 12px;
}

header .mini i {
	padding: 0px 10px;
	color: rgba(255, 255, 255, .3);
}

header .toggle-button {
	width: 80px;
	height: 80px;
	background-color: var(--primary-color);
	margin-left: 20px;
	background: url('../images/menu.svg') center no-repeat var(--primary-color);
	background-size: 40px;
	cursor: pointer;
}

.nav .nLi {
	height: 40px;
	position: relative;
	margin-right: 5px;
}

.nav .nLi:last-child {
	margin-right: 0px;
}

.nav .nLi.home a,
.nav .nLi a.parent {
	display: block;
	height: 40px;
	line-height: 40px;
	padding-left: 15px;
	padding-right: 25px;
	position: relative;
	text-align: center;
	font-size: 16px;
	color: #fff;
}

.nav .nLi a.parent:after {
	position: absolute;
	right: 10px;
	top: 15px;
	display: inline-block;
	transform: rotate(45deg);
	width: 6px;
	height: 6px;
	border-width: 0 2px 2px 0;
	border-color: #fff;
	border-style: solid;
	transition: all 0.3s ease-in-out;
	content: " ";
}

.nav .nLi.on a.parent:after {
	top: 20px;
	transform: rotate(226deg);
}

.nav .nLi.home a:hover {
	color: #fff;
}

.nav .nLi.on a.parent {
	background: var(--hover-color);
	color: #fff;
}

.nav .sub {
	display: none;
	width: 160px;
	left: 0px;
	top: 40px;
	position: absolute;
}

.nav .sub a {
	display: block;
	height: 50px;
	line-height: 50px;
	background: var(--hover-color);
	border-bottom: #b30002 1px solid;
	text-align: left;
	text-indent: 15px;
	transition: all .3s;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.88);
}

.nav .sub a:hover {
	background: var(--hover-bg);
	color: #fff;
}

.eol_scatter{
    z-index: 997!important;
}

.fullmenu {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	pointer-events: none;
	z-index: 998;
	transform: translateX(-50px, 0px);
	background: #fff;
	transition: all 0.3s ease-in-out;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 100px 20px 20px 20px;
}

.fullmenu.active {
	opacity: 1;
	pointer-events: fill;
	transform: translate(0px, 0px);
}

.fullmenu .search-box{
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    border: #eee 2px solid;
    margin-bottom: 20px;
}

.fullmenu .search-box .icon-weixin3{
   position: absolute;
   line-height: 1;
   font-size: 14px;
   top: 50%;
   left: 15px;
   margin-top: -7px;
   color: var(--primary-color);
}

.fullmenu .search-box .search-form{
	overflow: hidden;
}

.fullmenu .search-box .search-input{
    height: 42px;
    padding-left: 40px;
    outline: none;
    font-size: 14px;
    border: none;
    color: var(--text-color);
}

.fullmenu .search-box .search-btn{
    height: 42px;
    padding: 0px 15px;
    outline: none;
    background: none;
    font-size: 14px;
    border: none;
    color: var(--text-color);
}

.fullmenu .nav-list{
    overflow: hidden;
    margin-bottom: 20px;
}

.fullmenu .nav-list .nav-item{
    overflow: hidden;
    border-bottom: rgba(0,0,0,.1) 1px solid;
}

.fullmenu .nav-list .nav-item .nav-link{
    padding: 18px 0px;
    line-height: 1;
    font-size: 15px;
    color: var(--text-color);
}

.fullmenu .nav-list .nav-item .nav-link .iconfont{
    font-size: 14px;
    color: var(--subtitle-color);
}

.fullmenu .nav-list .nav-item .sub-menu{
    max-height: 0;
    overflow: hidden;
    padding-left: 15px;
}

.fullmenu .nav-list .nav-item .sub-menu .sub-item{
    border-bottom: rgba(0,0,0,.1) 1px solid;
}

.fullmenu .nav-list .nav-item .sub-menu .sub-item:last-child{
    border-bottom: none;
}

.fullmenu .nav-list .nav-item .sub-menu .parent-link{
    padding: 14px 0px;
    line-height: 1;
    font-size: 14px;
    color: var(--subtitle-color);
}

.fullmenu .nav-list .nav-item .sub-menu .parent-link .iconfont{
    font-size: 14px;
    color: var(--text-color);
}

.fullmenu .closemenu{
    background: #f2f2f2;
    border: #ddd 1px solid;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: var(--text-color);
}

.swiper-container {
	width: 100%;
	height: 100vh;
}

.swiper-container .swiper-slide a {
	display: block;
	width: 100%;
	height: 100vh;
	transition: 1s linear 2s;
	transform: scale(1.1, 1.1);
}

.swiper-container .swiper-slide-active a,
.swiper-container .swiper-slide-duplicate-active a {
	transition: 6s linear;
	transform: scale(1, 1);
}

.quick {
	pointer-events: none;
	position: fixed;
	right: 10px;
	bottom: 300px;
	z-index: 999;
	width: 80px;
	height: 350px;
	padding-top: 50px;
	background: url("../images/quick.png") top center no-repeat;
	background-size: 80px 350px;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.quick.show {
	pointer-events: auto;
	bottom: 60px;
	opacity: 1;
}

.quick a {
	display: block;
	margin-bottom: 10px;
	overflow: hidden;
}

.quick a:last-child {
	margin-bottom: 0px;
}

.quick a:hover {
	opacity: .5;
}

.quick a .icon {
	display: block;
	width: 30px;
	height: 30px;
	margin: 0px auto;
	margin-bottom: 5px;
	text-align: center;
	line-height: 30px;
	font-size: 26px;
	color: var(--primary-color);
}

.quick a .text {
	zoom: .8;
	text-align: center;
	line-height: 1;
	font-size: 12px;
	color: var(--primary-color);
}

.quick .gotop{
	width: 40px;
	height: 40px;
	margin: 0px auto;
	background: var(--primary-color);
	border-radius: 40px;
	transition: all 0.3s ease;
	overflow: hidden;
	cursor: pointer;
	text-align: center;
	line-height: 40px;
}

.quick .gotop .iconfont{
	margin-bottom: 0px;
	overflow: hidden;
	font-size: 26px;
	color: #fff;
}

.quick .gotop:hover{
	line-height: 30px;
}

.line {
	width: 1200px;
	margin: 0px auto;
	overflow: hidden;
}

.line img {
	display: block;
	width: 400px;
	height: 42px;
}

.hotlink {
	width: 1200px;
	height: 70px;
	margin: 0px auto;
	margin-top: -70px;
	padding: 0px 30px;
	position: relative;
	background: #fef9f9;
	overflow: hidden;
}

.hotlink::after{
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0px;
	content: '';
	height: 1;
	border-bottom: #eee 1px solid;
}

.hotlink .title{
	overflow: hidden;
}

.hotlink .title .iconfont{
	margin-right: 5px;
	font-size: 18px;
	color: var(--primary-color);
}

.hotlink .title span{
	line-height: 1;
	font-size: 14px;
	font-family: 'qq';
	color: var(--primary-color);
}

.hotlink .txtMarquee-left {
	width: 900px;
	height: 24px;
	overflow: hidden;
}

.hotlink .txtMarquee-left .bd {
	overflow: hidden;
}

.hotlink .txtMarquee-left .bd .tempWrap {
	width: 900px !important;
	height: 24px;
}
/* 用 !important覆盖SuperSlide自动生成的宽度，这样就可以手动控制可视宽度。 */

.hotlink .txtMarquee-left .bd ul {
	overflow: hidden;
}

.hotlink .txtMarquee-left .bd ul li {
	display: inline;
	width: auto !important;
	margin-right: 30px;
	height: 24px;
	line-height: 24px;
	text-align: left;
	font-size: 14px;
	float: left;
}
/* 用 width:auto !important 覆盖SuperSlide自动生成的宽度，解决文字不衔接问题 */

.hotlink .txtMarquee-left .bd ul li span {
	margin-left: 10px;
	font-family: 'Montserrat-lig';
	color: #999;
}

.hotlink .more{
	overflow: hidden;
}

.hotlink .more a{
	line-height: 1;
	font-size: 14px;
	color: var(--subtitle-color);
}

.hotlink .more a:hover{
	color: var(--primary-color);
}

.hotlink .more span{
	margin-left: 3px;
	line-height: 1;
	font-size: 16px;
	color: var(--primary-color);
}

.section-md {
	width: 1200px;
	margin: 0px auto;
}

.section-md .icon {
	overflow: hidden;
	margin-bottom: 2px;
}

.section-md .icon img {
	display: block;
	height: 34px;
}

.section-md .parent{
    overflow: hidden;
}

.section-md .parent .title {
	line-height: 1;
	font-size: 24px;
	font-weight: normal;
	color: var(--title-color);
}

.section-md .parent .yanshi{
    margin-left: -10px;
    line-height: 1;
    font-family: 'yanshi';
    font-size: 60px;
    letter-spacing: -30px;
    color: var(--primary-color);
}

.section-md .parent .timg {
	overflow: hidden;
	margin-left: 5px;
	margin-right: 5px;
}

.section-md .parent .timg img {
	display: block;
	height: 46px;
}

.section-md .chird{
    overflow: hidden;
}

.section-md .chird .subtitle {
	line-height: 1;
	font-size: 20px;
	font-family: 'Montserrat-reg';
	color: var(--primary-color);
}

.section-md .chird .subtitle.row-one{
    padding-left: 48px;
}

.section-md .chird .more {
	line-height: 1;
	font-size: 16px;
	font-family: 'Montserrat-reg';
}

.section-md .chird .more a {
	color: var(--primary-color);
}

.module-md {
	width: 1200px;
	margin: 0px auto;
}

.module-md .title {
	margin-bottom: 8px;
	line-height: 1;
	text-align: center;
	font-size: 14px;
	font-weight: normal;
	color: #fff;
}

.module-md .subtitle {
	margin-bottom: 20px;
	text-align: center;
	text-indent: 50px;
	line-height: 1;
	font-size: 24px;
	font-family: 'Montserrat-reg';
	color: #fff;
}

.module-md .more {
	line-height: 1;
	font-size: 16px;
	font-family: 'Montserrat-reg';
}

.module-md .more a {
	color: #fff;
}

.warpper {
	overflow: hidden;
	background: url('../images/news.jpg') bottom center no-repeat;
	background-size: 100%;
}

.news {
	width: 1200px;
	margin: 0px auto;
	overflow: hidden;
}

.news .headline {
	width: 590px;
	margin-right: 30px;
	padding-right: 30px;
	border-right: #eee 1px solid;
}

.news .headline .thumb {
	width: 560px;
	height: 500px;
	background: #eee;
	overflow: hidden;
	position: relative;
}

.news .headline .thumb::before {
	position: absolute;
	left: 0px;
	bottom: 0px;
	content: '';
	width: 500px;
	height: 40px;
	background: #fffbf9;
}

.news .headline .thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news .headline .info {
	width: 560px;
	position: relative;
	margin-top: -40px;
	padding: 20px 20px 0px 0px;
}

.news .headline .info .column {
	margin-bottom: 10px;
	line-height: 1;
	font-size: 14px;
	color: var(--primary-color);
}

.news .headline .info .title {
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	line-height: 1.2;
	letter-spacing: -1px;
	font-size: 24px;
	color: var(--title-color);
}

.news .headline .info .title::after {
	position: absolute;
	left: 0px;
	bottom: 0px;
	content: '';
	width: 50px;
	height: 3px;
	background: var(--primary-color);
}

.news .headline .info .intro {
    max-height: 4.2em;
	line-height: 1.4;
	font-size: 13px;
	color: #666;
}

.news .tabloid {
	width: 280px;
}

.news .tabloid:last-child{
    margin-bottom: 0px;
}

.news .tabloid .thumb {
	width: 280px;
	height: 210px;
	background: #eee;
	overflow: hidden;
	position: relative;
}

.news .tabloid .thumb::before {
	position: absolute;
	left: 0px;
	bottom: 0px;
	content: '';
	width: 240px;
	height: 30px;
	background: #fffbf9;
}

.news .tabloid .thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news .tabloid .info {
	width: 280px;
	position: relative;
	margin-top: -30px;
	margin-bottom: 30px;
	padding-top: 20px;
}

.news .tabloid .info:last-child{
    margin-bottom: 0px;
}

.news .tabloid .info .column {
	margin-bottom: 10px;
	line-height: 1;
	font-size: 14px;
	color: var(--primary-color);
}

.news .tabloid .info .title {
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	line-height: 1.2;
	font-size: 15px;
	color: var(--title-color);
}

.news .tabloid .info .title::after {
	position: absolute;
	left: 0px;
	bottom: 0px;
	content: '';
	width: 30px;
	height: 3px;
	background: var(--primary-color);
}

.news .tabloid .info .time {
	line-height: 1;
	font-family: 'Montserrat-lig';
	font-size: 12px;
	color: #999;
}

.news .latest {
	margin-left: 30px;
}

.news .latest li {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: #eee 1px solid;
}

.news .latest li:last-child {
	margin: 0px;
	padding: 0px;
	border: none;
}

.news .latest li .title {
	padding-top: 10px;
	line-height: 1.2;
	font-size: 15px;
	color: var(--title-color);
}

.news .latest li .column {
	line-height: 1;
	font-size: 12px;
	color: var(--primary-color);
}

.news .latest li .time {
	margin-left: 10px;
	padding-left: 10px;
	border-left: #ccc 1px solid;
	line-height: 1;
	font-family: 'Montserrat-lig';
	font-size: 12px;
	color: #999;
}

.itemmcial {
	width: 100%;
	margin: 0px auto;
	overflow: hidden;
}

.sitememal img {
	display: block;
	width: 100%;
}

.notify {
	width: 1200px;
	margin: 0px auto;
	padding-top: 10px;
}

.notify ul {
	gap: 40px;
}

.notify ul li {
	flex: 1 1 calc(33% - 40px);
	overflow: hidden;
}

.notify ul li .tags {
	line-height: 1;
	padding: 6px 10px;
	font-size: 12px;
	background: var(--primary-color);
	border-radius: 30px;
	color: #fff;
}

.notify ul li .date {
	margin-left: 10px;
	line-height: 1;
	font-family: 'Montserrat-reg';
	font-size: 14px;
	color: var(--primary-color);
}

.notify ul li .title {
	margin-bottom: 30px;
	line-height: 1.4;
	font-size: 15px;
}

.notify ul li .read {
	line-height: 1;
	font-size: 14px;
	color: var(--primary-color);
}

.notify ul li .read a {
	margin-left: 5px;
	color: var(--primary-color);
}

.notify ul li .read span {
	transition: all 0.3s ease;
}

.notify ul li .read:hover span {
	margin-right: 10px;
}

.more-notify {
	width: 1200px;
	margin: 0px auto;
}

.more-notify a {
	display: inline-block;
	padding: 10px 40px;
	border: var(--primary-color) 1px solid;
	border-radius: 100px;
	line-height: 1;
	font-size: 16px;
	color: var(--primary-color);
}

.more-notify a:hover {
	background: var(--primary-color);
	color: #fff;
}

.more-notify a span {
	margin-right: 10px;
	font-size: 16px;
	font-family: 'Montserrat-reg';
}

.totem {
	width: 1200px;
	margin: 0px auto;
	margin-top: -10px;
	overflow: hidden;
}

.totem img {
	display: block;
	height: 100px;
}

.academic {
	width: 1200px;
	height: 512px;
	margin: 0px auto;
	background: url(../images/academic.png) center no-repeat;
	background-size: cover;
	padding: 30px;
	overflow: hidden;
}

.academic .hd{
    overflow: hidden;
}

.academic .hd .grid {
	overflow: hidden;
	margin-bottom: 25px;
}

.academic .hd .grid .icon{
    display: none;
}

.academic .hd .grid .parent{
    overflow: hidden;
}

.academic .hd .grid .parent .title {
    margin-left: 15px;
	line-height: 1;
	font-size: 24px;
	font-weight: normal;
	color: var(--title-color);
}

.academic .hd .grid .parent .yanshi{
    margin-left: -10px;
    line-height: 1;
    font-family: 'yanshi';
    font-size: 60px;
    letter-spacing: -30px;
    color: var(--primary-color);
}

.academic .hd .grid .subtitle {
	line-height: 1;
	font-size: 18px;
	font-family: 'Montserrat-reg';
	color: var(--primary-color);
}

.academic .list {
	width: 500px;
	position: relative;
	z-index: 1;
}

.academic .list li {
	height: 58px;
	position: relative;
}

.academic .list li a {
	display: block;
	height: 58px;
	line-height: 58px;
	background: url('../images/ao.png') 10px center no-repeat;
	background-size: 15px;
	border-left: #fff 3px solid;
	border-bottom: #eee 1px solid;
	padding-left: 35px;
	padding-right: 50px;
	font-size: 14px;
	color: #555;
}

.academic .list ul li.on a {
	background: url('../images/ao.png') 10px center no-repeat #fff;
	border-left: var(--primary-color) 3px solid;
	background-size: 15px;
	color: var(--primary-color);
}

.academic .list ul li.on::after {
	position: absolute;
	right: -40px;
	top: 0px;
	bottom: 0px;
	content: '';
	width: 50px;
	height: 58px;
	background: #fff;
	-webkit-transform: skew(-15deg);
	/* Safari/Chrome */
	-moz-transform: skew(-15deg);
	/* Firefox */
	-ms-transform: skew(-15deg);
	/* IE 9 */
	-o-transform: skew(-15deg);
	/* Opera */
	transform: skew(-15deg);
	/* 标准语法 */
}

.academic .bd {
	width: 620px;
	height: 400px;
	overflow: hidden;
	position: relative;
}

.academic .bd li {
	overflow: hidden;
}

.academic .bd img {
	display: block;
	width: 620px;
	height: 400px;
}

.academic .other {
	overflow: hidden;
}

.academic .other a~a {
	margin-left: 30px;
}

.academic .other a .icon {
	width: 36px;
	height: 36px;
	border: var(--primary-color) 1px dashed;
	border-radius: 36px;
	margin-right: 8px;
	position: relative;
	transition: all 0.3s ease;
}

.academic .other a .icon::after {
	position: absolute;
	top: 3px;
	left: 3px;
	bottom: 3px;
	right: 3px;
	content: '';
	border: var(--primary-color) 1px solid;
	border-radius: 36px;
	transition: all 0.3s ease;
}

.academic .other a .icon .iconfont {
	line-height: 1;
	font-size: 20px;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.academic .other a:hover .icon {
	background: var(--primary-color);
}

.academic .other a:hover .icon .iconfont {
	color: #fff;
}

.academic .other a:hover .icon::after {
	border: rgba(255, 255, 255, 0.8) 1px solid;
}

.academic .other a .text {
	line-height: 1;
	color: var(--primary-color);
}

.academic-foot{
    display: none;
}

.about {
	width: 100%;
	margin: 0px auto;
	background: url("../images/notice.png") bottom center no-repeat;
	background-size: 100% auto;
	position: relative;
	padding-top: 30px;
}

.about .video {
	width: 1200px;
	margin: 0px auto;
	overflow: hidden;
	position: relative;
	border-radius: 0px;
	box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
}

.about .video img {
	display: block;
	width: 100%;
}

.about .data {
	width: 1200px;
	margin: 0px auto;
	margin-bottom: 20px;
}

.about .data .item {
	background-image: linear-gradient(230deg, #fef0f0 0%, #ffffff 40%, #ffffff);
	border-radius: 10px;
	box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
	padding: 20px 20px 20px 20px;
	overflow: hidden;
}

.about .data .item~.item{
	margin-left: 30px;
}

.about .data .item .title {
	margin-bottom: 10px;
	line-height: 1;
	font-size: 14px;
	color: var(--title-color);
}

.about .data .item .value {
	line-height: 1;
	letter-spacing: -1px;
	font-size: 36px;
	font-family: 'Montserrat-ext';
	color: var(--primary-color);
}

.about .data .item .unit {
	margin-left: 4px;
	padding-top: 6px;
	line-height: 1;
	font-size: 12px;
	font-weight: normal;
	color: var(--primary-color);
}

.about .data .item .iconfont {
	margin-bottom: 5px;
	line-height: 1;
	font-size: 14px;
	color: var(--primary-color);
}

.about .data .item .text {
	line-height: 1.4;
	font-size: 13px;
	color: var(--subtitle-color);
}

.about .data .item .icon {
	width: 76px;
	margin-left: 20px;
	opacity: .1;
}

.about .data .item .icon img {
	display: block;
	width: 76px;
	height: auto;
}

.about .tip {
	width: 1200px;
	margin: 0px auto;
	line-height: 1;
	text-align: right;
	font-size: 12px;
	color: var(--text-color);
}

.media {
	position: relative;
	width: 1200px;
	height: 550px;
	margin: 0 auto;
}

/* --- 定义基础圆形div样式 --- */
.media .item {
	--border-width: 1px;
	--border-color: #cfa972;
	--rotate-duration: 32s;
	--initial-padding: 25px;
	--hover-padding-increase: 30px;
	--transition-duration: 1s;
	--default-size: 180px;
	--scale-factor: 1.2;
	/* 放大倍数 */
	position: absolute;
	/* 使用 transform 定位中心点，便于缩放 */
	transform: translate(-50%, -50%);
	width: var(--default-size);
	height: var(--default-size);
	padding: var(--initial-padding);
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: transform var(--transition-duration) ease;
}

/* 伪元素创建旋转边框 */
.media .item::before {
	content: "";
	position: absolute;
	top: calc(0px - var(--border-width));
	left: calc(0px - var(--border-width));
	right: calc(0px - var(--border-width));
	bottom: calc(0px - var(--border-width));
	border: var(--border-width) dashed var(--border-color);
	border-radius: 50%;
	z-index: -1;
	animation: rotateBorder var(--rotate-duration) linear infinite;
}

@keyframes rotateBorder {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* --- 悬停效果 --- */
.media .item:hover {
	/* 触发放大和padding变化的动画 */
	/*animation: hoverPaddingChange var(--transition-duration) ease forwards;*/
	transform: translate(-50%, -50%) scale(var(--scale-factor));
}

/* 使用一个新的动画来处理 box-sizing 和 padding 的变化 */
@keyframes hoverPaddingChange {
	from {
		box-sizing: border-box;
		padding: var(--initial-padding);
	}

	to {
		box-sizing: content-box;
		padding: calc(var(--initial-padding) + var(--hover-padding-increase));
	}
}

/* --- 内部文本样式 --- */
.media .item .iconfont {
	margin-bottom: 5px;
	text-align: center;
	line-height: 1;
	font-size: 28px;
	color: var(--primary-color);
}

.media .item .iconfont.icon-weixin1 {
	color: #29c445;
}

.media .item .iconfont.icon-weixinshipinhao {
	color: #fa9d3b;
}

.media .item .iconfont.icon-douyinzhanghao {
	color: var(--title-color);
}

.media .item .circle-title {
	margin-bottom: 15px;
	text-align: center;
	transition: 0.4s;
	line-height: 1.2;
	font-size: 14px;
	color: var(--title-color);
}

.media .item .circle-text {
	height: auto;
	overflow: hidden;
	transition: height var(--transition-duration) ease-in-out;
	text-align: center;
	line-height: 1.4;
	font-size: 12px;
	color: #666;
}

/* --- 使用px定位的不规则排列 (基于中心点) --- */
.media .item:nth-child(1) {
	top: 100px;
	left: 100px;
}

.media .item:nth-child(2) {
	top: 140px;
	left: 330px;
}

.media .item:nth-child(3) {
	top: 160px;
	left: 600px;
	--default-size: 300px;
}

.media .item:nth-child(3) .circle-text {
	height: auto;
}

.media .item:nth-child(4) {
	top: 120px;
	left: 900px;
	--default-size: 210px;
}

.media .item:nth-child(5) {
	top: 350px;
	left: 160px;
	--default-size: 260px;
}

.media .item:nth-child(6) {
	top: 340px;
	left: 400px;
	--default-size: 190px;
}

.media .item:nth-child(6) .circle-text{
    display: none;
}

.media .item:nth-child(7) {
	top: 370px;
	left: 760px;
	--default-size: 190px;
}

.media .item:nth-child(7) .circle-text{
    display: none;
}

.media .item:nth-child(8) {
	top: 350px;
	left: 1000px;
	--default-size: 260px;
}

/* --------------------- */
.subject {
	overflow: hidden;
}

.subject .subject-container {
	width: 1200px;
	margin: 0px auto;
	position: relative;
}

.subject .subject-container .swiper-slide {
	width: 1100px;
	padding-left: 300px;
	transition: .3s;
}

.subject .subject-container .swiper-slide.swiper-slide-active~.swiper-slide {
	padding-left: 0px;
}

.subject .subject-container .swiper-slide.swiper-slide-prev {
	opacity: 0;
}

.subject .subject-container .swiper-slide img {
	display: block;
	width: 800px;
	height: auto;
}

.subject .subject-container .swiper-slide .inner {
	display: none;
	position: absolute;
	left: 0px;
	top: 40px;
	z-index: 1;
	width: 400px;
	background: #fffbf9;
	padding: 60px 40px 40px 0px;
}

.subject .subject-container .swiper-slide.swiper-slide-active .inner {
	display: block;
}

.subject .subject-container .swiper-slide .inner .title {
	margin-bottom: 10px;
	line-height: 1;
	font-size: 30px;
	font-weight: bold;
	color: var(--primary-color);
}

.subject .subject-container .swiper-slide .inner .subtitle {
	margin-bottom: 20px;
	padding-left: 60px;
	position: relative;
	line-height: 1;
	font-size: 16px;
	font-family: 'Montserrat-reg';
	color: var(--primary-color);
}

.subject .subject-container .swiper-slide .inner .subtitle::after {
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: 0px;
	content: '';
	width: 50px;
	height: 2px;
	background: var(--primary-color);
}

.subject .subject-container .swiper-slide .inner .text {
	margin-bottom: 40px;
	line-height: 1.4;
	text-indent: 2em;
	font-size: 14px;
	color: var(--title-color);
}

.subject .subject-container .swiper-slide .inner .view {
	display: block;
	width: max-content;
	background: none;
	border: var(--primary-color) 1px solid;
	border-radius: 100px;
	padding: 10px 30px;
}

.subject .subject-container .swiper-slide .inner .view span{
	line-height: 1;
	font-size: 14px;
	color: var(--primary-color);
}

.subject .subject-container .swiper-slide .inner .view .iconfont {
	margin-left: 5px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.subject .subject-container .swiper-slide .inner .view:hover .iconfont {
	margin-left: 10px;
}

.subject .subject-container .subject-button-next,
.subject .subject-container .subject-button-prev {
	position: absolute;
	left: 0px;
	bottom: 20px;
	z-index: 1;
	cursor: pointer;
	line-height: 1;
	font-size: 40px;
}

.subject .subject-container .subject-button-next {
	left: 200px;
}

.subject .subject-container .subject-button-next.icon-nextbtn,
.subject .subject-container .subject-button-prev.icon-nextbtn {
	color: var(--primary-color);
}

.subject .subject-container .subject-button-next.swiper-button-disabled,
.subject .subject-container .subject-button-prev.swiper-button-disabled {
	color: rgba(0, 0, 0, 0.1);
}

/*实习医院*/
.practice {
	width: 1200px;
	margin: 0px auto;
	position: relative;
	overflow: hidden;
}

.practice .vch {
	position: absolute;
	top: 265px;
	right: 245px;
	z-index: 2;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
}

.practice .vch img {
	display: block;
	width: 50px;
	height: 50px;
}

.practice .circle {
	position: absolute;
	right: 120px;
	top: 140px;
}

.practice .circle .inner {
	position: relative;
	width: 300px;
	height: 300px;
}

.practice .circle .inner .line {
	position: absolute;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	opacity: 0;
	/* 动画属性 */
	animation-name: wave-animation;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-out;
}

/* 定义波浪动画关键帧 */
@keyframes wave-animation {
	0% {
		width: 0px;
		height: 0px;
		opacity: 0.8;
	}

	100% {
		width: 300px;
		height: 300px;
		opacity: 0;
	}
}

/* 为每个圆圈设置不同的动画延迟，创造波浪效果 */
.practice .circle .inner .line:nth-child(1) {
	animation-delay: 0s;
}

.practice .circle .inner .line:nth-child(2) {
	animation-delay: 0.6s;
}

.practice .circle .inner .line:nth-child(3) {
	animation-delay: 1.2s;
}

.practice .circle .inner .line:nth-child(4) {
	animation-delay: 1.8s;
}

.practice .circle .inner .line:nth-child(5) {
	animation-delay: 2.4s;
}

.practice .map{
    display: none;
}

.practice .list {
	width: 1200px;
	height: 680px;
	position: relative;
	background: url('../images/miso_map.png') top center no-repeat;
	background-size: cover;
}

.practice .list .item {
	position: absolute;
	width: 300px;
	background: #fff;
	border: 1px solid #ddd;
	padding: 20px;
	transition: .3s;
	cursor: pointer;
	z-index: 1;
}

.practice .list .item:nth-child(2) {
	left: 350px;
	top: 0px;
	z-index: 1;
	filter: blur(0.04rem);
	opacity: .8;
}

.practice .list .item:nth-child(3) {
	left: 300px;
	top: 60px;
	z-index: 1;
	filter: blur(0.02rem);
	opacity: .9;
}

.practice .list .item:nth-child(4) {
	left: 100px;
	top: 250px;
	z-index: 1;
	filter: blur(0.02rem);
	opacity: .9;
}

.practice .list .item:nth-child(5) {
	left: 0px;
	top: 140px;
	z-index: 1;
	filter: blur(0.04rem);
	opacity: .8;
}

.practice .list .item:nth-child(6) {
	left: 100px;
	top: 210px;
	z-index: 1;
	filter: blur(0.02rem);
	opacity: .9;
}

.practice .list .item:nth-child(7) {
	left: 200px;
	top: 130px;
	z-index: 1;
	filter: blur(0.02rem);
	opacity: .9;
}

.practice .list .item:nth-child(8) {
	right: 100px;
	top: 40px;
	z-index: 1;
	filter: blur(0.02rem);
	opacity: .8;
}

.practice .list .item:nth-child(9) {
	left: 0px;
	top: 280px;
	z-index: 1;
	filter: blur(0.02rem);
	opacity: .9;
}

.practice .list .item:nth-child(10) {
	left: 130px;
	top: 300px;
	z-index: 1;
	filter: blur(0.02rem);
	opacity: .9;
}

.practice .list .item:nth-child(11) {
	left: 170px;
	top: 360px;
	z-index: 1;
	filter: blur(0.02rem);
	opacity: .9;
}

.practice .list .item:nth-child(12) {
	left: 00px;
	top: 400px;
	z-index: 1;
	filter: blur(0.02rem);
	opacity: .9;
}

.practice .list .item:nth-child(13) {
	left: 300px;
	top: 160px;
	z-index: 1;
	filter: blur(0.02rem);
	opacity: .9;
}

.practice .list .item:nth-child(14) {
	right: 220px;
	top: 120px;
	z-index: 2;
	filter: blur(0.02rem);
	opacity: .9;
}

.practice .list .item:nth-child(15) {
	left: 420px;
	top: 50px;
	z-index: 1;
	filter: blur(0.02rem);
	opacity: .9;
}

.practice .list .item:hover {
	opacity: 1;
	transform: scale(1);
	box-shadow: 0px 0px 13px 0px rgba(12, 87, 172, 0.3);
	z-index: 20;
	filter: blur(0);
	border-color: #1088d3;
}

.practice .list .item .logo {
	margin-right: 20px;
	overflow: hidden;
}

.practice .list .item .logo img {
	display: block;
	width: auto;
	height: 40px;
}

.practice .list .item .name {
	margin-bottom: 5px;
	line-height: 1;
	font-size: 14px;
	color: var(--title-color);
}

.practice .list .item .info {
	line-height: 1.2;
	font-size: 12px;
	color: #666;
}

.footer {
	position: relative;
	background: url(../images/footer.jpg) top center no-repeat;
	background-size: auto;
}

.footer .warp {
	width: 1200px;
	margin: 0px auto;
	padding-top: 30px;
}

.footer .warp .row-one {
	margin-right: 30px;
}

.footer .warp .logo {
	overflow: hidden;
	margin-bottom: 20px;
}

.footer .warp .logo img {
	display: block;
	height: 42px;
}

.footer .warp .link {
	overflow: hidden;
	line-height: 40px;
	font-weight: 400;
	font-size: 16px;
}

.footer .warp .link a {
	color: #fff;
}

.footer .warp .link a:hover {
	color: rgba(255, 255, 255, 0.8);
	;
}

.footer .warp .link span {
	padding: 0px 20px;
	font-weight: 400;
	color: #fff;
}

.footer .warp .text {
	overflow: hidden;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.footer .warp .text h5 {
	margin-bottom: 20px;
	line-height: 1;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
}

.footer .warp .text p {
	line-height: 20px;
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
}

.footer .warp .sns {
	position: relative;
}

.footer .warp .sns .iconfont {
	display: inline-block;
	position: relative;
	line-height: 1;
	font-size: 30px;
	color: #fff;
}

.footer .warp .sns .iconfont+.iconfont {
	margin-left: 10px;
}

.footer .warp .sns .iconfont .code {
	width: 130px;
	height: 130px;
	padding: 5px;
	background-color: white;
	border: 1px solid #eee;
	border-radius: 6px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.4s ease;
	transform: translateY(20px) scale(1);
	position: absolute;
	overflow: hidden;
	z-index: 10;
	bottom: 35px;
	/* 在图标上方显示 */
	left: 50%;
	margin-left: -65px;
}

.footer .warp .sns .iconfont .code img {
	display: block;
	width: 120px;
	height: 120px;
}

/* 鼠标悬停时显示 tooltip 并添加动画 */
.footer .warp .sns .iconfont:hover .code {
	visibility: visible;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.footer .warp .custom-select {
	width: 200px;
	position: relative;
	margin-bottom: 30px;
}

.footer .warp .custom-select .select-selected {
	transition: background-color 0.3s ease;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 2px;
	padding: 12px 16px;
	cursor: pointer;
	line-height: 1;
	font-size: 14px;
	color: #666;
}

.footer .warp .custom-select .select-selected .select-arrow {
	font-size: 12px;
	color: #666;
}

.footer .warp .custom-select .select-items {
	position: absolute;
	background-color: #fff;
	border-radius: 2px;
	border: 1px solid #ddd;
	border-top: none;
	opacity: 0;
	width: 100%;
	max-height: 0px;
	/* 初始高度为0 */
	overflow: hidden;
	/* 溢出隐藏 */
	transition: max-height 0.4s ease-out;
	/* 添加过渡效果 */
	z-index: 99;
}

.footer .warp .custom-select .select-items.active {
	opacity: 1;
	max-height: 400px;
	/* 根据需要调整 */
}

.footer .warp .custom-select .select-items a {
	display: block;
	border-bottom: 1px solid #f1f1f1;
	padding: 10px 16px;
	text-decoration: none;
	font-size: 14px;
	color: var(--title-color);
}

.footer .warp .custom-select .select-items a:last-child {
	border-bottom: none;
}

.footer .warp .custom-select .select-items a:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.footer .copy {
	width: 1200px;
	margin: 0px auto;
	padding: 15px 0px;
	border-top: rgba(255, 255, 255, 0.2) 1px solid;
	line-height: 1;
	font-size: 13px;
	font-family: 'Montserrat-lig';
	color: #eee;
}

.footer .copy a {
	color: #eee;
}

.footer .copy a:hover {
	color: #fff;
}

/*内页*/
.banner{
	overflow: hidden;
	position: relative;
}

.banner img{
	display: block;
	width: 100%;
	pointer-events: none;
}

.banner .inner{
	position: absolute;
	left: 0px;
	right: 0px;
	top: 50%;
	transform: translate(0, -50%);
	overflow: hidden;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.banner .inner .title{
	margin-bottom: 20px;
	line-height: 1;
	letter-spacing: -1px;
	font-size: 36px;
	font-weight: normal;
	font-family: 'YanShYouRanXiaoKai';
	color: #fff;
} 

.banner .inner .line{
	width: 50px;
	height: 3px;
	margin: 0px 0px 10px 0px;
	background: var(--primary-color);
}

.banner .inner .subtitle{
	line-height: 1;
	font-size: 16px;
	font-family: 'Montserrat-reg';
	color: #fff;
}

.sub-category{
	margin-top: -30px;
	overflow: hidden;
	position: relative;
}

.sub-category .sub-category-warpper{
	width: 1200px;
	height: 60px;
	margin: 0px auto;
	position: relative;
	font-size: 13px;
}

.sub-category .sub-category-warpper::before{
	display: inline;
	width: 2000px;
	height: 60px;
	position: absolute;
	left: 600px;
	top: 0px;
	content: '';
	z-index: 0;
	background: var(--primary-color);
	-webkit-transform: skew(-5deg);
	/* Safari/Chrome */
	-moz-transform: skew(-5deg);
	/* Firefox */
	-ms-transform: skew(-5deg);
	/* IE 9 */
	-o-transform: skew(-5deg);
	/* Opera */
	transform: skew(-5deg);
	/* 标准语法 */
}

.sub-category .sub-category-warpper .inner{
    position: relative;
}

.sub-category .sub-category-warpper .inner .iconfont{
    position: relative;
	margin-right: 2px;
	line-height: 1;
	font-size: 14px;
	color: rgba(255, 255, 255, .8);
}

.sub-category .sub-category-warpper .inner span{
	margin-right: 10px;
	line-height: 1;
	font-family: 'qq';
	color: rgba(255, 255, 255, .8);
}

.sub-category .sub-category-warpper .inner a{
    position: relative;
	line-height: 1;
	color: #fff;
}

.sub-category .sub-category-warpper .inner a~a{
	margin-left: 10px;
}

.loction{
	width: 1200px;
	height: auto;
	margin: 0px auto 2rem;
	overflow: hidden;
	font-size: 13px;
}

.loction .iconfont{
	margin-right: 5px;
	color: var(--primary-color);
}

.loction a{
    line-height: 1;
	font-size: 13px;
	color: #666;
}

.loction a:hover{
	color: var(--primary-color);
}

.loction .arrow{
	margin: 0px 5px;
	line-height: 1;
	color: #999;
}

.loction span{
	line-height: 1;
	color: #666;
}

.layout{
	width: 1200px;
	margin: 0px auto;
	overflow: hidden;
}

.category {
	width: 310px;
	overflow: hidden;
	margin-right: 50px;
	border-right: #eee 1px solid;
	padding-right: 50px;
}

.category .father{
	padding: 30px;
	background: url('../images/catelogo.png') top no-repeat var(--primary-color);
	background-size: cover;
	border-radius: 10px 0px 0px 0px;
}

.category .father .title{
    line-height: 1;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}

.category .father .toggle-btn{
    display: none;
}

.category .menuList{
    overflow: hidden;
}

.category .menuList ul {
	padding: 5px 20px;
	background: #f5f5f5;
	border-radius: 0px 0px 0px 10px;
}

.category .menuList ul li {
	overflow: hidden;
	border-bottom: rgba(0, 0, 0, .05) 1px solid;
}

.category .menuList ul li:last-child {
	border-bottom: none;
}

.category .menuList ul li a {
    display: block;
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 25px;
	line-height: 1;
	font-size: 15px;
	color: #666;
}

.category .menuList ul li a:hover{
	color: var(--primary-color);
}

.category .menuList ul li a::after{
	position: absolute;
	left: 0px;
	top: 22px;
	content: '';
	width: 16px;
	height: 10px;
	background: url('../images/ao_gray.png') center no-repeat;
	background-size: cover;
}

.category .menuList ul li.current a {
	font-weight: bold;
	color: var(--primary-color);
}

.category .menuList ul li.current a:hover {
	padding-left: 30px;
}

.category .menuList ul li.current a::after{
	background: url('../images/ao_current.png') center no-repeat;
	background-size: cover;
}

.category .menuList ul li .iconfont {
	line-height: 1;
	font-size: 12px;
	color: #aaa;
}

.category .menuList ul li.current .iconfont {
	color: var(--primary-color);
}

.mapinfo {
    overflow: hidden;
    margin-bottom: 10px;
}

.maptip{
    line-height: 1;
    font-size: 14px;
    color: #444;
}

.singel{
	overflow: hidden;
}

.singel p{
	margin-bottom: 5px;
	opacity: .9;
	line-height: 1.4;
	font-size: 15px;
	color: var(--title-color);
}

.singel img{
	display: block;
	width: 100%;
}

/*联系我们*/
.singel .us-left {
	width: 400px;
	float: left;
	overflow: hidden;
	border-right: #eee 1px solid;
}

.singel .us-right {
	width: 200px;
	float: left;
	overflow: hidden;
	margin-left: 30px;
}

.singel .us-left h6,
.singel .us-right h6{
    margin-bottom: 15px;
	line-height: 1;
	font-size: 20px;
	color: #333;
}

.singel .us-left ul {
	list-style: none;
	border-left: #eee 6px solid;
	padding-bottom: 6px;
	overflow: hidden;
	padding-left: 30px;
}

.singel .us-left li {
	list-style: none;
	line-height: 26px;
	font-size: 14px;
	color: #333;
}

.singel .us-right p img{
    display: block;
}

.newslist{
	overflow: hidden;
}

.newslist li {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: #f2f2f2 1px solid;
}

.newslist li:last-child {
	margin: 0px;
	padding: 0px;
	border: none;
}

.newslist li a {
	display: inline-block;
	margin-bottom: 8px;
	line-height: 1.4;
	font-weight: bold;
	font-size: 18px;
}

.newslist li p.introduction {
	margin-bottom: 22px;
	line-height: 1.4;
	font-size: 13px;
	color: #777;
}

.newslist li p.addtime {
	line-height: 1;
	font-size: 13px;
	font-family: 'Montserrat-lig';
	color: #aaa;
}

.newstitle{
	margin-bottom: 30px;
	line-height: 1.2;
	font-size: 32px;
	font-weight: bold;
	color: var(--title-color);
}

.newstime{
	margin-bottom: 30px;
}

.newstime i{
	line-height: 1;
	font-size: 13px;
	color: var(--text-color);
}

.newstime span{
	margin-left: 5px;
	line-height: 1;
	font-size: 13px;
	color: var(--text-color);
}

.newstime .timestamp{
	margin-left: 20px;
	font-size: 14px;
	font-family: 'Montserrat-lig';
}

.newsshare{
	overflow: hidden;
}

.newsshare a{
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 16px;
	box-sizing: content-box;
	line-height: 36px;
	text-align: center;
	font-size: 22px;
	color: #fff;
}

.newsshare a~a{
	margin-left: 10px;
}

.newsshare a.qzone{
	background: none;
	border: #eee 1px solid;
	color: #f0bb02;
}

.newsshare a.penguin{
	background: none;
	border: #eee 1px solid;
	color: #315c97;
}

.newsshare a.weibo{
	background: none;
	border: #eee 1px solid;
	color: #e40000;
}

.newsshare a.qzone:hover{
	background: #f0bb02;
	border: #f0bb02 1px solid;
	color: #fff;
}

.newsshare a.penguin:hover{
	background: #315c97;
	border: #315c97 1px solid;
	color: #fff;
}

.newsshare a.weibo:hover{
	background: #e40000;
	border: #e40000 1px solid;
	color: #fff;
}

.newscontent{
	overflow: hidden;
}

.newscontent p{
	margin-bottom: 15px;
	opacity: .9;
	line-height: 1.6;
	font-size: 15px;
	color: var(--title-color);
}

.newscontent img{
	display: block;
	width: 100%;
}

/*分页*/
.newspage {
	overflow: hidden;
}

.newspage span{
    padding-right: 5px;
    line-height: 1;
    font-size: 14px;
	color: #666;
}

.newspage span.mar{
    margin-right: 10px;
}

.newspage span.mal{
    margin-left: 10px;
}

.newspage a{
    display: inline-block;
	line-height: 1;
	padding: 12px 12px;
	background: #fff;
	border-radius: 6px;
	border: #eee 1px solid;
	text-align: center;
	font-size: 14px;
	color: #333;
}

.newspage a:hover {
	color: #fff;
	background: var(--primary-color);
	border: var(--primary-color) 1px solid;
}

.newspage select{
   border: #eee 1px solid;
   border-radius: 6px;
   margin-left: 5px;
   padding: 10px 10px;
   line-height: 1;
   font-size: 14px;
   color: #333;
}

/*师资介绍*/
.teacher{
    padding-top: 10px;
}

.teacher li {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: #eee 1px solid;
	overflow: hidden;
}

.teacher li:last-child {
	border-bottom: none;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.teacher li .avatar {
	width: 120px;
	height: 120px;
	margin-right: 20px;
	border-radius: 120px;
	overflow: hidden;
}

.teacher li .avatar img {
	display: block;
	width: 120px;
	height: 120px;
}

.teacher li .introduce {
	overflow: hidden;
}

.teacher li .introduce .name {
    line-height: 1;
	font-size: 16px;
	font-weight: bold;
	color: #333;
}

.teacher li .introduce .name span{
    margin-left: 10px;
    padding-left: 10px;
    border-left: #aaa 1px solid;
}

.teacher li .introduce .desc {
	line-height: 1.5;
	padding-top: 10px;
	font-size: 14px;
	color: #333;
}

/*瀑布流*/
.wall{
    overflow: hidden;
}

.wall ul {
    column-count: 3;          /* 列数，可改为2或4 */
    column-gap: 14px;         /* 列间距 */
}

.wall ul li {
    break-inside: avoid;      /* 防止单个项目被截断到两列 */
    margin-bottom: 15px;      /* 项目下边距 */
    overflow: hidden;
}

.wall ul li img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 过渡动画 */
}

.wall ul li:hover img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);  /* 轻微上浮，增强立体感 */
}

.wall ul li h4 {
    padding: 10px 0px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

/*表格*/
.tablebox {
	overflow-y: hidden;
}

.tableinfo-tip {
	line-height: 30px;
	font-size: 12px;
	color: #666;
}

/*白色表格*/
.table-white {
	display: table;
	width: 100%;
	margin: 0px;
	padding: 0px;
	border-collapse: collapse;
}

.table-white * {
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
}

.table-white thead {
	background: #f5f5f5;
}

.table-white thead tr {
	border-bottom: #f1f1f1 1px solid;
}

.table-white thead tr th {
	line-height: 22px;
	padding: 15px 10px;
	text-align: left;
	font-size: 14px;
	color: #4f4f4f;
}

.table-white tbody {
	background: #fff;
}

.table-white tbody tr {
	border-bottom: 1px solid #eee;
}

.table-white tbody tr td {
	line-height: 22px;
	padding: 15px 10px;
	text-align: left;
	font-size: 14px;
	color: #4f4f4f;
}

/*黑色表格*/
.table-black {
	display: table;
	width: 100%;
	margin: 0px;
	padding: 0px;
	border-collapse: collapse;
}

.table-black * {
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
}

.table-black thead {
	background: #333;
}

.table-black thead tr {
	border-bottom: #555555 1px solid;
}

.table-black thead tr th {
	line-height: 24px;
	padding: 15px 10px;
	text-align: left;
	font-size: 16px;
	color: #fff;
}

.table-black tbody {
	background: #444;
}

.table-black tbody tr {
	border-bottom: 1px solid #555555;
}

.table-black tbody tr td {
	line-height: 22px;
	padding: 15px 10px;
	text-align: left;
	font-size: 14px;
	color: #fff;
}

/*示例1*/
#move_port {
    position: fixed;
    width: 300px;
    overflow: hidden;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 10000;
}

#move_port .post-box {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

#move_port .post-box a {
    display: block;
}

#move_port .post-box a img {
    display: block;
    width: 300px;
    height: auto;
}

#move_port .post-box .close_port {
    position: absolute;
    right: 0px;
    bottom: 0px;
    line-height: 1;
    background: linear-gradient(to right, rgba(255,255,255,0), #000);
    padding: 5px 10px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
}