@charset "utf-8";

/* 根元素字体大小 - 基准值 */
html {
	font-size: 12px;
 /* 默认基准 */
}

/* 根据屏幕尺寸调整根字体大小 */
@media (min-width: 768px) {
	html {
		font-size: 14px;
	}
}

@media (min-width: 1024px) {
	html {
		font-size: 16px;
	}
}

@media (min-width: 1199) {
	html {
		font-size: 18px;
	}
}

header {
	position: fixed;
	z-index: 1000;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 999;
	height: 5rem;
	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%);
	display: flex;
	align-items: center;
	justify-content: center;
}

header .logo {
	display: block;
	height: 3.6rem;
	margin-left: 1rem;
	margin-right: 1rem;
	flex: 1;
}

header .logo img {
	height: 3.6rem;
}

header .mini {
	display: none;
}

header .nav {
	display: none;
}

header .toggle-button {
    position: relative;
    z-index: 1;
	width: 4.8rem;
	height: 4.8rem;
	background-color: var(--primary-color);
	margin-left: 1rem;
	background: url('../images/menu.svg') center no-repeat var(--primary-color);
	background-size: 40px;
	cursor: pointer;
}

.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: 7rem 2rem 2rem 2rem;
}

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

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

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

.fullmenu .search-box .search-form{
    display: flex;
	align-items: center;
	overflow: hidden;
}

.fullmenu .search-box .search-input{
    flex: 1;
    height: 3.2rem;
    padding: 0px 1rem 0px 3rem;
    outline: none;
    font-size: 1.1rem;
    border: none;
    color: var(--text-color);
}

.fullmenu .search-box .search-btn{
    height: 3.2rem;
    padding: 0px 2rem;
    outline: none;
    background: none;
    font-size: 1.2rem;
    border: none;
    color: var(--text-color);
}

.fullmenu .nav-list{
    overflow: hidden;
    margin-bottom: 1rem;
}

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


.fullmenu .nav-list .nav-item .nav-link{
    display: flex;
	align-items: center;
	justify-content: space-between;
    padding: 1.5rem 0px;
    line-height: 1;
    font-size: 1.3rem;
    color: var(--text-color);
}

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

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

.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{
    display: flex;
	align-items: center;
	justify-content: space-between;
    padding: 1.2rem 0px;
    line-height: 1;
    font-size: 1rem;
    color: var(--subtitle-color);
}

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

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

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

.swiper-container .swiper-slide a {
	display: block;
	width: 100%;
	height: 30rem;
	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);
}

.swiper-button-next,
.swiper-button-prev {
	display: none;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 5rem!important;
}

.hotlink {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 4rem;
	margin-top: calc(-4rem + 1px);
	margin-left: 1rem;
	margin-right: 1rem;
	padding: 0px .5rem;
	background: #fef9f9;
	overflow: hidden;
}

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

.hotlink .title {
	display: none;
}

.hotlink .txtMarquee-left {
	width: 100%;
	height: 1rem;
	overflow: hidden;
}

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

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

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

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

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

.hotlink .more {
	display: none;
}

.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 {
	margin: 0px 1rem;
}

.section-md .icon {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-md .icon img {
	display: block;
	height: 2.4rem;
}

.section-md .parent{
    overflow: hidden;
    display: flex;
    align-items: center;
	justify-content: center;
}

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

.section-md .parent .yanshi{
    line-height: 1;
    margin-left: -.8rem;
    font-family: 'yanshi';
    font-size: 4.4rem;
    letter-spacing: -2.2rem;
    color: var(--primary-color);
}

.section-md .chird{
    display: flex;
    align-items: center;
    margin-top: -5px;
}

.section-md .chird .subtitle {
    padding-left: 3.4rem;
    flex: 1;
    text-align: center;
	line-height: 1;
	font-size: 1.4rem;
	font-family: 'Montserrat-reg';
	color: var(--primary-color);
}

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

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

.module-md {
	margin: 0px 1rem;
	overflow: hidden;
}

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

.module-md .acea-row {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.module-md .subtitle {
	flex: 1;
	text-align: center;
	text-indent: 3rem;
	line-height: 1;
	font-size: 1rem;
	font-family: 'Montserrat-reg';
	color: #fff;
}

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

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

.warpper {
	overflow: hidden;
}

.news {
	overflow: hidden;
}

.news .headline {
	overflow: hidden;
	margin: 0px 1rem 2rem;
}

.news .headline .thumb {
	background: #eee;
	overflow: hidden;
	position: relative;
}

.news .headline .thumb::before {
	position: absolute;
	left: 0px;
	bottom: 0px;
	content: '';
	width: 90%;
	height: 3rem;
	background: #fffbf9;
}

.news .headline .thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.news .headline .info {
	position: relative;
	margin-top: -3rem;
	padding: 1rem 1rem 0px 0px;
}

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

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

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

.news .headline .info .intro {
	line-height: 1.4;
	font-size: 1.1rem;
	color: #666;
}

.news .tabloid {
	overflow: hidden;
	margin: 0px 1rem 2rem;
	padding-bottom: 1rem;
	border-bottom: #eee 1px solid;
}

.news .tabloid .thumb {
	background: #eee;
	overflow: hidden;
	position: relative;
}

.news .tabloid .thumb img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.news .tabloid .thumb::before {
	position: absolute;
	left: 0px;
	bottom: 0px;
	content: '';
	width: 90%;
	height: 3rem;
	background: #fffbf9;
}

.news .tabloid .hr20 {
	border-bottom: #eee 1px solid;
}

.news .tabloid .info {
	position: relative;
	margin-top: -3rem;
	margin-bottom: 2rem;
	padding-top: 1rem;
}

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

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

.news .tabloid .info .title {
	margin-bottom: 1rem;
	position: relative;
	line-height: 1.2;
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--title-color);
}

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

.news .latest {
	padding: 0px 1rem 2rem;
	overflow: hidden;
	background: url('../images/news.jpg')  center no-repeat;
	background-size: 200% auto;
}

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

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

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

.news .latest li .acea-row {
	display: flex;
	align-items: center;
}

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

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

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

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

.notify {
	margin: 0px 1rem;
}

.notify .acea-row {
	display: flex;
}

.notify .acea-row.row-middle {
	align-items: center;
}

.notify ul {
	flex-direction: column;
	gap: 2rem;
}

.notify ul li {
	padding-bottom: 2rem;
	background: #fff;
	box-shadow: 0px .8rem 1rem rgba(0, 0, 0, 0.05);
	padding: 1.5rem;
	overflow: hidden;
}

.notify ul li .tags {
	line-height: 1;
	padding: .4rem 1rem;
	font-size: 1rem;
	background: var(--primary-color);
	border-radius: 100rem;
	color: #fff;
}

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

.notify ul li .title {
	margin-bottom: 1rem;
	line-height: 1.4;
	font-size: 1.2rem;
}

.notify ul li .read a {
	margin-left: .5rem;
	line-height: 1;
	font-size: 1rem;
	color: var(--primary-color);
}

.notify ul li .read .iconfont {
	font-size: 1.2rem;
	color: var(--primary-color);
}

.more-notify {
	margin: 0px 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

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

.more-notify a span {
	margin-right: 1rem;
	font-size: 1.2rem;
	font-family: 'Montserrat-reg';
}

.totem {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.totem img {
	display: block;
	height: 5em;
}

.academic {
	margin: 0px 1rem;
	padding: 2.2rem 2rem 0px 2rem;
	position: relative;
	overflow: hidden;
	background: url(../images/academic-top.png) top center no-repeat;
	background-size: 100% auto;
}

.academic .hd{
    overflow: hidden;
}

.academic .hd .grid {
    overflow: hidden;
	margin-bottom: 1rem;
}

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

.academic .hd .grid .icon img{
    display: block;
    height: 3rem;
}

.academic .hd .grid .parent {
	display: flex;
	align-items: center;
}

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

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

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

.academic .list {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.academic .list li {
	position: relative;
}

.academic .list li a {
	display: block;
	height: 5rem;
	line-height: 5rem;
	background: url('../images/ao.png') 10px center no-repeat;
	background-size: 1.6rem;
	border-left: #fff 3px solid;
	border-bottom: #eee 1px solid;
	padding-left: 3rem;
	padding-right: 1rem;
	font-size: 1.1rem;
	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 .bd {
	display: none;
	overflow: hidden;
	position: relative;
	order: 1;
}

.academic .bd li {
	overflow: hidden;
}

.academic .bd img {
	display: block;
	width: 100%;
	height: auto;
}

.academic .other {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.academic .other a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.academic .other a~a {
	margin-left: 1rem;
}

.academic .other a .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.8rem;
	height: 2.8rem;
	border: var(--primary-color) 1px dashed;
	border-radius: 3rem;
	margin-right: .5rem;
	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: 3rem;
	transition: all 0.3s ease;
}

.academic .other a .icon .iconfont {
	line-height: 1;
	font-size: 1.8rem;
	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;
	font-size: 1.1rem;
	color: var(--primary-color);
}

.academic-foot {
	margin: 0px 1rem;
	overflow: hidden;
}

.academic-foot img {
	display: block;
	width: 100%;
}

/*实习医院*/
.practice {
	margin: 0px 1rem;
	position: relative;
	overflow: hidden;
}

.practice .vch {
	display: none;
}

.practice .circle {
	display: none;
}

.practice .list {
	display: none;
}

.practice .map {
	overflow: hidden;
	padding-bottom: 1.5rem;
}

.practice .map video {
	display: block;
	width: 100%;
}

.about {
	background: url("../images/notice.png") top center no-repeat;
	background-size: auto 100%;
	position: relative;
	padding-top: 1rem;
}

.about .video {
	margin: 0px 1rem;
	overflow: hidden;
	position: relative;
	box-shadow: 0px .8rem 1rem rgba(0, 0, 0, 0.05);
}

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

.about .data {
	margin: 0px 1rem 1rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

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

.about .data .item .acea-row.row-top {
	display: flex;
	align-items: center;
}

.about .data .item .acea-row.row-top .row-one{
    flex: 1;
}

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

.about .data .item .title~.acea-row{
    align-items: flex-end;   
}

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

.about .data .item .unit {
	margin-left: .5rem;
	padding-bottom: .3rem;
	line-height: 1;
	font-size: .9rem;
	font-weight: normal;
	color: var(--primary-color);
}

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

.about .data .item .text {
	line-height: 1.3;
	font-size: .9rem;
	color: var(--subtitle-color);
}

.about .data .item .icon {
	margin-left: 1rem;
	overflow: hidden;
	opacity: .1;
}

.about .data .item .icon img {
	display: block;
	width: 3.6rem;
	height: auto;
}

.about .tip {
	margin: 0px 1rem;
	line-height: 1;
	text-align: left;
	font-size: .8rem;
	color: var(--text-color);
}

/* --------------------- */
.subject {
	margin: 0px 1rem;
	overflow: hidden;
}

.subject .subject-container {
	position: relative;
}

.subject .subject-container .swiper-slide {
	width: 100%;
	padding-left: 0;
	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: 100%;
	height: auto;
}

.subject .subject-container .swiper-slide .inner {
	position: relative;
	left: auto;
	top: auto;
	width: 100%;
	padding: 1rem 0 0;
	margin-bottom: 1rem;
}

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

.subject .subject-container .swiper-slide .inner .subtitle {
	margin-bottom: 1rem;
	padding-left: 4rem;
	position: relative;
	line-height: 1;
	font-size: 1.2rem;
	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: 3rem;
	height: 2px;
	background: var(--primary-color);
}

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

.subject .subject-container .swiper-slide .inner .view {
	display: flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	background: none;
	border: var(--primary-color) 1px solid;
	border-radius: 100px;
	padding: 1rem 2rem;
}

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

.subject .subject-container .swiper-slide .inner .view .iconfont {
	margin-left: .5rem;
	font-size: 1.2rem;
}

.subject .subject-container .subject-button-next,
.subject .subject-container .subject-button-prev {
	position: absolute;
	bottom: 2rem;
	z-index: 1;
	cursor: pointer;
	line-height: 1;
	font-size: 3rem;
}

.subject .subject-container .subject-button-prev {
	left: 1rem;
}

.subject .subject-container .subject-button-next {
	right: 1rem;
}

.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);
}

.media {
	min-height: 700px;
	padding: 1rem;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 50px;
	box-sizing: border-box;
	overflow: hidden;
}

.media .item {
	position: relative;
	top: auto !important;
	left: auto !important;
        /* 关键：固定正方形 */
	width: 16rem;
	height: 16rem;
	padding: 2rem;
	box-sizing: border-box;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: center;
	transform: translate(0, 0);
	z-index: 1;
}
    
    /* 伪元素创建旋转边框 */
.media .item::before {
	content: "";
	position: absolute;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
	border: 1px dashed #cfa972;
	border-radius: 50%;
	z-index: -1;
	animation: rotateBorder 32s linear infinite;
}

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

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

.media .item:nth-child(1) {
	grid-column: 1 / 4;
	grid-row: 1 / 5;
	transform: translate(-1rem, 1rem);
}

.media .item:nth-child(2) {
	grid-column: 4 / 7;
	grid-row: 1 / 5;
	transform: translate(1rem, -1rem);
}

.media .item:nth-child(3) {
    width: 18rem;
	height: 18rem;
	grid-column: 2 / 6;
	grid-row: 4 / 9;
	transform: translateY(1rem);
}

.media .item:nth-child(4) {
    width: 16rem;
	height: 16rem;
	grid-column: 1 / 4;
	grid-row: 8 / 12;
	transform: translate(-1rem, 0);
}

.media .item:nth-child(5) {
    width: 16rem;
	height: 16rem;
	grid-column: 4 / 7;
	grid-row: 8 / 12;
	transform: translate(1rem, .5rem);
}

.media .item:nth-child(6) {
    width: 12rem;
	height: 12rem;
	grid-column: 1 / 4;
	grid-row: 11 / 15;
	transform: translate(.5rem, -.5rem);
}

.media .item:nth-child(7) {
    width: 12rem;
	height: 12rem;
	grid-column: 4 / 7;
	grid-row: 11 / 15;
	transform: translate(-.5rem, 1rem);
}

.media .item:nth-child(8) {
    width: 22rem;
	height: 22rem;
	grid-column: 2 / 6;
	grid-row: 14 / 18;
	transform: translateY(-5px);
}

/* --- 内部文本样式 --- */
.media .item .iconfont {
	margin-bottom: .5rem;
	text-align: center;
	line-height: 1;
	font-size: 2.4rem;
	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: 1rem;
	text-align: center;
	transition: 0.4s;
	line-height: 1.2;
	font-size: 1.2rem;
	color: var(--title-color);
}

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

.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: 1rem;
	color: #666;
}

.quick {
	display: none;
}

.line {
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.line img {
	display: block;
	width: 80%;
	height: auto;
}

.footer {
	position: relative;
	background: #a11e00;
}

.footer::before {
	content: "";
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0;
	width: 1.4rem;
	background: #f3c1b6;
	border-top: #fff 3rem solid;
}

.footer .row-one {
	overflow: hidden;
}

.footer .warp {
	padding: 2rem 1rem 1rem 3.4rem;
	overflow: hidden;
}

.footer .warp .logo {
	overflow: hidden;
	margin-bottom: 1rem;
}

.footer .warp .logo img {
	display: block;
	height: 3.6rem;
}

.footer .warp .link {
	overflow: hidden;
	line-height: 2rem;
	font-weight: 400;
	font-size: 1rem;
}

.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: 1rem;
}

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

.footer .warp .text p {
	line-height: 1.4;
	font-weight: 400;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
}

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

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

.footer .warp .sns .iconfont+.iconfont {
	margin-left: 1rem;
}

.footer .warp .sns .iconfont .code {
	width: 9rem;
	height: 9rem;
	padding: .5rem;
	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: 2.6rem;
	/* 在图标上方显示 */
	left: 50%;
	margin-left: -4.5rem;
}

.footer .warp .sns .iconfont .code img {
	display: block;
	width: 8rem;
	height: 8rem;
}

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

.footer .warp .custom-select {
	position: relative;
	margin-bottom: 2rem;
}

.footer .warp .custom-select .select-selected {
	height: 3rem;
	transition: background-color 0.3s ease;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 2px;
	padding: 0rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	line-height: 1;
	font-size: 1rem;
	color: #666;
}

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

.footer .warp .custom-select .select-items {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 3rem;
	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: .8rem 1rem;
	text-decoration: none;
	font-size: 1rem;
	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 {
	padding: 1rem 1rem 1rem 0rem;
	margin-left: 3rem;
	border-top: rgba(255, 255, 255, 0.2) 1px solid;
	line-height: 1.4;
	font-size: 1rem;
	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;
	aspect-ratio: 16 / 12;
	object-fit: cover;
}

.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);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

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

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

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

.sub-category {
	display: none;
	margin-top: -2rem;
	overflow: hidden;
	position: relative;
}

.sub-category .sub-category-warpper {
	height: 4rem;
	margin: 0px auto;
	position: relative;
	font-size: 1rem;
}

.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 {
	display: none;
	width: 1200px;
	height: auto;
	margin: 0px auto;
	overflow: hidden;
}

.loction .iconfont {
	margin-right: 4px;
	line-height: 1;
	font-size: 12px;
	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;
	font-size: 12px;
	color: rgba(0, 0, 0, .5);
}

.layout{
	margin: 0px 1rem;
	overflow: hidden;
	position: relative;
	margin-top: -4rem;
}

.category {
	overflow: hidden;
	margin-bottom: 2rem;
}

.category .father {
    height: 9rem;
	padding: 0px 2rem;
	background: url('../images/catelogo.png') top no-repeat var(--primary-color);
	background-size: cover;
	border-radius: 1rem 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

.category .father .toggle-btn {
    display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 10rem;
	padding: 0.6rem 1.2rem 0.6rem 1.4rem;
	gap: .5rem;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
	box-shadow: 0 1px 4px rgba(0,0,0,0.1);
	white-space: nowrap;
	flex-shrink: 0;
}

.category .father .toggle-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.category .father .toggle-btn:active {
	transform: scale(0.94);
}
.category .father .toggle-btn .textfont{
    line-height: 1;
    font-size: 1.1rem;
	font-weight: 500;
	color: #fff;
}
.category .father .toggle-btn .iconfont {
	display: inline-block;
	font-size: 1rem;
	line-height: 1;
	transition: transform 0.25s ease;
	transform: rotate(0deg);
	color: #fff;
}

.category .father .toggle-btn.expanded .iconfont {
	transform: rotate(180deg);
}

.category ul {
	padding: 0px 1rem;
	background: #f5f5f5;
	border-radius: 0px 0px 0px 1rem;
	/* 折叠核心: 默认关闭 */
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.3s ease,
    padding 0.3s ease,
    margin 0.3s ease;
}

.category ul.open {
	max-height: 800px;
   /* 足够容纳所有项 */
	opacity: 1;
	padding: 0.2rem 1rem 0.6rem 1rem;
  /* 恢复垂直内边距 */
	margin-top: 0;
      /* 与头部无缝 */
}

.category ul li {
	display: flex;
	align-items: center;
	overflow: hidden;
	border-bottom: rgba(0, 0, 0, .05) 1px solid;
}

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

.category ul li a {
	display: block;
	position: relative;
	flex: 1;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	padding-left: 2rem;
	line-height: 1;
	font-size: 1.2rem;
	color: #666;
}

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

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

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

.category ul li.current a:hover {
	padding-left: 2rem;
}

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

.category ul li .iconfont {
	line-height: 1;
	font-size: 1.2rem;
	color: #aaa;
}

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

.singel {
	overflow: hidden;
}

.singel p {
	margin-bottom: 1rem;
	opacity: .9;
	line-height: 1.5;
	font-size: 1.3rem;
	color: var(--title-color);
}

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

.newslist {
	overflow: hidden;
}

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

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

.newslist li a {
	display: inline-block;
	margin-bottom: 1rem;
	line-height: 1.4;
	font-weight: bold;
	font-size: 1.5rem;
}

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

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

.newstitle {
	margin-bottom: 2rem;
	line-height: 1.2;
	font-size: 3rem;
	font-weight: bold;
	color: var(--title-color);
}

.newstime {
	margin-bottom: 2rem;
	font-size: 1.2rem;
}

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

.newstime span {
	margin-left: .6rem;
	line-height: 1;
	color: var(--text-color);
}

.newstime .timestamp {
	margin-left: 1.4rem;
	line-height: 1;
	font-family: 'Montserrat-lig';
}

.newsshare {
	overflow: hidden;
	display: flex;
	align-items: center;
}

.newsshare a {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 1.2rem;
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 1.4rem;
	color: #fff;
}

.newsshare a~a {
	margin-left: 1rem;
}

.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: 1.2rem;
	opacity: .9;
	line-height: 1.6;
	font-size: 1.4rem;
	color: var(--title-color);
}

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

#move_port{
    display: none;
}

.eol_scatter{
    display: none;
}