* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'HarmonyOS Sans SC', 'SimSun', 'SimHei', 'Arial', 'sans-serif'; */
}

@font-face {
	font-family: "Bahnschrift";
	src: url('../font/bahnschrift.ttf');
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

body {
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
	font-family: "Microsoft YaHei";
}

::-webkit-scrollbar {
	/*高宽分别对应横竖滚动条的尺寸*/
	width: 5px;
	height: 1px;
}

/*滚动条里面小方块*/
::-webkit-scrollbar-thumb {
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: rgba(245, 130, 31, 1);
}

/*滚动条里面轨道*/
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	background: #EDEDED;
}

.content1300 {
	margin: 0 auto;
	width: 1300px;
	max-width: 94%;
}

.content1440 {
	margin: 0 auto;
	width: 1440px;
	max-width: 94%;
}

.content1400 {
	margin: 0 auto;
	width: 1400px;
	max-width: 94%;
}

.content1240 {
	margin: 0 auto;
	width: 1240px;
	max-width: 94%;
}

.content1200 {
	margin: 0 auto;
	width: 1200px;
	max-width: 94%;
}

.content1500 {
	margin: 0 auto;
	width: 1500px;
	max-width: 94%;
}

.content1600 {
	margin: 0 auto;
	width: 1600px;
	max-width: 94%;
}

.content1416 {
	margin: 0 auto;
	width: 1416px;
	max-width: 94%;
}

.content520 {
	padding: 0 5.2%;
}

.picCover {
	position: relative;
}

.picCover .pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.picCover .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hoverLi .pic {
	overflow: hidden;
}

.hoverLi:hover .imgScale {
	transform: scale(1.05);
}

.imgScale {
	transition: all 1s;
	display: block;
	width: 100%;
}

.font30 {
	font-size: 30px;
}

.font48 {
	font-size: 48px;
}

.font64 {
	font-size: 64px;
}

.font34 {
	font-size: 34px;
}

.font36 {
	font-size: 36px;
}

.font32 {
	font-size: 32px;
}

.font42 {
	font-size: 42px;
}

.font52 {
	font-size: 52px;
}

.font60 {
	font-size: 60px;
}

.font68 {
	font-size: 68px;
}

.font72 {
	font-size: 72px;
}

.font62 {
	font-size: 62px;
}

.font80 {
	font-size: 80px;
}

.font90 {
	font-size: 90px;
}

.font200 {
	font-size: 200px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
}

header.active {
	background-color: #fff;
}

header .container {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 92px;
}

header .container .logo {
	position: relative;
	z-index: 3;
}

header .container .logo img {
	display: block;
	width: 300px;
	filter: brightness(0) invert(1);
	transition: filter 0.3s ease;
}

header.active .container .logo img {
	filter: brightness(1) invert(0);
}

header .nav-links {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

header .nav-links .list {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	gap: 63px;
}

header .nav-links .list li>a {
	display: block;
	font-weight: 400;
	font-size: 18px;
	color: #fff;
	line-height: 92px;
	transition: all .3s ease;
}

header.active .nav-links .list li>a {
	color: #000000;
}

header .nav-links .list li.active>a,
header .nav-links .list li:hover>a {
	color: rgba(229, 0, 18, 1);
}

/* 下拉菜单样式 */
header .nav-links .list li.dropdown {
	/* position: relative; */
}

header .nav-links .list li.dropdown .dropdown-toggle {
	position: relative;
}

header .nav-links .list li.dropdown .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	/* box-shadow: 0 4px 12px rgba(0,0,0,0.15); */
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	/* margin-top: 10px; */
}

header .nav-links .list li.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

header .nav-links .list li.dropdown .dropdown-content {
	display: flex;
	width: 1375px;
	/* padding: 20px; */
	max-width: 94%;
	margin: 0 auto;
}

header .nav-links .list li.dropdown .dropdown-content-left {
	padding: 72px 72px 72px 0;
	border-right: 1px solid rgba(245, 245, 245, 1);
	width: 360px;
	text-align: right;
	position: relative;
}

header .nav-links .list li.dropdown .dropdown-content-left:before {
	position: absolute;
	content: "";
	right: 0;
	width: 3px;
	height: 130px;
	background: #E50012;
}

header .nav-links .list li.dropdown .dropdown-content-left .title {
	font-weight: bold;
	font-size: 30px;
	color: #333333;
	line-height: 1;
}

header .nav-links .list li.dropdown .dropdown-content-left .des {
	font-weight: 400;
	font-size: 17px;
	color: #959795;
	line-height: 30px;
	margin-top: 20px;
}

header .nav-links .list li.dropdown .menu-list {
	flex: 1;
	/* padding-right: 30px; */
	margin: 0 100px 0 57px;
	padding: 48px 0;
}

header .nav-links .list li.dropdown .menu-list a {
	display: flex;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 54px;
	justify-content: space-between;
	align-items: center;
	padding: 0 28px 0 40px;
	transition: all 0.3s ease;
}

header .nav-links .list li.dropdown .menu-list a:not(:last-child) {
	margin-bottom: 5px;
}

header .nav-links .list li.dropdown .menu-list a.active {
	background: rgba(229, 0, 18, 1);
	color: #fff;
}



header .nav-links .list li.dropdown .dropdown-images {
	width: 34.83%;
	padding: 54px 0 96px;
}

header .nav-links .list li.dropdown .dropdown-image {
	display: none;
}

header .nav-links .list li.dropdown .dropdown-image.active {
	display: block;
}

header .nav-links .list li.dropdown .dropdown-images .pic {
	border-radius: 20px;
}

@media (max-width: 768px) {
	header .nav-links .list li.dropdown .dropdown-content {
		flex-direction: column;
		width: 300px;
	}

	header .nav-links .list li.dropdown .dropdown-image {
		width: 100%;
		height: 150px;
		margin-top: 15px;
	}
}

header .nav-tools {
	position: relative;
	display: flex;
	align-items: center;
	gap: 40px;
	z-index: 3;
}

header .language-dropdown {
	position: relative;
	cursor: pointer;
}

header .language-toggle {

	display: flex;
	align-items: center;
	gap: 5px;
	padding: 5px 0;
	transition: all 0.3s ease;
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	line-height: 24px;
	gap: 7px;
}

header .language-toggle .icon-yuyan {
	font-size: 20px;
}

header .language-toggle .icon-xiajiantou {
	font-size: 12px;
	transform: rotate(90deg);
}

header.active .language-toggle {
	color: #000000;
}

header .language-dropdown:hover .language-toggle {
	color: rgba(229, 0, 18, 1);
}

header .language-options {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 10px 0;
	min-width: 100px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

header .language-dropdown:hover .language-options {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

header .language-options a {
	display: block;
	padding: 8px 15px;
	color: #333;
	transition: all 0.3s ease;
}

header .language-options a:hover {
	background: #f5f5f5;
	color: rgba(229, 0, 18, 1);
}

header .search-box {
	position: relative;
}

header .search-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	cursor: pointer;
	padding: 5px;
	transition: all 0.3s ease;
	font-size: 20px;
	color: #fff;
}

header.active .search-icon {
	color: #000000;
	background-color: rgba(0, 0, 0, .2);
}

header .search-icon:hover {
	color: rgba(229, 0, 18, 1);
}

header .search-input-container {
	position: absolute;
	top: 150%;
	right: 0;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	display: flex;
	align-items: center;
	padding: 5px;
	min-width: 250px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

header .search-box.active .search-input-container {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

header .search-input-container input {
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 8px 12px;
	font-size: 14px;
	outline: none;
	transition: all 0.3s ease;
}

header .search-input-container input:focus {
	border-color: rgba(229, 0, 18, 1);
}

header .search-btn {
	background: rgba(229, 0, 18, 1);
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 8px 15px;
	margin-left: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

header .search-btn:hover {
	background: #c00014;
}

header .icon-cebianlan {
	font-size: 28px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

header .icon-cebianlan:hover,
header.active .icon-cebianlan {
	color: rgba(229, 0, 18, 1);
}
header .products-section {
    background: #fff;
	padding: 60px 0 83px;
}

header .products-section::before {
    display: none;
}

header .products-section .prod-col {
    width: 48.42%;
}

header .products-section .prod-item {
    background: rgba(249, 249, 249, 1);
}
footer {
	background: rgba(246, 246, 246, 1);
}

.footer-header {
	padding: 60px 0 70px;
	display: flex;
	justify-content: space-between;
}

.footer-header .f-logo img {
	/* filter: brightness(0) invert(1); */
	display: block;
	width: 300px;
}

.friend-link-box {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 240px;
	height: 54px;
	background: rgba(255, 255, 255, 1);
	border-radius: 12px;
	transition: all 0.3s ease;
	font-weight: 400;
	font-size: 16px;
	color: rgba(68, 68, 68, 1);
	padding: 0 20px;
}

.friend-link-box .icon-xiajiantou {
	font-size: 12px;
}

.friend-link-box:hover {
	color: rgba(229, 0, 18, 1);
	background: rgba(255, 255, 255, .8);
}

.friend-link-dropdown {
	position: absolute;
	top: 120%;
	right: 0;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	padding: 10px 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	margin-top: 5px;
}

.friend-link-box:hover .friend-link-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.friend-link-dropdown a {
	display: block;
	padding: 10px 20px;
	color: #333;
	font-size: 14px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.friend-link-dropdown a:hover {
	background: rgba(229, 0, 18, 0.1);
	color: rgba(229, 0, 18, 1);
}

.footer-body {
	display: flex;
	justify-content: space-between;
}

.footer-body .f-nav-group {
	display: flex;
	gap: 0 108px;
}

.footer-body .f-contact-info h4,
.footer-body .f-nav-group h4 {
	font-weight: bold;
	font-size: 18px;
	color: rgba(34, 34, 34, 1);
	line-height: 30px;
}

.footer-body .f-nav-group ul {
	margin-top: 26px;
}

.footer-body .f-nav-group ul a {
	display: inline-block;
	font-weight: 400;
	font-size: 16px;
	color: rgba(119, 119, 119, 1);
	line-height: 30px;
	transition: all 0.3s ease;
}

.footer-body .f-nav-group ul a:hover {
	color: #E50012;
}

.footer-body .f-contact-info {
	text-align: right;
}

.footer-body .f-contact-info .phone-number {
	font-family: Bahnschrift;
	font-weight: bold;
	color: rgba(229, 0, 18, 1);
	line-height: 1;
	margin-top: 15px;
}

.footer-body .f-contact-info .address {
	font-weight: 400;
	font-size: 16px;
	color: #A0A0A0;
	line-height: 30px;
	margin-top: 7px;
}

.footer-copyright {
	margin-top: 74px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background: rgba(114, 114, 114, 1);
}

.footer-copyright .copyright-text {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	line-height: 24px;
}

.footer-copyright .copyright-text a {
	color: #fff;
	transition: all 0.3s ease;
}

.footer-copyright .copyright-text a:hover {
	color: rgba(229, 0, 18, 1);
}

.footer-copyright .f-social-icons {
	display: flex;
	gap: 20px;
}

.footer-copyright .f-social-icons a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .2);
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s ease;
}

.footer-copyright .f-social-icons a:hover {
	background: rgba(229, 0, 18, 1);
}

.innerBanner {
	position: relative;
}

.innerBanner .pic img {
	display: block;
	width: 100%;
	min-height: 430px;
	object-fit: cover;
}

.innerBanner .bannerBox {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.innerBanner .bannerBox .title {
	font-weight: bold;
	line-height: 1;
	color: #FFFFFF;
}

.products-section {
	position: relative;
	padding: 100px 0;
	background-color: rgba(247, 247, 247, .7);
}

.products-section::before {
	position: absolute;
	content: "";
	right: 0;
	top: 0;
	height: 100%;
	width: 50%;
	background-color: rgba(238, 238, 238, .7);
}

.products-section .product-cols {
	position: relative;
	display: flex;
	justify-content: space-between;
	z-index: 3;
	height: auto;
}

.products-section .prod-col {
	width: 46.51%;
}

.products-section .prod-title {
	border-left: 6px solid rgba(229, 0, 18, 1);
	padding-left: 10px;
	font-weight: bold;
	color: #000000;
	line-height: 1;
	margin-bottom: 1em;
}

.products-section .prod-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.products-section .prod-item {
	position: relative;
	background: #fff;
	padding: 26px 20px 26px 25px;
	/* padding: 26px 38px; */
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	font-weight: 400;
	font-size: 16px;
	color: #000000;
	line-height: 20px;
	transition: all 0.3s ease-in-out;
}

.products-section .prod-item::before {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	content: "";
	height: 100%;
	background: url(../images/bg-icon.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: right top;
}

.products-section .prod-item:hover {
	color: #fff;
	background-color: rgba(229, 0, 18, 1);
}

.products-section .prod-item .icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.products-section .prod-item .icon img {
	max-width: 100%;
	max-height: 100%;
	transition: all 0.3s ease-in-out;
}

.products-section .prod-item:hover .icon img {
	transform: rotateY(180deg);
	filter: brightness(0) invert(1);
}

.products-section .prod-item.active {
	color: #fff;
	background-color: rgba(229, 0, 18, 1);
}
.products-section .prod-item.active .icon img {
	transform: rotateY(180deg);
	filter: brightness(0) invert(1);
}

.news-card {
	position: relative;
	background: #F5F5F5;
	border-radius: 40px;
	overflow: hidden;
}

.news-card .btn-point {
	display: none
}

.news-card .btn-point {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 80px;
	height: 80px;
	transform: rotate(-90deg);
}

.news-card .btn-point span:nth-child(1) {
	position: absolute;
	bottom: -80px;
	right: -80px;
	width: 80px;
	height: 80px;
	background: #fff;
	border-radius: 50% 0 0 0;
	transition: bottom .7s cubic-bezier(.785, .135, .15, .86), right .7s cubic-bezier(.785, .135, .15, .86), transform .3s
}

.news-card .btn-point span:nth-child(1)::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -40px;
	width: 40px;
	height: 40px;
	box-sizing: content-box;
	background: radial-gradient(circle at 0 0, transparent 39.5px, #fff 40px);
}

.news-card .btn-point span:nth-child(1)::after {
	content: "";
	position: absolute;
	top: -40px;
	right: 0;
	width: 40px;
	height: 40px;
	box-sizing: content-box;
	background: radial-gradient(circle at 0 0, transparent 39.5px, #fff 40px);
}

.news-card .btn-point span:nth-child(2) {
	overflow: hidden;
	display: block;
	position: absolute;
	bottom: 2px;
	right: 7px;
	width: 64px;
	height: 64px;
	transform: scale(0);
	transform-origin: right bottom;
	transition: transform .6s cubic-bezier(.785, .135, .15, .86)
}

.news-card .btn-point span:nth-child(2)::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #F5F5F5;
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.news-card .btn-point span:nth-child(2)::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/arrow-down.svg') no-repeat center / auto 96%;
}

.news-card:hover .btn-point span {
	--velocity: 0.8
}

.news-card:hover .btn-point span:nth-child(1) {
	bottom: 0;
	right: 0;
	transition: bottom calc(.7s * var(--velocity)) cubic-bezier(.785, .135, .15, .86), right calc(.7s * var(--velocity)) cubic-bezier(.785, .135, .15, .86), transform .3s;
	animation: icon-btn-ani calc(1.4s * var(--velocity)) calc(0s * var(--velocity)) both ease-out;
	transform-origin: right bottom
}

.news-card:hover .btn-point span:nth-child(2) {
	overflow: visible;
	transform: scale(1);
	transition: transform calc(.7s * var(--velocity)) calc(.05s * var(--velocity)) cubic-bezier(.785, .135, .15, .86)
}

.news-card:hover .btn-point span:nth-child(2)::before {
	animation: icon-btn-ani calc(1.35s * var(--velocity)) calc(.05s * var(--velocity)) both ease-out;
	transform-origin: right bottom
}

.news-card:hover .btn-point span:nth-child(2)::after {
	animation: icon-btn-ani calc(1.35s * var(--velocity)) calc(.05s * var(--velocity)) both ease-out;
	transform-origin: right bottom
}

@keyframes icon-btn-ani {
	0% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.1)
	}

	70% {
		transform: scale(.98)
	}

	100% {
		transform: scale(1)
	}
}

.news-card .news-info {
	padding: 50px 40px 44px;
}

.news-card .news-tag {
	display: flex;
	align-items: center;
	gap: 7px;
	font-weight: bold;
	font-size: 12px;
	color: #000000;
	line-height: 1;
}

.news-card .news-tag span {
	width: 8px;
	height: 8px;
	background: #E50012;
	border-radius: 50%;
}

.news-card .news-title {
	margin: 25px 0;
	font-weight: bold;
	font-size: 20px;
	color: #000000;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.3s ease-in-out;
}

.news-card:hover .news-title {
	color: #E50012;
}

.news-card .news-date {
	font-weight: 400;
	font-size: 14px;
	color: #666666;
	line-height: 1;
}

.news-card .picCover {
	padding-top: 55.11%;
}

.innerPage {
	padding-top: 92px;
}

.page-num:hover,
.page-num.active {
	background: rgba(245, 130, 31, 1);
	color: #fff;
	border-color: rgba(245, 130, 31, 1);
}

/* 侧边栏 */
.pc-aslide {
	position: fixed;
	right: 0;
	top: 92px;
	bottom: 0;
	width: 363px;
	height: calc(100vh - 92px);
	background: #fff;
	z-index: 998;
	transition: all 0.3s ease;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
	padding: 60px 70px 60px 90px;
	transform: translateX(100%);
	overflow: auto;
	overscroll-behavior: contain;
}

.pc-aslide.active {
	/* right: 0; */
	transform: translateX(0);
}

.pc-aslide .pc-aslide-content {
	/* height: 100%; */
	/* display: flex; */
	/* flex-direction: column; */
}

.pc-aslide .pc-aslide-content-t {
	padding: 20px;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pc-aslide .pc-aslide-content-t h3 {
	color: #e50012;
	font-size: 18px;
	font-weight: bold;
	margin: 0;
}

.pc-aslide .pc-aslide-content-t .close {
	font-size: 24px;
	color: #333;
	cursor: pointer;
}

.pc-aslide .pc-aslide-content-c {
	/* flex: 1; */
	/* padding: 20px; */
	/* overflow-y: auto; */
}

.pc-aslide .pc-aslide-content-c .list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pc-aslide .pc-aslide-content-c .list li {
	margin-bottom: 22px;
}

.pc-aslide .pc-aslide-content-c .list li .li-title {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
}
.pc-aslide .pc-aslide-content-c .list li .li-title .iconfont{
	font-weight:bold;
	cursor:pointer;
}
.pc-aslide .pc-aslide-content-c .list li .li-title .menu-item {
	color: rgba(102, 102, 102, 1);
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	transition: all .6s;
}
.pc-aslide .pc-aslide-content-c .list li.active .li-title .iconfont,
.pc-aslide .pc-aslide-content-c .list li:hover .li-title .iconfont,
.pc-aslide .pc-aslide-content-c .list li:hover .li-title .menu-item,
.pc-aslide .pc-aslide-content-c .list li .li-des a:hover,
.pc-aslide .pc-aslide-content-c .list li.active .li-title .menu-item{
	color:rgba(229, 0, 18, 1);
}
.pc-aslide .pc-aslide-content-c .list li .li-title .menu-toggle {
	color: #333;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
}
.pc-aslide .pc-aslide-content-c .list li .li-des{
	margin-top:6px;
	padding: 0 17px;
	display:none;
}
.pc-aslide .pc-aslide-content-c .list li .li-des a{
	display:block;
font-weight: 400;
font-size: 14px;
color: #666666;
line-height: 30px;
	transition: all .6s;
}
.pc-aslide .pc-aslide-content-c .wechat-section {
	margin-top: 60px;
	/* padding-top: 20px; */
	/* border-top: 1px solid #e5e5e5; */
}

.pc-aslide .pc-aslide-content-c .wechat-section .wechat-title {
	/* color: #333; */
	/* font-size: 16px; */
	font-size: 15px;
	color: #666666;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 0 6px;
}
.pc-aslide .pc-aslide-content-c .wechat-section .wechat-title .iconfont{
	font-size:20px;
}
.pc-aslide .pc-aslide-content-c .wechat-section .qrcode {
	text-align: center;
}

.pc-aslide .pc-aslide-content-c .wechat-section .qrcode img {
	width: 120px;
	height: 120px;
	display: block;
}

.breadcrumb-wrap {
	font-weight: 400;
	font-size: 13px;
	color: #A9A9A9;
	line-height: 24px;
	padding-top: 45px;
}

.breadcrumb-wrap .container {
	display: flex;
	flex-wrap: wrap;
	gap: 0 3px;
}

.breadcrumb-wrap .icon-home {
	font-size: 18px;
}

.breadcrumb-wrap .icon-youjiantou11 {
	font-size: 14px;
}

.breadcrumb-wrap a {
	color: #A9A9A9;
	transition: all .6s;
}

.breadcrumb-wrap a:hover,
.breadcrumb-wrap a.current {
	color: rgba(68, 68, 68, 1);
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	display: none;
	z-index: 9999;
}

.modal .shadow {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.video-content {

	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

}

.modal .close {
	position: absolute;
	right: -26px;
	top: -26px;
	cursor: pointer;
	color: #fff;
	font-size: 24px;
}

.video-content video {
	display: block;
	margin: 0 auto;
	max-width: 90vw;
	max-height: 80vh;
}


.pagination ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.pagination ul li {
	width: 40px;
	height: 40px;
	background: #FFFFFF;
	border-radius: 4px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	font-family: Bahnschrift;
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
	margin: 6px;
	cursor: pointer;
	transition: all .6s;
}


.pagination ul li .iconfont {
	font-size: 18px;
}

.pagination ul li:hover,
.pagination ul li.active {
	background-color: rgba(229, 0, 18, 1);
	border-color: rgba(229, 0, 18, 1);
}

.pagination ul li a {
	color: rgba(153, 153, 153, 1);
	display: block;
	transition: all .6s;
}

.pagination ul li.active a,
.pagination ul li:hover a {
	color: #fff;
}

@keyframes fadeInUpSmall {
	from {
		opacity: 0;
		transform: translate3d(0%, 30px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0%, 0px, 0);
	}
}

.fadeInUpSmall {
	animation-name: fadeInUpSmall;
}

.m-right-buttom {
	/* display: none; */
}

.history-section .timeline .btn {
	position: absolute;
	width: 5.2vw;
	top: 50%;

}

.history-section .timeline .btn span {
	width: 48px;
	height: 48px;
	background: #E5E5E5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(0, 0, 0, 1);
	transition: all 0.3s ease-in-out;
	margin: 0 auto;
	cursor: pointer;
}

.history-section .timeline .btn.btn-prev {
	left: 0;
	transform: translate(-100%, -50%);

}

.history-section .timeline .btn.btn-next {
	right: 0;
	transform: translate(100%, -50%);
}

.history-section .timeline .btn:not(.swiper-button-disabled) span:hover {
	background: rgba(229, 0, 18, 1);
	color: #fff;
}

.history-section .timeline .btn.swiper-button-disabled span {
	opacity: .9;
	color: rgba(0, 0, 0, .5);
	cursor: not-allowed;
}

.history-section {
	padding: 80px 0;
	background: url(../images/history-section-bg.jpg);
	background-size: cover;
}

.history-section .timeline {
	position: relative;
	margin-top: 46px;
}

.history-section .timeline::before {
	position: absolute;
	content: "";
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	width: 100vw;
	height: 2px;
	background-color: rgba(229, 229, 229, 1);
}

.history-section .timeline .swiper-slide {
	width: 116px;
	text-align: center;
	cursor: pointer;
}

.history-section .timeline .swiper-slide .year {
	color: rgba(136, 136, 136, 1);
	line-height: 1;
	margin-bottom: .38em;
	transform: translateY(50%)scale(.66);
	transition: all 0.3s ease-in-out;
	font-family: Bahnschrift;
}

.history-section .timeline .swiper-slide-thumb-active .year {
	color: rgba(229, 0, 18, 1);
	transform: translateY(0)scale(1);
}

.history-section .timeline .swiper-slide .dot {
	position: relative;
	width: 30px;
	height: 30px;
	background: #B5B5B5;
	border-radius: 50%;
	margin: 0 auto;
	transform: scale(.53);
	transition: all 0.3s ease-in-out;
}

.history-section .timeline .swiper-slide-thumb-active .dot {
	transform: scale(1);
	background-color: rgba(229, 0, 18, .2);
}

.history-section .timeline .swiper-slide .dot::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	box-sizing: border-box;
	z-index: 2;
	transform: scale(.53);
	background-color: #fff;
	border: 7px solid #E50012;
	border-radius: 50%;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.history-section .timeline .swiper-slide-thumb-active .dot::before {
	opacity: 1;
}

.history-section .history-content {
	margin-top: 89px;
}

.history-section .history-content .swiper-slide {
	display: flex;
	justify-content: space-between;
}

.history-section .history-content .swiper-slide .history-img {
	width: 46.51%;
	border-radius: 40px;
}

.history-section .history-content .swiper-slide .history-img img {
	height: 100%;
	object-fit: cover;
}

.history-section .history-content .swiper-slide .history-text {
	width: 46.51%;
}

.history-section .history-content .swiper-slide .history-text .year {
	font-size: 17.7vw;
	font-family: Bahnschrift;
	font-weight: 400;
	color: #FAFAFA;
	line-height: .92em;
}

.history-section .history-content .swiper-slide .history-text .text {
	font-weight: bold;
	color: #000000;
	line-height: 1.33;
}

.history-section .timeline .btn {
	top: auto;
	bottom: -9px;
}

.history-section .timeline .btn.btn-prev {
	transform: translate(-100%, 0);
}

.history-section .timeline .btn.btn-next {
	transform: translate(100%, 0);
}

.history-section .timeline {
	margin-left: 3vw !important;
	margin-right: 3vw !important;
}

.history-section .timeline .btn {
	width: 6vw;
}

#pages{
    display: flex;
    justify-content: center;
}
#pages li{
	width: 36px;
	height: 36px;
	background: #E50012;
	border-radius: 10px;
	margin: 0 3px;
}
#pages li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 16px;
	color: #ffffff;
}
#pages li.active a{
	border: 1px solid #e50012;
	border-radius: 10px;
	background: #ffffff;
	color: #e50012;
}

@media (max-width:1770px) {
	.products-section .prod-item {
		padding: 26px;
		gap: 20px;
	}
}

@media (max-width:1630px) {
	.content1600 {
		width: 94%;
	}
}

@media (max-width:1660px) {
	header .nav-links .list {
		gap: 40px;
	}
}

@media (max-width:1600px) {
	.footer-body .f-nav-group {
		gap: 0 60px;
	}
}

@media (max-width:1560px) {
	.products-section .prod-item .icon {
		width: 38px;
		height: 38px;
	}

	.products-section .prod-item {
		padding: 20px;
	}

	header .container .logo img {
		width: 270px;
	}

	header .nav-links .list li>a {
		font-size: 16px;
	}
}

@media (max-width:1500px) {}

@media (max-width:1440px) {
	header .products-section{
		width: 100%;
	}
	.products-section .prod-item {
		font-size: 14px;
		padding: 20px 15px;
		gap: 10px;
	}

	.site-header .main-nav ul {
		gap: 0 40px;
	}

	.font52,
	.font48 {
		font-size: 36px;
	}

	.font34,
	.font42,
	.font36 {
		font-size: 32px;
	}

	.font64,
	.font62,
	.font60 {
		font-size: 48px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 60px;
	}

	.font90 {
		font-size: 70px;
	}

	.font200 {
		font-size: 150px;
	}

	.content520 {
		padding-left: 3%;
		padding-right: 3%;
	}

}

@media (max-width:1400px) {}

@media (max-width:1430px) {
	.content1400 {
		width: 94%;
	}
}

@media (max-width:1330px) {
	.content1300 {
		width: 94%;
	}

	header .container .logo img {
		width: 240px;
	}

	header .nav-links .list {
		gap: 25px;
	}
}

@media (max-width:1280px) {
	.footer-body .f-nav-group {
		gap: 25px;
		justify-content: space-between;
	}

	.footer-body .f-nav-group {
		width: 68%;
	}

	.footer-body .f-contact-info {
		width: 27%;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 20px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 35px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 18px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 16px;
		line-height: 2;
	}

	.font34,
	.font42,
	.font36 {
		font-size: 30px;
	}

	.font64,
	.font62,
	.font60 {
		font-size: 36px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 48px;
	}

	.font90 {
		font-size: 60px;
	}

	.font200 {
		font-size: 120px;
	}

	.font32,
	.font30 {
		font-size: 28px;
	}

	.font52,
	.font48 {
		font-size: 30px;
	}
}

@media (max-width:1199px) {
	.pc-aslide{
		top:80px;
		height:calc(100vh - 80px)
	}	
	.history-section .timeline {
		margin-top: 45px;
	}px

	.history-section {
		padding: 75px 0;
	}

	.history-section .history-content {
		margin-top: 45px;
	}

	.history-section .timeline .btn {
		bottom: -5px;
	}

	.history-section .timeline .swiper-slide {
		width: 94px;
	}

	.history-section .timeline .btn span {
		width: 40px;
		height: 40px;
	}

	.products-section {
		padding: 0;
	}

	.products-section .product-cols {
		flex-direction: column;
		padding: 0;
	}

	.products-section::before {
		display: none;
	}

	.products-section .prod-col {
		width: 100%;
		padding: 60px 3%;
	}

	.products-section .prod-col:nth-child(2n) {
		background: rgba(238, 238, 238, .7);
	}

	header {
		padding: 20px 0;
	}

	header .container {
		height: auto;
	}

	header .search-icon {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	header .icon-cebianlan {
		font-size: 24px;
	}

	header .nav-links {
		display: none;
	}

	.font34,
	.font42,
	.font36 {
		font-size: 28px;
	}

	.font64,
	.font62,
	.font60 {
		font-size: 30px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 36px;
	}

	.font90 {
		font-size: 50px;
	}

	.font200 {
		font-size: 90px;
	}

	.font32,
	.font30 {
		font-size: 26px;
	}

	.font52,
	.font48 {
		font-size: 28px;
	}

	.m-right-buttom .in {
		height: 30px;
		width: 19px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.m-right-buttom span,
	.m-right-buttom span:after,
	.m-right-buttom span:before {
		display: block;
		height: 2px;
		width: 19px;
		background: #fff;
		transition: top .2s linear
	}

	.header .m-right-buttom.active span {
		background: transparent;
	}

	.header .m-right-buttom.active span:after,
	.header .m-right-buttom.active span:before,
	.header.active .m-right-buttom span,
	.header.active .m-right-buttom span:after,
	.header.active .m-right-buttom span:before {
		background: #E50012;
	}

	.m-right-buttom span {
		transition: all .2s .4s ease, background 0s;
		position: relative
	}

	.m-right-buttom span:after,
	.m-right-buttom span:before {
		position: absolute;
		left: 0;
		content: '';
		transform-origin: 50% 50%;
		transition: top .2s .4s ease, transform .4s ease;
		height: 2px
	}

	.m-right-buttom span:before {
		top: 6px
	}

	.m-right-buttom span:after {
		top: -6px
	}

	.m-right-buttom.active span,
	.header.active .m-right-buttom.active span {
		transition: all .2s 0s ease;
		background: 0 0
	}

	.m-right-buttom.active span:after,
	.m-right-buttom.active span:before {
		transition: top .2s ease, transform .2s .3s ease;
		top: 0;
		width: 19px
	}

	.m-right-buttom.active span:before {
		transform: rotate3d(0, 0, 1, 45deg)
	}

	.m-right-buttom.active span:after {
		transform: rotate3d(0, 0, 1, -45deg)
	}

	.innerPage {
		padding-top: 80px;
	}

	.breadcrumb-wrap {
		padding-top: 40px;
	}

	header .icon-cebianlan {
		/* display: none; */
	}
}

@media (max-width: 1024px) {
	.pc-aslide{
		top:70px;
		height:calc(100vh - 70px)
	}	
	.innerPage {
		padding-top: 64px;
	}

	.breadcrumb-wrap {
		padding-top: 30px;
	}

	.history-section .timeline {
		margin-top: 40px;
	}

	.history-section {
		padding: 65px 0;
	}

	.history-section .history-content {
		margin-top: 40px;
	}

	header {
		padding: 15px 0;
	}

	.footer-header {
		padding-bottom: 65px;
	}

	.footer-copyright {
		margin-top: 65px;
	}

	.footer-body .f-nav-group {
		gap: 0 20px;
	}

	.footer-body .f-contact-info h4,
	.footer-body .f-nav-group h4 {
		font-size: 16px;
	}

	.m-right-buttom {
		display: block;
		cursor: pointer;
		user-select: none;
	}

	.font34,
	.font42,
	.font36 {
		font-size: 26px;
	}

	.font64,
	.font62,
	.font60 {
		font-size: 28px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 30px;
	}

	.font90 {
		font-size: 40px;
	}

	.font200 {
		font-size: 70px;
	}

	.font32,
	.font30 {
		font-size: 24px;
	}

	.font52,
	.font48 {
		font-size: 26px;
	}

	.footer-copyright .copyright-text {
		font-size: 14px;
	}

	.news-card .btn-point {
		display: none !important;
	}

	.news-card .news-info {
		padding: 30px;
	}

	.news-card .news-title {
		margin: 20px 0;
	}
}

@media (max-width: 768px) {
	.breadcrumb-wrap {
		padding-top: 25px;
	}

	.history-section .timeline {
		margin-top: 30px;
	}

	.history-section .timeline .btn span {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}

	.history-section .timeline .btn {
		width: 8vw;
	}

	.history-section .timeline {
		margin-left: 5vw !important;
		margin-right: 5vw !important;
	}

	.history-section {
		padding: 55px 0;
	}

	.history-section .history-content {
		margin-top: 30px;
	}

	.history-section .history-content .swiper-slide {
		flex-direction: column-reverse;
		gap: 30px;
	}

	.history-section .history-content .swiper-slide .history-img,
	.history-section .history-content .swiper-slide .history-text {
		width: 100%;
	}

	.history-section .history-content .swiper-slide .history-text .year {
		color: #fff;
		opacity: .8;
	}

	.history-section .timeline .btn {
		bottom: -1px;
	}

	.news-card {
		border-radius: 20px;
	}

	.news-card .news-info {
		padding: 25px;
	}

	.products-section .prod-col {
		padding: 50px 3%;
	}

	header .container .logo img {
		width: 210px;
	}

	header .nav-tools {
		gap: 0 20px;
	}

	/* .footer-header .f-logo img{
		width: 38vw;
	}
	.friend-link-box{
		width: 49vw;
	} */
	.footer-body .f-nav-group {
		display: none;
	}

	.footer-header {
		padding: 55px 0 40px;
		flex-direction: column;
		gap: 19px;
	}

	.friend-link-box {
		width: 100%;
	}

	.footer-copyright {
		margin-top: 40px;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 10px;
		/* padding: 20px 0; */
	}

	.footer-body .f-contact-info {
		width: 100%;
		text-align: left;
	}

	.modal .close {
		right: 0;
	}

	.font34,
	.font42,
	.font36 {
		font-size: 24px;
	}

	.font64,
	.font62,
	.font60 {
		font-size: 26px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 28px;
	}

	.font90 {
		font-size: 30px;
	}

	.font200 {
		font-size: 50px;
	}

	.font32,
	.font30 {
		font-size: 22px;
	}

	.font52,
	.font48 {
		font-size: 24px;
	}

	.pc-aslide-content {
		background-color: transparent;
	}

	.pc-aslide {
		/* z-index: 99; */
		/* background-color: transparent; */
		width: 100%;
	}

	.pc-aslide::before,
	.pc-aslide::after {
		position: absolute;
		content: "";
		width: 100vw;
		height: 100vw;
		right: 50vw;
		bottom: -50vw;
		background-color: rgba(0, 0, 0, 1);
		border-radius: 0 50% 0 0;
		transform-origin: center;
		transform: scale(0);
		transition: opacity .7s, transform 1.5s;
		display: none;
	}

	.pc-aslide::after {
		background-color: #fff;
		right: auto;
		bottom: auto;
		left: 50vw;
		top: -50vw;
		border-radius: 0 0 0 50%;
		transition: opacity .7s, transform 1s;
		display: none;
	}

	.pc-aslide.active::after,
	.pc-aslide.active::before {
		transform: scale(5);
		opacity: 1;
	}

	.pc-aslide-content-t {
		display: none;
	}

	.pc-aslide-content {
		/* padding: 60px 3%; */
	}

	.pc-aslide-content {
		transform: translateX(0);
		z-index: 4;
	}

	.pagination ul li {
		width: 36px;
		height: 36px;
		line-height: 36px;
	}

	.video-content {
		width: 85%;
	}

	.video-content video {
		display: block;
		margin: 0 auto;
		width: 100%;
		height: auto;
	}

	.products-section .prod-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.pc-aslide .pc-aslide-content-c .wechat-section{
		margin-top:30px;
	}
}

@media (max-width: 500px) {
	.breadcrumb-wrap {
		padding-top: 20px;
	}

	.history-section .history-content .swiper-slide {
		gap: 25px;
	}

	.history-section .timeline {
		margin-top: 25px;
	}

	.history-section .timeline .btn {
		width: 10vw;
	}

	.history-section .timeline {
		margin-left: 7vw !important;
		margin-right: 7vw !important;
	}

	.history-section {
		padding: 45px 0;
	}

	.history-section .history-content {
		margin-top: 25px;
	}

	.news-card .news-info {
		padding: 20px;
	}

	.news-card .news-title {
		font-size: 18px;
		margin: 10px 0;
	}

	.news-card .news-date {
		font-size: 12px;
	}

	.products-section .prod-item .icon {
		width: 32px;
		height: 32px;
	}

	.products-section .prod-item {
		padding: 15px 10px;
	}

	.products-section .prod-col {
		padding: 40px 3%;
	}

	header .nav-tools {
		gap: 0 14px;
	}

	header .search-icon {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}

	header .icon-cebianlan {
		font-size: 20px;
	}

	header .container .logo img {
		width: 170px;
	}

	.footer-header {
		padding: 45px 0 30px;
	}

	.footer-copyright {
		margin-top: 25px;
	}

	.font34,
	.font42,
	.font36 {
		font-size: 22px;
	}

	.font64,
	.font62,
	.font60 {
		font-size: 24px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 26px;
	}

	.font90 {
		font-size: 26px;
	}

	.font200 {
		font-size: 30px;
	}

	.font32,
	.font30 {
		font-size: 20px;
	}

	.font52,
	.font48 {
		font-size: 22px;
	}

	.pc-aslide-content-c .list {
		/* min-width: 249px; */
	}

	.pc-aslide-content-c .list .li-des {
		padding-top: 15px;
		margin-top: 15px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 10px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 14px;
		line-height: 2;
	}

	.pc-aslide-content-c .list .li-des a:not(:last-child) {
		margin-bottom: 5px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 16px;
	}

	.pc-aslide-content-t {
		height: 50px;
	}

	.pc-aslide-content-t .logo img {
		width: 100px;
	}
	.pc-aslide{
		top:64px;
		height:calc(100vh - 64px);
		padding: 45px;
	}	
}

/* 右侧工具栏 */
.right-toolbar {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 997;
	display: flex;
	flex-direction: column;
	/* gap: 10px; */
	background: #E50012;
	border-radius: 10px;
	padding: 0 8px;
}

.toolbar-item {
	position: relative;
	width: 55px;
	/* background: #e50012; */
	/* border-radius: 8px; */
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	/* box-shadow: 0 2px 8px rgba(0,0,0,0.15); */
}

.toolbar-item:not(.back-to-top) {
	height: 67px;
}

.toolbar-item:nth-child(1),
.toolbar-item:nth-child(2) {
	border-bottom: 1px solid rgba(255, 255, 255, .25);
}

/* .toolbar-item:hover {
	background: #c00014;
	transform: translateX(-5px);
} */

.toolbar-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	text-align: center;
	gap: 8px;
}

.toolbar-icon .iconfont {
	font-size: 24px;
	/* margin-bottom: 4px; */
}

.toolbar-icon .iconfont.icon-xia-copy {
	font-size: 20px;
}

.toolbar-text {
	font-size: 12px;
	line-height: 1;
}

/* 微信二维码 */
.wechat-qrcode {
	position: absolute;
	right: 70px;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10000;
}

.wechat-qrcode::after {
	content: '';
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 8px solid #fff;
}

.wechat-item:hover .wechat-qrcode {
	opacity: 1;
	visibility: visible;
	right: 75px;
}

.wechat-qrcode img {
	width: 150px;
	height: 150px;
	display: block;
	margin-bottom: 10px;
}

.wechat-qrcode p {
	font-size: 14px;
	color: #333;
	text-align: center;
	margin: 0;
}

/* 服务热线电话显示 */
.phone-popup {
	position: absolute;
	right: 70px;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10000;
}

.phone-popup::after {
	content: '';
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 8px solid #fff;
}

.phone-item:hover .phone-popup {
	opacity: 1;
	visibility: visible;
	right: 75px;
}

.phone-popup p {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	text-align: center;
	margin: 0;
	white-space: nowrap;
}

/* 返回顶部按钮 */
.back-to-top {
	/* margin-top: 20px; */
	padding-bottom: 14px;
}

.back-to-top:hover {
	/* background: #c00014; */
}

@media (max-width: 768px) {
	.right-toolbar {
		right: 10px;
	}

	.toolbar-item {
		width: 50px;
		height: 50px;
	}

	.toolbar-icon .iconfont {
		font-size: 20px;
	}

	.toolbar-text {
		font-size: 10px;
	}

	.wechat-qrcode {
		right: 60px;
		padding: 10px;
	}

	.wechat-qrcode img {
		width: 120px;
		height: 120px;
	}

	.wechat-item:hover .wechat-qrcode {
		right: 65px;
	}

	.phone-popup {
		right: 60px;
		padding: 10px;
	}

	.phone-item:hover .phone-popup {
		right: 65px;
	}

	.phone-popup p {
		font-size: 14px;
	}
}