@charset "UTF-8";

/* 导航部分 */
header[type="1"]{
	background: var(--themeColor);
	width: 100%;
	z-index: 999;
}

header[type="1"] .search-input{
	background: var(--themeColor2);
	
}
header[type="1"]  form{
	height: 70%;
}
header[type="1"] .search-input[type="2"] {
	width: 30rem;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: 1rem;
	margin: 0;
}
header[type="1"] .search-input[type="2"] .layui-input-group .layui-input,
header[type="1"] .search-input[type="2"] .layui-input-group .layui-input::placeholder{
	color: #8da5ff;
}
header[type="1"] .search-input[type="2"] .layui-input-suffix .btn{
	background: transparent;
}
header[type="1"] .search-input[type="2"] .layui-input-group .layui-input{
	background: transparent;
}

header[type="1"].pc {
	position: fixed;
	height: var(--headerHeight);
	font-size: var(--f20);
	color: #fff;
}
header[type="1"].pc .search-input[type="2"] .btn svg path{
	fill: rgba(255, 255, 255, .6);
}
/* header[type="1"].pc.fix{
	background: rgba(0, 0, 0, .7);
	color: #fff;
}
header[type="1"].pc.fix a:hover{
	color: var(--themeActColor);
} */

header[type="1"].pc ul{
	gap: 2.4rem;
	height: 100%;
}
header[type="1"].pc ul li a{
	padding: 0 1rem;
	position: relative;
	display: block;
	height: 100%;
	line-height: var(--headerHeight);
}
header[type="1"].pc ul li a::after{
	height: .4rem;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	background: var(--themeActColor);
	transform: translateX(-50%);
	transition: all .3s;
	content: '';
	display: block;
}
header[type="1"].pc ul li a:hover{
	color: #fff;
}
header[type="1"].pc ul li.on a::after,
header[type="1"].pc ul li a:hover::after{
	width: 100%;
}

header[type="1"] .search-input[type="2"] .layui-input-suffix {
	width: auto;
}

header[type="1"] .search-input[type="2"] .layui-input-suffix .btn {
	padding: 0 .45rem;
	border-radius: .6rem;
	/* background: transparent; */
}

header[type="1"].pc .search-input[type="2"] .layui-input-suffix .btn svg {
	width: 1.6rem;
	height: 1.6rem;
}

header[type="1"].pc .search-input[type="2"] .layui-input-group .layui-input {
	padding-left: 1.4rem;
	/* background: transparent; */
}

header[type="1"].pc .ul-bg li.on,
header[type="1"].pc .ul-bg li:hover {
	background: var(--themeActColor);
}

/* 普通二级菜单 */
/* 顶部搜索框 */
/* 三线导航条 */
.sp_nav {
	width: 1.3rem;
	height: 1.2rem;
	display: block;
	position: relative;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	margin-right: var(--mr);
}

.sp_nav span {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	height: 0.12rem;
	background: var(--themeColor);
	font-size: 0;
	font-size: 0;
	line-height: 0;
	display: block;
	transition: width .5s, transform .5s, background .5s;
}

.sp_nav span:nth-child(2) {
	width: 70%;
	top: 50%;
	transform: translateY(-50%);
}

.sp_nav span:last-child {
	top: auto;
	bottom: 0;
}

.sp_nav:hover span:nth-child(2) {
	width: 100%;
}

.sp_nav.is_rotate.on span:nth-child(1) {
	transform: rotate(45deg);
	top: 0.5rem;
}

.sp_nav.is_rotate.on span:nth-child(2) {
	background: rgba(0, 0, 0, 0);
}

.sp_nav.is_rotate.on span:nth-child(3) {
	transform: rotate(-45deg);
	bottom: 0.5rem;
}

/* 导航结束 */
/* 导航搜索窗开始 */
.search-dialog-box {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 70vh;
	z-index: 1000000;
	opacity: 0;
	visibility: hidden;
	transition: .6s;
}

.search-dialog-box:before {
	content: "";
	position: absolute;
	top: 0;
	height: 0;
	transition: .6s;
	left: 0;
	right: 0;
	z-index: 1;
	/* background-image: -moz-linear-gradient(270deg, var(--themeColor) 20%, transparent 100%);
	background-image: -webkit-linear-gradient(270deg, var(--themeColor) 20%, transparent 100%);
	background-image: -ms-linear-gradient(270deg, var(--themeColor) 20%, transparent 100%); */
	background-image: linear-gradient(180deg, var(--themeColor) 20%, transparent 100%);
}

.search-dialog-box.on {
	opacity: 1;
	visibility: visible;
}

.search-dialog-box.on:before {
	height: 100%;
}

.search-dialog-box.on .search-bg {
	height: 100vh;
}

.search-dialog-box.on .wrap-inner {
	transform: translateY(0);
}

.search-dialog-box .search-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	margin: 0;
	background-size: cover;
	background-repeat: no-repeat;
	transform-origin: center center;
	transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.search-dialog-box .wrap-inner {
	transform: translateY(100%);
	transition: .6s;
}

.search-dialog-box .search {
	background: transparent;
	width: 100%;
	padding: 0;
	border-radius: 0;
	display: block;
}

.search-dialog {
	position: absolute;
	left: 0;
	top: 30%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 2;
}

.search-dialog .search-inner {
	overflow: hidden;
	margin-top: 0;
}

.search-dialog .search-input {
	overflow: hidden;
	display: flex;
	/* width: 50rem; */
	width: 50%;
	margin: 0 auto;
	padding: 0 0 0 1.5rem;
	background-color: rgba(255, 255, 255, 0.1);
	box-sizing: border-box;
	transition: all .3s;
	max-width: 94%;
}

.search-dialog .search-input input[type=text] {
	float: left;
	height: 3.8rem;
	flex-grow: 1;
	background-color: transparent;
	font-size: var(--f22);
	color: #fff;
	transition: all .3s;
}

.search-dialog .search-input input[type=text]::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input input[type=text]:-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input input[type=text]::-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input input[type=text]:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.search-dialog .search-input .submit {
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
}

.search-dialog .search-input .submit,
.search-dialog .search-input .clear-btn {
	height: auto;
	width: 3.5rem;
}

.search-tit {
	text-align: center;
	color: #fff;
	font-size: var(--f30);
	line-height: 1.5;
	margin-bottom: 2rem;
}

.pub-close {
	position: absolute;
	width: 3rem;
	height: 3rem;
	z-index: 10;
	right: 1.5rem;
	top: 1.35rem;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all .5s;
}

.pub-close svg {
	width: 1rem;
	height: 1rem;
}

.pub-close:hover {
	transform: rotate(180deg);
}

/* 导航搜索窗结束 */
/* 导航部分结束 */
/* 前后置搜索框开始 */
.search[type="2"] {
	background: #3d3e3f;
	width: 20rem;
	padding: .6rem 1rem .6rem 2rem;
	overflow: hidden;
	border-radius: 1rem 0 1rem 0;
	display: flex;
}

.search[type="2"] input {
	/* height: 100%; */
	width: 100%;
	background: transparent;
	font-size: var(--f16);
	color: #fff;
}

.search[type="2"] i {
	font-size: var(--f20);
	color: #b8b8b8;
}

.search-input[type="2"] {
	border: 0.2rem solid var(--themeColor);
	border-radius: .5rem;
	/* overflow: hidden; */
	width: 70rem;
	margin: 0 auto;
	height: 4.6rem;
}

.search-input[type="2"] input {
	border: none;
	font-size: var(--f16);
	height: 100%;
}

.search-input[type="2"] .layui-input:focus {
	box-shadow: none;
}

.search-input[type="2"] .layui-input-prefix {
	width: 12rem;
	padding-left: .5rem;
	background: #fff;
	border-radius: .5rem;
	/* overflow: hidden; */
	/* margin-left: .5rem; */
}

.search-input[type="2"] .layui-input-suffix {
	padding-right: 0;
	width: 10rem;
}

.search-input[type="2"] .layui-form-select .layui-edge {
	border-top-color: #000;
}

.search-input[type="2"] .layui-form-select .layui-input {
	padding-left: 2rem;
	font-size: var(--f18);
	color: #000;
}

.search-input[type="2"] .layui-form-select dl {
	top: 5rem;
	bottom: auto;
}

.search-input[type="2"] .btn {
	background: var(--themeColor);
	color: #fff;
	justify-content: center;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}

.search-input[type="2"] .layui-form-selectup dl {
	bottom: 5rem;
	top: auto;
}

.search-input[type="2"] .layui-form-select,
.search-input[type="2"] .layui-select-title {
	height: 100%;
	border-radius: .5rem;
}

/* 前后置搜索框结束 */
/* 文字打印效果开始 */
.cursor {
	display: inline-block;
	width: 2px;
	height: 1.1em;
	vertical-align: text-bottom;
	background: black;
	animation: blink 0.5s step-end infinite;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}

/* 文字打印效果结束 */

/* 右侧客服弹窗板块开始 */
.right-kefu{
	position: fixed;
	right: 0;
	top: 70%;
	transform: translateY(-50%);
	width: 80px;
	z-index: 2;
	display: none;
}
.right-kefu img{
	width: 80%;
	margin-left: auto;
	transition: width .5s;
	cursor: pointer;
	display: block;
}
.right-kefu .ewm:hover{
	width: 100%;
	
}
/* 右侧客服弹窗板块结束 */



/* 通用数字滚动区域 */
.szgd .num {
	font-family: 'num-font' !important;
	color: var(--themeColor);
	display: flex;
	align-items: flex-start;
}

.szgd .num span {
	font-size: var(--f120);
}

.szgd .num em {
	font-size: var(--f100);
	line-height: 1;
}

.szgd .li p {
	font-size: var(--f18);
	color: var(--gary);
}

.szgd.cont {
	padding: 5rem 0;
}

/* 通用数字滚动区域结束 */
/* 轮播按钮组 */
.swiper-btn {
	display: flex;
	right: calc(var(--wpPaddingNum));
	bottom: 0;
}

.swiper-btn div {
	position: static;
	background: #fff;
	width: 2.6rem;
	border-radius: 100%;
	height: auto;
	aspect-ratio: 1/1;
	margin-left: 1rem;
}

.swiper-btn .swiper-button-next:after,
.swiper-btn .swiper-button-prev:after {
	font-size: var(--f20);
	color: #000;
}

.swiper-5 .swiper-slide {
	width: calc(20% - 2rem);
	margin-right: 2rem;
}

/* 轮播按钮组结束 */
/* 面包屑开始 */
.mbx,
.mbx a {
	color: #b4b9be;
	font-size: var(--f16);
}

.top-nav {
	padding: 2rem 0 0rem;
	margin-bottom: 1rem;
}

.top-nav .mbx {
	/* margin-bottom: 1.8rem; */
}



/* 面包屑结束 */
/* tab标签页开始 */
/* .slide-nav{
} */
.nav-slide-nav {
	overflow: auto;
}

.nav-slide-nav ul {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #eeedf2;
}

.nav-slide-nav ul li {
	position: relative;
}

.nav-slide-nav ul li a {
	padding: 0.8rem 1rem;
	color: var(--themeColor2);
	font-size: var(--f20);
	display: block;
	text-wrap: nowrap;
}

.nav-slide-nav ul li.zhanwei {
	font-size: var(--f20);
	width: 4em;
	height: 0;
	visibility: hidden;
}

.nav-slide-nav ul li::after {
	position: absolute;
	bottom: -1px;
	content: '';
	display: block;
	height: 1px;
	width: 0;
	background: var(--themeColor);
	left: 50%;
	transform: translate(-50%, 0);
}

.nav-slide-nav.nav2 ul li a {
	color: #75787c;
	font-weight: bold;
	padding: 0.8rem 0;
}

.nav-slide-nav ul li.on a,
.nav-slide-nav ul li:hover a {
	color: var(--themeColor);
}

.nav-slide-nav ul li.on::after,
.nav-slide-nav ul li:hover::after {
	width: 100%;
}

.nav-slide-nav.nav2 ul li.on::after,
.nav-slide-nav.nav2 ul li:hover::after {
	width: 100%;
}

.slide-for {
	position: relative;
}

.slide-for .li {
	position: relative;
	transition: .5s;
	opacity: 1;
	/* visibility: visible; */
	/* display: block; */
}

.slide-for .li.hide {
	opacity: 0;
	/* visibility: hidden; */
	z-index: -1;
	display: none;
}

.slide-for .li+.li {
	/* position: absolute; */
	left: 0;
	top: 0;
	width: 100%;
	/* height: 100%; */
}

/* tab标签页结束 */
/* 圆形进度条动画开始 */
svg.drawcircle {
	position: absolute;
	top: 0;
	left: 0;
	overflow: inherit;
	display: block;
	pointer-events: none;
}

svg.drawcircle circle {
	fill: none;
	box-sizing: border-box;
	stroke-width: 2;
	stroke: none;
	stroke-dasharray: 0, 188.49;
	stroke-dashoffset: 188.49;
	transition: all .3s linear 0s;
}

@-webkit-keyframes svgrotate {
	0% {
		stroke: var(--themeColor);
		stroke-dasharray: 0, 390%;
		stroke-dashoffset: 390%;
	}

	100% {
		stroke: var(--themeColor);
		stroke-dasharray: 390%, 0;
		stroke-dashoffset: 390%;
	}
}

@keyframes roll {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(359deg);
	}
}

/* 圆形进度条动画开结束*/
/* 文字渐变过渡开始 */
.grad-text {
	font-weight: 400;
	background: linear-gradient(131deg, #000 0%, #000 33.33%, #0192d1 66.66%, #f0f 100%);
	-webkit-background-clip: text;
	color: transparent;
	background-size: 300% 100%;
	display: inline-block;
}

.grad-text:hover {
	animation: textNum .3s;
	animation-fill-mode: forwards;
}

@keyframes textNum {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: -50% 0;
	}
}

/* 文字渐变过渡结束 */
/* 通用banner开始 */
.n-banner {
	background-size: cover;
	width: 100%;
	aspect-ratio: 1920/700;
	color: #fff;
}

.n-banner h3 {
	font-size: var(--f60);
	margin-bottom: 1rem;
}

.n-banner h4 {
	font-size: var(--f30);
	font-weight: normal;
}

/* 通用banner结束 */
/* 通用标题开始 */
/* 通用链接 */
.ljgd {
	color: #8dc21f;
	font-size: var(--f20);
}

.ljgd:hover {
	color: var(--themeColor2);
}

.n-zhead {
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	/* padding: var(--wpPadding); */
}

.n-zhead .lt h4 {
	color: #000;
	font-size: var(--f40);
	margin-bottom: 0.7rem;
	line-height: 1em;
	position: relative;
}

.n-zhead .lt h4::after {
	content: '';
	display: block;
	background: url(../images/line.png) no-repeat center;
	position: absolute;
	height: 100%;
	width: auto;
	aspect-ratio: 9/38;
	transform: translateX(-1.7rem);
	left: 0;
	top: 0;
}

.n-zhead .lt h4.biao2::after {
	background: url(../images/line2.png) no-repeat center;
}

.n-zhead .lt p {
	color: var(--gary);
	font-size: var(--f20);
	font-weight: lighter;
	line-height: 1.8;
}

/* 通用标题结束 */


/* 栏目介绍开始 */
.cate-desc{
	font-size: var(--f18);
	color: #fff;
	line-height: 1.6;
	display:block;
	background: var(--themeColor);
	padding: 2rem;
	border-radius: 1rem;
}
/* 栏目介绍结束 */


/* 分页开始 */
.page .box,
.pagination-block .pagination {
	display: flex;
	/* margin-top: 0.3rem; */
	flex-wrap: wrap;
	justify-content: center;
}

.page a,
.pagination-block a,
.pagination-block span {
	--pageWidth: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.05s;
	font-size: var(--f16);
	color: #3a3a3a;
	margin-right: 0.625rem;
	border: 1px solid #e0e0e0;
	flex-shrink: 0;
	min-width: var(--pageWidth);
	height: var(--pageWidth);
	/* background-color: #fff; */
	border-radius: .2rem;
	padding: 0 .8rem;
	line-height: 1;
}

.page a:hover,
.page a.on,
.pagination-block li.active span,
.pagination-block li:hover span,
.pagination-block li:hover a {
	color: #fff;
	border: 1px solid var(--themeActColor);
	background-color: var(--themeActColor);
	border-radius: .2rem;
}

.page a span {
	padding: 0 1rem;
	white-space: nowrap;
}

.page .centers {
	justify-content: center;
}

/* 分页结束 */
/* 走马灯效果 */
.gd-list {
	margin-top: 0.28rem;
	position: relative;
}

.gd-list::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 20%;
	background: linear-gradient(90deg, var(--themeColor) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 9;
}

.gd-list::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 20%;
	background: linear-gradient(270deg, var(--themeColor) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
}

.marquee .swiper-wrapper,
.marquee-revert .swiper-wrapper {
	transition-timing-function: linear !important;
}

.marquee img,
.marquee-revert img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 走马灯效果结束 */
/* tab导航区 */
.wzkind-slide-nav {
	display: flex;
	align-items: center;
	gap: 0.4625rem;
	justify-content: center;
	margin: 0.25rem 0 0.15rem;
}

.wzkind-slide-nav a {
	color: #7d7d7d;
	font-size: var(--f18);
	line-height: 1.5;
	transition: all .5s;
	position: relative;
}

.wzkind-slide-nav a::before {
	content: '';
	position: absolute;
	width: 0;
	height: 0.03rem;
	background: #c7000a;
	border-radius: 3px;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: -.075rem;
}

.wzkind-slide-nav li.on a,
.wzkind-slide-nav li a:hover {
	color: #c7000a;
}

.wzkind-slide-nav a:hover::before,
.wzkind-slide-nav li.on a::before {
	width: 110%;
}

/* tab导航区结束 */
/* 鼠标动画效果 */
.shubiao {
	color: #fff;
}

.shubiao i,
.shubiao svg {
	animation: shubiao 1s linear infinite;
	display: block;
	margin: 0 auto;
	margin-bottom: 0.8rem;
	font-size: var(--f34);
	width: var(--f34);
	height: var(--f34);
	color: #fff;
	fill: #fff;
}

@keyframes shubiao {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(0.4rem);
	}

	100% {
		transform: translateY(0.6rem);
		opacity: 0;
	}
}

/* 鼠标动画效果结束 */
/* 搜索框开始 */
.search {
	background: #3d3e3f;
	width: 20rem;
	padding: .6rem 1rem .6rem 2rem;
	overflow: hidden;
	border-radius: 1rem 0 1rem 0;
	display: flex;
}

.search input {
	/* height: 100%; */
	width: 100%;
	background: transparent;
	font-size: var(--f16);
	color: #fff;
}

.search i {
	font-size: var(--f20);
	color: #b8b8b8;
}

/* 搜索框结束 */
/* 视频统一弹窗开始 */
.vwrap {
	display: none;
	z-index: 1040000;
	width: 100%;
	position: fixed;
	transition: none !important;
}

.vwrap .videobtg {
	z-index: 900;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0.8;
	filter: alpha(opacity=80);
	overflow: hidden;
}

.vwrap .videobox {
	z-index: 1200;
	width: 60vw;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-left: -30vw;
	object-fit: cover;
	transform: translateY(-50%);
}

.vwrap .videobox #videobox {
	width: 100%;
	display: inline-block;
	background: #000;
}

.vwrap .videobox #videobox .img-hezi {
	padding-bottom: 60% !important;
}

.vwrap .videobox #videobox video {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vwrap .close {
	z-index: 999;
	width: 31px;
	height: 31px;
	cursor: pointer;
	position: absolute;
	top: 0px;
	right: -42px;
	text-align: center;
}

.vwrap .close i {
	display: block;
	width: 31px;
	height: 31px;
	-webkit-transition: 400ms;
	transition: 400ms;
}

.vwrap .close i svg {
	transition: .6s;
}

.vwrap .close:hover i svg {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

#videobox_wrapper {
	height: 100% !important;
}

/* 视频统一弹窗开始结束 */
/* 底部开始 */
footer{
	padding: 1.4rem 0;
	line-height: 2;
}

/* 底部结束 */
/*鼠标跟随效果CSS*/
/* 默认鼠标跟随隐藏 */
.mf-cursor {
	display: none;
}

#c-followDot-p {
	--dotSize: 0.8rem;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000000;
	pointer-events: none;
	/* 鼠标文字选中 */
	/* 鼠标超出隐藏 */
	/* 鼠标文字背景混色 */
	/* 鼠标鉴赏 */
}

#c-followDot-p .c-default {
	--dotDefSize: 2.8rem;
	position: absolute;
	top: calc((var(--dotDefSize) / 2) * -1);
	left: calc((var(--dotDefSize) / 2) * -1);
	width: var(--dotDefSize);
	height: var(--dotDefSize);
	border: 1px solid #9c9c9c;
	border-radius: 50%;
	opacity: .2;
	box-sizing: border-box;
	z-index: 50000;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

#c-followDot-p .c-hover {
	--dotHoverSize: 5rem;
	position: absolute;
	top: calc((var(--dotHoverSize) / 2) * -1);
	left: calc((var(--dotHoverSize) / 2) * -1);
	width: var(--dotHoverSize);
	height: var(--dotHoverSize);
	background-color: #bbb;
	border-radius: 50%;
	opacity: .12;
	z-index: 49000;
	box-sizing: border-box;
	transform: scale(0, 0);
	-webkit-transform: scale(0, 0);
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

#c-followDot-p #c-followDot .c-text {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.6s;
}

#c-followDot-p #c-followDot .c-text::before {
	font-size: 0;
	line-height: 1;
	transition: all 0.6s;
	content: '';
	color: #fff;
	visibility: hidden;
	opacity: 0;
}

#c-followDot-p.-pointer .c-default {
	transform: scale(0, 0);
	-webkit-transform: scale(0, 0);
}

#c-followDot-p.-pointer .c-hover {
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
}

#c-followDot-p.-hidden>* {
	transform: scale(0);
}

#c-followDot-p.-exclusion #c-followDot {
	transform: scale(3.3);
	background: #fff;
}

#c-followDot-p.-jianshang #c-followDot {
	--dotSize: 2.8rem;
}

#c-followDot-p.-jianshang #c-followDot .c-text::before {
	content: '鉴赏';
	font-size: var(--f16);
	opacity: 1;
	visibility: visible;
}

#c-followDot {
	width: var(--dotSize);
	height: var(--dotSize);
	margin-left: calc(var(--dotSize) / 2 * -1);
	margin-top: calc(var(--dotSize) / 2 * -1);
	position: absolute;
	border-radius: 50%;
	background-color: var(--themeColor);
	transition: all 0.6s;
	overflow: hidden;
}

#c-followDot-p.-exclusion .c-hover,
#c-followDot-p.-exclusion .c-default {
	transform: scale(0);
}

@supports (mix-blend-mode: exclusion) {
	#c-followDot-p.-exclusion {
		mix-blend-mode: exclusion;
	}
}

/*鼠标跟随效果结束*/