@-webkit-keyframes slideLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}
}

@keyframes slideLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}
}

@-webkit-keyframes slideRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

@keyframes slideRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

html {
	font-size: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	scroll-behavior: smooth
}

*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	list-style: none;
	list-style-type: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	overflow-x: hidden;
	color: #121212;
	background: #fff
}

a,
button {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	cursor: pointer;
	border: none;
	outline: none;
	background: none;
	text-decoration: none
}

@media only screen and (max-width: 768px) {

	a,
	button {
		cursor: default !important;
		border: none;
		outline: none
	}
}

img,
video {
	display: block;
	max-width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover
}

.container {
	max-width: 80rem;
	width: 100%;
	height: auto;
	padding: 0 2rem;
	margin: 0 auto
}

@media only screen and (max-width: 992px) {
	.container {
		padding: 0 1rem;
		margin: 0 auto
	}
}
.banner-box{
	width: 100%;
	height: auto;
	position: relative;
}
.banner{
	width: 100%;
	height: auto;
	position: relative;
	
}
.banner img{
	min-height: 400px;
}
.banner-icon{
	width: 100%;
	height:70px;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 0;
	/* margin-top: -100px; */
	/* background: #000; */
}
.banner-iconitem{
	width: 1000px;
	height: 78px;
	margin: 0 auto;
	text-align: right;
}
.banner-icon img{
	display: inline-block;
	height: 78px;
}

.brand {
	font-family: inherit;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: inherit;
	color: #e91e63;
	border: none;
	outline: none;
	text-transform: uppercase;
	text-rendering: optimizeLegibility
}

.header {
	/* position: fixed;
	display: block;
	top: 0;
	left: 0; */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	/* padding: 1rem 0; */
	margin: 0 auto;
	z-index: 999;
	border: none;
	outline: none;
	/* background: #fff; */
	background: rgba(0, 0, 0, 0.3);;
	/* -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
	/* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) */
	border-bottom: 2px solid  rgb(255 255 255 / 60%);
}

.header .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.header-item-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 17%;
	flex: 0 0 17%
}

.header-item-center {
	/* display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 66%;
	flex: 0 0 66% */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 83%;
	flex: 0 0 83%;
	justify-content: space-between;
}

.header-item-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 17%;
	flex: 0 0 17%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.header-item-right .menu-icon {
	font-size: 1.35rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 1rem;
	margin-left: 1rem;
	border: none;
	outline: none;
	color: #121212;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease
}

.header .menu>ul>li {
	display: inline-block;
	/* line-height: 3.125rem; */
	margin-left: 1.5rem;
	text-align: center;
	padding: 20px 10px;
}

.header .menu>ul>li.active {
	border-bottom: 2px solid rgb(255 255 255 / 60%);
}

.header .menu>ul>li>a {
	position: relative;

	font-family: inherit;
	font-size: 1rem;
	/* font-weight: 600; */
	/* line-height: 1.25; */
	line-height: 2;
	border: none;
	outline: none;
	color: #fff;
	text-transform: capitalize;
	text-rendering: optimizeLegibility;
	-webkit-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;letter-spacing: 1px;
}
.header .menu>ul>li>a:focus{
	text-decoration: none;
}
.header .menu>ul>li>a>i {
	display: none;
}

.header .menu>ul>li>a>span {
	display: block;
	height: 33px;
	float: left;
	line-height: 33px;
	margin-left: 10px;letter-spacing: 2px;
}
.header .menu>ul>li>a>label{
	/* letter-spacing: 4px; */
	font-weight: 600;
	margin: 0;
	cursor: pointer;
}
.tell {
	padding: 0;
	margin-bottom: -10px;
}

.tell img {
	display: block;
	float: left;
}

.header .menu>ul>li .menu-subs {
	position: absolute;
	width: 100%;
	height: auto;
	margin-top: 1.5rem;
	padding: 0 12%;
	border: none;
	outline: none;
	z-index: 500;
	opacity: 0;
	visibility: hidden;
	/* border-radius: 0.25rem; */
	/* border-top: 3px solid #e91e63; */
	/* background: #fff; */
	background: rgb(255 255 255 / 60%);
	/* -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
	/* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out
}

.header .menu>ul>li .menu-subs>ul>li {
	line-height: 1
}

.header .menu>ul>li .menu-subs>ul>li>a {
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	padding: 0.75rem 0;
	border: none;
	outline: none;
	color: #121212;
	text-transform: capitalize;
	text-rendering: optimizeLegibility;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.header .menu>ul>li .menu-column-1 {
	min-width: 16rem;
	max-width: 20rem
}

.header .menu>ul>li .menu-subs.menu-mega {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li {
	display: block;
	line-height: 1
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	padding: 0.5rem 0;
	border: none;
	outline: none;
	color: #121212;
	text-transform: capitalize;
	text-rendering: optimizeLegibility;
	-webkit-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out
}

.header .menu>ul>li .menu-subs.menu-column-4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 76rem;
	width: 100%;
	/* padding: 1.25rem 1rem */
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16.66%;
	flex: 0 0 16.66%;
	padding: 0 1rem
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 4px;
	line-height: 1;
	padding: 0.75rem 0;
	border: none;
	outline: none;
	color: #0e6eb8;
	text-transform: uppercase;
	text-rendering: optimizeLegibility;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}
.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center:hover a{
	text-decoration: none;
}
.header .menu>ul>li .menu-subs.menu-column-4>.list-item .title:hover {
	font-weight: 800;
	text-decoration: none;
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
	text-align: center
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item img.responsive {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin-top: 0.75rem;
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: middle
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a:hover,
.header .menu>ul>li .menu-subs>ul>li>a:hover {
	/* color: #fff; */
	text-decoration: none;
}

.header-item-right a:hover,
.header .menu>ul>li:hover>a {
	/* color: #fff; */
	text-decoration: none;
} 
.menu-section{
	margin-bottom: 0;
}

.footer{
	background: #313332;
	padding: 20px 0;
}
.footerbox{
	width: 90%;
	margin: 0 auto;
}
.footer-L{
	width: 50%;
	float: left;
	padding: 20px 0;
}
.footer-R{
	width: 50%;
	float: left;
	padding: 20px 0;
}

.footer-ba{
	width: 100%;
	text-align: left;
	line-height: 40px;
	font-size: 15px;
	color: #a49c99;
	/* padding-bottom: 20px; */
	border-top: 2px solid #c5c1be;
}
.footer-logo{
	margin-bottom: 30px;
}
.footer-line{
	color: #fff;
	line-height: 30px;
	font-size: 16px;
}
.footer-line img{
	display: inline-block;
	padding-right: 10px;
	border-right: 1px solid #c5c1be;
	margin-right: 10px;
}
.footer-Rbox{
	
}
.footer-Ritem{
	width: 20%;
	float: left;
}
.footer-Ritemtop{
	color: #fff;
	line-height: 30px;
	font-size: 16px;
	border-bottom: 1px solid #c5c1be;
	    margin-bottom: 5px;
	    padding-bottom: 5px;
}
.footer-Ritemlist{
	color: #fff;
}
.footer-Ritemlist a{
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	padding: 4px 0;
}
.footer-Ritemlist a:hover{
	text-decoration: none;
	font-weight: bold;
}
/* 合作伙伴 */
.partnersbox{
	width: 100%;
	background: #fff;
	position: relative;
	background-image: url("https://bcstar.oss-cn-beijing.aliyuncs.com/assets/reception/img/partnersimg.png?Expires=1764951634&OSSAccessKeyId=LTAI5tRja6VMr7FJp5uvjFyD&Signature=UUItaysw7jvBZjN9oG1rhp3Dq28%3D");
	background-position: left top;
	background-repeat:no-repeat;
	/*padding-top: 200px;*/
}

.partners-con{
	width: 100%;
	margin-top: 180px;
	background-color: #efefef;
	background-image: url("https://bcstar.oss-cn-beijing.aliyuncs.com/assets/reception/img/partnersbg.png?Expires=1764951634&OSSAccessKeyId=LTAI5tRja6VMr7FJp5uvjFyD&Signature=bWukRulzDs7isBscjsZGcwfTwgk%3D");
	background-position: left bottom;
	background-repeat:no-repeat;
	background-size: cover;
	padding-top: 60px;
	margin-bottom: 60px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	-webkit-box-shadow: -4px 5px 5px 1px rgb(0 0 0 / 22%), 0 2px 4px -1px rgba(0,0,0,0.06);
	box-shadow: -4px 5px 5px 1px rgb(0 0 0 / 22%), 0 2px 4px -1px rgba(0,0,0,0.06);
}
.partners-top{
	width: 100%;
	margin: 0 auto;
	padding: 6px 0;
	text-align: center;
}
.partners-top img{
	display: inline-block;
}
.partners-item{
	width: 100%;
	padding: 50px;
}
.partners-list{
	width: 16.66%;
/* 	height: 30px;
	background-color: #000; */
	float: left;
	margin-bottom: 40px;
}

.partnersimg{
	width: 80%;
	height: 90px;
	line-height: 90px;
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: -4px 5px 5px 1px rgb(0 0 0 / 22%), 0 2px 4px -1px rgba(0,0,0,0.06);
	box-shadow: -4px 5px 5px 1px rgb(0 0 0 / 22%), 0 2px 4px -1px rgba(0,0,0,0.06);
	text-align: center;
	cursor: pointer;transition: all .5s;
}
.partnersimg img{
	display: inline-block;
	min-height: 70px;transition: all .5s;
}
.partnersimg:hover {
-webkit-box-shadow: 1px 1px 5px 1px rgb(191 191 191 / 51%), 0 2px 4px -1px rgba(0,0,0,0.06);
    box-shadow: 1px 1px 5px 1px rgb(191 191 191 / 51%), 0 2px 4px -1px rgba(0,0,0,0.06);
}
@media only screen and (min-width: 993px) {
	.header .menu>ul>li.menu-item-has-children:hover .menu-subs {
		/* margin-top: 0.5rem; */
		opacity: 1;
		visibility: visible
	}
}

.menu-mobile-header,
.menu-mobile-trigger {
	display: none
}

@media only screen and (max-width: 992px) {
	
	.banner-iconitem{
		width: 100%;
		height: 60px;
		margin: 0 auto;
		text-align: center;
	}
	.banner-icon img{
		display: inline-block;
		height: 60px;
	}
	
	
	
	.header-item-center {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}

	.header-item-left,
	.header-item-right {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto
	}

	.wrapper {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		/* padding: 10px 0; */
	}

	.header .menu-mobile-trigger {
		position: relative;
		display: block;
		cursor: pointer;
		width: 1.75rem;
		height: 1rem;
		border: none;
		outline: none;
		margin-left: 1.25rem;
		background: none;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: 0.35s ease-in-out;
		-o-transition: 0.35s ease-in-out;
		transition: 0.35s ease-in-out
	}

	.header .menu-mobile-trigger span {
		display: block;
		position: absolute;
		width: 100%;
		height: 2px;
		left: 0;
		border: none;
		outline: none;
		opacity: 1;
		border-radius: 0.25rem;
		background: #fff;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: 0.25s ease-in-out;
		-o-transition: 0.25s ease-in-out;
		transition: 0.25s ease-in-out
	}

	.header .menu-mobile-trigger span:nth-child(1) {
		top: 0
	}

	.header .menu-mobile-trigger span:nth-child(2),
	.header .menu-mobile-trigger span:nth-child(3) {
		top: 0.5rem
	}

	.header .menu-mobile-trigger span:nth-child(4) {
		top: 1rem
	}

	.header-item-right {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}

	.header .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 20rem;
		height: 100%;
		z-index: 1099;
		overflow: hidden;
		background: #fff;
		-webkit-transform: translate(-100%);
		-ms-transform: translate(-100%);
		transform: translate(-100%);
		-webkit-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out
	}

	.header .menu.active {
		-webkit-transform: translate(0%);
		-ms-transform: translate(0%);
		transform: translate(0%)
	}

	.header .menu>ul>li {
		display: block;
		line-height: 1;
		margin: 0;
		padding: 0;
	}

	.header .menu>ul>li.tell{
		display: none;
	}

	.header .menu>ul>li>a {
		display: block;
		/* line-height: 3.125rem; */
		/* height: 3.125rem; */
		/* padding: 0 3.125rem 0 1rem; */
		padding: 0;
		color: #000;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1)
	}

	.header .menu>ul>li>a>i {
		display: block;
	}

	.header .menu>ul>li.active {
		border: none;
	}

	.header .menu>ul>li>a i.ion {
		position: absolute;
		font-size: 1.25rem;
		line-height: 3.125rem;
		top: 0;
		right: 0;
		width: 3.125rem;
		height: 3.125rem;
		text-align: center;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg)
	}

	.header .menu .menu-mobile-header {
		position: relative;
		position: -webkit-sticky;
		position: sticky;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		top: 0;
		height: 3.125rem;
		z-index: 501;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		background: #fff
	}

	.header .menu .menu-mobile-header .menu-mobile-arrow {
		display: none;
		font-size: 1.25rem;
		line-height: 3.125rem;
		width: 3.125rem;
		height: 3.125rem;
		cursor: pointer;
		border-right: 1px solid rgba(0, 0, 0, 0.1);
		color: #121212;
		text-align: center
	}

	.header .menu .menu-mobile-header.active .menu-mobile-arrow {
		display: block
	}

	.header .menu .menu-mobile-header .menu-mobile-title {
		font-family: inherit;
		font-size: 1rem;
		font-weight: 500;
		line-height: inherit;
		color: #121212;
		text-transform: capitalize;
		text-rendering: optimizeLegibility
	}

	.header .menu .menu-mobile-header .menu-mobile-close {
		font-size: 2.25rem;
		line-height: 3.125rem;
		cursor: pointer;
		width: 3.125rem;
		height: 3.125rem;
		border-left: 1px solid rgba(0, 0, 0, 0.1);
		color: #121212;
		text-align: center
	}

	.header .menu .menu-section {
		height: 100%;
		overflow-y: auto;
		overflow-x: hidden
	}

	.header .menu>ul>li .menu-subs {
		position: absolute;
		display: none;
		top: 0;
		left: 0;
		max-width: none;
		min-width: auto;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 1rem;
		padding-top: 4rem;
		opacity: 1;
		overflow-y: auto;
		visibility: visible;
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
		-webkit-box-shadow: none;
		box-shadow: none
	}

	.header .menu>ul>li .menu-subs.menu-mega {
		position: absolute;
		display: none;
		top: 0;
		left: 0;
		max-width: none;
		min-width: auto;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 1rem;
		padding-top: 4rem;
		opacity: 1;
		overflow-y: auto;
		visibility: visible;
		background: #ddd;
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
		-webkit-box-shadow: none;
		box-shadow: none
	}

	.header .menu>ul>li .menu-subs.active {
		display: block
	}

	.header .menu>ul>li .menu-subs.menu-column-4>.list-item {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		padding: 0rem
	}

	.header .menu>ul>li .menu-subs.menu-column-4>.list-item img.responsive {
		margin-top: 0
	}

	.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
		margin-bottom: 1.25rem;
		color: #000;
	}

	.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center:last-child .title {
		margin-bottom: 0rem
	}

	.header .menu>ul>li .menu-subs>ul>li>a {
		display: block
	}

	.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul {
		margin-bottom: 1rem
	}

	.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
		display: block
	}

	.overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		opacity: 0;
		visibility: hidden;
		background: rgba(0, 0, 0, 0.55);
		-webkit-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out
	}

	.overlay.active {
		opacity: 1;
		visibility: visible
	}
	.footerbox{
		width: 100%;
	}
	.footer-L{
		width: 100%;
		float: none;
		padding:0;
		margin-bottom: 20px;
	}
	.footer-R{
		display: none;
	}
	.footer-logo{
		margin-bottom: 20px;
	}
	.footer-ba{
		line-height: 26px;
		text-align: center;
	}
	.partnersbox{
		padding: 0;
	}
	.partnersbox .container{
		padding: 0;
	}
	.partners-con{
		    padding-top: 40px;
		    margin-bottom: 0;
	}
	.partners-item{
		padding: 20px;
	}
	.partners-list{
		width: 33.33%;
		margin-bottom: 16px;
	}
	.partnersimg{
		width: 94%;
	}
}

.main {
	display: block;
	width: 100%;
	/* min-height: 100vh */
}
