.cm-titile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cm-titile h2 {
  font-weight: 600;
  font-size: 30px;
  color: #000000;
  text-align: center;
}
.cm-titile p {
  width: 80%;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  margin-top: 30px;
  text-align: center;
}
.step-1 .step-1-main{
	height: 400px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	overflow: hidden;
}
.step-1-main-txt{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	
}
.step-1-main-txt h6{
	font-weight: 600;
	font-size: 36px;
	color: #000000;
	margin-bottom: 20px;
}
.step-1-main-txt p{
	font-size: 16px;
	color: #303355;
	
}
.step-1-main-txt p::before{
	content: '●';
	    width: 15px;
	    height: 15px;
	    color: #156CED;
	    margin-right: 10px;
}
.step-1-main-txt p:not(:last-child){
	margin-bottom: 10px;
}
.step-1 .step-1-main-appdown{
	margin-top: 30px;
}

.step-1 .step-1-main-appdown a{
	display: inline-block;
	margin-right: 20px;
	position: relative;
	
}
.step-1 .step-1-main-appdown a:hover .qrcode{
	-webkit-animation: showCode .3s forwards;
	animation: showCode .3s forwards
}
.step-1 .step-1-main-appdown .qrcode{
	position: absolute;
	
	left: 50%;
	margin-left: -70px;
	width: 140px;
	height: 140px;
	background: #FFFFFF;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	border-radius: 6px;
	border: 1px solid #B9B9B9;
	padding:10px;
	opacity: 0;
}
@keyframes showCode {
	0% {
		top: -100px;
		visibility: visible;
		opacity: 0
	}

	100% {
		top:-150px;
		visibility: visible;
		opacity: 1
	}
}
.step-2{
	padding:100px 0px 85px ;
	background: #F9F9F9;
}
.step-2 ul{
	width: 80%;
	margin: 0 auto;
	margin-top: 55px;
}
.step-2 ul li{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.step-2 ul li p{
	font-weight: 600;
	font-size: 24px;
	color: #000000;
	margin-bottom: 34px;
	text-align: center;
}
.step-2 ul li span{
	display: flex;
	align-items: center;
	font-weight: 400;
	font-size: 14px;
	color: #555555;
	text-align: center;
}
.step-2 ul li:not(:last-child){
	margin-bottom: 60px;
}
.step-2 ul li .item-txt:nth-child(odd){
	margin-right: 128px;
}
.step-2 ul li .item-txt:nth-child(even){
	margin-left: 128px;
}

.step-3{
	padding-top:60px ;
}
.step-3 .step-3-main{
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding:80px 0px;
}
.step-3 .step-3-main img{
	margin-right: 60px;
}
.step-3 .step-3-main ul li{
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	
}
.step-3 .step-3-main ul li::before{
	content: '●';
	    width: 15px;
	    height: 15px;
	    color: #156CED;
	    margin-right: 10px;
}
.step-3 .step-3-main ul li:not(:last-child){
	margin-bottom: 10px;
}
.step-3 .step-3-main  p{
	font-weight: 600;
	font-size: 24px;
	color: #333333;
	margin-bottom: 33px;
}
.step-3 .step-3-main .appdown-main{
	display: flex;
	margin-top: 50px;
}
.step-3 .step-3-main a{
	width: 140px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #156CED;
	border-radius: 4px;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
}
.step-3 .step-3-main a:hover{
	opacity: .8;
}
.step-3 .step-3-main a:not(:last-child){
	margin-right: 38px;
}