.content{
    background-color: #f8f8f8;
}
.box-2 .wrap {
	padding: 0 2.6rem;
	padding-top: 1.4rem;
	padding-bottom: 2.55rem;
}

.box-2 .wrap .title-h {
	font-size: 0.5rem;
	font-family: 'SourceHanSansCN-Regular';
	height: 0.45rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 0.25rem;
	width: max-content;
	margin: 0 auto;
	margin-bottom: 0.55rem;
}

.box-2 .wrap .cont {
	display: flex;
	height: 7.2rem;
	margin-top: 0.4rem;
	background-color: #f8f8f8;
	box-shadow: 0 0 0.2rem rgba(0, 0, 0, .2);
	border-radius: 0.1rem;
	overflow: hidden;
}

.box-2 .wrap .cont .left {
	width: 5rem;
	height: 7.2rem;
	box-sizing: border-box;
	overflow: auto;
    display: flex;
    align-items: center;
}

.box-2 .wrap .cont .left .li-h {
	display: none;
    padding: 0.7rem 0.55rem;
    padding-left: 1rem;
}

.box-2 .wrap .cont .left .h {
	font-size: 0.3rem;
	color: #2373ce;
	font-family: 'SourceHanSansCN-Regular';
	margin-bottom: 0.75rem;
}

.box-2 .wrap .cont .left .li p {
	font-size: 0.24rem;
	font-family: 'SourceHanSansCN-Light';
	margin-bottom: 0.45rem;
	position: relative;
}

.box-2 .wrap .cont .left .li p::after {
	content: '';
	display: block;
	position: absolute;
	width: 0.12rem;
	height: 0.12rem;
	background-color: #2373ce;
	border-radius: 50%;
	left: -0.36rem;
	top: 0.13rem;
}

.box-2 .wrap .cont .right {
	width: calc(100% - 5rem);
	height: 7.2rem;
	overflow: hidden;
	position: relative;
}

.box-2 .wrap .cont .right .images {
	position: relative;
	width: 100%;
	height: 100%;
}

.box-2 .wrap .cont .right .images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	display: none;
}

.box-2 .wrap .cont .right .list {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.box-2 .wrap .cont .right .list .li {
	width: 33.33%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	float: left;
	box-sizing: border-box;
	border-right: 0.02rem solid rgba(255, 255, 255, .5);
}

.box-2 .wrap .cont .right .list .li:last-child {
	border-right: 0;
}

.box-2 .wrap .cont .right .list .li .dian {
	width: 0.6rem;
	height: 0.6rem;
	margin: 0 auto;
	border-radius: 50%;
	border: 1px solid #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5rem;
}

.box-2 .wrap .cont .right .list .li .dian span {
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 0.4rem;
	width: 0.4rem;
	position: relative;
	border: 1px solid #ffffff;
	transform: scale(1);
}

.box-2 .wrap .cont .right .list .li .dian i {
	background: #ffffff;
	border-radius: 100%;
	display: block;
	height: 0.2rem;
	width: 0.2rem;
	position: relative;
	transform: scale(1);
}

.box-2 .wrap .cont .right .list .li .name {
	color: #ffffff;
	text-align: center;
	font-size: 0.2rem;
}

.box-2 .wrap .cont .right .list .li:hover .dian {
	animation: amplify 1.6s 0.4s infinite;
}

.box-2 .wrap .cont .right .list .li:hover .dian span {
	animation: amplify 1.6s 0.8s infinite;
}

.box-2 .wrap .cont .right .list .li:hover .dian i {
	animation: amplify 1.6s 1.2s infinite;
}

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

	50% {
		transform: scale(1.2);
	}

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

.wrap{
    padding: 0 2.6rem;
}

.box-3{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 6.6rem;
    padding-bottom: 2.55rem;
}

.box-3 .left img{
    width: 6.5rem;
}

.box-3 .right{
    width: 6.5rem;
}

.box-3 .right .title {
    font-size: 0.5rem;
	font-family: 'SourceHanSansCN-Regular';
	color: #333333;
}

.box-3 .right .cont{
    font-size: 0.24rem;
    text-indent: 2em;
    line-height: 0.35rem;
    color: #333333;
    margin: 0.35rem 0;
}

.box-3 .right .btn .li{
    font-size: 0.24rem;
    border: 1px solid  #2373ce;
    border-radius: 0.5rem;
    color: #2373ce;
    line-height: 0.8rem;
    padding: 0 0.3rem;
    width: max-content;
    cursor: pointer;
    margin-bottom: 0.2rem;
}
.box-3 .right .btn .li:hover{
    background-color: #2373ce;
    color: #fff;
}