/*common start*/
.scroll::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 4px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 1px;
}

.scroll::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 10px;
	/*box-shadow:inset 0 0 2px #000;*/
	background: var(--primary-color);
}

.scroll::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	/*box-shadow:inset 0 0 2px #999;*/
	border-radius: 10px;
	background: #eee;
}

/*@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../fonts/SourceHanSansCN-Light.eot');
    src: url('../fonts/SourceHanSansCN-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceHanSansCN-Light.woff2') format('woff2'),
        url('../fonts/SourceHanSansCN-Light.woff') format('woff'),
        url('../fonts/SourceHanSansCN-Light.ttf') format('truetype'),
        url('../fonts/SourceHanSansCN-Light.svg#SourceHanSansCN-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../fonts/SourceHanSansCN-Regular.eot');
    src: url('../fonts/SourceHanSansCN-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceHanSansCN-Regular.woff2') format('woff2'),
        url('../fonts/SourceHanSansCN-Regular.woff') format('woff'),
        url('../fonts/SourceHanSansCN-Regular.ttf') format('truetype'),
        url('../fonts/SourceHanSansCN-Regular.svg#SourceHanSansCN-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../fonts/SourceHanSansCN-Bold.eot');
    src: url('../fonts/SourceHanSansCN-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceHanSansCN-Bold.woff2') format('woff2'),
        url('../fonts/SourceHanSansCN-Bold.woff') format('woff'),
        url('../fonts/SourceHanSansCN-Bold.ttf') format('truetype'),
        url('../fonts/SourceHanSansCN-Bold.svg#SourceHanSansCN-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}*/

:root {
	--gris-oscuro: #555555;
	--blanco-huevo: #fcf9f6;
	--gris-medio: #999999;
	--negro-titulos: #414345;
	--body-text: #8E8E8E;
	--negro-activo: #333333;
	--container-width: 1200px;
	--contenedor-width: 1170px;
	--primary-color: #008aff;
	--secondary-color: #fa0ac4;
	--third-color: #25a4bb;
	--black000: #000;
	--black333: #333;
	--black666: #666;
	--black999: #999;
	--grayeee: #eee;
	--grayccc: #ccc;
	--grayaaa: #aaa;
	--grayf5: #f5f5f5;
	--white: #fff;
	--red: #f00;
	--black-opacity99: rgba(0, 0, 0, .99);
	--black-opacity90: rgba(0, 0, 0, .9);
	--black-opacity70: rgba(0, 0, 0, .7);
	--black-opacity50: rgba(0, 0, 0, .5);
	--black-opacity10: rgba(0, 0, 0, .1);
	--black-gradation90: linear-gradient(180deg, transparent, rgba(0, 0, 0, .9));
	--white-opacity99: rgba(255, 255, 255, .99);
	--white-opacity90: rgba(255, 255, 255, .9);
	--white-opacity90: rgba(255, 255, 255, .7);
	--white-opacity50: rgba(255, 255, 255, .5);
	--white-opacity10: rgba(255, 255, 255, .1);
	--white-gradation90: linear-gradient(180deg, transparent, rgba(255, 255, 255, .9));
}

body,
div,
ul,
li,
a,
img,
p,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
span,
strong,
input {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	border: 0;
	list-style: none;
}

body {
	font-size: 18px;
	/* font-family: 'SourceHanSansCN';*/
	font-family: Arial, 'Microsoft YaHei';
	overflow-x: hidden;
	min-height: 101vh;
	color: var(--body-text);
}

a {
	color: #666;
}

a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

p {
	line-height: 1.5em;
	padding: 5px 0;
}

.clear {
	margin: 0;
	padding: 0;
	font-size: 0;
	clear: both;
}

.wapper1 {
	width: 80%;
	margin: 0 auto;
	min-width: 100px;
}

.wapper2 {
	width: 80%;
	margin: 0 auto;
}

.wapper3 {
	width: 70%;
	margin: 0 auto;
}

input,
textarea,
select {
	outline: none;
	/* font-family: 'SourceHanSansCN';*/
	font-family: Arial, 'Microsoft YaHei';
	font-size: 14px;
	border-radius: 8px;
}

input,
input:link,
input:visited,
input:hover,
input:active,
input:focus {
	outline: none;
}

img {
	object-fit: cover;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}

.xiangqing img {
	width: auto !important;
	height: auto !important;
	max-width: 100%;
}

@media(max-width:999px) {
	p {
		padding: 0;
	}

	.wapper1 {
		width: 90%;
		min-width: 0;
	}

	.wapper2 {
		width: 90%;
	}

	.wapper3 {
		width: 90%;
	}

	:root {
		--font48: 28px;
		--font36: 24px;
		--font32: 22px;
		--font24: 20px;
		--font20: 18px;
		--font18: 16px;
		--font16: 14px;
		--font14: 12px;
	}
}

/*common end*/


.html {
	opacity: 1;
	visibility: visible;
	transition: all 2s ease;
}

.html.onload {
	opacity: 0;
	visibility: hidden;
}

.loading_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	transition: all .5s ease;
}

.loading_box.removeload {
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
}

.loading_close1 {
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.loadingbg {
	width: 90%;
	max-width: 750px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.loading {
	text-align: center;
}

.loading_logo {
	width: 200px;
	height: 200px;
	position: relative;
	margin: 0 auto;
}

.loading_logo img {
	max-width: 50%;
	max-height: 50%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.loading_logo:before {}

.loading_txt {
	font-size: 20px;
	line-height: 30px;
	margin-top: 55px;
	color: var(--primary-color);
}

.loadEffect {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.loadEffect div {
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-animation: load 2s linear infinite;
}

.loadEffect div span {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--primary-color);
	position: absolute;
	left: 50%;
	margin-top: -10px;
	margin-left: -10px;
}

@-webkit-keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
	}

	10% {
		-webkit-transform: rotate(45deg);
	}

	50% {
		opacity: 1;
		-webkit-transform: rotate(160deg);
	}

	62% {
		opacity: 0;
	}

	65% {
		opacity: 0;
		-webkit-transform: rotate(200deg);
	}

	90% {
		-webkit-transform: rotate(340deg);
	}

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

}

.loadEffect div:nth-child(1) {
	-webkit-animation-delay: 0.2s;
}

.loadEffect div:nth-child(2) {
	-webkit-animation-delay: 0.4s;
}

.loadEffect div:nth-child(3) {
	-webkit-animation-delay: 0.6s;
}

.loadEffect div:nth-child(4) {
	-webkit-animation-delay: 0.8s;
}

@media(max-width:999px) {
	.loading_txt {
		font-size: 16px;
		line-height: 26px;
		margin-top: 35px;
	}
}


/*首页全屏*/
.index_swiper {
	position: relative;
}

.index_swiper>.swiper-container {
	height: 100vh;
}

.index_swiper>.swiper-container>.swiper-wrapper>.swiper-slide {
	height: 100vh;
}

.index_swiper>.swiper-container>.swiper-wrapper>.swiper-slide:last-child {
	/* height:auto !important;*/
}

.index_swiper>.swiper-pagination {
	position: absolute;
	left: 3.12vw;
	top: 50%;
	transform: translateY(-50%);
	z-index: 11;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet {
	display: block;
	width: auto;
	height: auto;
	border-radius: 0;
	background: none;
	font-size: 14px;
	line-height: 34px;
	color: rgba(255, 255, 255, .7);
	padding-left: 1.56vw;
	position: relative;
	opacity: 1;
	outline: none;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	color: #fff;
	opacity: 1;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 100%;
	border: 1px solid #fff;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
	background: #fff;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet:after {
	content: "";
	width: 3.12vw;
	height: 2px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-100%, -50%);
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
	background: #fff;
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet {
	color: #666;
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet.swiper-pagination-bullet-active {
	color: var(--primary-color);
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet:before {
	border-color: #D6D6D6;
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
	border-color: var(--primary-color);
	background: var(--primary-color);
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
	background: var(--primary-color);
}

@media(max-width:999px) {
	.index_swiper>.swiper-container {
		height: auto;
	}

	.index_swiper>.swiper-container>.swiper-wrapper {
		display: block;
	}

	.index_swiper>.swiper-container>.swiper-wrapper>.swiper-slide {
		height: auto;
	}
}



.m11_headbg {
	width: 100%;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	position: fixed;
	z-index: 55;
	left: 0;
	top: 0;
}

.m11_head {
	height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.m11_head .logo {
	width: 14%;
	height: 80px;
	position: relative;
}

.m11_head .logo img {
	display: block;
	max-width: 100%;
	max-height: 90%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
}

.m11_head .rt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.h_search_btn {
	display: none;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background: url(../images/top_search_btn2.png) center no-repeat;
	margin-left: 1.3vw;
}

.h_search_btn.active {
	background-image: url(../images/chahao2.png);
}

.h_search_box {
	width: 100%;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99;
	display: none;
}

.h_search_close1 {}

.h_searchbg {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}

.h_search_close2 {}

.h_search {
	padding: 40px 0;
}

.h_search form {
	height: 60px;
	border: 1px solid #ccc;
	border-radius: 8px;
	overflow: hidden;
}

.h_search form #search_keywords2 {
	float: left;
	border: none;
	background: none;
	height: 60px;
	line-height: 60px;
	padding: 0 10px;
	width: calc(100% - 80px);
}

.h_search form #search2 {
	float: right;
	border: none;
	background: url(../images/search.png) center no-repeat;
	background-size: 50% auto;
	height: 44px;
	width: 44px;
	cursor: pointer;
	transition: all .3s ease;
	font-size: 0;
	color: transparent;
	margin-top: 7px;
}

.h_search form #search2:hover {
	/* background-color: var(--secondary-color); */
}

/*menu*/
.m11_head .menu {
	height: 80px;
	line-height: 80px;
}

.m11_head .menu>ul {}

.m11_head .menu>ul>li {
	float: left;
	position: relative;
	padding: 0 1.3vw;
}

.m11_head .menu>ul>li>a {
	color: #333;
	display: block;
	font-size: 16px;
	font-weight: normal;
	position: relative;
}

.m11_head .menu>ul>li>a:hover,
.m11_head .menu>ul>li:hover>a,
.m11_head .menu>ul>li.hover>a {
	color: var(--primary-color);
	font-weight: normal;
}

.m11_head .menu>ul>li>a:before {
	content: "";
	width: 0;
	height: 2px;
	background: var(--primary-color);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all .3s ease;
}

.m11_head .menu>ul>li>a:hover:before,
.m11_head .menu>ul>li:hover>a:before,
.m11_head .menu>ul>li.hover>a:before {
	width: 100%;
}

.m11_head .menu>ul>li>ul {
	width: fit-content;
	min-width: 120px;
	background: #fff;
	padding: 10px 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border-radius: 10px;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 5;
	display: none;
}

.m11_head .menu>ul>li>ul li {
	position: relative;
}

.m11_head .menu>ul>li>ul li a {
	color: #666;
	display: block;
	font-size: 14px;
	font-weight: normal;
	padding: 10px 5px;
	line-height: 1.5em;
	text-align: center;
	white-space: nowrap;
}

.m11_head .menu>ul>li>ul li a:hover,
.m11_head .menu>ul>li>ul li:hover>a {
	color: #fff;
	background: var(--primary-color);
}

.m11_head .menu>ul>li>ul li ul {
	width: 100%;
	background: #fff;
	padding: 10px 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border-radius: 10px;
	position: absolute;
	top: 0;
	left: 100%;
	display: none;
}

.m11_head .menu>ul>li>ul li:hover>ul {
	display: block;
}

.m11_head_height {
	height: 80px;
}

@media(max-width:1299px) {
	.m11_head .menu>ul>li {
		padding: 0 var(--20px);
	}

	.m11_head .menu>ul>li>a {
		font-size: 15px;
	}
}

@media(max-width:999px) {
	.m11_head_height {
		height: 60px;
	}

	.m11_headbg {}

	.m11_head {
		height: 60px;
	}

	.m11_head .logo {
		width: 26%;
		height: 60px;
	}

	.h_search {
		padding: 20px 0;
	}

	.h_search form {
		height: 40px;
	}

	.h_search form #search_keywords2 {
		height: 40px;
		line-height: 40px;
		padding: 0 10px;
		width: calc(100% - 60px);
	}

	.h_search form #search2 {
		height: 40px;
		width: 40px;
	}

	.m11_head .menu {
		display: none;
	}
}

/*nav*/
.m11_head .nav_open {
	width: 24px;
	height: 18px;
	cursor: pointer;
	display: none;
	position: relative;
	margin-left: 15px;
}

.m11_head .nav_open i,
.m11_head .nav_open:before,
.m11_head .nav_open:after {
	width: 24px;
	height: 2px;
	background: #999;
	position: absolute;
	left: 0;
	transition: all .3s ease;
}

.m11_head .nav_open i {
	top: 50%;
	transform: translate(0, -50%);
}

.m11_head .nav_open:before {
	content: "";
	top: 0;
}

.m11_head .nav_open:after {
	content: "";
	bottom: 0;
}

.m11_head .nav_open.active i {
	opacity: 0;
	visibility: hidden;
}

.m11_head .nav_open.active:before {
	transform: translateY(8px) rotate(45deg);
}

.m11_head .nav_open.active:after {
	transform: translateY(-8px) rotate(-45deg);
}

.m11_head .nav_box {
	width: 100%;
	height: calc(100% - 61px);
	border-top: 1px solid #ededed;
	position: fixed;
	left: 0;
	top: 60px;
	display: none;
}

.m11_head .nav_close1 {
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 998;
}

.m11_head .navbg {
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
}

.m11_head .nav {
	position: relative;
}

.m11_head .nav_close2 {
	display: none;
}

.m11_head .nav_list {
	max-height: calc(100vh - 60px);
	overflow-y: auto;
}

.m11_head .nav_list ul {}

.m11_head .nav_list ul li {
	padding: 5px 5%;
}

.m11_head .nav_list>ul>li {
	border-bottom: 1px solid #ededed;
	padding: 10px 5%;
}

.m11_head .nav_list ul li span {
	display: block;
	position: relative;
}

.m11_head .nav_list ul li span a {
	display: inline-block;
	font-size: 12px;
	line-height: 22px;
	position: relative;
	z-index: 2;
}

.m11_head .nav_list>ul>li>span a {
	font-size: 14px;
	line-height: 24px;
	font-weight: normal;
}

.m11_head .nav_list ul li span i {
	width: 100%;
	height: 100%;
	background: url(../images/ico_down1.png) right center no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.m11_head .nav_list ul li ul {
	padding: 5px 0 0 0;
	display: none;
}

.m11_head .nav_list ul li.active>span>i {
	background-image: url(../images/ico_up1.png);
}

@media(max-width:999px) {
	.m11_head .nav_open {
		display: block;
	}
}


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

.banner .swiper-container {}

.banner .swiper-slide {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.banner .swiper-slide.swiper-slide-active {
	z-index: 2;
}

.banner .swiper-slide img {
	display: block;
	width: 100%;
	height: 25vw;
	background: #f9f9f9;
}

.banner .swiper-slide .txtbg {
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.banner .swiper-slide .txt {
	color: #fff;
	text-align: center;
}

.banner .swiper-slide .txt .h2 {
	font-size: 3.12vw;
	line-height: 1.2em;
	font-weight: bold;
	margin-bottom: 1.04vw;
}

.banner .swiper-slide .txt .h3 {
	font-size: 2.08vw;
	line-height: 1.4em;
}

.banner .swiper-pagination {
	height: 10px;
	bottom: 20px;
}

.banner .swiper-pagination span {
	display: inline-block;
	vertical-align: top;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	margin: 0 8px;
	background: #fff;
	opacity: 1;
	transition: all .3s ease;
}

.banner .swiper-pagination span.swiper-pagination-bullet-active {
	width: 20px;
	background: #fff;
	opacity: 1;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
	width: 60px;
	height: 60px;
	margin-top: -30px;
	background-color: rgba(0, 0, 0, .5);
	background-size: 15px 30px;
	opacity: 0;
	transition: all .3s ease;
	border-radius: 8px;
}

.banner .swiper-button-prev {
	left: 5%;
	transform: translateX(-100%);
}

.banner .swiper-button-next {
	right: 5%;
	transform: translateX(100%);
}

.banner:hover .swiper-button-prev,
.banner:hover .swiper-button-next {
	opacity: .7;
	transform: translateX(0) !important;
}

.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
	opacity: 1;
}

@media(max-width:999px) {
	.banner .swiper-slide img {
		height: 50vw;
	}

	.banner .swiper-slide .txtbg {
		width: 90%;
	}

	.banner .swiper-slide .txt .h2 {
		font-size: 24px;
		line-height: 1.2em;
		margin-bottom: 5px;
	}

	.banner .swiper-slide .txt .h3 {
		font-size: 14px;
		line-height: 1.4em;
	}

	.banner .swiper-pagination {
		bottom: 10px;
	}

	.banner .swiper-button-prev,
	.banner .swiper-button-next {
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}
}






.go_top {
	width: 50px;
	line-height: 50px;
	border-radius: 100%;
	text-align: center;
	color: #fff;
	background: rgba(0, 0, 0, .5) url(../images/ico_backtop.png) center no-repeat;
	position: fixed;
	z-index: 44;
	bottom: 10px;
	right: 10px;
	font-size: 0;
}

.go_top:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.go_top i {}

@media(max-width:999px) {
	.go_top {
		display: none;
	}
}


/*客服*/
.m1_side_kefu_box {
	width: 70px;
	position: fixed;
	z-index: 44;
	right: 10px;
	bottom: 50px;
	display: none;
}

.m1_side_kefu {
	width: 70px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
	border-radius: 8px;
	position: relative;
	right: 0;
	transition: all .5s ease;
}

.m1_side_kefu.active {
	right: -80px;
}

.m1_side_kefu ul li {
	position: relative;
	padding: 0 10px;
}

.m1_side_kefu ul li>a {
	display: block;
	padding: 10px 0;
	position: relative;
	z-index: 2;
	border-top: 1px solid #f5f5f5;
	color: #999;
}

.m1_side_kefu ul li:nth-child(1)>a {
	border: none;
}

.m1_side_kefu ul li .ico {
	height: 28px;
	position: relative;
}

.m1_side_kefu ul li .ico img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.m1_side_kefu ul li .ico .img2 {
	display: none;
}

.m1_side_kefu ul li:hover .ico .img1 {
	display: none;
}

.m1_side_kefu ul li:hover .ico .img2 {
	display: block;
}

.m1_side_kefu ul li .h2 {
	font-size: 12px;
	line-height: 1em;
	margin-top: 10px;
	text-align: center;
}

.m1_side_kefu ul li:hover .h2 {
	color: var(--primary-color);
}

.m1_side_kefu ul li .boxbg {
	width: fit-content;
	padding: 0 10px 0 0;
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease;
}

.m1_side_kefu ul li:hover .boxbg {
	transform: translate(0, -50%);
	opacity: 1;
	visibility: visible;
}

.m1_side_kefu ul li .box {
	width: fit-content;
	padding: 10px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border-radius: 4px;
}

.m1_side_kefu ul li .box:before {
	content: "";
	border: 5px solid transparent;
	border-left: 5px solid #fff;
	position: absolute;
	top: 50%;
	margin-top: -5px;
	right: 0;
}

.m1_side_kefu ul li .box .h3 {
	white-space: nowrap;
	line-height: 30px;
	font-size: 20px;
	text-align: center;
	min-width: 150px;
}

.m1_side_kefu ul li .box .h3 img {
	vertical-align: top;
	height: 30px;
	width: 28px;
	object-fit: contain;
	margin-right: 5px;
}

.m1_side_kefu ul li .box .ewm {
	text-align: center;
}

.m1_side_kefu ul li .box .ewm .h4 {
	font-size: 16px;
	margin-bottom: 5px;
}

.m1_side_kefu ul li .box .ewm img {
	display: block;
	margin: 0 auto;
	width: 124px;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.m1_side_kefu_btn {
	width: 28px;
	height: 28px;
	text-align: center;
	border-radius: 100%;
	background: #fff;
	color: #999;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	position: absolute;
	z-index: 66;
	bottom: -38px;
	right: 21px;
	cursor: pointer;
	transition: all .3s ease;
}

.m1_side_kefu_btn.active {
	transform: rotate(45deg);
}

.m1_side_kefu_btn i {
	display: block;
	width: 28px;
	height: 28px;
	background: url(../images/ico_btn1.png) center no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
}

.m1_side_kefu_btn.active {}

.m1_side_kefu_btn i.m1_side_kefu_open {
	display: none;
}

.m1_side_kefu_btn i.m1_side_kefu_close {}

.m1_side_kefu_btn.active i.m1_side_kefu_open {
	display: block;
}

.m1_side_kefu_btn.active i.m1_side_kefu_close {
	display: none;
}

@media(max-width:999px) {
	.m1_fheight {
		height: 70px;
	}

	.m1_side_kefu_box {
		width: 100%;
		right: 0;
		top: auto;
		bottom: 0;
		transform: translateY(0);
		display: block;
	}

	.m1_side_kefu {
		width: 100%;
		border-radius: 0;
	}

	.m1_side_kefu.active {
		right: 0 !important;
	}

	.m1_side_kefu ul li {
		margin-bottom: 0;
		float: left;
		width: 25%;
		padding: 0;
	}

	.m1_side_kefu ul li>a {
		border: none;
		border-left: 1px solid #f5f5f5;
	}

	.m1_side_kefu ul li .h2 {
		font-size: 12px;
		line-height: 1em;
		margin-top: 8px;
	}

	.m1_side_kefu ul li.gotop {
		display: block !important;
	}

	.m1_side_kefu ul li .boxbg {
		padding: 0 0 10px 0;
		top: auto;
		bottom: 100%;
		right: auto;
		left: 50%;
		transform: translate(-50%, -20%) !important;
	}

	.m1_side_kefu ul li:hover .boxbg {
		transform: translate(-50%, 0) !important;
	}

	.m1_side_kefu ul li .box:before {
		border: 5px solid transparent;
		border-top: 5px solid #fff;
		position: absolute;
		top: auto;
		bottom: 0;
		margin-top: 0;
		margin-left: -5px;
		right: auto;
		left: 50%;
	}

	.m1_side_kefu ul li .box1 {
		display: none !important;
	}

	.m1_side_kefu_btn {
		display: none;
	}
}

/*客服2*/
.m1_side_kefu2_box {
	width: 40px;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 44;
}

.m1_side_kefu2 {}

.m1_side_kefu2 ul li {
	width: 40px;
	margin: 1px 0;
	position: relative;
}

.m1_side_kefu2 ul li>a {
	display: block;
	text-align: center;
	background: var(--primary-color);
	color: #fff;
	opacity: .9;
}

.m1_side_kefu2 ul li>a:hover,
.m1_side_kefu2 ul li:hover>a {
	background: var(--primary-color);
	color: #fff;
	opacity: .9;
}

.m1_side_kefu2 ul li .ico {
	line-height: 40px;
	font-size: 20px;
}

.m1_side_kefu2 ul li .ico i {}

.m1_side_kefu2 ul li .boxbg {
	background: var(--primary-color);
	color: #fff;
	padding: 5px 10px;
	text-align: center;
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translate(-10%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}

.m1_side_kefu2 ul li:hover .boxbg {
	transform: translate(0, -50%);
	opacity: .9;
	visibility: visible;
}

.m1_side_kefu2 ul li .box1 {}

.m1_side_kefu2 ul li .box1 .h3 {
	white-space: nowrap;
	line-height: 30px;
	font-size: 20px;
	text-align: center;
	min-width: 150px;
}

.m1_side_kefu2 ul li .box1 .h3 i {
	margin-right: 5px;
}

.m1_side_kefu2 ul li .box2 {
	padding: 5px 10px 10px 10px;
}

.m1_side_kefu2 ul li .box2 .h4 {
	font-size: 16px;
	margin-bottom: 5px;
}

.m1_side_kefu2 ul li .box2 img {
	display: block;
	width: 124px;
}

@media(max-width:999px) {
	.m1_side_kefu2_box {
		width: 30px;
		display: none;
	}

	.m1_side_kefu2 ul li {
		width: 30px;
	}

	.m1_side_kefu2 ul li .ico {
		line-height: 30px;
		font-size: 12px;
	}
}


.inbanner_box {
	position: relative;
}

.inbanner img {
	width: 100%;
	background: #f9f9f9;
	position: absolute;
	height: 87vh;
}

.inbarbg {
	border-bottom: 1px solid #e7e7e7;
}

.inbar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.weizhi {
	font-size: 14px;
	line-height: 60px;
}

.inner_menu {
	font-size: 16px;
}

.inner_menu ul {
	line-height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.inner_menu ul li {
	margin-left: 1px;
}

.inner_menu ul li a {
	display: block;
	padding: 0 2.08vw;
	border-radius: 4px;
}

.inner_menu ul li.hover a,
.inner_menu ul li a:hover {
	background: var(--primary-color);
	color: #fff;
}

.inner_menu ul li ul {
	display: none;
}

.inbar .goback {}

.inbar .goback a {
	color: #999;
	font-size: 20px;
}

.inbar .goback a:hover {
	color: #333;
}

@media(max-width:999px) {
	.inbanner img {
		width: 100%;
		min-height: 0;
	}

	.inbar {
		height: 40px;
	}

	.weizhi {
		font-size: 12px;
		line-height: 40px;
	}

	.inner_menu {
		display: none;
	}

}

.m11_insidebg {
	padding: 60px 0 80px 0;
	min-height: 40vh;
}

.m11_inside {}

.m11_inside_lt {
	float: left;
	width: 240px;
	/* margin-top:-160px;*/
}

.m1_side_a {
	width: 238px;
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	border: 1px solid #eee;
	margin-bottom: 30px;
	position: relative;
	z-index: 11;
	border-radius: 10px;
	overflow: hidden;
}

.m1_side_a.active {
	position: fixed;
	top: 150px;
}

.m1_side_a>ul {}

.m1_side_a.active>ul {
	max-height: calc(100vh - 100px);
	overflow-y: auto;
}

.m1_side_a h2 {
	font-size: 20px;
	line-height: 24px;
	padding: 20px 15px;
	font-weight: normal;
	background: var(--primary-color);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	letter-spacing: 2px;
}

.m1_side_a h2 strong {
	display: block;
	font-size: 24px;
	line-height: 28px;
}

.m1_side_a h2 span {
	display: block;
	margin-top: 6px;
	opacity: .7;
}

.m1_side_a ul li {}

.m1_side_a>ul>li:nth-child(1) {
	/* margin-bottom:10px; border:none;*/
}

.m1_side_a>ul>li {
	border-bottom: 1px solid #eee;
}

.m1_side_a>ul>li:last-child {}

.m1_side_a ul li a {
	display: block;
	font-size: 16px;
	line-height: 26px;
	padding: 7px 40px 7px 35px;
	background: url(../images/ico_list1.png) left 10px center no-repeat;
}

.m1_side_a ul li a:hover,
.m1_side_a ul li.hover>span a {
	color: #fff;
	background-color: var(--primary-color);
	background-image: url(../images/ico_list1_hover2.png);
}

.m1_side_a ul li.active>span a {}

.m1_side_a ul li span {
	display: block;
	position: relative;
}

.m1_side_a ul li span>i {
	width: 40px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	cursor: pointer;
	background: url(../images/ico_list3.png) center no-repeat;
}

.m1_side_a ul li.active>span>i {
	background-image: url(../images/ico_list3_hover.png);
}

.m1_side_a ul li.hover span>i {
	background-image: url(../images/ico_list4.png);
}

.m1_side_a ul li.hover.active>span>i {
	background-image: url(../images/ico_list4_hover.png);
}

.m1_side_a ul li ul {
	padding-left: 20px;
	padding-bottom: 10px;
	display: none;
}

.m1_side_a ul li ul li {}

.m1_side_a ul li ul li a {
	padding-top: 7px;
	padding-bottom: 7px;
}

.m1_side_c {
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	border: 1px solid #eee;
	border-radius: 10px;
}

.m1_side_c.lfixed {
	position: fixed;
	left: 0;
	bottom: 0;
	background: #f5f5f5;
	z-index: 22;
	transform: translateX(0);
	transition: all .3s ease;
	border-radius: 0;
}

.m1_side_c.lfixed.hiden {
	transform: translateX(-240px);
}

.m1_side_c.lfixed.shown {
	transform: translateX(0px);
}

.inLt_contact_btn {
	position: absolute;
	top: 0;
	left: 100%;
	display: none;
}

.m1_side_c.lfixed .inLt_contact_btn {
	display: block;
}

.inLt_contact_btn span {
	display: block;
	text-align: center;
	font-size: 12px;
	line-height: 2em;
	padding: 10px 5px;
	width: 20px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}

.inLt_contact_btn .inLt_contact_close {
	display: block;
}

.inLt_contact_btn .inLt_contact_open {
	display: none;
}

.m1_side_c.lfixed .inLt_contact_btn .inLt_contact_close {
	display: block;
}

.m1_side_c.lfixed .inLt_contact_btn .inLt_contact_open {
	display: none;
}

.m1_side_c.lfixed.hiden .inLt_contact_btn .inLt_contact_close {
	display: none;
}

.m1_side_c.lfixed.hiden .inLt_contact_btn .inLt_contact_open {
	display: block;
}

.m1_side_c.lfixed.shown .inLt_contact_btn .inLt_contact_close {
	display: block;
}

.m1_side_c.lfixed.shown .inLt_contact_btn .inLt_contact_open {
	display: none;
}

.inLt_contact {
	/* background:#f5f5f5; border-radius:8px; padding:20px 0 10px 0;*/
	width: 240px;
}

.inLt_contact .h2 {
	font-size: 18px;
	line-height: 20px;
	padding: 15px 0 15px 70px;
	background: #f5f5f5 url(../images/ico_phone2.png) left 5px center no-repeat;
	background-size: auto 60px;
	color: var(--primary-color);
	position: relative;
	margin-bottom: 15px;
	border-radius: 10px 10px 0 0;
}

.m1_side_c.lfixed .inLt_contact .h2 {
	border-bottom: 1px solid #ddd;
	border-radius: 0;
}

.inLt_contact .h2:before {
	/* content:""; width:100%; border-bottom:1px solid #eee; position:absolute; left:0; bottom:-10px;*/
}

.inLt_contact .h2 span {
	display: block;
	margin-bottom: 6px;
}

.inLt_contact .h2 strong {
	display: block;
	font-size: 22px;
	line-height: 24px;
}

.inLt_contact .h3 {
	font-size: 16px;
	line-height: 26px;
	font-weight: bold;
	padding: 0 10px;
}

.inLt_contact ul {
	padding: 5px 10px 10px 10px;
}

.inLt_contact ul li {
	font-size: 14px;
	line-height: 24px;
	margin: 5px 0;
}

.inLt_contact ul li span {}

.inLt_contact ul li i {
	display: inline-block;
	text-align: center;
	width: 14px;
	line-height: 24px;
	font-size: 14px;
	margin-right: 5px;
	color: var(--primary-color);
}

.inLt_contact ul li i.fa-mobile {
	font-size: 20px;
}

.m11_inside_rt {
	float: right;
	width: calc(100% - 280px);
}

@media(max-width:1699px) {

	.m1_side_c.lfixed {
		transform: translateX(-240px);
	}

	.m1_side_c.lfixed .inLt_contact_btn .inLt_contact_close {
		display: none;
	}

	.m1_side_c.lfixed .inLt_contact_btn .inLt_contact_open {
		display: block;
	}
}

@media(max-width:999px) {
	.m11_insidebg {
		padding: 30px 0 60px 0;
	}

	.m11_inside_lt {
		display: none;
	}

	.m11_inside_rt {
		float: right;
		width: 100%;
	}
}


.m11_news1 {}

.m11_news1_lt {
	float: left;
	width: calc(100% - 280px);
}

.m11_news1_rt {
	float: right;
	width: 240px;
}

.m1_side_b {
	margin-bottom: 30px;
	background: #fff;
	padding: 10px;
}

.m1_side_b .h1 {
	font-size: var(--font20);
	line-height: 24px;
	padding-left: 30px;
	position: relative;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

.m1_side_b .h1 i {
	width: 24px;
	height: 24px;
	background: url(../images/ico_hot.png) center no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}

.m1_side_b .list {
	margin-top: 20px;
}

.m1_side_b .list ul li {
	margin-bottom: 10px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.m1_side_b .list ul li .nr_box {}

.m1_side_b .list ul li .imgbg {
	height: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(50%);
	transition: all .5s ease;
}

.m1_side_b .list ul li .img {
	padding-bottom: 38%;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.m1_side_b .list ul li .img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.m1_side_b .list ul li .txtbg {}

.m1_side_b .list ul li .txt {}

.m1_side_b .list ul li .txt .h2 {
	font-size: var(--font14);
	line-height: 24px;
	height: 24px;
	padding: 0 0 0 30px;
	position: relative;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.m1_side_b .list ul li .txt .h2 em {
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 0 8px 0 8px;
	text-align: center;
	color: #999;
	font-style: normal;
	position: absolute;
	left: 0;
	top: 0;
}

.m1_side_b .list ul li .txt .h2 span {}

.m1_side_b .list ul li.active .imgbg {
	height: auto;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.m1_side_b .list ul li.active .txtbg {
	width: 100%;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .9));
	position: absolute;
	bottom: 0;
	left: 0;
}

.m1_side_b .list ul li.active .txt .h2 {
	color: #fff;
}

.m1_side_b .list ul li:nth-child(1) .txt .h2 em {
	color: #FE2D46;
}

.m1_side_b .list ul li:nth-child(2) .txt .h2 em {
	color: #F60;
}

.m1_side_b .list ul li:nth-child(3) .txt .h2 em {
	color: #FAA90E;
}

.m1_side_b .list ul li.active .txt .h2 em {
	color: #fff;
}

.m1_side_b .list ul li.active:nth-child(1) .txt .h2 em {
	background: #FE2D46;
}

.m1_side_b .list ul li.active:nth-child(2) .txt .h2 em {
	background: #F60;
}

.m1_side_b .list ul li.active:nth-child(3) .txt .h2 em {
	background: #FAA90E;
}

@media(max-width:999px) {
	.m11_news1_lt {
		float: left;
		width: 100%;
	}

	.m11_news1_rt {
		float: right;
		width: 100%;
		display: none;
	}
}




/*地图*/
#allmap {
	width: 100%;
	height: 500px;
	background: #f9f9f9;
	border-radius: 10px;
}

@media(max-width:999px) {
	#allmap {
		width: 100%;
		height: 250px;
	}
}


/*详情*/
.m11_newsdetail {}

.m11_newsdetail .tit {
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	text-align: center;
}

.m11_newsdetail .tit .h2 {
	font-size: 24px;
	line-height: 1.4em;
}

.m11_newsdetail .tit .h3 {
	font-size: 14px;
	line-height: 1.4em;
	color: #999;
	margin-top: 5px;
}

.m11_newsdetail .tit .h3 span {
	display: inline-block;
	margin: 0 20px 0 0;
}

.m11_newsdetail .list1 {
	padding: 40px 0;
}

@media(max-width:999px) {
	.m11_newsdetail .tit .h2 {
		font-size: 20px;
		line-height: 1.4em;
	}

	.m11_newsdetail .tit .h3 {
		font-size: 12px;
		line-height: 1.4em;
		margin-top: 5px;
	}

	.m11_newsdetail .tit .h3 span {
		margin: 0 10px 0 0;
	}

	.m11_newsdetail .list1 {
		padding: 20px 0;
		margin: 20px 0 0 0;
	}
}


/*上一个下一个*/
.prev_next {
	font-size: 14px;
	line-height: 34px;
	padding: 15px 0;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.prev_next a {
	display: block;
	margin: 5px 0;
	max-width: 40%;
	height: 34px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

@media(max-width:999px) {
	.prev_next {
		font-size: 12px;
		line-height: 32px;
		padding: 15px 0;
		display: block;
	}

	.prev_next a {
		margin: 5px 0;
		max-width: 100%;
		height: 34px;
	}
}


/*.proDetail*/
.m11_proDetail {}

.m11_proDetail .list1 {
	margin-bottom: 2.08vw;
}

.m11_proDetail .list1 .lt {
	float: left;
	width: 40%;
}

div.zoomDiv {
	z-index: 999;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 200px;
	height: 200px;
	background: #ffffff;
	border: 1px solid #CCCCCC;
	display: none;
	text-align: center;
	overflow: hidden;
}

div.zoomMask {
	position: absolute;
	background: url(../images/mask.png) repeat scroll 0 0 transparent;
	cursor: move;
	z-index: 1;
}

.m1_galleryTop {
	border: 1px solid #eee;
	margin-bottom: 10px;
}

.m1_galleryTop .img {
	position: relative;
	padding-bottom: 100%;
	position: relative;
}

.m1_galleryTop .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.m1_galleryThumbs {}

.m1_galleryThumbs .swiper-slide {}

.m1_galleryThumbs .swiper-slide .img {
	position: relative;
	padding-bottom: 100%;
	position: relative;
	border: 1px solid #eee;
	cursor: pointer;
}

.m1_galleryThumbs .swiper-slide .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.m1_galleryThumbs .swiper-slide.swiper-slide-thumb-active .img {
	border-color: var(--primary-color);
}

.m11_proDetail .list1 .rt {
	float: right;
	width: 56%;
}

.m11_proDetail .list1 .rt .nr_box {}

.m11_proDetail .list1 .rt .h2 {
	font-size: 24px;
	line-height: 1.4em;
	margin-bottom: 10px;
	font-weight: bold;
}

.m11_proDetail .list1 .rt .h3 {
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.m11_proDetail .list1 .rt .h4 {
	font-size: 16px;
	line-height: 1.6em;
	margin-bottom: 40px;
}

.m11_proDetail .phone {
	font-size: 1.04vw;
	line-height: 1em;
	margin-bottom: 1.6em;
	color: var(--primary-color);
	padding: 0 0 0 5.2vw;
	position: relative;
}

.m11_proDetail .phone i {
	text-align: center;
	width: 4.16vw;
	line-height: 5.2vw;
	font-size: 4.16vw;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.m11_proDetail .phone span {
	display: block;
	margin-bottom: .52vw;
}

.m11_proDetail .phone strong {
	display: block;
	font-size: 1.66vw;
	line-height: 1em;
}

.m11_prevnext2 {
	font-size: var(--font14);
	line-height: 2.5em;
	margin-bottom: 2.08vw;
}

.m11_prevnext2 ul li {
	float: left;
}

.m11_prevnext2 ul li:nth-child(2n) {
	float: right;
}

.m11_prevnext2 ul li a {
	display: block;
	border: 1px solid #eee;
	/* border-radius:40px;*/
	padding: 0 20px;
	min-width: 80px;
	text-align: center;
	background: #f5f5f5;
}

.m11_prevnext2 ul li a:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: #fff;
}

.m11_proDetail .list2 {
	border: 1px solid #eee;
	margin-bottom: 2.08vw;
}

.m11_proDetail .list2 .hd {
	font-size: var(--font14);
	line-height: 3em;
	border-bottom: 1px solid #eee;
}

.m11_proDetail .list2 .hd ul li {
	display: inline-block;
	vertical-align: top;
	font-size: var(--font14);
	line-height: 3em;
}

.m11_proDetail .list2 .hd ul li a {
	display: block;
	padding: 0 10px;
	min-width: 100px;
	text-align: center;
	border-right: 1px solid #eee;
	border-bottom: none;
}

.m11_proDetail .list2 .hd ul li.on a {
	color: #fff;
	background: var(--primary-color);
}

.m11_proDetail .list2 .xiangqing {
	padding: 20px;
}

.m11_proDetail .list2 .xiangqing img {
	max-width: 100%;
}

.m11_pro_related {
	border: 1px solid #eee;
}

.m11_pro_related>.h2 {
	font-size: var(--font14);
	line-height: 3em;
	border-bottom: 1px solid #eee;
}

.m11_pro_related>.h2 span {
	display: inline-block;
	vertical-align: top;
	font-size: var(--font14);
	line-height: 3em;
	padding: 0 10px;
	min-width: 100px;
	text-align: center;
	border-right: 1px solid #eee;
	color: #fff;
	background: var(--primary-color);
}

.m11_pro_related .index_product1 {
	padding: 20px 20px 0 20px;
}

.m11_pro_related .index_product1 ul li {
	width: calc((100% - 60px)/4);
}

.m11_pro_related .index_product1 ul li:nth-child(3n-2) {
	margin-left: 20px;
	clear: none;
}

.m11_pro_related .index_product1 ul li:nth-child(4n-3) {
	margin-left: 0;
	clear: left;
}

@media(max-width:999px) {
	.m11_proDetail .list1 {
		margin-bottom: 30px;
	}

	.m11_proDetail .list1 .lt {
		float: left;
		width: 100%;
		margin-bottom: 20px;
	}

	.m11_proDetail .list1 .rt {
		float: right;
		width: 100%;
	}

	.m11_proDetail .list1 .rt .h2 {
		font-size: 18px;
		line-height: 1.4em;
		margin-bottom: 0;
	}

	.m11_proDetail .list1 .rt .h3 {
		font-size: 16px;
		line-height: 1.4em;
		margin-bottom: 10px;
	}

	.m11_proDetail .list1 .rt .h4 {
		font-size: 14px;
		line-height: 1.6em;
		margin-bottom: 20px;
	}

	.m11_proDetail .phone {
		font-size: 14px;
		line-height: 1em;
		margin-bottom: 1.6em;
		padding: 15px 20px 15px 60px;
	}

	.m11_proDetail .phone i {
		width: 60px;
		line-height: 60px;
		font-size: 40px;
	}

	.m11_proDetail .phone span {
		margin-bottom: 5px;
	}

	.m11_proDetail .phone strong {
		font-size: 18px;
		line-height: 1em;
	}

	.m11_proDetail .list2 {
		margin-bottom: 30px;
	}

	.m11_proDetail .list2 .hd ul li a {
		min-width: 60px;
	}

	.m11_prevnext2 {
		margin-bottom: 30px;
	}

	.m11_pro_related .index_product1 ul li {
		width: calc((100% - 10px)/2);
	}

	.m11_pro_related .index_product1 ul li:nth-child(3n-2) {
		margin-left: 10px;
		clear: none;
	}

	.m11_pro_related .index_product1 ul li:nth-child(4n-3) {
		margin-left: 10px;
		clear: none;
	}

	.m11_pro_related .index_product1 ul li:nth-child(2n-1) {
		margin-left: 0;
		clear: left;
	}
}


/*搜索*/
.search_form {
	background: #f9f9f9;
	padding: 1.56vw;
	margin-bottom: 2.08vw;
	border-radius: 10px;
}

.search_form form {
	height: 2.6vw;
}

.search_form form #search_keywords {
	float: left;
	border: none;
	background: #fff;
	height: 2.6vw;
	line-height: 2.6vw;
	padding: 0 .5vw;
	width: calc(100% - 6.2vw);
}

.search_form form #search {
	float: right;
	border: none;
	width: 5.2vw;
	height: 2.6vw;
	line-height: 2.6vw;
	font-size: .84vw;
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
}

.search_form form #search:hover {
	opacity: .9;
}

@media(max-width:999px) {
	.search_form {
		padding: 10px;
		margin-bottom: 20px;
	}

	.search_form form {
		height: 40px;
	}

	.search_form form #search_keywords {
		height: 40px;
		line-height: 40px;
		padding: 0 10px;
		width: calc(100% - 80px);
	}

	.search_form form #search {
		width: 60px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
}




/*Add------------------------------------------------------------------------------*/

/*<!--弹窗2-->*/
.popup_tip2_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, .6);
	/* display: none;*/
}

.popup_tip2bg {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup_tip2 {
	width: 440px;
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 10000;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);
}

.popup_tip2-body {
	width: 100%;
	height: calc(100% - 72px);
}

.zoomIn {
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.5, .5, .5);
		transform: scale3d(.5, .5, .5)
	}

	50% {
		opacity: 1
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.5, .5, .5);
		transform: scale3d(.5, .5, .5)
	}

	50% {
		opacity: 1
	}
}

@media(max-width:750px) {
	.popUpBox {
		width: 90%;
	}
}

.ts {
	padding: 20px 20px 20px 20px;
}

.ts .h2 {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 10px;
}

.ts .h3 {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 14px;
	display: inline-block;
	position: relative;
	padding-left: 30px;
}

.ts .h3 img {
	display: inline-block;
	vertical-align: top;
	width: 24px;
}

.ts .h3 i {
	width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}

.success .ts i {
	background-image: url(../images/ico_success.png);
}

.error .ts i {
	background-image: url(../images/ico_error.png);
}

.warning .ts i {
	background-image: url(../images/ico_warning.png);
}

.ts .h3 span {}

.ts_btn {
	text-align: right;
	font-size: 12px;
	line-height: 32px;
}

.ts_btn a {
	display: inline-block;
	text-align: center;
	border-radius: 4px;
	width: 78px;
	border: 1px solid #1890ff;
	background: #1890ff;
	color: #fff;
	margin-left: 10px;
}

.ts_btn a:hover {
	border-color: #2e80e2;
	background: #2e80e2;
	color: #fff;
}

.ts_btn a.bg2 {
	border: 1px solid #ccc;
	background: #fff;
	color: #666;
}

.ts_btn a.bg2:hover {
	border-color: #1890ff;
	background: #fff;
	color: #1890ff;
}


/*提示框*/
.popup_tip_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
}

.popup_tip_close1 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.popup_tipbg {
	min-width: 100px;
	max-width: 750px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup_tip {
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.popup_tip_close2 {
	display: none;
}

.popup_tip_txt {
	padding: 15px 20px;
	text-align: center;
	font-size: 14px;
	line-height: 24px;
}

.popup_tip_txt span {
	display: inline-block;
	padding-left: 30px;
	position: relative;
}

.popup_tip_txt span i {
	width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}

.success .popup_tip_txt span {
	color: #4ebb23;
}

.error .popup_tip_txt span {
	color: #f34b51;
}

.warning .popup_tip_txt span {
	color: #f1b306;
}

.success .popup_tip_txt span i {
	background-image: url(../images/ico_success.png);
}

.error .popup_tip_txt span i {
	background-image: url(../images/ico_error.png);
}

.warning .popup_tip_txt span i {
	background-image: url(../images/ico_warning.png);
}

@-webkit-keyframes fadeInUp2 {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUp2 {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInUp2 {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInUp2;
	animation-name: fadeInUp2
}

/*联系弹窗*/
.proContact1_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
}

.proContact1_close1 {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.proContact1_bg {
	width: 90%;
	max-width: 700px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.proContact1_close2 {
	width: 20px;
	height: 20px;
	background: url(../images/chahao2.png) center no-repeat;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	opacity: .9;
	transition: all .3s ease;
}

.proContact1_close2:hover {
	opacity: 1;
	transform: rotate(180deg)
}

.proContact1 {
	min-height: 260px;
	background: #fff;
	border-radius: 10px;
	position: relative;
	z-index: 2;
	padding-left: 235px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.proContact1>img {
	width: 230px;
	position: absolute;
	bottom: 0;
	left: 5px;
}

.proContact1_con {
	font-size: 16px;
	line-height: 20px;
}

.proContact1_con ul li {
	float: left;
	width: 50%;
	margin: 10px 0;
	color: var(--primary-color);
	padding-left: 50px;
	min-height: 40px;
	box-sizing: border-box;
	position: relative;
}

.proContact1_con ul li:nth-child(1) {
	width: 100%;
	padding-left: 0;
}

.proContact1_con ul li i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 100%;
	background: var(--primary-color);
	color: #fff;
	font-size: 20px;
	position: absolute;
	left: 0;
	top: 0;
}

.proContact1_con ul li .h2 {
	font-size: 24px;
	line-height: 34px;
	font-weight: bold;
	color: var(--primary-color);
}

.proContact1_con ul li span {
	display: block;
	color: #333;
}

.proContact1_con ul li .h2 span {
	color: var(--primary-color);
}

@media(max-width:999px) {
	.proContact1 {
		min-height: 0;
		padding: 15px 5%;
	}

	.proContact1>img {
		width: 36%;
		bottom: auto;
		top: 0;
		left: 50%;
		transform: translate(-50%, -100%)
	}

	.proContact1_con {
		font-size: 14px;
		line-height: 18px;
	}

	.proContact1_con ul li {
		float: left;
		width: 100% !important;
		margin: 5px 0;
	}

	.proContact1_con ul li .h2 {
		font-size: 20px;
		line-height: 30px;
	}
}


/*留言咨询1*/
.tc_message_open1 {
	cursor: pointer;
	width: 60px;
	height: 60px;
	/* padding:10px;*/
	margin-top: -40px;
	border-radius: 100%;
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	background: var(--primary-color) url(../images/ico_zxly1.png) center no-repeat;
	background-size: 40px auto;
	color: #fff;
	font-size: 0;
	line-height: 20px;
	text-align: center;
	position: fixed;
	z-index: 44;
	left: 0;
	top: 50%;
	animation: btnAnimation 1s linear infinite 0s forwards;
	display: none !important;
}

.tc_message_box {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	display: none;
}

.tc_message_close1 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.tc_message_bg {
	width: 90%;
	max-width: 500px;
	background-image: linear-gradient(to bottom right, var(--primary-color), var(--third-color));
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.tc_message_close2 {
	width: 20px;
	height: 20px;
	background: url(../images/chahao.png) center no-repeat;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	transition: all .3s ease;
}

.tc_message_close2:hover {
	transform: rotate(180deg);
}

.tc_message {
	padding: 30px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.tc_message_lt {
	width: 180px;
	font-size: 16px;
	line-height: 26px;
}

.tc_message_lt ul {}

.tc_message_lt ul li {}

.tc_message_lt ul li i {
	font-size: 20px;
	width: 16px;
	text-align: center;
	margin-right: 5px;
}

.tc_message_lt ul li i.fa-mobile {
	font-size: 24px;
}

.tc_message_lt ul li i.fa-envelope {
	font-size: 16px;
}

.tc_message_lt ul li .ewm {
	width: 150px;
	margin-top: 5px;
}

.tc_message_lt ul li .ewm img {
	display: block;
	margin: 0 auto;
	width: 100px;
	height: 100px;
	margin-bottom: 5px;
}

.tc_message_lt ul li .ewm span {
	display: block;
	background: #fff;
	color: var(--primary-color);
	font-size: 12px;
	line-height: 22px;
	text-align: center;
}

.tc_message_rt {
	width: calc(100% - 200px);
}

.tc_message .h2 {
	font-size: 20px;
	line-height: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

.tc_message .message {}

.tc_message .message form {}

.tc_message .message ul li {
	margin-bottom: 10px;
}

.tc_message .message .input_text {
	border: 1px solid #ccc;
	background: #fff;
	height: 28px;
	line-height: 28px;
	padding: 0 10px;
	width: calc(100% - 22px);
	border-radius: 4px;
}

.tc_message .message textarea {
	border: 1px solid #ccc;
	background: #fff;
	height: 56px;
	line-height: 28px;
	padding: 0 10px;
	width: calc(100% - 22px);
	border-radius: 4px;
}

.tc_message .message .input_button {
	border: 1px solid #333;
	background: #333;
	color: #fff;
	height: 30px;
	line-height: 28px;
	width: 80%;
	border-radius: 50px;
	cursor: pointer;
	display: block;
	margin: 0 auto;
	font-size: 16px;
}

.tc_message .h3 {
	font-size: 12px;
	line-height: 24px;
	text-align: center;
}

.tc_message .h3 span {
	font-size: 16px;
	color: var(--primary-color);
}

@media(max-width:999px) {
	.tc_message {
		padding: 30px;
		display: block;
	}

	.tc_message_lt {
		width: 100%;
		font-size: 14px;
	}

	.tc_message_lt ul {
		position: relative;
	}

	.tc_message_lt ul li {
		margin-top: 8px;
	}

	.tc_message_lt ul li:last-child {
		position: absolute;
		top: 0;
		right: 10px;
		margin-top: 0;
	}

	.tc_message_lt ul li .ewm {
		width: 90px;
		margin-top: 0;
	}

	.tc_message_lt ul li .ewm img {
		width: 90px;
		height: 90px;
		margin-bottom: 0;
	}

	.tc_message_lt ul li .ewm span {
		display: none;
	}

	.tc_message_rt {
		width: 100%;
		padding: 20px 0 0 0;
	}
}

@keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Firefox */
@-moz-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Safari and Chrome */
@-webkit-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Opera */
@-o-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}


/*询盘*/
.pinquiry1_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
}

.pinquiry1_close1 {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.pinquiry1_bg {
	width: 600px;
	height: 700px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.pinquiry1_close2 {
	width: 53px;
	height: 53px;
	background: url(../images/chahao2.png) center no-repeat;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	opacity: .9;
	transition: all .3s ease;
}

.pinquiry1_close2:hover {
	opacity: 1;
	transform: rotate(180deg)
}

.pinquiry1 {
	background: #fff;
	height: 600px;
	padding: 60px 30px 40px 30px;
	transform: scale(0) translate(100%, 100%);
	transition: all .5s ease;
	z-index: 2;
	transform-origin: bottom right;
}

.pinquiry1.fadeInRight2 {
	transform: scale(1) translate(0, 0);
}

.pinquiry1 .h2 {
	font-size: var(--font20);
}

.pinquiry1 .tips1 {
	font-size: 12px;
	line-height: 22px;
	color: #999;
}

.pinquiry1 .h2 .tips1 {
	display: inline-block;
	margin-left: 10px;
}

.pinquiry1 font {
	color: var(--red);
}

.pinquiry1_con {
	font-size: var(--font16);
	line-height: 32px;
	margin-top: 35px;
}

.pinquiry1_con dl {
	padding-left: 120px;
	position: relative;
	margin-top: 20px;
}

.pinquiry1_con dl dt {
	position: absolute;
	left: 0;
	top: 0;
	color: #999;
}

.pinquiry1_con dl dd {
	min-height: 32px;
}

.pinquiry1_con .input_text {
	border: 1px solid #eee;
	background: #fff;
	border-radius: 4px;
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	width: calc(100% - 22px);
	max-width: 300px;
}

.pinquiry1_con textarea {
	border: 1px solid #eee;
	background: #fff;
	border-radius: 4px;
	height: 100px;
	line-height: 30px;
	padding: 0 10px;
	width: calc(100% - 22px);
}

.pinquiry1_con .input_button {
	display: block;
	width: 100px;
	line-height: 32px;
	border-radius: 4px;
	background: var(--primary-color);
	color: #fff;
}

.pinquiry1_con .input_button:hover {
	opacity: .9;
}

.pinquiry1_con .yzm {}

.pinquiry1_con .yzm .input_text {
	float: left;
}

.pinquiry1_con .yzm #sendcode {
	float: right;
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	height: 32px;
	line-height: 30px;
	border-radius: 4px;
	width: calc(100% - 332px);
}

.pinquiry1_con .yzm img {
	float: left;
	height: 32px;
	margin-left: 10px;
}

.pinquiry1_con #proName {
	max-height: 84px;
	overflow-y: auto;
}

.pinquiry1_con #proName span {
	display: inline-block;
	vertical-align: top;
	border: 1px solid #eee;
	background: #fff;
	border-radius: 4px;
	height: 30px;
	line-height: 30px;
	padding: 0 32px 0 10px;
	position: relative;
	margin: 0 10px 10px 0;
	overflow: hidden;
}

.pinquiry1_con #proName span i {
	width: 12px;
	height: 12px;
	line-height: 10px;
	text-align: center;
	font-size: 12px;
	font-style: normal;
	border: 1px solid #f5f5f5;
	color: #999;
	cursor: pointer;
	position: absolute;
	top: 9px;
	right: 9px;
}

.pinquiry1_con #proName span i:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: #fff;
}

@media(max-width:999px) {
	.pinquiry1_bg {
		width: 100%;
		height: 100%;
	}

	.pinquiry1_close2 {
		width: 40px;
		height: 40px;
		/* background-size:contain;*/
	}

	.pinquiry1 {
		height: calc(100% - 80px);
		padding: 40px 20px;
	}

	.pinquiry1_con dl {
		padding-left: 80px;
	}

	.pinquiry1_con .input_text {
		max-width: 100%;
	}

	.pinquiry1_con .yzm .input_text {
		width: calc(100% - 112px);
	}

	.pinquiry1_con .yzm #sendcode {
		width: 80px;
	}
}


.shopptingcart_loading {
	width: 50%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: fixed;
	z-index: 9999;
	top: 0;
	right: 0;
	text-align: center;
	color: #fff;
	font-size: 20px;
	line-height: 2em;
}

.loadEffect2 {
	width: 80px;
	height: 80px;
	position: relative;
	margin: 0 auto;
	margin-top: 30vh;
}

.loadEffect2 span {
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	-webkit-animation: load 1.04s ease infinite;
}

@-webkit-keyframes load2 {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0.2;
	}
}

.loadEffect2 span:nth-child(1) {
	left: 0;
	top: 50%;
	margin-top: -8px;
	-webkit-animation-delay: 0.13s;
}

.loadEffect2 span:nth-child(2) {
	left: 10px;
	top: 10px;
	-webkit-animation-delay: 0.26s;
}

.loadEffect2 span:nth-child(3) {
	left: 50%;
	top: 0;
	margin-left: -8px;
	-webkit-animation-delay: 0.39s;
}

.loadEffect2 span:nth-child(4) {
	top: 10px;
	right: 10px;
	-webkit-animation-delay: 0.52s;
}

.loadEffect2 span:nth-child(5) {
	right: 0;
	top: 50%;
	margin-top: -8px;
	-webkit-animation-delay: 0.65s;
}

.loadEffect2 span:nth-child(6) {
	right: 10px;
	bottom: 10px;
	-webkit-animation-delay: 0.78s;
}

.loadEffect2 span:nth-child(7) {
	bottom: 0;
	left: 50%;
	margin-left: -8px;
	-webkit-animation-delay: 0.91s;
}

.loadEffect2 span:nth-child(8) {
	bottom: 10px;
	left: 10px;
	-webkit-animation-delay: 1.04s;
}


@keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Firefox */
@-moz-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Safari and Chrome */
@-webkit-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}

/* Opera */
@-o-keyframes btnAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(1);
	}
}


/*购物车*/
.proShoppingcart_box .shopptingcart_open {
	font-size: 0;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background: var(--primary-color) url(../images/ico_pbtn2.png) center no-repeat;
	background-size: 50% auto;
	position: fixed;
	top: 20%;
	right: 10%;
	cursor: pointer;
	z-index: 0;
	animation: btnAnimation 1s linear infinite 0s forwards;
}

.proShoppingcart_box .shopptingcart_open:hover {
	opacity: .9;
}

.tit_cart {}

.tit_cart .h2 {
	border-bottom: 1px solid #eee;
	font-size: 1.25vw;
	line-height: 1.5em;
}

.tit_cart .h2 span {
	display: inline-block;
	border-bottom: 2px solid var(--primary-color);
	color: var(--primary-color);
	padding-bottom: .26vw;
}

.shoppingcart_box {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	display: none;
}

.shoppingcart_close1 {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .1);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.shoppingcartbg {
	width: 50%;
	height: 100%;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	overflow-y: auto;
	transform: translateX(100%);
	transition: all .3s ease;
}

.shoppingcartbg.active {
	transform: translateX(0);
}

.shoppingcart_close2 {
	width: 20px;
	height: 20px;
	background: url(../images/chahao2.png) center no-repeat;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	opacity: .9;
	transition: all .3s ease;
}

.shoppingcart_close2:hover {
	opacity: 1;
	transform: rotate(180deg)
}

.shoppingcart {
	padding: 1.56vw;
}

.shoppingcart_list {
	margin-top: 1.04vw;
	margin-bottom: 1.56vw;
}

.shoppingcart_list_top {
	background: #f9f9f9;
	border: 1px solid #eee;
	margin-bottom: .52vw;
}

.shoppingcart_list_top table {}

.shoppingcart_list_top table th {
	font-weight: normal;
	text-align: center;
	padding: .78vw .52vw;
	font-size: .84vw;
	line-height: 1.5em;
}

.shoppingcart_list_top .w1 {
	width: 40%;
	text-align: left;
}

.shoppingcart_list_top .w2 {
	width: 15%;
}

.shoppingcart_list_top .w3 {
	width: 15%;
	padding-left: 0;
	padding-right: 0;
}

.shoppingcart_list_top .w4 {
	width: 15%;
}

.shoppingcart_list_top .w5 {
	width: 15%;
}

.shoppingcart_list_mid {
	border: 1px solid #eee;
	border-bottom: none;
	margin-bottom: .52vw;
	max-height: calc(14.04vw + 10px);
	overflow-y: auto;
}

.shoppingcart_list_mid table {}

.shoppingcart_list_mid table td {
	text-align: center;
	padding: .78vw .52vw;
	font-size: .72vw;
	line-height: 2em;
	border-bottom: 1px solid #eee;
}

.shoppingcart_list_mid .w1 {
	width: 40%;
	text-align: left;
}

.shoppingcart_list_mid .w1 .cart_pro {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.shoppingcart_list_mid .w1 .img {
	width: 3.12vw;
	height: 3.12vw;
	border: 1px solid #eee;
	position: relative;
}

.shoppingcart_list_mid .w1 .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
}

.shoppingcart_list_mid .w1 .h2 {
	width: calc(100% - 3.5vw);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.shoppingcart_list_mid .w2 {
	width: 15%;
}

.shoppingcart_list_mid .w3 {
	width: 15%;
	padding-left: 0;
	padding-right: 0;
}

.shoppingcart_list_mid .w3 .pronum {
	height: 1.56vw;
}

.shoppingcart_list_mid .w3 .pronum a {
	width: calc(1.56vw - 2px);
	height: calc(1.56vw - 2px);
	line-height: calc(1.56vw - 2px);
}

.shoppingcart_list_mid .w3 .pronum input {
	width: 2.6vw;
	height: calc(1.56vw - 2px);
	line-height: calc(1.56vw - 2px);
}

.shoppingcart_list_mid .w4 {
	width: 15%;
	font-weight: bold;
}

.shoppingcart_list_mid .w5 {
	width: 15%;
}

.shoppingcart_list_btm {
	border: 1px solid #eee;
}

.shoppingcart_list_btm table {}

.shoppingcart_list_btm table td {
	padding: .78vw .52vw;
	font-size: .84vw;
	line-height: 1.5em;
}

.shoppingcart_list_btm .w1 {
	width: 40%;
}

.shoppingcart_list_btm .w2 {
	width: 60%;
	text-align: right;
}

.shoppingcart_list_btm .w2 strong {
	color: #e64347;
	font-size: 20px;
}

.shoppingcart_form {}

.shoppingcart_form .h2 {
	font-size: 1.25vw;
	line-height: 1.5em;
	margin-bottom: .26vw;
}

.shoppingcart_form .message {}

.shoppingcart_form .message form {}

.shoppingcart_form .message ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	flex-wrap: wrap;
}

.shoppingcart_form .message ul li {
	width: calc((100% - 15px)/2);
	margin-top: .52vw;
}

.shoppingcart_form .message ul li.li1 {
	width: 100%;
}

.shoppingcart_form .message .input_text {
	border: 1px solid #eee;
	background: #fff;
	height: 2.08vw;
	line-height: 2.08vw;
	padding: 0 10px;
	width: calc(100% - 22px);
}

.shoppingcart_form .message textarea {
	border: 1px solid #eee;
	background: #fff;
	height: 6.24vw;
	line-height: 2.08vw;
	padding: 0 10px;
	width: calc(100% - 22px);
}

.shoppingcart_form .message .yzm {
	height: calc(2.08vw + 2px);
}

.shoppingcart_form .message .yzm img {
	float: right;
	width: 100px;
	height: calc(2.08vw + 2px);
}

.shoppingcart_form .message .input_text1 {
	border: 1px solid #eee;
	background: #fff;
	height: 2.08vw;
	line-height: 2.08vw;
	padding: 0 10px;
	width: calc(100% - 125px);
	float: left;
}

.shoppingcart_form .message .yzm #sendcode {
	float: right;
	width: 100px;
	height: calc(2.08vw + 2px);
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
}

.shoppingcart_form .message .yzm #sendcode:hover {
	opacity: .9;
}

.shoppingcart_form .message .input_button {
	display: block;
	margin: 0 auto;
	border: none;
	width: 100%;
	height: calc(2.08vw + 2px);
	line-height: calc(2.08vw + 2px);
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
	font-size: 12px;
}

.shoppingcart_form .message .input_button:hover {
	opacity: .9;
}

.yzm input[disabled] {
	background: #999 !important;
	cursor: not-allowed !important;
}

.shoppingcart .success {
	text-align: center;
	margin-top: 20vh;
}

.shoppingcart .success .h1 {
	font-size: 1.25vw;
	line-height: 2em;
	margin-top: .52vw;
}

.shoppingcart .success .h2 {
	font-size: .84vw;
	line-height: 1.5em;
	color: #999;
}

.shoppingcart .success input {
	display: block;
	margin: 0 auto;
	border: none;
	width: 20%;
	height: calc(2.08vw + 2px);
	line-height: calc(2.08vw + 2px);
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
	border-radius: 4px;
	font-size: 14px;
	margin-top: 1.3vw;
}

.shoppingcart .success input:hover {
	opacity: .9;
}

@media(max-width:999px) {
	.shopptingcart_loading {
		width: 100%;
	}

	.tit_cart .h2 {
		font-size: 20px;
		line-height: 1.5em;
	}

	.tit_cart .h2 span {
		padding-bottom: 5px;
	}

	.shoppingcartbg {
		width: 100%;
		height: 100%;
	}

	.shoppingcart {
		padding: 15px;
	}

	.shoppingcart_list {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.shoppingcart_list_top {
		display: none;
	}

	.shoppingcart_list_mid {
		margin-bottom: 15px;
		max-height: 44vh;
	}

	.shoppingcart_list_mid table tr {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		flex-wrap: wrap;
	}

	.shoppingcart_list_mid table td {
		padding: 10px 0;
		font-size: 12px;
		line-height: 24px;
		display: block;
	}

	.shoppingcart_list_mid .w1 {
		width: 100%;
		padding-left: 5px;
		padding-right: 5px;
		border: none;
		padding-bottom: 0;
	}

	.shoppingcart_list_mid .w1 .img {
		width: 40px;
		height: 40px;
	}

	.shoppingcart_list_mid .w1 .h2 {
		width: calc(100% - 45px);
		line-height: 16px;
	}

	.shoppingcart_list_mid .w2 {
		width: 24%;
	}

	.shoppingcart_list_mid .w3 {
		width: 28%;
	}

	.shoppingcart_list_mid .w3 .pronum {
		height: 24px;
		vertical-align: top;
	}

	.shoppingcart_list_mid .w3 .pronum a {
		width: 22px;
		height: 22px;
		line-height: 22px;
	}

	.shoppingcart_list_mid .w3 .pronum input {
		width: 44px;
		height: 22px;
		line-height: 22px;
	}

	.shoppingcart_list_mid .w4 {
		width: 24%;
	}

	.shoppingcart_list_mid .w5 {
		width: 24%;
	}

	.shoppingcart_list_btm table td {
		padding: 10px 5px;
		font-size: 12px;
		line-height: 1.5em;
	}

	.shoppingcart_list_btm .w2 strong {
		font-size: 20px;
	}

	.shoppingcart_form {}

	.shoppingcart_form .h2 {
		font-size: 20px;
		line-height: 1.5em;
		margin-bottom: 0;
	}

	.shoppingcart_form .message ul li {
		width: calc((100% - 10px)/2);
		margin-top: 10px;
	}

	.shoppingcart_form .message ul li.li1 {
		width: 100%;
	}

	.shoppingcart_form .message .input_text {
		height: 30px;
		line-height: 30px;
		padding: 0 10px;
		width: calc(100% - 22px);
	}

	.shoppingcart_form .message textarea {
		height: 60px;
		line-height: 30px;
		padding: 0 10px;
		width: calc(100% - 22px);
	}

	.shoppingcart_form .message .yzm {
		height: 32px;
	}

	.shoppingcart_form .message .yzm img {
		width: 100px;
		height: 32px;
	}

	.shoppingcart_form .message .input_text1 {
		height: 30px;
		line-height: 30px;
		padding: 0 10px;
		width: calc(100% - 95px);
	}

	.shoppingcart_form .message .yzm #sendcode {
		width: 68px;
		height: 32px;
		font-size: 12px;
	}

	.shoppingcart_form .message .input_button {
		height: 32px;
		line-height: 32px;
		font-size: 12px;
	}

	.shoppingcart .success {}

	.shoppingcart .success img {
		max-width: 80px;
	}

	.shoppingcart .success .h1 {
		font-size: 20px;
		line-height: 2em;
		margin-top: 10px;
	}

	.shoppingcart .success .h2 {
		font-size: 12px;
		line-height: 1.5em;
	}

	.shoppingcart .success input {
		width: 30%;
		height: 32px;
		line-height: 30px;
		font-size: 12px;
		margin-top: 25px;
	}
}


/*筛选*/
.screen_btn {
	position: fixed;
	top: 100px;
	right: calc(15% - 40px);
	z-index: 11;
	display: none;
}

.screen_btn a {
	display: block;
	width: 40px;
	height: 40px;
	background-color: var(--secondary-color);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px auto;
	background-image: url(../images/ico_screen.png);
}

.screen_close {
	font-size: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
	border-radius: 100%;
	background: url(../images/ico_btn1.png) center no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	right: calc(15% - 40px);
	z-index: 2;
	display: none;
}

.screen {}

.screen_box {
	width: 100%;
	font-size: 14px;
	line-height: 28px;
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	border-radius: 4px;
	margin-bottom: 30px;
	position: relative;
	z-index: 22;
}

.screen_box>ul {
	position: relative;
	padding: 5px 15px 0 15px;
}

.screen_box>ul>li {
	position: relative;
	padding: 15px 0 5px 70px;
	position: relative;
	border-top: 1px solid #eee;
}

.screen_box>ul>li:first-child {
	border-top: none;
}

.screen_box>ul>li:nth-child(n+3) {
	display: none;
}

.screen_box.active>ul>li:nth-child(n+3) {
	display: block;
}

.screen_box>ul>li>span {
	display: block;
	font-size: 16px;
	line-height: 30px;
	position: absolute;
	left: 0;
	top: 15px;
}

.screen_box>ul>li .boxbg {
	/* height:35px;*/
	overflow: hidden;
	position: relative;
	/* padding-right:30px;*/
}

.screen_box>ul>li .boxbg.active {
	/* height:auto;*/
}

.screen_box .box_btn {
	display: none;
	padding-bottom: 15px;
}

.screen_box .box_btn i {
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	background: url(../images/ico_down1.png) center no-repeat;
	cursor: pointer;
}

.screen_box .box_btn i.i1 {}

.screen_box .box_btn i.i2 {
	background-image: url(../images/ico_list2.png);
	display: none;
}

.screen_box.active .box_btn i.i1 {
	display: none;
}

.screen_box.active .box_btn i.i2 {
	display: block;
}

.screen_box>ul>li .box {}

.screen_box>ul>li a {
	display: inline-block;
	padding: 0 15px;
	color: #999;
	border: 1px solid #f5f5f5;
	margin: 0 10px 10px 0;
	border-radius: 4px;
}

.screen_box>ul>li a:hover {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.screen_box>ul>li a.hover {
	color: #fff;
	border-color: var(--primary-color);
	background: var(--primary-color);
}

.screen.tfixed .screen_box {
	position: fixed;
	top: 100px;
	left: 0;
	z-index: 33;
	transform: translateY(-100%);
	transition: all .3s ease;
	opacity: 0;
	visibility: hidden;
}

.screen.tfixed.shown .screen_box {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.screen.tfixed.hiden .screen_box {
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
}

.screen.tfixed .screen_box>ul {
	width: 70%;
	margin: 0 auto;
}

.screen.tfixed .screen_btn {
	display: block;
}

.screen.tfixed .screen_close {
	display: block;
}

/*.screen.active{ position:fixed; left:0; top:0; padding:0;}
.screen.active>ul{ width:70%; margin:0 auto;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: space-between;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: flex-start;
align-items: flex-start;}
.screen.active>ul>li{ width:100%; position:static; padding:0; border:none; cursor:pointer; text-align:center; }
.screen.active>ul>li>span{ position:relative; left:auto; top:auto; line-height:60px; display:inline-block;}
.screen.active>ul>li>span:after{ content:""; width:20px; height:100%; background:url(../images/ico_down1.png) center no-repeat; position:absolute; top:0; left:100%;}
.screen.active>ul>li:hover>span:after{ background-image:url(../images/ico_up1.png);}
.screen.active>ul>li .boxbg{ width:100%; background:#fff; box-shadow:0 0 5px rgba(0,0,0,.1); position:absolute; top:100%; left:0; display:none;}
.screen.active>ul>li:hover .boxbg{ display:block;}
.screen.active>ul>li .box{ width:70%; margin:0 auto; padding:20px 0;}*/
@media(max-width:1699px) {
	.screen_btn {
		right: calc(10% - 40px)
	}

	.screen_close {
		right: calc(10% - 40px)
	}

	.screen.tfixed .screen_box>ul {
		width: 80%;
	}

	/*.screen.active>ul{ width:80%;}
.screen.active>ul>li .box{ width:80%; }*/
}

@media(max-width:1279px) {
	.screen_btn {
		right: calc(5% - 40px)
	}

	.screen_close {
		right: calc(5% - 40px)
	}
}

@media(max-width:999px) {
	.screen_box {
		font-size: 12px;
		line-height: 24px;
		/* margin-top:35px;*/
		display: none;
	}

	.screen.tfixed .screen_box {
		top: 60px;
		display: block;
	}

	.screen_btn {
		right: 0
	}

	.screen_close {
		right: 0;
	}

	.screen_box>ul {
		max-height: calc(100vh - 120px);
		overflow-y: auto;
	}

	.screen_box>ul>li {
		/* margin-bottom:15px;*/
		padding-bottom: 10px;
		padding-left: 60px;
	}

	.screen_box>ul>li>span {
		font-size: 12px;
		line-height: 24px;
	}

	.screen_box>ul>li a {
		padding: 0 5px;
		margin: 0 5px 5px 0;
	}

	.screen.tfixed .screen_box>ul {
		width: 90%;
	}

	/*.screen.active>ul{ width:90%;}
.screen.active>ul>li .box{ width:90%; }*/
}







/*pro1*/
.index_product1 {}

.index_product1 ul li {
	float: left;
	width: calc((100% - 40px)/3);
	margin: 0 0 20px 20px;
	text-align: center;
	background: #fff;
}

.index_product1 ul li:nth-child(3n-2) {
	margin-left: 0;
	clear: left;
}

.index_product1 ul li .nr_box {
	border: 1px solid #eee;
	border-radius: 10px;
	overflow: hidden;
	transition: all .3s ease;
}

.index_product1 ul li:hover .nr_box {
	border-color: var(--primary-color);
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.index_product1 ul li .img {
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
	background: #f9f9f9;
}

.index_product1 ul li .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
}

.index_product1 ul li:hover .img img {
	transform: scale(1.1);
}

.index_product1 ul li .txtbg {}

.index_product1 ul li .txt {
	padding: 15px 5%;
	color: #666;
}

.index_product1 ul li .txt .h2 {
	font-size: 18px;
	line-height: 1.5em;
	height: 1.5em;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.index_product1 ul li:hover .txt .h2 {
	color: var(--primary-color);
}

.index_product1 ul li .txt .h3 {
	display: none;
}

@media(max-width:999px) {
	.index_product1 ul li {
		float: left;
		width: calc((100% - 10px)/2);
		margin: 0 0 20px 10px;
	}

	.index_product1 ul li:nth-child(3n-2) {
		margin-left: 10px;
		clear: none;
	}

	.index_product1 ul li:nth-child(2n-1) {
		margin-left: 0;
		clear: left;
	}

	.index_product1 ul li .txt {
		padding: 10px 5%;
	}

	.index_product1 ul li .txt .h2 {
		font-size: 14px;
		line-height: 1.5em;
		height: 1.5em;
	}
}


/*news1*/
.index_news1 {
	padding: 40px 0;
	background: #f2f2f2;
}

.index_news1 ul li {
	float: left;
	width: calc((100% - 20px)/2);
	margin: 0 0 20px 20px;
	background: #fff;
}

.index_news1 ul li:nth-child(2n-1) {
	margin-left: 0;
	clear: left;
}

.index_news1 ul li .nr_box {
	border: 1px solid #f2f2f2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.index_news1 ul li .imgbg {
	width: 25%;
}

.index_news1 ul li .img {
	padding-bottom: 70%;
	position: relative;
	overflow: hidden;
}

.index_news1 ul li .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
}

.index_news1 ul li:hover .img img {
	transform: scale(1.1);
}

.index_news1 ul li .txtbg {
	width: 75%;
}

.index_news1 ul li .txt {
	padding: 20px 20px;
	color: #666;
}

.index_news1 ul li .txt .h2 {
	font-size: .94vw;
	line-height: 1.5em;
	height: 1.5em;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.index_news1 ul li:hover .txt .h2 {
	color: var(--primary-color);
}

.index_news1 ul li .txt .h3 {
	font-size: .72vw;
	line-height: 1.5em;
	height: 3em;
	margin: 10px 0 0 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.index_news1 ul li .txt .time {
	font-size: 14px;
	line-height: 24px;
	color: #999;
	padding-left: 24px;
	position: relative;
	margin: 10px 0 0 0;
}

.index_news1 ul li .txt .time i {
	width: 20px;
	height: 24px;
	background: url(../images/ico_time.png) center no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}

@media(max-width:999px) {
	.index_news1 ul li {
		float: left;
		width: 100%;
		margin: 0 0 20px 0;
	}
}


/*news2*/
.index_news2 {
	padding: 40px 0;
}

.index_news2 ul li {
	float: left;
	width: calc((100% - 20px)/2);
	margin: 0 0 0 20px;
	border-bottom: 1px solid #ccc;
	padding: 20px 0;
}

.index_news2 ul li:nth-child(2n-1) {
	margin-left: 0;
	clear: left;
}

.index_news2 ul li .txt {}

.index_news2 ul li .txt .h2 {
	font-size: 16px;
	line-height: 26px;
	height: 26px;
	overflow: hidden;
	padding-left: 25px;
	position: relative;
}

.index_news2 ul li .txt .h2:before {
	content: "";
	width: 6px;
	height: 6px;
	background: #000;
	position: absolute;
	left: 0;
	top: 10px;
}

.index_news2 ul li .txt .h2 a {
	float: left;
	width: 70%;
	height: 26px;
	overflow: hidden;
	color: #333;
}

.index_news2 ul li:hover .txt .h2 a {
	color: var(--primary-color);
}

.index_news2 ul li .txt .h2 span {
	float: right;
	color: #999;
}

@media(max-width:999px) {
	.index_news2 ul li {
		float: left;
		width: 100%;
		margin: 0;
	}
}


/*news3*/
.index_news3 {
	padding: 40px 0;
}

.index_news3 ul li {
	float: left;
	width: calc((100% - 20px)/2);
	margin: 0 0 20px 20px;
}

.index_news3 ul li:nth-child(2n-1) {
	margin-left: 0;
	clear: left;
}

.index_news3 ul li .nr_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.index_news3 ul li .date {
	width: 80px;
	height: 80px;
	background: #f2f2f2;
	color: #999;
	text-align: center;
}

.index_news3 ul li .date strong {
	display: block;
	font-size: 36px;
	line-height: 36px;
	padding: 15px 0 2px 0;
}

.index_news3 ul li .date span {
	display: block;
	font-size: 12px;
	line-height: 12px;
}

.index_news3 ul li .txt {
	width: calc(100% - 100px);
	color: #666;
}

.index_news3 ul li .txt .h2 {
	font-size: .94vw;
	line-height: 1.5em;
	height: 1.5em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.index_news3 ul li .txt .h2 a {
	color: #333;
}

.index_news3 ul li:hover .txt .h2 a {
	color: var(--primary-color);
}

.index_news3 ul li .txt .h3 {
	font-size: .72vw;
	line-height: 1.5em;
	height: 3em;
	margin: 5px 0 0 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media(max-width:999px) {
	.index_news3 ul li {
		float: left;
		width: 100%;
		margin: 0 0 20px 0;
	}
}


/*footnav*/
.f_nav {
	padding: 40px 0;
}

.f_nav>ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
}

.f_nav ul li {
	flex-grow: 1;
	flex-shrink: 1;
	margin-bottom: 10px;
}

.f_nav ul li a {
	display: block;
	font-size: 14px;
	line-height: 24px;
}

.f_nav>ul>li>a {
	font-size: 16px;
	line-height: 26px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}



/*inner_news1*/
.inside_news1 {}

.inside_news1 ul li {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}

.inside_news1 ul li .nr_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.inside_news1 ul li .imgbg {
	width: 25%;
}

.inside_news1 ul li .img {
	position: relative;
	padding-bottom: 70%;
	overflow: hidden;
	border-radius: 10px;
}

.inside_news1 ul li .img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
	background: #f9f9f9;
}

.inside_news1 ul li:hover .img img {
	transform: scale(1.1);
}

.inside_news1 ul li .txtbg {
	width: 75%;
}

.inside_news1 ul li .txt {
	padding-left: 5%;
	color: #666;
}

.inside_news1 ul li .txt .h2 {
	font-size: 18px;
	line-height: 1.5em;
	color: #333;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.inside_news1 ul li:hover .txt .h2 {
	color: var(--primary-color);
}

.inside_news1 ul li .txt .h3 {
	font-size: 14px;
	line-height: 1.5em;
	margin-bottom: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.inside_news1 ul li .txt .time {
	font-size: 14px;
	line-height: 24px;
	color: #999;
	padding-left: 24px;
	position: relative;
}

.inside_news1 ul li .txt .time i {
	width: 20px;
	height: 24px;
	background: url(../images/ico_time.png) center no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}

@media(max-width:999px) {
	.inside_news1 ul li .txt .h2 {
		font-size: 14px;
		line-height: 1.5em;
		height: auto;
		-webkit-line-clamp: 2;
		margin-bottom: 5px;
	}

	.inside_news1 ul li .txt .h3 {
		display: none;
	}
}



/*inner_news2*/
.inside_news2 {}

.inside_news2 ul li {
	float: left;
	width: calc((100% - 20px)/2);
	margin: 0 0 0 20px;
	border-bottom: 1px solid #ccc;
	padding: 20px 0;
}

.inside_news2 ul li:nth-child(2n-1) {
	margin-left: 0;
	clear: left;
}

.inside_news2 ul li .txt {}

.inside_news2 ul li .txt .h2 {
	font-size: 16px;
	line-height: 26px;
	height: 26px;
	overflow: hidden;
	padding-left: 25px;
	position: relative;
}

.inside_news2 ul li .txt .h2:before {
	content: "";
	width: 6px;
	height: 6px;
	background: #000;
	position: absolute;
	left: 0;
	top: 10px;
}

.inside_news2 ul li .txt .h2 a {
	float: left;
	width: 70%;
	height: 26px;
	overflow: hidden;
	color: #333;
}

.inside_news2 ul li:hover .txt .h2 a {
	color: var(--primary-color);
}

.inside_news2 ul li .txt .h2 span {
	float: right;
	color: #999;
}

@media(max-width:999px) {
	.inside_news2 ul li {
		float: left;
		width: 100%;
		margin: 0;
	}
}


/*inner_news3*/
.inside_news3 {}

.inside_news3 ul li {
	float: left;
	width: calc((100% - 20px)/2);
	margin: 0 0 20px 20px;
}

.inside_news3 ul li:nth-child(2n-1) {
	margin-left: 0;
	clear: left;
}

.inside_news3 ul li .nr_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.inside_news3 ul li .date {
	width: 80px;
	height: 80px;
	background: #f2f2f2;
	color: #999;
	text-align: center;
}

.inside_news3 ul li .date strong {
	display: block;
	font-size: 36px;
	line-height: 36px;
	padding: 15px 0 2px 0;
}

.inside_news3 ul li .date span {
	display: block;
	font-size: 12px;
	line-height: 12px;
}

.inside_news3 ul li .txt {
	width: calc(100% - 100px);
	color: #666;
}

.inside_news3 ul li .txt .h2 {
	font-size: .94vw;
	line-height: 1.5em;
	height: 1.5em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.inside_news3 ul li .txt .h2 a {
	color: #333;
}

.inside_news3 ul li:hover .txt .h2 a {
	color: var(--primary-color);
}

.inside_news3 ul li .txt .h3 {
	font-size: .72vw;
	line-height: 1.5em;
	height: 3em;
	margin: 5px 0 0 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media(max-width:999px) {
	.inside_news3 ul li {
		float: left;
		width: 100%;
		margin: 0 0 20px 0;
	}
}

/*inpic1*/
.inside_picList1 {}

.inside_picList1 ul li {
	float: left;
	width: calc((100% - 40px)/3);
	margin: 0 0 20px 20px;
	text-align: center;
	background: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
}

.inside_picList1 ul li:nth-child(3n-2) {
	margin-left: 0;
	clear: left;
}

.inside_picList1 ul li .nr_box {}

.inside_picList1 ul li .img {
	padding-bottom: 64%;
	position: relative;
	overflow: hidden;
}

.inside_picList1 ul li .img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
	background: #f9f9f9;
}

.inside_picList1 ul li:hover .img img {
	transform: scale(1.1);
}

.inside_picList1 ul li .txtbg {
	position: relative;
}

.inside_picList1 ul li .txtbg:before {
	content: "";
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	position: absolute;
	left: 0;
	top: 0;
	transition: transform .38s cubic-bezier(.4, 0, .2, 1);
	transform: scaleY(0);
	transform-origin: 50% 100% 0;
}

.inside_picList1 ul li:hover .txtbg:before {
	transform: scaleY(1);
	transform-origin: 50% 0 0;
}

.inside_picList1 ul li .txt {
	padding: 15px 5%;
	color: #666;
	position: relative;
	z-index: 2;
}

.inside_picList1 ul li .txt .h2 {
	font-size: 14px;
	line-height: 1.5em;
	height: 1.5em;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.inside_picList1 ul li:hover .txt .h2 {
	color: #fff;
}

.inside_picList1 ul li .txt .h3 {
	display: none;
}

@media(max-width:999px) {
	.inside_picList1 ul li {
		float: left;
		width: calc((100% - 10px)/2);
		margin: 0 0 20px 10px;
	}

	.inside_picList1 ul li:nth-child(3n-2) {
		margin-left: 10px;
		clear: none;
	}

	.inside_picList1 ul li:nth-child(2n-1) {
		margin-left: 0;
		clear: left;
	}

	.inside_picList1 ul li .txt {
		padding: 15px 5%;
	}

	.inside_picList1 ul li .txt .h2 {
		font-size: 14px;
		line-height: 1.6em;
		height: 1.6em;
	}
}

/*inphoto1*/
.inside_photo1 {}

.inside_photo1 ul li {
	float: left;
	width: calc((100% - 60px)/4);
	margin: 0 0 20px 20px;
	text-align: center;
}

.inside_photo1 ul li:nth-child(4n-3) {
	margin-left: 0;
	clear: left;
}

.inside_photo1 ul li .nr_box {
	border: 1px solid #f2f2f2;
	border-radius: 10px;
	overflow: hidden;
	padding: 10px;
}

.inside_photo1 ul li .imgbg {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.inside_photo1 ul li .img {
	padding-bottom: 100%;
	position: relative;
	z-index: 1;
}

.inside_photo1 ul li .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
	background: #f9f9f9;
}

.inside_photo1 ul li:hover .img img {
	transform: scale(1.1);
}

.inside_photo1 ul li .imgbg:before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}

.inside_photo1 ul li:hover .imgbg:before {
	opacity: 1;
	visibility: visible;
}

.inside_photo1 ul li i {
	width: 40px;
	height: 40px;
	background: url(../images/ico_search1.png) center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}

.inside_photo1 ul li:hover i {
	opacity: 1;
	visibility: visible;
}

.inside_photo1 ul li .txtbg {}

.inside_photo1 ul li .txt {
	margin-top: 10px;
	padding: 0 5%;
	color: #666;
}

.inside_photo1 ul li .txt .h2 {
	font-size: 14px;
	line-height: 1.5em;
	height: 1.5em;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.inside_photo1 ul li:hover .txt .h2 {
	color: var(--primary-color);
}

.inside_photo1 ul li .txt .h3 {
	display: none;
}

@media(max-width:999px) {
	.inside_photo1 ul li {
		float: left;
		width: calc((100% - 10px)/2);
		margin: 0 0 20px 10px;
	}

	.inside_photo1 ul li:nth-child(4n-3) {
		margin-left: 10px;
		clear: none;
	}

	.inside_photo1 ul li:nth-child(2n-1) {
		margin-left: 0;
		clear: left;
	}
}


/*inside_download1*/
.inside_download1 {}

.inside_download1 ul li {
	border-bottom: 1px dashed #ccc;
	padding: 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.inside_download1 ul li:nth-child(1) {
	padding-top: 0;
}

.inside_download1 ul li>i {
	text-align: center;
	line-height: 40px;
	font-size: 40px;
	width: 40px;
	text-align: center;
	color: var(--primary-color);
}

.inside_download1 ul li .txt {
	width: calc(100% - 200px);
	position: relative;
}

.inside_download1 ul li .txt .h2 {
	font-size: 16px;
	line-height: 26px;
	height: 26px;
	overflow: hidden;
}

.inside_download1 ul li .txt .h2 a {
	color: #333;
}

.inside_download1 ul li:hover .txt .h2 a {
	color: var(--primary-color);
}

.inside_download1 ul li .txt .h3 {
	font-size: 14px;
	line-height: 24px;
}

.inside_download1 ul li .txt .h3 span {
	display: inline-block;
	margin: 0 20px 0 0;
	color: #999;
}

.inside_download1 ul li .down_btn {}

.inside_download1 ul li .down_btn a {
	display: block;
	background: var(--primary-color);
	color: #fff;
	width: 120px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	border-radius: 4px;
}

.inside_download1 ul li .down_btn a:hover {
	opacity: .9;
}

.inside_download1 ul li .down_btn a i {
	margin-right: 5px;
	vertical-align: middle;
}

@media(max-width:999px) {
	.inside_download1 ul li {
		padding: 20px 0;
		flex-wrap: wrap;
	}

	.inside_download1 ul li .txt {
		width: calc(100% - 60px);
	}

	.inside_download1 ul li .txt .h2 {
		font-size: 16px;
		line-height: 26px;
		height: 26px;
	}

	.inside_download1 ul li .txt .h3 {
		font-size: 14px;
		line-height: 24px;
	}

	.inside_download1 ul li .txt .h3 span {
		margin: 0 10px 0 0;
	}

	.inside_download1 ul li .down_btn {
		width: 100%;
		margin-top: 10px;
	}

	.inside_download1 ul li .down_btn a {
		width: 100%;
		line-height: 40px;
		font-size: 14px;
	}
}

/*inpro1*/
.inside_product1 {}

.inside_product1 ul li {
	float: left;
	width: calc((100% - 40px)/3);
	margin: 0 0 20px 20px;
	text-align: center;
}

.inside_product1 ul li:nth-child(3n-2) {
	margin-left: 0;
	clear: left;
}

.inside_product1 ul li .nr_box {
	border: 1px solid #f2f2f2;
	border-radius: 10px;
	overflow: hidden;
	padding: 10px;
}

.inside_product1 ul li:hover .nr_box {
	background: #f4f4f4;
}

.inside_product1 ul li .img {
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
}

.inside_product1 ul li .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
}

.inside_product1 ul li:hover .img img {
	transform: scale(1.1);
}

.inside_product1 ul li .txtbg {}

.inside_product1 ul li .txt {
	margin-top: 10px;
	padding: 0 5%;
	color: #666;
}

.inside_product1 ul li .txt .h2 {
	font-size: 16px;
	line-height: 1.5em;
	height: 1.5em;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.inside_product1 ul li:hover .txt .h2 {
	color: var(--primary-color);
}

.inside_product1 ul li .txt .h3 {
	display: none;
}

@media(max-width:999px) {
	.inside_product1 ul li {
		float: left;
		width: 100%;
		margin: 0 0 20px 0;
	}

	.inside_product1 ul li .txt .h2 {
		font-size: 14px;
		line-height: 1.5em;
		height: 1.5em;
	}
}

/*innewsClass1*/
.itit1 {}

.itit1 .h2 {
	height: 20px;
	line-height: 20px;
	font-size: 20px;
}

.itit1 .h2 strong {
	float: left;
	font-weight: bold;
	border-left: 5px solid var(--primary-color);
	padding-left: 5px;
}

.itit1 .h2 a {
	float: right;
	font-size: 14px;
	color: var(--primary-color);
}

.inside_newsClass1 {}

.inside_newsClass1_box {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}

.inside_newsClass1 .ilist {
	padding: 10px 10px 0 10px;
}

.inside_newsClass1 .ilist ul li {
	height: 40px;
	line-height: 40px;
	padding-left: 15px;
	position: relative;
}

.inside_newsClass1 .ilist ul li:before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: #ccc;
	position: absolute;
	left: 0;
	top: 17px;
}

.inside_newsClass1 .ilist ul li a {
	float: left;
	width: 70%;
	height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	font-size: 16px;
}

.inside_newsClass1 .ilist ul li span {
	float: right;
	font-size: 14px;
	color: #999;
}

/*inproClass1*/
.imore1 {}

.imore1 span {
	display: inline-block;
	vertical-align: top;
	border: 1px solid #fff;
	height: 38px;
	line-height: 38px;
	padding: 0 20px;
	font-size: 14px;
}

.imore1 span:hover {
	background: #fff;
	color: #333;
}

.inside_proClass1 {}

.inside_proClass1 ul li {
	float: left;
	width: calc((100% - 40px)/3);
	margin: 0 0 20px 20px;
	text-align: center;
	background: #fff;
	position: relative;
}

.inside_proClass1 ul li:nth-child(3n-2) {
	margin-left: 0;
	clear: left;
}

.inside_proClass1 ul li .nr_box {
	border: 10px solid #eee;
}

.inside_proClass1 ul li .img {
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
}

.inside_proClass1 ul li .img img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
}

.inside_proClass1 ul li:hover .img img {
	transform: scale(1.1);
}

.inside_proClass1 ul li .txtbg {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.inside_proClass1 ul li .txt {
	padding: 20px 5%;
	width: 90%;
	color: #fff;
}

.inside_proClass1 ul li .txt .h2 {
	font-size: 24px;
	line-height: 34px;
	height: 34px;
	overflow: hidden;
}

.inside_proClass1 ul li .txt .h3 {
	font-size: 14px;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
	margin: 10px 0 0 0;
}

@media(max-width:999px) {
	.inside_proClass1 ul li {
		float: left;
		width: calc((100% - 20px)/2);
		margin: 0 0 20px 20px;
	}

	.inside_proClass1 ul li:nth-child(3n-2) {
		margin-left: 20px;
		clear: none;
	}

	.inside_proClass1 ul li:nth-child(2n-1) {
		margin-left: 0;
		clear: left;
	}
}


.m11_message1 {}

.m11_message1 .list1 {
	margin-top: 20px;
}

.m11_message1 .list1 img {
	display: block;
	width: 100%;
	background: #f9f9f9;
}

.m11_message1 .list2 {
	margin-top: 20px;
}

/*留言*/
.message1 {}

.message1 form {}

.message1 form ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	flex-wrap: wrap;
}

.message1 form ul li {
	width: 48%;
	margin: 0 0 20px 4%;
}

.message1 form ul li.li1 {
	width: 100%;
	margin-left: 0;
}

.message1 form ul li.li2 {
	text-align: right;
}

.message1 form ul li:nth-child(1),
.message1 form ul li:nth-child(3),
.message1 form ul li:nth-child(6) {
	margin-left: 0;
}

.message1 form .h3 {
	width: 100px;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 5px;
	font-weight: normal !important;
}

.message1 form .h3 font {
	color: #f00;
}

.message1 form .input_text {
	border: 1px solid #eee;
	background: #fff;
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
	width: calc(100% - 22px);
}

.message1 form textarea {
	border: 1px solid #eee;
	background: #fff;
	height: 120px;
	line-height: 40px;
	padding: 0 10px;
	width: calc(100% - 22px);
	display: block;
}

.message1 form .yzm {
	height: 42px;
}

.message1 form .input_text1 {
	border: 1px solid #eee;
	background: #fff;
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
	width: calc(100% - 132px);
	float: left;
}

.message1 form #sendcode {
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	height: 42px;
	line-height: 40px;
	width: 100px;
	cursor: pointer;
	transition: all .3s ease;
	float: right;
}

.message1 form #sendcode:hover {
	opacity: .9;
}

.message1 form #sendcode[disabled] {
	background: #999;
}

.message1 form .input_button {
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	height: 42px;
	line-height: 40px;
	width: 50%;
	max-width: 200px;
	cursor: pointer;
	transition: all .3s ease;
	margin-top: 20px;
}

.message1 form .input_button:hover {
	border-color: var(--secondary-color);
	background: var(--secondary-color);
}

@media(max-width:999px) {
	.message1 form ul {
		display: block;
	}

	.message1 form ul li {
		width: 100%;
		margin: 0 0 10px 0;
	}

	.message1 form ul li.li2 {
		text-align: center;
	}

	.message1 form .h3 {
		font-size: 14px;
		line-height: 1.8em;
		margin-bottom: 0;
	}

	.message1 form .input_text {
		height: 38px;
		line-height: 38px;
		padding: 0 10px;
		width: calc(100% - 22px);
		font-size: 14px;
	}

	.message1 form textarea {
		height: 100px;
		line-height: 38px;
		padding: 0 10px;
		width: calc(100% - 22px);
		font-size: 14px;
	}

	.message1 form .yzm {
		height: 40px;
	}

	.message1 form .input_text1 {
		height: 38px;
		line-height: 38px;
		padding: 0 10px;
		width: calc(100% - 132px);
		font-size: 14px;
	}

	.message1 form #sendcode1 {
		height: 40px;
		line-height: 38px;
		width: 100px;
		font-size: 14px;
	}

	.message1 form .input_button {
		height: 40px;
		line-height: 38px;
		width: 100%;
		max-width: 100%;
		font-size: 14px;
		margin-top: 10px;
	}
}


/*联系*/
.inside_contact1 {
	font-size: .84vw;
	line-height: 1.56vw;
}

.inside_contact1 ul li {}

.inside_contact1 ul li h2 {
	font-size: 1.56vw;
	line-height: 1.5em;
}

.inside_contact1 ul li i {
	display: inline-block;
	text-align: center;
	width: 1.56vw;
	height: 1.56vw;
	line-height: 1.56vw;
	margin-right: 5px;
	color: var(--primary-color);
}

.inside_contact1 ul li span {
	display: inline-block;
	width: 4.2vw;
	text-justify: inter-ideograph;
	text-align: justify;
	-moz-text-align-last: justify;
	text-align-last: justify;
}




.search-results #topbar-desktop,
.home #topbar-desktop.hovered,
#topbar-desktop,
.search-results #topbar-desktop {
	background-color: #f2f2f2;

	color: #999999;
}

#topbar-desktop .elementos-top-bar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

#topbar-desktop .elementos-top-bar a.icono {
	max-height: 12px;
	height: 12px;
	width: auto;
	display: block;
}

.contenedor {
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	max-width: calc(var(--container-width) + 80px);
	position: relative;
}

#topbar-desktop {
	top: 0px;
	height: 40px;
	font-size: 12px;
	background-color: #f2f2f2;
	color: #999999;
	line-height: 40px;
	position: fixed;
	width: 100%;
	z-index: 101;
	-webkit-transition: 100ms;
	transition: 100ms;
}

#topbar-desktop .elementos-top-bar a {
	color: inherit;
}

.search-results #topbar-desktop .separador-topbar,
.home.is-scrolled #topbar-desktop .separador-topbar,
.home.is-scrolled #topbar-desktop.hovered .separador-topbar {
	background: #999;
}

.home #topbar-desktop .separador-topbar {
	background: #fff;
}

#topbar-desktop .separador-topbar {
	width: 1px;
	height: 16px;
	display: block;
	background: #999;
}

#header-desktop {
	background-color: #fff;
	color: #999999;
	position: fixed;
	width: 100%;
	z-index: 100;
	top: 40px;
	height: 105px;
	-webkit-transition: 100ms;
	transition: 100ms;
	text-transform: uppercase;
	border-bottom: 1px solid transparent;
	transition: all 0.25s ease-in;
	transition-delay: 0.1s;
}

.solo-desktop {
	display: flex;
	align-items: center;
	justify-content: center;
}


.elementos-site-header {
	height: 105px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: calc(var(--contenedor-width) + 32px);

	box-sizing: border-box;
}

#header-desktop .logo {
	opacity: 0.7;

}

#header-desktop .logo img {
	width: 100%;
	object-fit: contain;

}

#header-desktop .logo {
	width: 127px;
	height: 30px;
	display: block;

	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transform: scale(1);
	opacity: 0.7;
}

#menu-menu-principal>li>a {
	color: #999999;
}

#header-desktop #menu-menu-principal>li {
	margin: 0px;
	padding: 0px;
	position: relative;
	float: none;
	display: inline-block;
}

#header-desktop #menu-menu-principal>li>a {
	padding: 25px 10px;
	font-size: 14px;
	color: #666;
	line-height: 25px;
	font-weight: normal;
	display: inline-block;
	text-decoration: none;
	position: relative;
	-webkit-transition: 200ms;
	transition: 200ms;
}

#header-desktop #menu-menu-principal>li>a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 15px;
	left: 50%;
	width: 20%;
	height: 2px;
	background: transparent;
	transform: translateX(-50%);
	transition: all 0.2s;
}

#header-desktop.hovered #menu-menu-principal>li>a:hover {
	color: #000;
}

#header-desktop.hovered #menu-menu-principal>li>a:hover::after {
	background: #555555;
	width: 30%;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer {
	display: block;
	position: fixed;
	width: 100%;
	top: 145px;
	min-height: 232px;
	background-color: #ffffff;
	color: #555555;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: center;
	opacity: 0;
	visibility: hidden;
	z-index: 0;
	-webkit-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in;
	transition-delay: 0.1s;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer {
	display: block;
	position: fixed;
	width: 100%;
	top: 145px;
	min-height: 232px;
	background-color: #ffffff;
	color: #555555;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: center;
	opacity: 0;
	visibility: hidden;
	z-index: 0;
	-webkit-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in;
	transition-delay: 0.1s;
}

.logged-in #header-desktop #menu-menu-principal>li>.sub-menu-outer {
	top: 177px;
}

#header-desktop #menu-menu-principal>li:hover>.sub-menu-outer {
	opacity: 1;
	visibility: visible;
	z-index: 10;
	color: #111;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-menu {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	gap: 24px;
	list-style: none;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-menu .sub-children {
	list-style: none;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .tab-container {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: center;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .tab-container a {
	color: #666;
	margin-top: 16px;
	font-family: HK Grotesk;
	font-size: 14px;
	transition: color 0.3s ease;
	/* TransiciÃ³n suave de color */
	font-style: normal;
	font-weight: normal;
	line-height: 24px;
	margin-bottom: 16px;

	box-sizing: content-box;
	position: relative;
}

/* Color al hacer hover sobre los elementos del tab-container */
#header-desktop #menu-menu-principal>li>.sub-menu-outer .tab-container a:hover {
	color: #111;
	/* Cambia a #111 al hacer hover */
}

/* Color al abrir la solapa (elemento activo) */
#header-desktop #menu-menu-principal>li>.sub-menu-outer .tab-container a.active {
	color: #111;
	/* Color #111 cuando estÃ¡ activo */
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .tab-container a.active::before {
	position: absolute;
	content: "";
	bottom: -16px;
	width: 32px;
	left: 50%;
	transform: translateX(-50%);
	border-style: solid;
	border-width: 16px 16px;
	border-color: transparent transparent rgb(222, 224, 225, 0.2) transparent;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-children.no-active {
	display: none;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-children.active {
	background: rgb(222, 224, 225, 0.2);

	padding: 24px;
	width: auto;
	border-radius: 8px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	gap: 24px;
	margin-bottom: 16px;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-menu>li a {
	margin-top: 40px;

	display: flex;
	flex-direction: column;
	gap: 24px;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-children>li a {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-menu>li .contenedor-miniatura,
#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-children>li .contenedor-miniatura {
	width: 195px;
	height: 116px;

	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s ease;
	/* TransiciÃ³n suave */
	border-radius: 4px;
	overflow: hidden;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-menu>li .miniatura-sub-menu,
#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-children>li .miniatura-sub-menu {
	width: 175px;
	height: 96px;
	position: relative;
	border-radius: 4px;
	background-position: center;
	background-size: cover;
	opacity: 1;
	transition: 0.2s ease;
	/* TransiciÃ³n suave */
	transform: scale(1);
	/* Estado inicial */
}

/* Aplica el efecto al hover del li */
#header-desktop #menu-menu-principal>li:hover .miniatura-sub-menu,
#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-menu>li:hover .miniatura-sub-menu,
#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-children>li:hover .miniatura-sub-menu {
	transform: scale(1.1);
	/* Aumenta la imagen cuando se hace hover en el li */
	opacity: 0.9;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .tag-sobre-miniatura {
	position: absolute;
	top: 8px;
	left: 8px;
	max-width: 159px;
	color: white;
	border-radius: 2px;
	background: rgb(0, 0, 0, 0.7);
	background-blend-mode: multiply;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 4px 8px;
	font-feature-settings: "clig" off, "liga" off;
	font-family: HK Grotesk;
	font-size: 10px;
	font-style: normal;
	font-weight: 700;
	line-height: 12px;
	/* 120% */
	letter-spacing: 2px;
	text-transform: uppercase;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-menu>li>a,
#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-children>li>a {
	font-family: HK Grotesk !important;
	color: #666;
	max-width: 195px;
	font-feature-settings: "clig" off, "liga" off;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	font-family: "HK Grotesk";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
}

#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-menu>li>a:hover,
#header-desktop #menu-menu-principal>li>.sub-menu-outer .sub-children>li>a:hover {
	color: #000000;
}

#topbar-desktop .new_lang_menu,
#header-desktop .new_lang_menu {
	position: relative;
}

#header-desktop .new_lang_menu .current__lang {
	text-transform: uppercase;
	font-size: 14px;
	background: url(../img/select-arrow.svg) no-repeat center right;
	background-size: 8px auto;
	padding: 0 10px 0 0;
}

#header-desktop #menu-menu-principal>li>a:hover::after {
	background: #555555;
	width: 30%;
}



.index01bg {
	/*min-height: 100vh;*/
	width: 100%;
	position: relative;
}

.index01bg video {
	height: auto;
	width: 100%;
}


.splide__slide {
	backface-visibility: hidden;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.promos-carousel-module .promos-slide-item {
	height: 100%;
	min-height: 600px;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	color: #fff;
	text-align: center;
	padding-top: 30px;
}

.promos-carousel-module .promos-slide-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
	z-index: 1;
}

.promos-carousel-module .promos-slide-item>.contenedor {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	z-index: 2;
	width: 100%;
}

@media (min-width: 768px) {
	.contenedor {
		margin: 0 auto;
		padding-left: 20px;
		padding-right: 20px;
		width: 100%;
		max-width: calc(var(--container-width) + 80px);
		position: relative;
	}
}

.promos-carousel-module .promos-slide-content-wrapper {
	position: relative;
	z-index: 2;
	padding-bottom: 60px;
	width: 100%;
	max-width: 800px;
	box-sizing: border-box;
}

.promos-carousel-module .promos-slide-content {
	color: white;
	text-align: left;
	width: 100%;
}


.color-white {
	color: #fff;
}

.color-white {
	color: #fff;
}

@media (min-width: 1440px) {
	.label-M {
		font-size: 14px;
		line-height: 16px;
	}
}

.label-L,
.label-M,
.label-S {
	font-family: "HK Grotesk";
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.gapM {
	height: 32px;
	display: block;
	width: 100%;
}

@media (min-width: 1440px) {
	.headline-S {
		font-size: 40px;
		line-height: 56px;
	}
}

.headline-L,
.headline-M,
.headline-S {
	font-family: "Rufina";
	font-style: normal;
	font-weight: 400;
	text-wrap: balance;
}

.gapS {
	height: 24px;
	display: block;
	width: 100%;
}

.boton.transparente {
	background-color: transparent;
	border: 1px solid #ffffff;
	color: #ffffff;
}

.boton {
	padding: 12px 24px;
	border-radius: 56px;
	display: inline-block;
	min-width: 80px;
	text-align: center;
	background: none;
	border: solid 1px #ffffff;
	color: #ffffff;
	cursor: pointer;
	font-weight: 600;
}



.promos-carousel-module>.contenedor {
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	z-index: 10;
	pointer-events: none;
}

@media (min-width: 768px) {
	.contenedor {
		margin: 0 auto;
		padding-left: 20px;
		padding-right: 20px;
		width: 100%;
		max-width: calc(var(--container-width) + 80px);
		position: relative;
	}
}

.promos-carousel-module .contenedor .promos-desktop-arrows-placeholder {
	position: static;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 50px;
	pointer-events: auto;
}

.promos-carousel-module .promos-desktop-arrows-placeholder .splide__arrows {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	padding: 0;
}

.promos-carousel-module .promos-desktop-arrows-placeholder .splide__arrow,
.promos-carousel-module .promos-splide.promos-no-desktop-arrows .splide__arrow {
	width: 50px;
	height: 50px;
	padding: 0 !important;
	border: none;
	border-radius: 50%;
	background-color: transparent;
	opacity: 1;
	cursor: pointer;
	position: static;
	transform: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.splide__arrow--prev {
	left: 1em;
}

.splide__arrow {
	-ms-flex-align: center;
	align-items: center;
	background: #ccc;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: -ms-flexbox;
	display: flex;
	height: 2em;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: .7;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2em;
	z-index: 1;
}

.promos-carousel-module {
	position: relative;
}

.promos-carousel-module .promos-desktop-arrows-placeholder .splide__arrow:hover,
.promos-carousel-module .promos-splide.promos-no-desktop-arrows .splide__arrow:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.promos-carousel-module .promos-desktop-arrows-placeholder .splide__arrow img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#modulo-programas .intro-programas {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.index03bg #splide-programas .splide__arrows {
	display: none !important;
}

@media (min-width: 1440px) {
	.headline-M {
		font-size: 56px;
		line-height: 64px;
	}
}

.headline-L,
.headline-M,
.headline-S {
	font-family: "Rufina";
	font-style: normal;
	font-weight: 400;
	text-wrap: balance;
}

.headline-L,
.headline-M,
.headline-S {
	color: var(--negro-titulos);
}

@media (min-width: 992px) {
	.gap-seccion {
		height: 96px;
	}
}

#modulo-programas .splide__track {
	overflow: hidden;
}

.splide__list {
	backface-visibility: hidden;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide {
	backface-visibility: hidden;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

#modulo-programas .card-programa {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	height: 56vh;
	margin: 0;

	color: #FFFFFF;
	text-align: left;
	background-size: cover;
	background-blend-mode: multiply, normal, multiply;
	position: relative;
}

#modulo-programas .card-programa .content-programa {
	padding: 40px;
	z-index: 2;
}

#modulo-programas .card-programa .overlay-programa {
	z-index: 1;
}

#modulo-programas .card-programa .overlay-programa {
	position: absolute;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s ease;
	opacity: 0;
}

#modulo-programas .card-programa .titulo,
#modulo-programas .card-programa .descripcion,
#modulo-programas .card-programa a {
	color: #FFFFFF !important;
	margin-bottom: 8px;
	text-wrap: balance;
}

@media (min-width: 1440px) {
	.title-L {
		font-size: 32px;
		line-height: 40px;
	}
}

.title-L,
.title-M,
.title-S {
	font-family: "Rufina";
	font-style: normal;
	font-weight: 400;
}

#modulo-programas .card-programa .content-programa strong img {
	width: 16px;
	height: 16px;
}

@media (min-width: 768px) {
	.simple-module-big {
		flex-direction: row-reverse;
	}
}

.simple-module-big {
	display: flex;
	align-items: stretch;
	position: relative;
	flex-direction: column;
	background-color: var(--big-module-bg-desktop, transparent);
}


@media (min-width: 768px) {
	.simple-module-big .imagen-big {
		width: 50%;
		min-height: 70vh;
	}
}

.simple-module-big .imagen-big {
	background-size: cover;
	background-position: center;
}

@media (min-width: 768px) {
	.simple-module-big .contenido-big {
		display: flex;
		width: 50%;
		align-items: center;
		justify-content: center;
	}
}

.simple-module-big .contenido-big {
	width: 100%;
	padding-top: 100px;
	padding-bottom: 100px;
	box-sizing: border-box;
}


@media (min-width: 768px) {
	.simple-module-big {
		flex-direction: row-reverse;

	}

	.simple-module-big.reverse {
		flex-direction: row;
	}

	.simple-module-big .imagen-big {
		width: 50%;
		min-height: 70vh;
	}

	.simple-module-big .contenido-big {
		display: flex;
		width: 50%;
		align-items: center;
		justify-content: center;
	}

	.simple-module-big .contenido-big>div {
		width: 100%;
		max-width: 528px;
		display: block;
		margin: 0 24px;
	}
}

@media (min-width: 768px) {
	#metodo-integrativo-estatico .flex-metodo {
		display: flex;
		align-items: center;
		gap: 60px;
	}
}

#metodo-integrativo-estatico .flex-metodo {
	padding-top: 72px;
	padding-bottom: 72px;
}

@media (min-width: 768px) {
	#metodo-integrativo-estatico .rueda {
		max-width: 50%;
		min-width: 50%;
	}
}

#metodo-integrativo-estatico .rueda a img {
	width: 100%;
}

#metodo-integrativo-estatico {
	background-color: #2f2f31;
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	color: white;
}

#metodo-integrativo-estatico h2 {
	color: white;
}

@media (min-width: 1440px) {
	.headline-S {
		font-size: 40px;
		line-height: 56px;
	}
}

.link-negative {
	cursor: pointer;
	color: #fff;
	text-decoration: none;
	line-height: 20px;
	-webkit-transition: 200ms;
	transition: 200ms;
}

@media (min-width: 992px) {
	.gapL {
		height: 40px;
		display: block;
		width: 100%;
	}
}

#metodo-integrativo-estatico .flex-metodo .separador-metodo img {
	height: 326px;
}

.splide__arrow img {
	width: 50px;
	height: 50px;
}

@media (min-width: 992px) {
	#modulo-why-sha .splide__arrow {
		background-color: transparent;
		border: none;
		padding: 0;
		cursor: pointer;
		width: 50px;
		height: 50px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		opacity: 1;
		border-radius: 50%;
		transition: background-color 0.3s ease;
	}
}

@media (min-width: 992px) {
	#modulo-why-sha .intro-why-sha-header {
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		gap: 20px;
		margin-bottom: 40px;
	}
}

#modulo-why-sha .intro-why-sha-header {
	position: relative;
}

@media (min-width: 992px) {
	#modulo-why-sha .intro-text-content {
		flex-grow: 1;
	}
}

@media (min-width: 992px) {
	.desktop-arrow-placeholder.solo-desktop {
		flex-shrink: 0;
		width: 110px;
		height: 50px;
		transform: translateY(-10px);
	}
}

@media (min-width: 992px) {
	.solo-desktop {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

@media (min-width: 992px) {
	#modulo-why-sha .splide__arrows {
		display: flex;
		gap: 10px;
		position: static;
		width: 100%;
		height: 100%;
		align-items: center;
		justify-content: center;
	}
}

@media (min-width: 992px) {

	#modulo-why-sha .splide__arrow--prev,
	#modulo-why-sha .splide__arrow--next {
		position: static !important;
		transform: none !important;
	}
}


#modulo-why-sha #splide-why-sha,
#splide-why-sha {
	margin: 0 auto;
	position: relative;
	margin-top: 40px;
}

#modulo-why-sha .splide__list {
	align-items: stretch;
}

#modulo-why-sha .card-why-sha {
	height: 100%;
	min-height: 400px;
	margin: 0;
	color: #FFFFFF;
	text-align: left;
	background-size: cover;
	background-blend-mode: multiply, normal, multiply;
	position: relative;
	overflow: hidden;
	/* Para el efecto Ken Burns y contener el ::before */
}

#modulo-why-sha .card-why-sha::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	/* Hereda el fondo del padre para el efecto */
	background-size: cover;
	background-position: center;
	transform-origin: center;
	z-index: 0;
	/* Detrás del contenido */
	animation: kenburns 30s infinite ease-in-out;
}


@keyframes kenburns {

	0%,
	100% {
		transform: scale(1) translate(0, 0);
	}

	50% {
		transform: scale(1.1) translate(-4%, -4%);
	}
}


#modulo-why-sha .card-why-sha .content-why-shaa {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 40px;
	box-sizing: border-box;
}

#modulo-why-sha .card-why-sha .icono-why-sha img {
	width: 64px;
}

#modulo-why-sha .card-why-sha .titulo,
#modulo-why-sha .card-why-sha .descripcion,
#modulo-why-sha .card-why-sha a {
	color: #FFFFFF !important;
	margin-bottom: 8px;
	text-wrap: balance;
}


.solo-movil {
	display: block;
}

.solo-desktop {
	display: none;
}


#modulo-why-sha #splide-why-sha,
#splide-why-sha {
	margin: 0 auto;
	position: relative;
	margin-top: 40px;
}

body.rtl #modulo-why-sha #splide-why-sha {
	direction: rtl;
}

#modulo-why-sha .intro-why-sha-header {
	position: relative;
}

#modulo-why-sha .intro-why-sha h2 {
	margin: 0;
}


#modulo-why-sha .splide__slide {
	padding: 0;
	box-sizing: border-box;
}

#modulo-why-sha .splide__list {
	align-items: stretch;
}

#modulo-why-sha .splide__slide img {
	width: 100%;
	height: auto;
	display: block;
}


@media (max-width: 991px) {

	#modulo-why-sha .intro-text-content div,
	#modulo-why-sha .intro-text-content div p {
		text-align: left;
	}

	#modulo-why-sha .splide__arrows {
		display: none;
	}

	#modulo-why-sha .intro-why-sha {
		text-align: center;
	}

	#modulo-why-sha .card-why-sha .content-why-shaa {
		justify-content: center;
	}

	#modulo-why-sha .card-why-sha {
		padding-left: 40px;
		padding-right: 40px;
		padding-bottom: 40px;
		padding-top: 75px;
	}

	#modulo-why-sha #splide-why-sha {
		margin-top: 72px;
	}
}

@media (min-width: 992px) {
	.solo-movil {
		display: none;
	}

	.solo-desktop {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#modulo-why-sha .intro-why-sha-header {
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		gap: 20px;
	}

	#modulo-why-sha .intro-text-content {
		flex-grow: 1;
	}

	.desktop-arrow-placeholder.solo-desktop {
		flex-shrink: 0;
		width: 110px;
		height: 50px;

		transform: translateY(-10px);
	}

	#modulo-why-sha .splide__arrows {
		display: flex;
		gap: 10px;
		position: static;
		width: 100%;
		height: 100%;
		align-items: center;
		justify-content: center;
	}

	#modulo-why-sha .splide__arrow {
		background-color: transparent;
		border: none;
		padding: 0;
		cursor: pointer;
		width: 50px;
		height: 50px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		opacity: 1;
		border-radius: 50%;
		transition: background-color 0.3s ease;
	}

	#modulo-why-sha .splide__arrow--prev {
		background-image: url('/images/button-left.png');
	}

	#modulo-why-sha .splide__arrow--next {
		background-image: url('/images/button-right.png');
	}


	#modulo-why-sha .splide__arrow svg {
		display: none;
	}


	#modulo-why-sha .splide__arrow--prev,
	#modulo-why-sha .splide__arrow--next {
		position: static !important;
		transform: none !important;
	}

	#modulo-why-sha .splide__arrow:hover {
		background-color: #f0f0f0;
	}
}




#modulo-why-sha .splide__pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 10px;
	bottom: 0;
	position: relative;
	margin-bottom: 10px;
}


#modulo-why-sha .splide__pagination__page {
	width: 8px;
	opacity: 1;
	margin: 0;
	height: 8px;
	border-radius: 50%;

	background: #E3D8D0;

	cursor: pointer;
	border: none;
	padding: 0px;
}


#modulo-why-sha .splide__pagination__page.is-active {
	background: #A49381;
	width: 12px;
	transform: scale(1);
	height: 12px;

}

.gap8 {
	height: 8px;
	display: block;
	width: 100%;
}

.gap16 {
	height: 16px;
	display: block;
	width: 100%;
}

.gap32 {
	height: 32px;
	display: block;
	width: 100%;
}

.gap40 {
	height: 40px;
	display: block;
	width: 100%;

}

.gap60 {
	height: 60px;
	display: block;
	width: 100%;

}

.gap64 {
	height: 64px;
	display: block;
	width: 100%;

}

.gap80 {
	height: 80px;
	display: block;
	width: 100%;
}

.gap120 {
	height: 120px;
	display: block;
	width: 100%;
}

.gap20 {
	height: 20px;
	display: block;
	width: 100%;
}

.gap24 {
	height: 24px;
	display: block;
	width: 100%;
}

.gap30 {
	height: 30px;
	display: block;
	width: 100%;
}

.gap40 {
	height: 40px;
	display: block;
	width: 100%;
}

.gap48 {
	height: 48px;
	display: block;
	width: 100%;
}

.gap60 {
	height: 60px;
	display: block;
	width: 100%;
}

.gap80 {
	height: 80px;
	display: block;
	width: 100%;
}

.gap90 {
	height: 90px;
	display: block;
	width: 100%;
}

.gap96 {
	height: 96px;
	display: block;
	width: 100%;
}

.gap120 {
	height: 120px;
	display: block;
	width: 100%;
}


@media (max-width: 991px) {
	.gap-seccion {
		height: 72px;
	}

	.gap-seccion-metodos {
		height: 48px;
	}
}

@media (min-width: 992px) {

	.gap-seccion {
		height: 96px;
	}

	.gap-seccion-metodos {
		height: 96px;
	}
}

/* GAPS 2024 UX */

/* GAPS SECCION  DESKTOP */
@media (min-width: 992px) {

	.gap-seccion-XL {
		height: 144px;
		display: block;
		width: 100%;
	}

	.gap-seccion-L {
		height: 96px;
		display: block;
		width: 100%;
	}

}

/* GAPS SECCION TABLET/MOBILE */
@media (max-width: 991px) {

	.gap-seccion-XL {
		height: 104px;
		display: block;
		width: 100%;
	}

	.gap-seccion-L {
		height: 72px;
		display: block;
		width: 100%;
	}

}



/* GAPS DESKTOP */
@media (min-width: 992px) {
	.gapXL {
		height: 48px;
		display: block;
		width: 100%;
	}

	.gapL {
		height: 40px;
		display: block;
		width: 100%;
	}

	.gapM {
		height: 32px;
		display: block;
		width: 100%;
	}

	.gapS {
		height: 24px;
		display: block;
		width: 100%;
	}

	.gapXS {
		height: 16px;
		display: block;
		width: 100%;
	}

}

/* GAPS TABLET/MOBILE */
@media (max-width: 992px) {
	.gapXL {
		height: 40px;
		display: block;
		width: 100%;
	}

	.gapL {
		height: 32px;
		display: block;
		width: 100%;
	}

	.gapM {
		height: 24px;
		display: block;
		width: 100%;
	}

	.gapS {
		height: 16px;
		display: block;
		width: 100%;
	}

	.gapXS {
		height: 8px;
		display: block;
		width: 100%;
	}

}

.locations-carousel-module {
	position: relative;

}

.color-white {
	color: #fff;
}


/* Contenedor para las flechas de escritorio, centrado en la zona del texto */
.locations-carousel-module>.contenedor {
	position: absolute;
	top: 40px;
	/* Posicionado en la parte superior */
	left: 50%;
	transform: translateX(-50%);
	width: 100%;

	z-index: 10;
	pointer-events: none;
	/* Para no interferir con clics en el slide */
}

.locations-carousel-module .contenedor .locations-desktop-arrows-placeholder {
	position: static;
	display: flex;
	justify-content: flex-end;
	/* Alinea las flechas a la derecha */
	align-items: center;
	width: 100%;
	height: 50px;
	/* Altura para las flechas */
	pointer-events: auto;
	/* Para que las flechas sean clickables */
}

.locations-carousel-module .locations-desktop-arrows-placeholder .splide__arrows {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	padding: 0;
}

.locations-carousel-module .locations-splide {
	position: relative;
}

.locations-carousel-module .location-slide-item {
	min-height: 600px;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	color: #fff;
	text-align: center;
}

.locations-carousel-module .location-slide-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
	z-index: 1;
}

.locations-carousel-module .location-slide-item>.contenedor {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	z-index: 2;
	width: 100%;
}

.locations-carousel-module .location-slide-content {
	color: white;
	text-align: left;
	width: 100%;
}

.locations-carousel-module .location-slide-content-wrapper {
	position: relative;
	z-index: 2;
	padding-bottom: 60px;
	width: 100%;
	max-width: 800px;
	box-sizing: border-box;
}

.locations-carousel-module .location-slide-content .location-label {
	display: block;
	margin-bottom: 8px;
}

.locations-carousel-module .location-slide-content .location-title {
	font-size: 2.5rem;
	margin-bottom: 0;
}

.locations-carousel-module .location-slide-content .gapM-slide {
	height: 24px;
	display: block;
}

.locations-carousel-module .location-slide-content .location-description {
	margin-bottom: 24px;
}

.locations-carousel-module .location-slide-content .location-button {}

.locations-carousel-module .locations-desktop-arrows-placeholder .splide__arrow,
.locations-carousel-module .locations-splide.locations-no-desktop-arrows .splide__arrow {
	width: 50px;
	height: 50px;
	padding: 0 !important;
	border: none;
	border-radius: 50%;
	background-color: transparent;
	opacity: 1;
	cursor: pointer;
	position: static;
	transform: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.locations-carousel-module .locations-desktop-arrows-placeholder .splide__arrow svg,
.locations-carousel-module .locations-splide.locations-no-desktop-arrows .splide__arrow svg {
	display: none !important;
}

.locations-carousel-module .locations-desktop-arrows-placeholder .splide__arrow img,
.locations-carousel-module .locations-splide.locations-no-desktop-arrows .splide__arrow img {
	display: block;
	width: 100%;
	height: auto;
}

.locations-carousel-module .locations-desktop-arrows-placeholder .splide__arrow:hover,
.locations-carousel-module .locations-splide.locations-no-desktop-arrows .splide__arrow:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.locations-carousel-module .locations-desktop-arrows-placeholder .splide__arrow:disabled,
.locations-carousel-module .locations-splide.locations-no-desktop-arrows .splide__arrow:disabled {
	opacity: 0.5;
	cursor: default;
	background-color: transparent;
}

@media (min-width: 992px) {
	.locations-carousel-module .locations-splide:not(.locations-no-desktop-arrows)>.splide__arrows {
		display: none !important;
	}

	.locations-carousel-module .locations-splide.locations-no-desktop-arrows>.splide__arrows {
		display: flex !important;
	}

	.locations-carousel-module .locations-splide:not(.locations-no-desktop-arrows) .splide__pagination {
		display: none !important;
	}

	.locations-carousel-module .locations-splide.locations-no-desktop-arrows .splide__pagination {
		display: flex !important;
	}

}

@media (max-width: 991px) {
	.locations-carousel-module .locations-desktop-arrows-placeholder {
		display: none !important;
	}

	.locations-carousel-module .locations-splide .splide__arrows {
		display: none !important;
	}

	.locations-carousel-module .locations-splide .splide__pagination {
		display: flex !important;
		justify-content: flex-end;
		position: absolute;
		bottom: 35px;
		right: 40px;
		z-index: 5;
		margin-top: 0;
	}
}

#noticias-enlaces .owl-links-carousel-news {
	position: relative;
	display: flex;
}

#noticias-enlaces .owl-links-carousel-news .owl-stage {
	display: flex;
}

#noticias-enlaces .owl-links-carousel-news .owl-dots {
	display: none;
}

#noticias-enlaces .owl-links-carousel-news .owl-nav {
	position: absolute;
	top: 0;
	right: 0;
	margin-top: -65px;
}

#noticias-enlaces .owl-links-carousel-news .owl-nav button {
	font-size: 30px;
	border: none;
	font: normal normal normal 30px/1 FontAwesome;
	opacity: 0.6;
}

#noticias-enlaces .owl-links-carousel-news .owl-nav button:hover {
	opacity: 1;
}

#noticias-enlaces .owl-links-carousel-news .owl-nav button::before {
	content: "\f105";
}

#noticias-enlaces .owl-links-carousel-news .owl-nav button span {
	display: none;
}

#noticias-enlaces .owl-links-carousel-news .owl-nav button.owl-prev::before {
	content: "\f104";
}


@media (max-width:992px) {
	#noticias-enlaces .owl-links-carousel-news .owl-nav {

		position: absolute;
		top: 100%;
		width: 100%;
		display: flex;

		justify-content: center;

		align-items: flex-end;
	}

	#noticias-enlaces .card-enlace-new .titulo {
		min-height: 100px;
	}
}

#noticias-enlaces .item.card-enlace-new {
	margin: 10px;
	color: #333333;
	font-family: HK Grotesk;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	position: relative;

}



#noticias-enlaces .card-enlace-new .titulo {
	font-family: HK Grotesk;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	color: #414345;

}

#noticias-enlaces .img-new img {

	margin-bottom: 20px;
}

#noticias-enlaces .thumb {
	position: relative;
	margin-bottom: 15px;


}

#noticias-enlaces .thumb img {
	border-radius: 4px;
	max-height: 260px;
	object-fit: cover;
	width: 100%;
}

#noticias-enlaces .categoria {
	position: absolute;
	left: 15px;
	top: 15px;
	padding: 8px 16px;
	background: rgba(51, 51, 51, 0.6);
	background-blend-mode: multiply;
	border-radius: 8px;
	font-family: HK Grotesk;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 15px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;

}

#noticias-enlaces .mas-info {
	position: absolute;
	bottom: 0px;
}


.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto
}

@media (min-width: 768px) {
	.container {
		width: 750px
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px
	}
}


.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
	display: block;
	max-width: 100%;
	height: auto;
}

.index06bg {
	width: 100%;
	overflow: hidden;
}

.index06bg .scroll ul li .card-why-sha {
	width: auto;
}

@media (min-width: 992px) {
	.background-recorte-arriba {
		background: #fcf9f6;
		position: relative;
	}
}

.text-center {
	text-align: center;
}

.link {
	cursor: pointer;
	display: inline-block;
	color: #333333;
	text-decoration: none;
	line-height: 20px;
	-webkit-transition: 200ms;
	transition: 200ms;
}

a.link {
	gap: 8px;
	align-items: center;
	text-align: right;
	font-feature-settings: "clig" off, "liga" off;
	font-family: "HK Grotesk";
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
}

@media (max-width: 768px) {
	.carousel-wrapper {
		margin: 0 auto;
		padding: 20px;
		max-width: calc(var(--container-width) + 80px);
		position: relative;
		font-size: 16px;
	}

	/* Flecha derecha */
	.carousel-btn-awards-next {
		right: 20px;
		/* Ajusta la distancia desde el borde derecho */
	}

}

@media (min-width: 768px) {
	.carousel-wrapper {
		margin: 0 auto;
		padding: 40px;
		max-width: calc(var(--container-width) + 80px);
		position: relative;
		font-size: 16px;
	}

	/* Flecha derecha */
	.carousel-btn-awards-next {
		right: 40px;
		/* Ajusta la distancia desde el borde derecho */
	}


}

.owl-carousel-awards-home {
	position: relative;
	overflow: hidden;
	/* Asegura que solo los elementos visibles del carrusel se muestren */
	width: 100%;
	z-index: 1;
}

.owl-carousel-awards-home .owl-stage {
	display: flex;

	height: 100%;
	flex-wrap: wrap;
	/* Permite que los elementos se ajusten en múltiples líneas */
	align-items: stretch
}


.owl-carousel-awards-home .owl-item {
	height: 100%;
	display: blocK;
	width: auto;


}

.owl-carousel-awards-home .item-award {
	text-align: left;
	height: 100%;

}

.owl-carousel-awards-home .item-award .logo-award {
	max-width: 150px;
	height: 150px;
}

.owl-carousel-awards-home .item-award .titulo-award {
	text-wrap: balance;
}

.owl-carousel-awards-home .item-award .texto-award {
	font-size: 16px;
}

.owl-carousel-awards-home .item-award .logo-award img {
	width: 100%;
	max-height: 100%;
}

.owl-carousel-awards-home .owl-nav {
	display: none;
}

/* Botones personalizados */
.carousel-btn-awards-prev,
.carousel-btn-awards-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	color: white;
	border: none;


	cursor: pointer;

	z-index: 2;

}

.carousel-btn-awards-prev img,
.carousel-btn-awards-next img {
	width: 20px;

}


/* Hover para mejorar la apariencia */
.carousel-btn-awards-prev:hover,
.carousel-btn-awards-next:hover {
	background: none;
}

.heading-awards {
	color: #333;
}

.texto-awards {
	max-width: 900px;
	margin: 0 auto;
	text-wrap: balance;
}


.mktoForm .mktoFormRow.check-sha .mktoFieldWrap {
	display: flex !important;
	flex-direction: row-reverse !important;
	justify-content: flex-end !important;
}

.mktoForm .mktoFieldWrap {
	float: left;
}

.mktoForm fieldset {
	border: none;
}

#home-newsletter {
	background-position: left center;
	background-size: cover;
	padding-bottom: 80px;
	position: relative;
	z-index: 0;
}

#home-newsletter::after {
	position: absolute;
	content: '';
	top: 0px;
	left: 0px;
	width: 100%;
	height: 50px;
	background: #fff;
}

#home-newsletter .caja-reservas {
	z-index: 1;
	margin-top: 80px;
	position: relative;
	width: 650px;
	height: auto;
	padding: 56px;
	gap: 32px;
	border-radius: 4px;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.00) 5%, rgba(255, 255, 255, 0.70) 100%), linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(14px);
	margin-bottom: 24px;

}

@media (min-width: 768px) {
	#home-newsletter .caja-reservas {

		margin-top: 80px;
		position: relative;
		width: 650px;

		padding: 56px;

	}
}

@media (max-width: 768px) {
	#home-newsletter .caja-reservas {

		margin-top: 72px;
		position: relative;
		width: 100%;
		height: auto;
		padding: 24px;

	}
}

#home-newsletter.caja-reservas .label-S {
	color: var(--Visual-Details-01-Medium-Grey, #999);
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: "HK Grotesk";
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

#home-newsletter.caja-reservas .disclaimer {
	font-size: 16px;
	font-style: normal;
	color: #333;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 16px;
}

#home-newsletter.caja-reservas .body-S {
	color: var(--Text-elements-02-Grey, #757474);
	text-overflow: ellipsis;
	font-family: "HK Grotesk";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 16px;
}

#home-newsletter.caja-reservas .condiciones {
	font-size: 13px;
	line-height: 15px;
}




#home-newsletter .mktoFormRow.row-sHANewsletter {
	display: flex !important;
}

.m12_contact2 .message2 {}

.m12_contact2 form {}

.m12_contact2 form ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	flex-wrap: wrap;
}

.m12_contact2 form ul li {
	width: 100%;
	margin-bottom: 20px;
}

.m12_contact2 form ul li.li1 {
	width: 100%;
	margin-left: 0;
}

.m12_contact2 form ul li.li2 {
	width: 100%;
	margin-left: 0;
	text-align: center;
}

.m12_contact2 form ul li:nth-child(1),
.m12_contact2 form ul li:nth-child(3),
.m12_contact2 form ul li:nth-child(6) {
	margin-left: 0;
}

.m12_contact2 form .h3 {
	font-size: 14px;
	line-height: 1.5em;
}

.m12_contact2 form .h3 font {
	color: #f00;
}

.m12_contact2 form .input_text {
	border: 1px solid #f1f1f1;
	background: #fff;
	height: 45px;
	line-height: 45px;
	padding: 0 10px;
	width: calc(100% - 22px);
}

.m12_contact2 form textarea {
	border: 1px solid #f1f1f1;
	background: #fff;
	height: 72px;
	line-height: 24px;
	padding: 10px 10px;
	width: calc(100% - 22px);
}

.m12_contact2 form .yzm {
	height: 47px;
}

.m12_contact2 form .input_text1 {
	border: 1px solid #f1f1f1;
	background: #fff;
	height: 45px;
	line-height: 45px;
	padding: 0 10px;
	width: calc(100% - 152px);
	float: left;
}

.m12_contact2 form #sendcode2 {
	border: 1px solid #fff;
	background: var(--primary-color);
	color: #fff;
	height: 47px;
	line-height: 45px;
	width: 120px;
	cursor: pointer;
	transition: all .3s ease;
	float: right;
}

.m12_contact2 form #sendcode2:hover {
	background: var(--third-color);
	color: #fff;
}

.m12_contact2 form #sendcode2[disabled] {
	background: #999;
}

.m12_contact2 form .input_button {
	border: 1px solid #fff;
	background: var(--primary-color);
	color: #fff;
	height: 47px;
	line-height: 45px;
	width: 50%;
	max-width: 200px;
	cursor: pointer;
	transition: all .3s ease;
	position: relative;
	overflow: hidden;
	font-size: 16px;
	margin-top: 20px;
	text-align: center !important;
	display: inline-block !important;
	height: auto !important;
	cursor: pointer !important;
	min-width: 80px !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	font-family: "Hk Grotesk", sans-serif !important;
	text-decoration: none !important;
	background: #ffffff !important;
	border: solid 1px #444 !important;
	color: #444 !important;
	line-height: 20px !important;
	padding: 12px 24px !important;
	border-radius: 56px !important;
	-webkit-font-variant-ligatures: normal !important;
	font-variant-ligatures: normal !important;
	text-rendering: optimizeLegibility ! important;
	-webkit-font-smoothing: antialiased ! important;
	-webkit-transition: 200ms !important;
	transition: 200ms !important;
	animation-iteration-count: none !important;
	-webkit-animation-name: none !important;
}

.m12_contact2 form .input_button:hover {
	background: var(--third-color);
	color: #fff;
}

.m12_contact2 form .input_button span {
	display: block;
	position: relative;
	z-index: 2;
}

@media(max-width:999px) {
	.m12_contact1 .list ul {
		display: block;
	}

	.m12_contact1 .list ul li {
		width: 100%;
		margin: 0 0 20px 0;
	}

	.m12_contact1 .list ul li .txt {
		padding: 15px 5% 10px 5%;
	}

	.m12_contact1 .list ul li .txt i {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 30px;
		margin-bottom: 10px;
	}

	.m12_contact1 .list ul li .txt strong {
		font-size: 16px;
		line-height: 1.5em;
		height: auto;
		margin-bottom: 5px;
	}

	.m12_contact1 .list ul li .txt span {
		font-size: 18px;
		line-height: 1.5em;
		height: auto;
	}

	.m12_contact2 form ul {
		display: block;
	}

	.m12_contact2 form ul li {
		width: 100%;
		margin: 0 0 10px 0;
	}

	.m12_contact2 form ul li.li2 {
		text-align: center;
	}

	.m12_contact2 form .h3 {
		font-size: 14px;
		line-height: 1.8em;
	}

	.m12_contact2 form .input_text {
		height: 38px;
		line-height: 38px;
		padding: 0 10px;
		width: calc(100% - 22px);
		font-size: 14px;
	}

	.m12_contact2 form textarea {
		height: 100px;
		line-height: 38px;
		padding: 0 10px;
		width: calc(100% - 22px);
		font-size: 14px;
	}

	.m12_contact2 form .yzm {
		height: 40px;
	}

	.m12_contact2 form .input_text1 {
		height: 38px;
		line-height: 38px;
		padding: 0 10px;
		width: calc(100% - 132px);
		font-size: 14px;
	}

	.m12_contact2 form #sendcode2 {
		height: 40px;
		line-height: 38px;
		width: 100px;
		font-size: 14px;
	}

	.m12_contact2 form .input_button {
		height: 40px;
		line-height: 38px;
		width: 100%;
		max-width: 100%;
		font-size: 14px;
		margin-top: 10px;
	}
}


/* footer */

.site-footer {
	background: #555;

}

.site-footer .flex-footer-partners img {
	width: 101px;
	object-fit: contain;
}

@media (min-width: 768px) {
	.site-footer {

		padding-top: 56px;
		padding-left: 24px;
		padding-right: 24px;
		padding-bottom: 32px;
	}

	.flex-footer {
		display: flex;
		gap: 40px;
		justify-content: space-between;
	}

	.site-footer .flex-footer>* {
		flex-basis: 30%;
	}

	.site-footer .flex-footer-partners {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}

	.site-footer .partners {
		display: flex;
		gap: 32px;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.site-footer {

		padding-top: 56px;

		padding-bottom: 56px;
	}

	.flex-footer {
		display: flex;
		flex-direction: column;
		gap: 32px;

	}

	.site-footer .flex-footer>* {
		flex-basis: 100%;
	}

	.site-footer .flex-footer-partners {
		display: flex;
		flex-direction: column-reverse;
		gap: 24px;

	}

	.site-footer .partners {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		/* 2 columnas */
		gap: 16px;
		/* Espaciado entre elementos */
	}

	.site-footer .partners a {
		width: 100%;
		/* Ocupa todo el espacio disponible en la celda */
		height: auto;
		/* Ajusta automÃ¡ticamente el alto */
		justify-content: center;
		/* Centra el contenido horizontalmente */
		align-items: center;
		/* Centra el contenido verticalmente */
	}
}



.site-footer .logo {
	max-width: 164px;
}

.site-footer .magazine {
	max-width: 237px;
}

.site-footer .logo img {
	max-width: 128px;
	margin-bottom: 8px;
}

.site-footer .logo .copyright {
	color: var(--colors-typography-text-elements-05-labels-footer-text, #999);
	font-feature-settings: 'liga' off, 'clig' off;
	/* Shared styles/Footer/Regular */
	font-family: "HK Grotesk";
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
	/* 133.333% */
}

.site-footer .titulo {
	color: var(--colors-typography-text-elements-05-labels-footer-text, #999);
	margin-bottom: 8px;
}

.site-footer .menu-footer {
	color: var(--Colors-Typography---Text-Elements-04--Button-text, #FFF);
	/* Shared styles/Helper/Regular */
	font-family: "HK Grotesk";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	/* 128.571% */
}

.site-footer .menu-footer a {
	font-size: 14px;
	color: #fff;
}

.site-footer .menu-footer li {
	margin-bottom: 8px;
}

.site-footer .footer-menu {
	margin-bottom: 30px;
	border-bottom: 1px solid #666;
}

.site-footer .footer-divider {
	height: 2px;
	margin-bottom: 32px;
	margin-top: 24px;
	display: block;
	width: 100%;
	opacity: 0.1;
	background: var(--Colors-Clickable-colors-04, #DEE0E1);
}

.site-footer .rrss {
	color: white;
	display: flex;
	gap: 16px;
	align-items: center;
	font-size: 20px;
	line-height: 20px;
}

#footer-ayudas {
	background: #FDFCFB;
	color: #999999;
	padding: 24px 0;
}

#footer-ayudas .ayuda-uno {
	padding-bottom: 14px;
	display: flex;
	gap: 40px;
	color: var(--colors-typography-text-elements-05-labels-footer-text, #999);
	font-feature-settings: 'liga' off, 'clig' off;
	/* Shared styles/Footer/Medium */
	font-family: "HK Grotesk";
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
	/* 133.333% */
}

#footer-ayudas2 .ayuda-dos {
	padding-bottom: 14px;
	display: flex;
	gap: 40px;


}

#footer-ayudas .ayuda-uno .logos {
	display: flex;
	gap: 40px;
	align-items: center;
}

#footer-ayudas2 .ayuda-dos .logos {
	display: flex;
	gap: 40px;
	align-items: center;
}

@media (min-width: 992px) {
	#footer-ayudas .ayuda-uno {

		gap: 40px;

	}


}


@media (max-width: 768px) {
	#footer-ayudas .ayuda-uno {
		flex-direction: column;
		gap: 40px;

	}

	#footer-ayudas2 .ayuda-dos {
		flex-direction: column;
		gap: 40px;

	}

	#footer-ayudas .ayuda-uno .logos {
		display: flex;
		gap: 0px;
		align-items: center;
		justify-content: space-between;
	}

	#footer-ayudas2 .ayuda-dos .logos {
		display: grid;
		grid-template-columns: 50% 50%;
		/* Dos columnas de 50% del ancho */
		grid-template-rows: auto;
		/* Filas ajustadas automÃ¡ticamente */
		gap: 10px;
		/* Espacio entre las casillas (opcional) */
		width: 100%;
		/* Asegura que ocupe todo el ancho del contenedor */
	}


}

@media (max-width: 500px) {
	#footer-ayudas .ayuda-uno .logos .logo img {
		height: 32px;
	}

	#footer-ayudas2 .ayuda-dos .logos .logo img {
		height: 32px;
	}
}

.divisor-ayudas {
	background: #555;

	height: 1px;
	opacity: 0.1;
	width: 100%;
	display: block;
}

#footer-ayudas2 .mohure {
	color: var(--Colors-Typography---Text-Elements-03---Body-text---secondary, #DEE0E1);
	font-feature-settings: 'liga' off, 'clig' off;
	/* Shared styles/Footer/Medium */
	font-family: "HK Grotesk";
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
	/* 1
    33.333% */
}

#footer-ayudas2 .texto {
	color: var(--colors-typography-text-elements-05-labels-footer-text, #999);
	font-feature-settings: 'liga' off, 'clig' off;
	/* Shared styles/Footer/Medium */
	font-family: "HK Grotesk";
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
	/* 133.333% */
}

.header {
	height: 146px;
}

/* aboutus our-story */
h2,
.h2 {
	font-size: 32px;
	color: #333333;
	font-family: "Rufina", serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	line-height: 1.3;
	margin-top: 0px;
}

@media (min-width: 992px) {
	.flex-center-rows {
		display: flex;
		align-items: center;
	}
}

/* 
@media (min-width: 768px) {
    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }
}

@media (min-width: 768px) {
    .col-sm-push-5 {
        left: 41.66666667%;
    }
}
@media (min-width: 768px) {
    .col-sm-6 {
        width: 50%;
    }
}
@media (min-width: 768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left;
    }
}
@media (min-width: 768px) {
    .col-sm-pull-7 {
        right: 58.33333333%;
    }
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.btn-group-vertical>.btn-group:after, .btn-group-vertical>.btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .modal-header:after, .modal-header:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
    display: table;
    content: " ";
} */

.story01bg .story_con01 {
	margin-bottom: 96px;
}

.story01bg .story_con01 .right {
	width: 41%;
}

.story01bg .story_con01 .left {
	width: 50%;
}

.story01bg .flex-center-rows {
	justify-content: space-between;
}

.story01bg .flex-center-rows:nth-child(2n-1) {
	flex-direction: row-reverse;
}

.card-enlace {
	border: 1px solid #e3d8d0;
	padding: 20px;
	border-radius: 4px;
	background: white;
	color: #333333;
	font-family: HK Grotesk;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
	justify-content: space-between;
}

.story02bg .con01 {
	width: 50%;
	padding-left: 15px;
	padding-right: 15px;
}

.integrative01_video video {
	width: 100%;
}

.integrative02_con02 {
	width: 80%;
	margin: auto;
}

.integrative03_con01 {
	width: 50%;
	padding-left: 15px;
	padding-right: 15px;
}


/* results-and-testimonials */

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
	-webkit-tap-highlight-color: transparent;
	position: relative
}

.owl-carousel {
	display: none;
	width: 100%;
	z-index: 1
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-touch-callout: none
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
	display: none
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
	display: block
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
	background: 0 0;
	color: inherit;
	border: none;
	padding: 0 !important;
	font: inherit
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block
}

.owl-carousel.owl-hidden {
	opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab
}

.owl-carousel.owl-rtl {
	direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
	float: right
}

.owl-carousel .animated {
	animation-duration: 1s;
	animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
	z-index: 0
}

.owl-carousel .owl-animated-out {
	z-index: 1
}

.owl-carousel .fadeOut {
	animation-name: fadeOut
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.owl-height {
	transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
	max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url(owl.video.play.png) no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
	display: none
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%
}



.index_news_box4 {}

.news_swiper {
	position: relative;
	overflow: hidden;
	padding-bottom: 30px;
}

.news_swiper .swiper-container {}

.news_swiper .swiper-slide {
	position: relative;
	overflow: hidden;
	z-index: 1;
	text-align: center;
	border-radius: 10px;
}

.news_swiper .swiper-slide.swiper-slide-active {
	z-index: 2;
}

.news_swiper .swiper-slide .img {
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
	background: #f9f9f9;
}

.news_swiper .swiper-slide .img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	transition: all .3s ease;
}

.news_swiper .swiper-slide:hover .img img {
	transform: scale(1.1);
}

.news_swiper .swiper-slide .txtbg {
	width: 100%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	bottom: 0;
	left: 0;
}

.news_swiper .swiper-slide .txt {
	padding: var(--20px) 5%;
	color: #fff;
}

.news_swiper .swiper-slide .txt .h2 {
	font-size: var(--18px);
	line-height: 1.5em;
	height: 1.5em;
	margin-bottom: var(--10px);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.news_swiper .swiper-slide .txt .h3 {
	font-size: var(--14px);
	line-height: 1.5em;
	height: 3em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news_swiper .swiper-pagination {
	width: 100%;
	height: 10px;
	bottom: 0;
}

.news_swiper .swiper-pagination span {
	display: inline-block;
	vertical-align: top;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	margin: 0 8px;
	background: #000;
	opacity: .5;
	transition: all .3s ease;
}

.news_swiper .swiper-pagination span.swiper-pagination-bullet-active {
	width: 20px;
	background: var(--primary-color);
	opacity: 1;
}

.news_swiper .swiper-button-prev,
.news_swiper .swiper-button-next {
	width: 60px;
	height: 60px;
	margin-top: -30px;
	background-color: rgba(0, 0, 0, .5);
	background-size: 15px 30px;
	opacity: 0;
	transition: all .3s ease;
	border-radius: 8px;
}

.news_swiper .swiper-button-prev {
	left: 0;
	transform: translateX(-100%);
}

.news_swiper .swiper-button-next {
	right: 0;
	transform: translateX(100%);
}

.news_swiper:hover .swiper-button-prev,
.news_swiper:hover .swiper-button-next {
	opacity: .7;
	transform: translateX(0) !important;
}

.news_swiper .swiper-button-prev:hover,
.news_swiper .swiper-button-next:hover {
	opacity: 1;
}

@media(max-width:999px) {
	.news_swiper .swiper-slide .txt {
		padding: 10px 5%;
	}

	.news_swiper .swiper-slide .txt .h2 {
		font-size: 14px;
		line-height: 1.5em;
		height: 1.5em;
		margin-bottom: 5px;
	}

	.news_swiper .swiper-slide .txt .h3 {
		font-size: 12px;
		line-height: 1.5em;
		height: 3em;
	}

	.news_swiper .swiper-button-prev,
	.news_swiper .swiper-button-next {
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}
}


.testimonials01bg video {
	width: 100%;
}




/* locations */
.location_con01 {
	width: 33.3%;
	float: left;
	padding-right: 15px;
	padding-left: 15px;
}

@media (max-width: 768px) {

	.location-img {
		height: 300px;
	}
}

@media (min-width: 769px) {

	.location-img {
		height: 415px;
	}
}

.location-img {
	position: relative;

	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 4px;
	background-blend-mode: normal, multiply, normal, normal;
	margin-bottom: 20px;

	background-size: cover !important;
}

.location-img.spain {
	background: radial-gradient(50% 50% at 50% 50%, rgba(72, 72, 72, 0.4) 0%, rgba(72, 72, 72, 0) 100%),
		linear-gradient(0deg, rgba(72, 72, 72, 0.4), rgba(72, 72, 72, 0.4)) center;
}


.location-img.mexico {
	background: radial-gradient(50% 50% at 50% 50%, rgba(72, 72, 72, 0.4) 0%, rgba(72, 72, 72, 0) 100%),
		linear-gradient(0deg, rgba(72, 72, 72, 0.4), rgba(72, 72, 72, 0.4));
}

.location-img.emirates {
	background: radial-gradient(50% 50% at 50% 50%, rgba(72, 72, 72, 0.4) 0%, rgba(72, 72, 72, 0) 100%),
		linear-gradient(0deg, rgba(72, 72, 72, 0.4), rgba(72, 72, 72, 0.4));
}

@media (min-width: 768px) {

	.intro-centered {
		max-width: 70%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.video-centered {
		max-width: 80%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
}

@media (max-width: 768px) {


	.video-centered {

		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
}

/* Centrar los tabs */
#alojamientos .nav-tabs {
	display: flex;
	justify-content: center;
	border: none;
}

/* Asegurar que no haya border-bottom en los enlaces */
#alojamientos .nav-tab-alojamientos ul li a {
	position: relative;
	color: var(--body-text);
	text-decoration: none;
	border-bottom: none;
	background: transparent;
	border: none;
	/* Eliminar cualquier borde inferior extra */
}

/* Pseudo-elemento :after para crear el subrayado */
#alojamientos .nav-tab-alojamientos ul li a:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	border-bottom: 2px solid transparent;
}

#alojamientos .nav-tab-alojamientos li.active a {
	color: var(--negro-activo);
}

/* Mostrar el borde en el tab activo y al hacer hover */
#alojamientos .nav-tab-alojamientos ul li a.active:after,
#alojamientos .nav-tab-alojamientos ul li a:hover:after {
	color: black;
	border-bottom: 2px solid #f0e5dc;
}



#alojamientos .nav-tab-alojamientos ul li:hover:after {
	content: "";
	display: none;
	margin: 0 auto;
	width: 50%;
	border-bottom: 2px solid #f0e5dc;
}

#alojamientos .precio-suite {
	font-family: HK Grotesk;
	font-style: normal;
	display: flex;
	gap: 6px;
	font-weight: normal;
	font-size: 16px;
	line-height: 18px;
	color: #999999;
	margin-top: 20px;
	margin-bottom: 20px;
}

#alojamientos .precio-suite img {
	vertical-align: top;
	max-width: 16px;
}

#alojamientos .img-suite-residences {
	object-fit: cover;
	height: 360px;
	margin-bottom: 24px;
}

#alojamientos .owl-links-carousel {
	position: relative;
}

#alojamientos .owl-links-carousel .owl-stage {
	display: flex;
}

#alojamientos .owl-links-carousel .owl-dots {
	display: none;
}

#alojamientos .owl-carousel .owl-nav .owl-prev {
	position: absolute;
	left: -50px;
	top: 50%;
}

#alojamientos .owl-carousel .owl-nav .owl-next {
	position: absolute;
	right: -50px;
	top: 50%;
}

#alojamientos .owl-carousel .owl-nav button span {

	font-size: 40px;
}



#alojamientos .owl-links-carousel {
	position: relative;
}

#alojamientos .owl-links-carousel .owl-stage {
	display: flex;
}

#alojamientos .owl-links-carousel .owl-dots {
	display: none;
}

#alojamientos .owl-links-carousel .owl-nav {
	position: absolute;
	top: 0;
	right: 0;
	margin-top: -65px;
}

#alojamientos .owl-links-carousel .owl-nav button {
	font-size: 30px;
	border: none;
	font: normal normal normal 30px/1 FontAwesome;
	opacity: 0.6;
}

#alojamientos .owl-links-carousel .owl-nav button:hover {
	opacity: 1;
}

#alojamientos .owl-links-carousel .owl-nav button::before {
	content: "\f105";
}

#alojamientos .owl-links-carousel .owl-nav button span {
	display: none;
}

#alojamientos .owl-links-carousel .owl-nav button.owl-prev::before {
	content: "\f104";
}




@media (max-width: 767px) {
	#alojamientos .owl-links-carousel .owl-nav {
		position: relative;
		margin-top: 0;
		text-align: left;
		margin-top: 20px;
	}

	.owl-carousel-tab-suites .owl-stage-outer {
		overflow: visible;
	}

	#alojamientos .owl-nav {
		display: none;
	}

	#alojamientos .owl-dots {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 15px;
	}

	#alojamientos .owl-dots .owl-dot {
		width: 10px;
		height: 10px;
		background: #999999;
		border-radius: 30px;
		opacity: 0.5;
		margin: 0 3px;
	}

	#alojamientos .owl-dots .owl-dot.active {
		opacity: 1;
	}
}

@media (max-width: 520px) {
	#alojamientos .owl-item.active {
		margin-left: -10px !important;
		margin-right: -10px !important;
	}
}

#alojamientos .card-pisitos {
	padding: 16px;
}


.owl-full-carousel--data .owl-dots {
	position: absolute;
	left: 50%;
	top: 54px;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex !important;
	align-items: center;
	max-width: 1170px;
	width: 1170px;

	/* margin-left: auto; */
	margin: 0 auto;
	min-width: 1170px;
	/* margin-right: auto; */
	/* height: 90px; */
	/* margin-top: -90px; */
	z-index: 6;
}

.owl-full-carousel--data .owl-dots .owl-dot button {
	color: white;
	border-color: transparent;
	outline: none;
}

.owl-full-carousel--data .owl-dots .owl-dot.active button {
	font-weight: 900;
}

.owl-full-carousel--data .owl-full-carousel--box {
	/* padding-bottom: 120px; */
}

@media all and (max-width: 768px) {
	.owl-full-carousel--data .owl-dots {
		display: none !important;
	}
}

@media all and (max-width: 993px) {
	.owl-full-carousel .owl-full-carousel--box {
		min-height: 520px;
	}
}

button,
.button {
	cursor: pointer;
	text-align: center;
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	font-family: "Hk Grotesk", sans-serif;
	text-decoration: none;
	background-color: transparent;
	line-height: 24px;
	padding: 2px 20px;
	border-radius: 100px;
	color: #333333;
	border: 1px solid rgba(51, 51, 51, 0.3);
	-webkit-transition: 200ms;
	transition: 200ms;
}

.sha-spain02bg video {
	width: 100%;
}

.owl-full-carousel {
	background: #000;
	color: white;
}

.owl-full-carousel .item::before {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	content: "";
	display: block;
	background: linear-gradient(0deg,
			rgba(0, 0, 0, 0.8253676470588236) 0%,
			rgba(0, 0, 0, 0) 100%),
		radial-gradient(69.07% 28.69% at 88.27% 0%,
			rgba(72, 72, 72, 0.42) 0%,
			rgba(72, 72, 72, 0) 100%);
	background-blend-mode: multiply, multiply, normal;
}

.owl-full-carousel--image {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	background-blend-mode: multiply, multiply, normal;
}

.owl-full-carousel--image img {
	object-fit: cover;
	height: 100%;
}

.owl-full-carousel .owl-full-carousel--box {
	padding-bottom: 60px;
	padding-top: 30px;
	position: relative;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-start;
}

.owl-full-carousel .owl-full-carousel--box::after {
	content: "";
	display: block;
	padding-bottom: 55vh;
}

.s-carousel--fix---content .owl-full-carousel--box {
	/* padding-bottom: 60px; */
	padding-top: 30px;
	position: absolute;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-start;
	height: 100%;
}

.owl-full-carousel .owl-full-carousel--box .owl-full-carousel--box---text,
.s-carousel--fix---content .owl-full-carousel--box .owl-full-carousel--box---text {
	max-width: 100%;
	color: white;
}

.owl-full-carousel .owl-full-carousel--box .owl-full-carousel--box---text h2,
.s-carousel--fix---content .owl-full-carousel--box .owl-full-carousel--box---text h2 {
	color: white;
}

.owl-full-carousel .owl-full-carousel--box .owl-full-carousel--box---text small,
.s-carousel--fix---content .owl-full-carousel--box .owl-full-carousel--box---text small {
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 30px;
}

.owl-full-carousel .owl-dots {
	display: none;
}

.owl-full-carousel .owl-nav {
	position: absolute;
	left: calc(100% - 150px);
	top: 30px;
	width: 100px;

	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	flex-direction: row;
	z-index: 4000;
}

.owl-full-carousel .owl-nav button {
	background: transparent;
	outline: none;
}

.owl-full-carousel .owl-nav button span {
	display: flex;
	flex-wrap: wrap;
	width: 45px;
	height: 45px;
	font-size: 40px;
	color: white;
	align-items: center;
	justify-content: center;
}

.owl-full-carousel--data .owl-dots {
	position: absolute;
	left: 50%;
	top: 54px;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex !important;
	align-items: center;
	max-width: 1170px;
	width: 1170px;

	/* margin-left: auto; */
	margin: 0 auto;
	min-width: 1170px;
	/* margin-right: auto; */
	/* height: 90px; */
	/* margin-top: -90px; */
	z-index: 6;
}

.owl-full-carousel--data .owl-dots .owl-dot button {
	color: white;
	border-color: transparent;
	outline: none;
}

.owl-full-carousel--data .owl-dots .owl-dot.active button {
	font-weight: 900;
}

.owl-full-carousel--data .owl-full-carousel--box {
	/* padding-bottom: 120px; */
}

@media all and (max-width: 768px) {
	.owl-full-carousel--data .owl-dots {
		display: none !important;
	}
}

@media all and (max-width: 993px) {
	.owl-full-carousel .owl-full-carousel--box {
		min-height: 520px;
	}
}

/* IntegrativeMethodPage */
.acordeon-vanilla {
	font-family: "HK Grotesk", sans-serif;
}

.acordeon-vanilla__item {
	background: none;
	border: none;
	margin-bottom: 1rem;
}

.acordeon-vanilla__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: none;
	border: none;
	padding: 10px 0;
	font-size: 18px;
	font-weight: 500;
	color: #555;
	cursor: pointer;
	text-align: left;
	position: relative;
	transition: font-size 0.3s ease;
}

.acordeon-vanilla__header.is-active {
	color: #111;
}

.acordeon-vanilla__title {
	flex: 1;
	text-align: left;
}

.acordeon-vanilla__icon {
	position: relative;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	margin-left: 16px;
}

.acordeon-vanilla__icon::before,
.acordeon-vanilla__icon::after {
	content: "";
	position: absolute;
	background: #555;
	transition: all 0.3s ease;
	border-radius: 1px;
}

/* LÃ­nea horizontal */
.acordeon-vanilla__icon::before {
	width: 14px;
	height: 2px;
	top: 6px;
	left: 0;
}

/* LÃ­nea vertical */
.acordeon-vanilla__icon::after {
	width: 2px;
	height: 14px;
	top: 0;
	left: 6px;
}

.acordeon-vanilla__header.is-active .acordeon-vanilla__icon::after {
	transform: rotate(90deg);
	visibility: hidden;
}

.acordeon-vanilla__header.is-active .acordeon-vanilla__icon::before {
	transform: rotate(180deg);
}

.acordeon-vanilla__body {
	height: 0;
	overflow: hidden;
	transition: height 0.4s ease, padding 0.05s ease;
	padding-top: 0;
	padding-bottom: 0;
	visibility: hidden;
}

.acordeon-vanilla__body--open {
	visibility: visible;
}

/* ===== RTL ARabe ===== */

[dir="rtl"] .acordeon-vanilla__header {
	flex-direction: row-reverse;
	text-align: right;
}

[dir="rtl"] .acordeon-vanilla__title {
	text-align: right;
}

[dir="rtl"] .acordeon-vanilla__icon {
	order: -1;
	margin-right: 16px;
	margin-left: 0;
}

[dir="rtl"] .acordeon-vanilla__icon::before {
	right: 0;
	left: auto;
}

[dir="rtl"] .acordeon-vanilla__icon::after {
	right: 6px;
	left: auto;
}


.grid-full {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.grid-full .card {
	margin-left: 7.5px;
	margin-right: 7.5px;
}

.grid-full .card:first-child {
	/*	margin-left: 0; */
}

.grid-full .card:last-child {
	/*	margin-right: 0; */
}

.card-vertical-link {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	min-height: 580px;
	padding: 15px;
	position: relative;
	background-size: cover;
	background-position: center center;
	transition: 0.3s;
	flex: 1;
	transition: all 0.3s ease-out;
	margin-bottom: 0;
}

.card-vertical-link--v2 {
	overflow: hidden;
	border-radius: 4px;
	min-height: 420px;
}

.card-vertical-link::before {
	position: absolute;
	content: "";
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	transition: all 0.3s ease-out;
	background: radial-gradient(50% 50% at 50% 50%,
			rgba(72, 72, 72, 0.4) 0%,
			rgba(72, 72, 72, 0) 100%),
		linear-gradient(0deg, rgba(72, 72, 72, 0.4), rgba(72, 72, 72, 0.4));
}

.card-vertical-link .card-vertical-link--bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	z-index: 1;
	background-size: cover;
	background-position: center center;
	transition: 0.3s;
}

.card-vertical-link .card-body {
	text-align: center;
	max-width: 400px;
	padding: 0 15px;
	margin: 0 auto;
	color: white;
	position: relative;
	z-index: 2;
}

.card-vertical-link .card-body h3 {
	color: white;
	margin-bottom: 16px;
}

.card-vertical-link .card-body .card-body--text {
	opacity: 0;
	overflow: hidden;
	transition: all 0.3s ease-out;
	margin-bottom: -100%;
	transition-delay: 0.2s;
	height: 0;
	overflow: hidden;
}

.card-vertical-link .card-body .card-body--text a {
	color: white;
}

.card-vertical-link .card-body .card-body--text .link .fa {
	border: 1px solid white !important;
}

.card-vertical-link:hover {
	flex: 1.5;
}

.card-vertical-link--v2:hover {
	flex: 1;
}

.card-vertical-link:hover::before {
	top: 15px;
	left: 15px;
	bottom: 15px;
	right: 15px;
	background: rgba(0, 0, 0, 0.65);
}

.card-vertical-link:hover .plus {
	display: none;
}

.card-vertical-link:hover .card-body .card-body--text {
	opacity: 1;
	margin-bottom: 0;
	height: auto;
}

.card-vertical-link:hover .card-vertical-link--bg {
	transform: scale(1.1);
}

.card-vertical-link--compact {
	min-height: 400px;
	border-radius: 4px;
	overflow: hidden;
}

.card-vertical-link--compact .card-body {
	margin-top: -30px;
}

.card-vertical-link--compact:hover::before {
	border-radius: 2px;
}

.card-vertical-link--compact:hover::before {
	top: 10px;
	left: 10px;
	bottom: 10px;
	right: 10px;
}

.margin-image--bottomfix {
	margin-top: -90px;
}

.margin-image--topfix {
	margin-bottom: -90px;
}

.mb-img--fix---negative {
	margin-bottom: -90px;
}

@media all and (max-width: 1024px) {
	.card-vertical-link {
		padding: 30px;
	}

	.card-vertical-link .card-body p {
		font-size: 14px;
	}
}

@media all and (max-width: 768px) {
	.owl-full-carousel .owl-full-carousel--box {
		min-height: 480px;
	}

	.owl-full-carousel .owl-full-carousel--box::after {
		display: none;
	}

	.mb-img--fix {
		margin-bottom: 24px !important;
	}

	.mb-img--fix---negative {
		margin-bottom: 24px !important;
	}

	.grid-full {
		flex-direction: column;
		/*padding-left: 15px;
		padding-right: 15px; */
	}

	.grid-full .card {
		margin: 7.5px;
		min-height: inherit;
		height: auto;
		width: 100%;
	}

	.grid-full .card:first-child {
		margin-left: 7.5px;
	}

	.grid-full .card:last-child {
		margin-right: 7.5px;
	}

	.card-vertical-link {
		border-radius: 4px;
	}

	.card-vertical-link .card-body {
		max-width: 640px;
		text-align: left;
	}

	.card-vertical-link .card-body .plus {
		position: absolute;
		right: 0px;
		font-size: 1.2em;
	}

	.card-vertical-link .card-body .card-body--text {
		opacity: 1;
		margin-bottom: 0;
	}

	.card-vertical-link .card-body .card-body--text p {
		font-size: 16px;
	}

	.card-vertical-link:hover {
		width: 100%;
	}

	.card-vertical-link--compact .card-body {
		margin-top: 0;
	}
}

@media (min-width: 768px) {
	.card-vertical-link .card-body .plus {
		display: none;
	}
}

@media all and (max-width: 767px) {
	.modulo-nav-tab .nav-tabs {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		overflow-x: auto;
		/*	margin-top: 30px; */
	}

	.modulo-nav-tab .nav-tabs li {
		float: inherit;
		flex: 0 0 auto;
	}

	.panel-modulo-acordeon .collapsible-link {
		padding-right: 30px;
	}

	.margin-image--topfix {
		margin-bottom: 0;
		margin-top: 60px;
	}

	.margin-image--bottomfix {
		margin-top: 0;
	}
}

/* Aplicacion del ltr a modo global*/
.owl-carousel-tab-suites:lang(ar),
.owl-carousel-tab-residences:lang(ar),
.owl-full-carousel:lang(ar),
.owl-full-carousel--data:lang(ar),
.owl-carousel-nav-stacked:lang(ar),
#alojamientos .owl-carousel:lang(ar),
#experiencia-outdoor .owl-links-carousel:lang(ar),
#noticias-enlaces .owl-links-carousel-news:lang(ar),
#home-carrousel-programas-desktop .owl-links-carousel:lang(ar),
#promociones-home .owl-links-carousel:lang(ar) {
	direction: ltr !important;
}

/* Ubicacion de las flechas en ltr*/
#experiencia-outdoor .owl-links-carousel .owl-nav:lang(ar),
#noticias-enlaces .owl-links-carousel-news .owl-nav:lang(ar),
#home-carrousel-programas-desktop .owl-links-carousel .owl-nav:lang(ar),
#home-carrousel-programas-desktop .owl-links-carousel .owl-nav:lang(ar) {
	left: 0;
	right: inherit;
}

/* ajustes arabe CARACTERISTICAS*/
#caracteristicas .feature .icono:lang(ar),
#beneficios-home .beneficio .icono:lang(ar) img {
	margin-right: inherit;
	margin-left: 16px;
}



.button.special {
	border: 1px solid rgba(51, 51, 51, 1);
	color: #333333;
	margin: 4px 0;
	padding: 4px 20px;
}

.button.big {
	padding: 12px 24px;
}


/* IntegrativeMethodPage */
.IntegrativeMethodPage01bg .con01 {
	width: 58.33333333%;
	float: left;
	padding-right: 15px;
	padding-left: 15px;
}

.IntegrativeMethodPage01bg .con01 img {
	width: 95%;
	height: auto;
	object-fit: contain;
}

.IntegrativeMethodPage01bg .con02 {
	width: 50%;
	float: left;
	padding-right: 15px;
	padding-left: 15px;
}

.IntegrativeMethodPage02bg .con01 {
	width: 41%;
	float: right;
	padding-right: 15px;
	padding-left: 15px;
}

.IntegrativeMethodPage02bg .con02 {
	width: 50%;
	float: left;
	padding-right: 15px;
	padding-left: 15px;
}


.modulo-nav-tab {
	background: none !important;
	width: 100%;
}

.modulo-nav-tab .nav-tabs {
	border: 0 !important;
	background: none !important;
	margin-bottom: 25px;
}

.modulo-nav-tab .nav>li {
	margin-right: 20px !important;
}

.modulo-nav-tab .nav>li>a {
	padding: 0 0 5px !important;
}

.modulo-nav-tab .nav-tabs ul li a {
	text-decoration: none;
	color: #999999;
	display: block;
}

.modulo-nav-tab .nav-tabs>li.active>a {
	font-weight: 600;
}

.modulo-nav-tab .nav-tabs>li>a,
.modulo-nav-tab .nav-tabs>li.active>a,
.modulo-nav-tab .nav-tabs>li.active>a:focus,
.modulo-nav-tab .nav-tabs>li.active>a:hover {
	border: 0 !important;
	background: none !important;
}

.modulo-nav-tab ul li:hover:after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 50%;
	border-bottom: 2px solid #f0e5dc;
}

.modulo-nav-tab ul li.active:after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 50%;
	border-bottom: 2px solid #e3d8d0;
}

@media (min-width: 992px) {
	.nav-tab-top-margin {
		margin-top: 60px;
	}
}

.IntegrativeMethodPage03bg .con02 {
	width: 50%;
	float: left;
	padding-right: 15px;
	padding-left: 15px;
}

.IntegrativeMethodPage03bg .con03 {
	width: 41%;
	float: left;
	padding-right: 15px;
	padding-left: 15px;
	margin-left: 8%;
}

.modulo-nav-tab .nav-tabs::before {
	display: block;
	content: '';
	clear: both;
}

.modulo-nav-tab .nav-tabs::after {
	display: block;
	content: '';
	clear: both;
}


.tab-content>.tab-pane {
	display: none
}

.tab-content>.active {
	display: block
}

h3,
.h3 {
	color: #333333;
	font-family: "Rufina", serif;
}



/* programs-packs */

.programas-y-packs .pack-tab-menu a {
	display: block;
}



.programas-y-packs .pack-tab-menu {
	position: relative;
	z-index: 2;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

.programas-y-packs .pack-tab-menu ul {
	padding: 0px 40px;
	display: flex;
	flex-wrap: nowrap;
	gap: 24px;
	margin-block: 0;
	overflow-x: auto;
	list-style: none;
	text-align: center;
	white-space: nowrap;
}

.programas-y-packs .pack-tab-menu ul li {
	cursor: pointer;
	align-content: center;
	border-bottom: solid 2px transparent;
}

.programas-y-packs .pack-tab-menu ul li.active {
	border-bottom: solid 2px #E3D8D0;
}

.programas-y-packs .pack-tab-menu ul li a {
	padding-bottom: 8px;
}

.programas-y-packs .pack-tab-menu ul::-webkit-scrollbar {
	display: none;
}

.programas-y-packs .contenido-pack-tab .tab-content {
	display: flex;
	margin-bottom: 144px;
	flex-direction: column;
	gap: 24px;

}



@media (min-width: 992px) {


	.pack-tab-menu {
		display: flex;
		justify-content: center;
		/* Centra horizontalmente */
	}

	.pack-tab-menu ul {
		display: flex;
		justify-content: center;
		gap: 24px;
		/* Espaciado entre elementos */
	}
}


.grid-layout-programas {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
	.grid-layout-programas {
		grid-template-columns: repeat(2, 1fr);
	}
}


.grid-item,
.owl-carousel .grid-item {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
}


.card-programa,
.card-pack {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	flex-grow: 1;
	height: 100%;

}

@media (max-width: 767px) {
	.grid-layout-programas {
		display: none;
	}

	.carousel-programas {
		display: block;
	}

}


.carousel-wrapper {
	position: relative;
	width: 100%;
	min-height: 250px;
	overflow: hidden;
}

.carousel-programas {
	display: none;
	opacity: 0;
	visibility: hidden;
}

@media (min-width: 767px) {
	.carousel-wrapper {
		display: none;
	}

}

.owl-carousel .owl-stage {
	display: flex;
	align-items: stretch;
}

.owl-carousel .grid-item {
	width: auto !important;

}


.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	background: red;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border: 4px solid #ccc;
	border-top: 4px solid #333;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index: 10;

}


.carousel-programas {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: relative;

}

.owl-carousel.owl-loaded {
	display: block !important;

	opacity: 1;
	visibility: visible;
}

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

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


.card-programa {
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	overflow: hidden;
	background: white;
	color: #333333;
	font-family: HK Grotesk;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;

	height: auto;

	display: flex;
	flex-direction: column;

}

.card-programa .imagen {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 200px;
}

.card-programa .contenido {
	display: flex;
	height: auto;
	gap: 8px;
	flex-direction: column;
	justify-content: space-between;
}

.card-programa .contenido:lang(ar) {
	text-align: right;
	direction: rtl;
}


.card-programa .contenido .superior {
	padding: 24px;
}

.card-programa .contenido .inferior {
	padding: 24px;
}

.card-programa .contenido .label-S {
	color: var(--Text-elements-02-Grey, var(--Colors-Neutral-04-Grey, #757474));
	font-feature-settings: 'clig' off, 'liga' off;
	text-overflow: ellipsis;

	font-family: "HK Grotesk";
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 18px;

	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.card-programa .contenido h4 {
	color: var(--Text-elements-01-Light-Black, #414345);
	font-feature-settings: 'clig' off, 'liga' off;

	font-family: Rufina;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 8px;

}

.card-programa .contenido .extracto {
	color: var(--Text-elements-02-Grey, #757474);
	font-feature-settings: 'clig' off, 'liga' off;
	text-overflow: ellipsis;
	font-family: "HK Grotesk";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;

}

.card-programa .contenido .complemento {
	color: var(--Text-elements-01-Light-Black, #414345);

	font-family: "HK Grotesk";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
	align-items: center;
}

.card-programa .contenido .complemento img {
	max-width: 24px;
	width: 24px
}

.card-programa .contenido .precios-pack {
	color: var(--Text-elements-02-Grey, #757474);
	font-feature-settings: 'clig' off, 'liga' off;

	font-family: "HK Grotesk";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
	margin-bottom: 24px;

}

.card-programa.icono {
	max-height: 40px;
	margin-right: 25px;
}

.card-programa .titulo {
	font-family: Rufina;
	width: 100%;
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 25px;
	color: #414345;
}


.card-programa .descripcion {
	font-family: HK Grotesk;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	color: #757474;
}

.card-programa .more-info {
	position: absolute;
	bottom: 32px;
}

.card-programa h2 {
	margin-bottom: 50px;
}

.programsPacks01bg .contenido-pack-tab .item_con01.active {
	display: block !important;
}

/* sha-emirates */
.sha-emirates01bg .con01,
.sha-emirates03bg .con01 {
	width: 50%;
	padding-left: 15px;
	float: right;
	padding-right: 15px;
}

.sha-emirates01bg .row,
.sha-emirates03bg .row {
	display: flex;
	align-items: center;
}

.sha-emirates01bg .row:nth-child(2n-1),
.sha-emirates03bg .row:nth-child(2n-1) {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}

.sha-emirates01bg .con02,
.sha-emirates03bg .con02 {
	width: 50%;
	padding-left: 15px;
	float: right;
	padding-right: 15px;
}

.sha-emirates01bg .con02 img,
.sha-emirates03bg .con02 img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.row:after,
.row:before {
	display: table;
	content: " ";
	clear: both;
}

.sha-emirates04bg .con01 {
	width: 66%;
	margin-left: 16.66666667%;
}

.sha-emirates04bg .con01 .tips {
	font-size: 16px;
}

.sha-emirates04bg .con01 ul {
	padding-left: 0px;
}

.sha-emirates04bg .con01 ul li {
	width: 33%;
	margin: 0 0 20px 0%;
}

.sha-emirates04bg .message1 form .input_button {
	border: 1px solid rgba(51, 51, 51, 0.3) !important;
	background-color: transparent !important;
	color: #333 !important;
}

.privileged01bg .con01 {
	width: 83%;
	margin: auto;
}

.privileged01bg .con02 {
	width: 25%;
}

.privileged02bg .con01 {
	width: 33%;
}

.privileged02bg .con02 {
	width: 50%;
}

.privileged02bg .flex-shapphires {
	justify-content: space-between;
}

.privileged04bg .con01 {
	width: 50%;
	margin: auto;
}

.privileged04bg .tab-content>.active {
	display: flex;
	flex-wrap: wrap;
}

.careers02bg .row {
	flex-direction: row-reverse;
}

.careers02bg .con01 {
	width: 50%;
	padding-left: 15px;
	padding-right: 15px;
}

.careers02bg .con01 img {
	width: 100%;
}

.careers02bg .con02 {
	width: 50%;
	padding-left: 15px;
	padding-right: 15px;
}

.responsibi02bg .con01 {
	width: 25%;
}

.responsibi02bg .con02 {
	width: 66.66666667%;
}

.responsibi02bg .con01 img {
	width: 100%;
}

.contactUs01bg .con01 {
	width: 50%;
	float: left;
}

.contactUs01bg .con02 {
	width: 41%;
	float: right;
}

.contactUs02bg .con01 {
	width: 66%;
	margin: auto;
}

.emirates02bg .con01,
.emirates02bg .con02,
.emirates04bg .con01,
.emirates04bg .con02 {
	width: 50%;
	float: left;
}

.emirates02bg .con02 img {
	width: 100%;
	object-fit: contain;
}

.emirates01bg .con02 video {
	width: 100%;
	text-align: center;
}

.emirates04bg .container:nth-child(2n-1) .row {
	flex-direction: row-reverse;
	display: flex;
}

.search-call-2-action {
	display: flex;
	align-items: center;
	gap: 25px;
}

.integrative03bg .background-recorte-arriba .row {
	display: flex;
	flex-wrap: wrap;
}

.story02bg .background-recorte-arriba .row {
	display: flex;
	flex-wrap: wrap;
}

.prodetail02bg .con03 video {
	width: 100% !important;
}

#objetivos-del-programa .cards-objetivos {
	position: relative;
}

#objetivos-del-programa .cards-objetivos .owl-stage,
#objetivos-del-programa .cards-objetivos.no-carousel {
	display: flex;
	justify-content: center;
	gap: 24px;
	align-items: stretch;
}

#objetivos-del-programa .cards-objetivos .owl-dots,
#objetivos-del-programa .cards-objetivos .owl-nav {
	display: none;
}

#objetivos-del-programa .cards-objetivos .objetivo {
	z-index: 1;
	border-radius: 4px;
	flex: 1;
	border: 1px solid var(--colors-neutral-05-light-grey-extra-light-grey, #DEE0E1);
	background: var(--Colors-Backgrounds-03---Cards, #FFF);
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	height: 100%;
}

#objetivos-del-programa .cards-objetivos .objetivo .imagen {
	width: 100%;
	background-position: center center;
	background-size: cover;
	flex-shrink: 0;
}

#objetivos-del-programa .cards-objetivos .objetivo .contenido {
	padding: 24px 16px;
	flex-grow: 1;
}

@media (min-width:768px) {
	#objetivos-del-programa .cards-objetivos.mobile {
		display: none;
	}

	#objetivos-del-programa .cards-objetivos .objetivo {
		max-width: 373px;
		height: auto !important;
	}

	#objetivos-del-programa .cards-objetivos .objetivo .imagen {
		height: 120px;
	}
}

@media (max-width:768px) {
	#objetivos-del-programa .cards-objetivos.desktop {
		display: none;
	}

	#objetivos-del-programa .cards-objetivos .objetivo .imagen {
		height: 136px;
	}

	#objetivos-del-programa .slide-objetivos {
		display: none;
	}

	#objetivos-del-programa .tns-outer {
		display: none;
	}

}

@media (min-width:768px) {

	#objetivos-del-programa .slide-objetivos {
		position: relative;
		overflow: visible;

		padding: 0px 20px;
	}

	#objetivos-del-programa .tns-outer {
		position: relative;
	}

	#objetivos-del-programa .tns-nav {
		position: absolute;
		bottom: 0;
		left: 20px;
		z-index: 10;
		/* Oculta la navegación de puntos si no es necesaria */
		text-align: center;
		margin-top: 20px;
		display: flex;
		align-items: center;
	}


	.tns-nav button {
		background-color: #D8CAB2;
		/* Color de fondo para los puntos inactivos */
		border: none;
		border-radius: 50%;
		width: 12px;
		/* Ajusta el tamaño del punto según sea necesario */
		height: 12px;
		/* Ajusta el tamaño del punto según sea necesario */
		margin: 0 4px;
		/* Espacio entre los puntos */
		cursor: pointer;
		opacity: 0.5;
		/* Opacidad para los puntos inactivos */
		transition: background-color 0.3s, opacity 0.3s;
		/* Transiciones suaves */
		padding: 0;
	}

	.tns-nav button.tns-nav-active {
		background-color: #8B6B46;
		/* Color de fondo para el punto activo */
		opacity: 1;
		width: 14px;
		height: 14px;
		/* Opacidad para el punto activo */
	}

	#objetivos-del-programa .tns-controls {
		position: absolute;
		top: 50%;
		width: 100%;
		display: flex;
		justify-content: space-between;
		transform: translateY(-50%);
		pointer-events: none;
		z-index: 1;
		/* Permite hacer clic a través de los controles, si es necesario */
	}

	#objetivos-del-programa .tns-controls button {
		pointer-events: all;
		/* Permite que los botones sean clicables */
		background: none;
		border: none;
		font-size: 42px;
		/* Ajusta el tamaño de las flechas según sea necesario */
		cursor: pointer;
		outline: none;
		position: absolute;
		z-index: 10;
	}


	.tns-controls [data-controls="prev"]:before {
		content: "\f104";
		/* Icono de Font Awesome para la flecha izquierda */
		font-family: FontAwesome;

	}

	.tns-controls [data-controls="next"]:before {
		content: "\f105";
		/* Icono de Font Awesome para la flecha derecha */
		font-family: FontAwesome;

	}

	#objetivos-del-programa .tns-controls button:hover {
		color: #000;
		/* Cambia el color al pasar el mouse, ajusta según sea necesario */
	}

	#objetivos-del-programa .slide-objetivos .item .objetivo {
		display: flex;
		align-items: flex-end;
	}

	#objetivos-del-programa .slide-objetivos .item .objetivo .imagen {
		width: 100%;
		height: 400px;
		border-radius: 4px;
		overflow: hidden;
		flex: 1;
		background-position: center center;
		background-size: cover;
	}

	#objetivos-del-programa .slide-objetivos .item .objetivo .contenido {
		padding-right: 80px;
		padding-bottom: 60px;
		flex: 1;

	}

	#objetivos-del-programa .tns-controls [data-controls="prev"] {

		left: -40px;
		/* Ajusta este valor para posicionar el botón prev fuera del contenedor */
	}

	#objetivos-del-programa .tns-controls [data-controls="next"] {
		right: -40px;
		/* Ajusta este valor para posicionar el botón next fuera del contenedor */
	}
}


@media (min-width: 1360px) {

	#objetivos-del-programa .slide-objetivos {
		padding: 0;
	}

	#objetivos-del-programa .tns-nav {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 10;
		/* Oculta la navegación de puntos si no es necesaria */
		text-align: center;
		margin-top: 20px;
		display: flex;
		align-items: center;
	}

	#objetivos-del-programa .tns-controls [data-controls="prev"] {


		left: -80px;
		/* Ajusta este valor para posicionar el botón prev fuera del contenedor */
	}

	#objetivos-del-programa .tns-controls [data-controls="next"] {
		right: -80px;
		/* Ajusta este valor para posicionar el botón next fuera del contenedor */
	}

}

@media (max-width:768px) {
	#objetivos-del-programa .slide-objetivos.desktop {
		display: none;
	}
}


.modulo-reasons {
	display: flex;
	align-items: stretch;
	position: relative;
}

.modulo-reasons .label-S {
	color: #999;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: "HK Grotesk";
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 16px;
	margin-bottom: 32px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.modulo-reasons .subtitulo {
	color: #414345;
	font-family: "HK Grotesk";
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 24px;
}

.modulo-reasons .body-text-S {
	font-family: "HK Grotesk";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.modulo-reasons .body-text-S p:last-child {
	margin-bottom: 0px;
}

.modulo-reasons .enlace {
	margin-top: 40px;
}

.modulo-reasons .imagen {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 50%;
	flex: 1;
}

/* --- Mobile First: Hasta 768px --- */
@media (max-width: 768px) {
	.modulo-reasons {
		flex-direction: column;
	}

	.modulo-reasons.reverse {
		flex-direction: column;
	}

	.modulo-reasons .contenido,
	.modulo-reasons .imagen {
		width: 100%;
	}

	.modulo-reasons .imagen {
		min-height: 210px;
		height: 210px;


	}

	.modulo-reasons .contenido {
		padding: 24px 24px 0 24px;
	}

	.modulo-reasons .headline-M {
		font-family: Rufina;
		font-size: 24px;
		font-style: normal;
		font-weight: 400;
		line-height: 32px;

	}
}

/* --- Desde 768px en adelante --- */
@media (min-width: 768px) {
	.modulo-reasons {
		flex-direction: row-reverse;
	}

	.modulo-reasons.reverse {
		flex-direction: row;
	}

	.modulo-reasons .contenido,
	.modulo-reasons .imagen {
		width: 50%;
	}

	.modulo-reasons .imagen {
		flex: 1;
		height: auto;
		min-height: 100%;
	}

	.modulo-reasons .contenido {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		padding: 64px;
	}

	.modulo-reasons .headline-M {
		font-feature-settings: 'clig' off, 'liga' off;
		font-family: Rufina;
		font-size: 40px;
		font-style: normal;
		font-weight: 400;
		line-height: 48px;
	}
}

/* --- A partir de 1440px en adelante --- */
@media (min-width: 1440px) {
	.modulo-reasons .contenido {
		padding: 128px;
	}

	.modulo-reasons .imagen {
		flex: 1;
		height: auto;
		min-height: 100%;
	}

	.modulo-reasons .headline-M {
		font-feature-settings: 'clig' off, 'liga' off;
		font-family: Rufina;
		font-size: 48px;
		font-style: normal;
		font-weight: 400;
		line-height: 56px;

	}
}

/* Ajustes para RTL */
.rtl .modulo-reasons .contenido {
	padding: 64px;
}

.rtl .modulo-reasons.reverse .contenido {
	padding: 64px;
}

@media (min-width: 1440px) {
	.rtl .modulo-reasons .contenido {
		padding: 128px;
	}

	.rtl .modulo-reasons.reverse .contenido {
		padding: 128px;
	}
}

.prodetail09bg .contenido-pack-tab .item {
	display: none;
}

.prodetail09bg .contenido-pack-tab .item.active {
	display: block;
}

.footer_mobile {
	display: none;
}

.index02bg .splide__list {
	display: block;
}

.integrative03_con01 .icono img {
	width: 40px;
	height: 34px;
	object-fit: contain;
}

.index_news_box4 .bg {
	width: 100%;
	height: 200px;
	opacity: 1;
	visibility: visible;
	background-position: center;
	background-size: cover;
	transition: all 400ms;
}

.index_news_box4 .bg .text-container {
	width: 100%;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}

.index_news_box4 .bg .text-container .play-portada {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 40px;
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	line-height: 80px;
	text-align: center;
	padding-left: 2px;
	font-size: 28px;
	cursor: pointer;
	transition: all 200ms;
	transform: scale(1);
}

#tabs-privileged .feature-item .feature-out .icono img {
	width: 100%;
	object-fit: contain;
}

.index07bg .splide__list {
	display: block;
}

.index09bg .carousel-wrapper {
	display: block;
}

.inbannerbg {
	position: relative;
	height: 87vh;
}

.inbannerbg .contenedor {
	width: 100%;
	height: 87vh;
	color: #fff;
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: auto;
	max-width: 100%;
}

.inbannerbg .label-L {
	font-size: 16px;
	color: #fff;
	line-height: 24px;
}

.inbannerbg .headline-L {
	font-size: 72px;
	color: #fff;
	line-height: 80px;
}

.inbannerbg .subtitle-S {
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	max-width: 1200px;
}

.IntegrativeMethodPage04bg {
	position: relative;
}

.emirates02bg .con01 img,
.emirates02bg .con02 img,
.emirates04bg .con01 img,
.emirates04bg .con02 img {
	width: 100%;
	object-fit: contain;
}


.index01bg .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 99.5%;
	background: black;
	opacity: 0.4;
	z-index: 2;

}

@media (max-width: 999px) {

	.story01bg .story_con01 .left,
	.story01bg .story_con01 .right,
	.IntegrativeMethodPage01bg .con01,
	.IntegrativeMethodPage01bg .con02,
	.IntegrativeMethodPage02bg .con02,
	.IntegrativeMethodPage02bg .con01,
	.IntegrativeMethodPage03bg .con02,
	.IntegrativeMethodPage03bg .con03,
	.integrative03_con01,
	.location_con01,
	.sha-emirates01bg .con02,
	.sha-emirates03bg .con02,
	.sha-emirates01bg .con01,
	.sha-emirates03bg .con01,
	.sha-emirates01bg .con01,
	.sha-emirates03bg .con01,
	.sha-emirates04bg .con01,
	.sha-emirates04bg .con01 ul li,
	.privileged01bg .con02,
	#tabs-privileged .feature-col,
	.contactUs01bg .con01,
	.contactUs01bg .con02,
	#mapa-contacto .map .img-responsive,
	.story02bg .con01,
	.careers01bg .con01,
	.careers02bg .con02,
	.careers02bg .con01,
	.emirates02bg .con01,
	.emirates02bg .con02,
	.emirates04bg .con01,
	.emirates04bg .con02,
	.index06bg {
		width: 100% !important;
	}

	.IntegrativeMethodPage03bg .con03,
	.sha-emirates04bg .con01 {
		margin-left: 0px
	}

	.header {
		height: 62px;
	}

	.footer_mobile,
	.programsPacks01bg .grid-layout-programas,
	.prodetail03bg #objetivos-del-programa .cards-objetivos.desktop,
	.prodetail03bg #objetivos-del-programa .cards-objetivos.no-carousel,
	.careers01bg .training-title,
	.responsibi01bg .frase-desktop {
		display: block;
	}

	.promos-carousel-module .promos-slide-content-wrapper {
		max-width: 100%;
	}

	.simple-module-big .contenido-big {
		width: 90%;
		margin: auto;
	}

	#metodo-integrativo-estatico .flex-metodo .separador-metodo img {
		display: none;
	}

	.programsPacks01bg .grid-layout-programas {
		grid-template-columns: repeat(1, 1fr);
	}

	.prodetail06bg .gap96 {
		height: 0px;
	}

	.prodetail10bg #otros-programas .carousel-programas .owl-nav,
	.prodetail06bg .metodologia-programa .owl-nav {
		display: none !important;
	}

	.sha-emirates01bg .row,
	.sha-emirates03bg .row {
		flex-wrap: wrap;
	}

	.privileged04bg .con01 {
		width: 84%;
	}

	#end-privileged .privileged-box {
		background: #fff;
		padding: 30px !important;
	}

	.careers04bg img {
		width: 102px;
		object-fit: contain;
	}

	.responsibi01bg #plan-b .flex-plan-b {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.responsibi01bg .frase-desktop {
		width: 90%;
		margin: auto;
	}

	.responsibi06bg #rsc-makers .cuadro-makers {
		margin-left: 0px;
		margin-right: 0px;
	}

	.whitebox {
		padding: 0;
	}

	#start-booking .boton.primary {
		width: 85% !important;
	}

	.sha-spain04bg,
	.prodetail06bg,
	.prodetail10bg,
	.index06bg,
	.index08bg {
		width: 100%;
		overflow: hidden;
	}

	.owl-carousel .owl-stage,
	.metodologia-programa .owl-stage,
	#otros-programas .carousel-programas .owl-stage {
		overflow: hidden;

	}

	#otros-programas .carousel-programas .owl-nav {
		display: none !important;
	}
}