.container{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.container .box{
	position: relative;
	width: 30%;
	min-width: 280px;
	background: #fff;
	padding: 3em 1em;
	box-shadow: 0 15px 45px rgba(0,0,0,.1);
}
.container .box:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ff226d;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.5s;
}
.container .box:hover:before{
	transform: scaleY(1);
	transform-origin: bottom;
	transition: transform 0.5s;
}
.container .box h2{
	position: absolute;
	left: 40px;
	top: 60px;
	font-size: 4em;
	font-weight: 800;
	z-index: 1;
	opacity: 0.1;
	transition: 0.5s;
}
.container .box:hover h2{
	opacity: 1;
	color: #fff;
	transform: translateY(-40px);
}
.container .box h3{
	position: relative;
	font-size: 1.5em;
	z-index: 2;
	color: #333;
	transition: 0.5s;
}
.container .box p{
	position: relative;
	z-index: 2;
	color: #555;
	transition: 0.5s;
}
.container .box:hover h3,
.container .box:hover p,
.container .box:hover img {
	color: #fff;
	transform: translateY(-40px);
}

.container .box img {
	width: 8em;
	height: 8em;
	border-radius: 8em;
	margin: 1em 0;
	transition: all 0.5s;
}

.title-wrap {
    align-items: center;
    display: flex;
	padding: 2em 0;
}

.title-wrap .title-icon {
    border: 8px solid orange;
    border-radius: 50%;
    height: 2em;
    margin-right: 1em;
    margin-top: -3em;
    width: 2em;
}

.title-wrap .title-content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 122px;
    position: relative;
    text-align: justify;
    text-align-last: justify;
    width: 100%;
}

.title-wrap .title-content .title {
    color: #000000;
    font-family: "OPPOSans-L";
    font-size: 3em;
    font-weight: bold;
    margin: 0 auto;
    position: absolute;
}

.title-wrap .title-content .title2 {
    position: absolute;
    top: -10px;
    font-size: 1em;
    font-weight: bold;
    opacity: 0.2;
    filter: blur(1px);
}

.title-wrap .title-content .title-detail {
    color: #4d4950;
    font-family: "OPPOSans-L";
    font-size: 1em;
	font-weight: bold;
    position: absolute;
    top: 4em;
}

.container .block {
	position: relative;
}

.container-left {
	width: 50% !important;
}

.container-right {
	width: 45%;
    padding: 4em 0 4em 4em;
}

.container .right-text {
	text-indent: 2em;
	text-align: left;
}

.container .info {
	display: flex;
	justify-content: space-between;
	color: rgb(107, 208, 255);
}

.container .info .left,
.container .info .right {
	width: 50%;
}

.container .info .number {
	font-size: 4em;
	font-weight: bold;
}

.container .info .number-text {
	font-size: 1.5em;
	font-weight: bold;
}

.box-container {
	padding: 0;
	border-radius: 50px;
	background-color: rgba(250, 222, 232, 0.7);
	justify-content: flex-start !important;
}

.swiper-container {
	border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}