@font-face {
	font-family: 'iconfont';
	src: url(../icons/iconfont.eot);
	src: url(../icons/iconfont.eot?#iefix) format('embedded-opentype'),
		url(../icons/iconfont.woff) format('woff'),
		url(../icons/iconfont.ttf) format('truetype'),
		url(../icons/iconfont.svg#iconfont) format('svg');
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0.2px;
	-moz-osx-font-smoothing: grayscale;
}

@font-face {
	font-family: "Nunito Sans";
	src: url('../fonts/nunitosans_n4.woff2');
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Nunito Sans";
	src: url('../fonts/nunitosans_n7.woff2');
	font-weight: 700;
	font-display: swap;
}

* {
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	list-style: none;
	color: var(--color2);
	font-family: "Nunito Sans";
	font-weight: 400;
}

p {
	font-size: 1.6rem;
	line-height: 1.6;
	margin: 1rem 0;
	color: #666;
}

img {
	display: block;
}

.clear {
	clear: both;
}

a {
	text-decoration: none;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--color);
}

::selection {
	background: var(--color);
	color: #fff;
}

.flexBoxs {
	display: flex;
	flex-wrap: wrap;
}

html,
body {
	font-size: 62.5%;
	width: 100%;
	position: relative;
	--color: #ff0000;
	--color2: #000000;
	--height: 66px;
	--height2: 56px;
}


.w_all {
	width: 86%;
	margin: 0 auto;
}

.w_all2 {
	width: 90%;
	margin: auto;
}

header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 99;
	transition: all 0.6s ease;
	background: #fff;
}

header .navbox {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .logo img {
	height: 3.6rem;
	transition: all 0.5s ease;
	position: relative;
	z-index: 9;
}

header.active .logo img {
	height: 3.3rem;
}

header ul {
	display: flex;
}

header ul li {
	position: relative;
	margin: 0 0 0 2.6vw;
}

header ul li h2 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: var(--height);
	transition: all 0.6s;
}

header ul li:hover h2 {
	color: var(--color) !important;
}

header.active ul li h2 {
	line-height: var(--height2);
}

.navBtn {
	z-index: 99999;
	cursor: pointer;
	display: none;
	margin-left: 2rem;
}

.navBtn span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--color2);
	margin: 4px auto;
}

.nav_btn_active {
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.nav_btn_active span:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav_btn_active span:nth-of-type(2) {
	opacity: 0;
}

.nav_btn_active span:nth-of-type(3) {
	margin-top: -59%;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


.banner {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;

}

.banner .swiper-slide {
	position: relative;
	height: 100vh;
	background: var(--color2);
}

.banner .bgs {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	will-change: transform;
	opacity: 0.87;
	transform: scale(1.1);
	transition: all 0.4s ease;
}

.banner .swiper-slide-active .bgs {
	transform: scale(1);

}

.banner .txt {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 6;
	opacity: 0;
	text-align: center
}

.banner .swiper-slide.swiper-slide-active .txt {
	left: 50%;
	opacity: 1;
	transition: all 1s ease 0.1s;
}

.banner h3 {
	color: #fff;
	font-size: 6rem;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 2rem;
	transition: all 0.5s ease 0.3s;
	opacity: 0;
	letter-spacing: -0.5px;
	transform: translateY(-40px);
}

.banner p {
	color: #fff;
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: -0.5px;
	transition: all 0.5s ease 0.6s;
	opacity: 0;
	transform: translateY(40px);
}

.banner p strong {
	display: block;
	color: var(--color);
}

.banner .swiper-pagination span {
	background: #fff;
}

.banner .more {
	transition: all 0.5s ease 1s;
	opacity: 0;
	transform: translateY(40px);
}

.banner .swiper-slide-active h3 {
	opacity: 1;
	transform: translateY(0);
}

.banner .swiper-slide-active p {
	opacity: 1;
	transform: translateY(0);
}

.banner .swiper-slide-active .more {
	opacity: 1;
	transform: translateY(0);
}

.banner .bottom {
	position: absolute;
	right: 5%;
	bottom: 8rem;
	z-index: 4;
	width: 15rem;
	display: flex;
	justify-content: flex-end;
}

.bls {
	border: 2px solid var(--color2);
	width: 3rem !important;
	height: 3rem !important;
	padding: 1rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.bls::after {
	font-weight: bold !important;
	font-size: 1.2rem !important;
	transition: all 0.5s ease;
	display: none;
}

.bls i {
	font-weight: bold;
	font-size: 1.4rem;
	transition: all 0.5s ease;
}

.bls i::after {
	content: '';
	position: absolute;
	left: -2px;
	top: 42%;
	transform: translateY(-50%);
	width: 1rem;
	height: 2px;
	background: var(--color2);
	transform: scale(0);
	transform-origin: 100% 100%;
	transition: all 0.5s ease;
	border-radius: 1rem;
}

.bls.swiper-button-prev {
	transform: rotate(-180deg);
}

.bls:hover i {
	transform: translateX(5px);
}

.bls:hover i:after {
	transform: scale(1);
}

.swiper-button-white {
	border-color: #fff;
}

.swiper-button-white i {
	color: #fff;
}

.swiper-button-white i::after {
	background: #fff;
}

.more {
	border-radius: 5rem;
	background: var(--color);
	display: flex;
	justify-content: space-between;
	padding: 1.4rem 3.5rem;
	align-items: center;
	width: max-content;
	margin: 4rem 0 0;
	cursor: pointer;
	transition: all 0.5s ease;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
}

.more img {
	width: 1.8rem;
	margin-left: 0.5rem;
	filter: invert(1) brightness(1000);
	transition: all 0.5s ease;
}

.more:hover {
	transform: scale(1.02);
	background: var(--color);
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1)
}

.more:hover img {
	transform: translateX(5px);
}

.more2 {
	padding: 0;
	background: none;
	color: var(--color);
	margin: 4rem 0 0;
}

.more2:hover {
	box-shadow: none;
}

.more2 img {
	filter: none;
}

.title {
	margin-bottom: 4rem;
}

.title h3 {
	font-size: 4.2rem;
	font-weight: 700;
}

.title h4 {
	font-size: 2.6rem;
	color: rgba(0, 0, 0, 0.25);
	font-weight: 400;
}

.title p {
	margin-top: 1rem;
}

.titleCenter {
	text-align: center;
}


.index_bars {
	padding: 8rem 0;
	overflow: hidden;
}

.index_bar1 ul li {
	justify-content: space-between;
	align-items: center;
}

.index_bar1 ul li:not(:first-of-type) {
	margin-top: 8rem;
}

.index_bar1 ul li:nth-of-type(2n) {
	flex-direction: row-reverse;
}

.index_bar1 ul li .ll {
	width: 45%;
}

.index_bar1 ul li .rr {
	width: 50%;
	overflow: hidden;
	border-radius: 1rem;
}

.index_bar1 ul li .rr img {
	width: 100%;
	transition: all 0.5s ease;
}

.index_bar1 ul li:hover img {
	transform: scale(1.06);
}

.index_bar1 ul li .ll p {
	font-size: 2rem;
}

.index_bar2 {
	padding-top: 0 !important;
}

.index_bar2 ul {
	display: flex;
	justify-content: space-between;
	gap: 1.5vw;
}

.index_bar2 ul li {
	width: 100%;
	width: 50%;
}

.index_bar2 ul li .bbs {
	width: 100%;
	position: relative;
	margin: 1.5vw 0;
	border-radius: 1rem;
	overflow: hidden;
	height: 30vh;
}

.index_bar2 .swiper-container {
	overflow: hidden;
	height: 100%;
	width: 100%;
}

.index_bar2 ul li:first-of-type .bbs {
	height: calc(100% - 3vw);
}

.index_bar2 img {
	width: 100%;
	transition: all 0.5s ease;
}

.index_bar2 ul li:first-of-type .bbs img {
	height: 100%;
	object-fit: cover;
}

.index_bar2 .bbs:hover img {
	transform: scale(1.06);
	position: relative;
	z-index: 9;
}

.index_bar2 .tt {
	padding: 3rem;
	position: absolute;
	left: 0%;
	width: 100%;
	box-sizing: border-box;
	bottom: 0;
	z-index: 2;
	transition: all 0.5s ease;
}

.index_bar2 p {
	font-size: 2.4rem;
	transition: all 0.5s ease;
	margin: 0;
	color: #fff;
	line-height: 1.3;
}

.index_bar2 .swiper-pagination {
	display: none;
}

footer {
	background: #f6f6f6;
}

footer .top {
	padding: 8rem 0 3rem;
	display: flex;
	justify-content: space-between;
}

footer .top .ll {
	width: 30%;
}

footer .logo img {
	height: 5rem;
	margin-bottom: 3rem;
}

footer .top .t1 {
	display: flex;
	align-items: center;
}

footer .top .t1 img {
	margin-right: 1rem;
	width: 2.8rem;
}

footer .rr {
	width: 25%;
}

footer .rr p {
	margin: 0;
	font-size: 1.4rem;
}

footer .rr h2 {
	font-size: 3.6rem;
	font-weight: 700;
}

footer .rr .bb {
	width: 100%;
	margin-top: 2rem;
	border: 1px solid rgba(0, 0, 0, .08);
	padding: 1.5rem 2rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

footer .rr .bb input {
	width: 90%;
}

footer .rr .bb button {
	background: rgba(0, 0, 0, .1);
	border-radius: 50%;
	width: 2.4rem;
	height: 2.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

footer .rr .bb button i {
	font-size: 0.9rem;
	font-weight: 700;

}

footer dl h2 {
	font-weight: 700;
	font-size: 1.6rem;
	margin: 0 0 2.5rem 0;
	position: relative;
}

footer dl dd {
	font-size: 1.4rem;
	margin: 1.3rem 0;
	opacity: 0.5;
	transition: all 0.5s ease;
	line-height: 1.4;
}

footer dl dd:hover {
	opacity: 1;
}

footer .copy {
	padding: 0 0 1rem 0;
}

footer .copy .tl {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


footer .copy p {
	font-size: 1.26rem;
	color: rgba(0, 0, 0, 0.5);
}

footer .copy .tl a {
	color: rgba(0, 0, 0, 0.5);
	margin-left: 20px;
	transition: all 0.5s ease;

}

footer .copy .tl a:hover {
	color: var(--color);
}

.all_back {
	position: fixed;
	right: 1.5%;
	bottom: 3rem;
	z-index: 99999999;
	display: none;
}

.all_back .aa {
	background: #fff;
	border-radius: 50%;
	margin: 1rem 0;
	width: 4rem;
	height: 4rem;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, .02);
	transition: all 0.4s ease;
	box-shadow: 0 3rem 5rem 0 rgba(23, 33, 30, 0.05);
}

.all_back img {
	width: 40%;
	transform: rotate(-90deg);
	filter: grayscale(1);
}

.all_back .aa:hover {
	background: var(--color);
	transform: scale(1.06);
}

.all_back .aa:hover img {
	filter: invert(1) brightness(1000);
}

.ban {
	position: relative;
	width: 100%;
	margin-top: var(--height);
	overflow: hidden;
	background: var(--color2);
}

.ban2 b {
	display: block;
	width: 100%;
	height: 40vh !important;
	opacity: 0.8;
}

.ban2 .txt {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}

.ban2 .txt h3 {
	text-align: center;
	font-size: 5rem;
	color: #fff;
	font-weight: 700;
}

.pro_d .bar1 {
	position: relative;
	z-index: 3;
	padding: 3rem 0 6rem;
}

.pro_d .bar1 .box {
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 89vh;
}

.pro_d .bar1 .left {
	width: 58%;
	height: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
}

.pro_d .bar1 .gallery-thumbs {
	width: 6.4rem;
	padding: 2rem 0;
	box-sizing: border-box;
	position: relative;
}

.pro_d .bar1 .gallery-thumbs::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 5%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0));
	z-index: 3;
}


.pro_d .bar1 .gallery-thumbs .swiper-slide {
	width: 100%;
	box-sizing: border-box;
	height: auto !important;
}

.pro_d .bar1 .gallery-thumbs .swiper-slide img {
	width: 100%;
	height: auto !important;
	position: relative;
	box-sizing: border-box;
	border-radius: 0;
	overflow: hidden;
	border-bottom: 2px solid transparent;
	transition: all 0.5s ease;
	background: #fff;
}

.pro_d .bar1 .gallery-thumbs .swiper-slide-thumb-active img {
	opacity: 1;
	border-color: var(--color);
}

.pro_d .bar1 .gallery-top {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 1rem;
	width: calc(100% - 15rem);
	background: #fff;
	cursor: none !important;
}

.pro_d .bar1 .tobig img {
	position: absolute;
	right: 2%;
	bottom: 6%;
	z-index: 999999;
	cursor: pointer;
	width: 5rem;
	padding: 1.5rem;
	box-sizing: border-box;
	height: 5rem;
	background: #fafafa;
	border-radius: 50%;
	transition: all 0.5s ease;
	border: 1px solid rgba(0, 0, 0, .02);
}

.pro_d .bar1 .tobig img:hover {
	background: #f1f1f1;

}

.pro_d .bar1 .left .gallery-top .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

.pro_d .bar1 .left .gallery-top .swiper-slide img {
	max-width:  100%;
	max-height:100%;
	object-fit: cover;
	padding: 5%;
	box-sizing: border-box;
}

.pro_d .bar1 .pdBtn {
	cursor: none !important;
}

.pro_d .bar1 .pdBtn::after {
	display: none;
}

/* 跟随按钮 */
.cursor-btn {
	position: fixed;
	z-index: 9999;
	pointer-events: none;
	background: #fff;
	width: 3rem !important;
	border-radius: 50%;
	height: 3rem !important;
	padding: 1rem;
	transform: translate(-50%, -50%) scale(0.6);
	opacity: 0;
	border: 1px solid rgba(0, 0, 0, .03);
	transition:
		transform 0.25s ease,
		opacity 0.2s ease;
}

.cursor-btn::after {
	font-size: 1.2rem !important;
	font-weight: 600 !important;
	color: var(--color2);
}

.cursor-btn.active {
	transform: translate(-50%, -50%) scale(1);
}


.pro_d .bar1 .right {
	width: 35%;
	padding: 5% 0%;
	box-sizing: border-box;
}

.pro_d .bar1 .right .title {
	margin-bottom: 3rem;
}

.pro_d .bar1 .right p {
	line-height: 1.7;
}

.pro_d .bar1 .right p strong {
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.3;
	margin: 2.5rem 0 1rem;
	display: block;
}

.pro_d .bar2 {
	text-align: center;
	padding-top: 0 !important;
}

.pro_d .bar2 .contain {
	width: 50vw;
}

.pro_d .bar2 h6 {
	font-weight: 700;
	font-size: 2.6rem;
	margin-bottom: 2rem;
}

.pro_d .bar2 p {
	margin: 1rem 0;
	line-height: 1.7;
}

.pro_d .bar2 p strong {
	font-weight: 700;
}

.warranty .bar {
	justify-content: space-between;
}

.warranty .bar .ll {
	width: 46%;
}

.warranty .bar .ll .title {
	margin-bottom: 2rem;
}

.warranty .bar .ll p {
	margin: 1.5rem 0;
	line-height: 1.8;
}

.warranty .bar .rr {
	width: 46%;
}

.support .video {
	overflow: hidden;
	position: relative;
}

.support video {
	width: 100%;
	display: block;
	height: 100%;
	object-fit: cover;
}

.support .video .v_btn {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 5rem;
	height: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translate(-50%, -50%);
	z-index: 2;
	cursor: pointer;
	background: #fff;
	border-radius: 50%;
	padding: 1rem;
}

.support .video .v_btn span {
	display: block;
	width: 0;
	height: 0;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-left: 9px solid var(--color2);
}

.support .video .v_btn::before {
	content: "";
	box-sizing: content-box;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.3);
	opacity: .3;
	border-radius: 100%;
	animation: 2s ease-in-out infinite alternate ping;
	position: absolute;
}

@keyframes ping {
	0% {
		transform: translate(-50%, -50%) scale(1);
	}

	100% {
		transform: translate(-50%, -50%) scale(.8);
	}
}

.v_btn.hide {
	opacity: 0;
	pointer-events: none;
}

.support .bar3 {
	padding-bottom: 0 !important;
	overflow: initial;
}

.support .bar3 .bottom {
	display: flex;
	justify-content: center;
}

.support .bar3 .more {
	margin: 1rem auto 0;
}

.supportd .bar {
	padding: 8rem 0;
	justify-content: space-between;
}

.supportd .bar .ll {
	width: 70%;
}

.supportd .bar .ll p {
	margin: 1.5rem 0;
	line-height: 1.8;
}

.supportd .bar .ll p strong {
	font-weight: 700;
	font-size: 1.8rem;
}

.supportd .bar .rr {
	width: 22%;
	position: sticky;
	top: var(--height);
	height: 100%;
}

.supportd .bar .rr h6 {
	margin: 0 0 2rem 0;
	font-size: 1.6rem;
	transition: all 0.5s ease;
	cursor: pointer;
}

.supportd .bar .rr h6.active,
.supportd .bar .rr h6:hover {
	color: var(--color);
}

.aban b {
	height: 70vh !important;
}

.aban .tt {
	margin-top: 2rem;
}

.aban p {
	text-align: center;
	color: #fff;
	width: 50%;
	margin: 1rem auto 0;
}

.about {
	overflow: hidden;
	background: rgb(240, 242, 244);
}

.about .contain {
	justify-content: space-between;
}

.about .bar1 .ll {
	width: 46%;
	padding: 14vh 0;
}

.about .bar1 .ll p {
	margin: 1.5rem 0 0;
}

.about .bar1 .rr {
	width: 46%;
}

.about .bar2 {
	height: 80vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	position: relative;
}

.about .bar2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--color2);
	opacity: 0.2;
}

.about .bar2 .txt {
	position: relative;
	z-index: 3;
	;
}

.about .bar2 .tt {
	width: 50%;
	margin: auto;
}

.about .bar2 .title h3 {
	color: #fff;
}

.about .bar2 p {
	color: #fff;
}

.contact ul li p {
	margin: 2rem 0;
	font-size: 1.5rem;
	text-align: center;
	transition: all 0.5s ease;
}

.contact ul li p a {
	font-size: 1.5rem;
	transition: all 0.5s ease;
}

.contact ul li:hover p a {
	color: var(--color);
}

.message {
	padding-top: 0 !important;
}

.message .contain {
	width: 42vw;
	padding: 3%;
	box-sizing: border-box;
	justify-content: space-between;
	background: #f8f8f8;
}

.message .online {
	display: flex;
	justify-content: space-between;
	width: 100%;
	flex-wrap: wrap;
}

.message .online p {
	margin: 0 0 1.5rem;
	width: 48%;
}

.message .online .p1 {
	width: 100%;
}

.message .online .inputs {
	font-size: 1.4rem;
	background: none;
	display: block;
	line-height: 1.4;
	border: 1px solid rgba(0, 0, 0, .1);
	padding: 1.4rem 2rem;
	width: 100%;
	box-shadow: none;
	box-sizing: border-box;
}

.message .online .inps .pp1 {
	width: 100%;
}

.message textarea {
	min-height: 15rem;
}

.message .bottom {
	display: flex;
	justify-content: flex-start;
	width: 100%;
}

.message .submit {
	margin: 1rem 0 0;
	padding: 0.8em 2.5rem;
	border: 1px solid transparent;
	background: var(--color);
	color: #fff;
}

.message .submit button {
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	width: 100%;
	height: 100%;
	background: none !important;
	border: none;
	box-shadow: none;
	cursor: pointer;
}
.hf-fields-wrap{
    width: 100%;
}
.big_box {
	position: fixed;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	left: 0;
	top: 0;
	background: #fff;
	z-index: 9999999999;
	display: none;

}

.big_imgss {
	height: 100%;
	width: 100%;
	position: relative;
}

.gallery-top2 {
	width: 100%;
	height: 100%;
}

.big_box .big_imgss .swiper-slide {
	display: flex;
}

.big_box .big_imgss .swiper-slide img {
	display: block;
	max-width: 100%;
	max-height: 90%;
	margin: auto;
	object-fit: cover;
	cursor: none;
}

.big_box .righttop {
	position: fixed;
	right: 0px;
	top: 0px;
	z-index: 9;
	padding: 15px;
}

.big_box .righttop div {
	float: right;
}

.big_box .righttop img {
	margin: 0;
	height: 4rem;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.big_box .righttop img:hover {
	transform: rotate(90deg);
}

/* 放大状态 */
.big_box .big_imgss.zoomed img {
	transform: scale(2);
	cursor: grab;
	will-change: transform;
}

/* 抓手状态 */
.big_box .big_imgss.grab img {
	cursor: grab;
}

.big_box .big_imgss.grabbing img {
	cursor: grabbing;
}

.big_box.zoomed .swiper-wrapper {
	pointer-events: none;
}

.custom-cursor {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 9999999;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .1);
	display: none;
	font-size: 3rem;
	text-align: center;
	line-height: 60px;
	border-radius: 50%;
}

.tk_bottoms {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 2rem;
	border-radius: 5rem;
	background: #fff;
	display: flex;
	justify-content: space-between;
	z-index: 999999;
	align-items: center;
	padding: 0rem 1rem;
	border: 1px solid rgba(0, 0, 0, .02);
}

.tk_bottoms div {
	position: static;
	margin: 0 0.3rem !important;
	padding: 0 !important;
	transform: none !important;
}

.tk_bottoms div::after {
	font-size: 1.4rem !important;
	color: var(--color2) !important;
}