@media screen and (min-width:1200px) {
	/*定义一个名字为lefteaseinAnimate动画，实现从页面的左边淡入页面效果*/
	@keyframes lefteaseinAnimate{
	    0%{ transform: translateX(-2000px); opacity: 0;}   /*在0%时设置文字在想X轴-2000px位移处（左边），透明度为0，也就是看不见文字*/
	    100%{ transform: translateX(0px); opacity: 1;}         /*在100%时设置文字在想X轴0px位移处，也就是原始布局的位置，透明度为1，也就是文字可以看见了*/
	}
	@-webkit-keyframes lefteaseinAnimate{
	    0%{ -webkit-transform: translateX(-2000px); opacity: 0;}
	    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
	}
	@-o-keyframes lefteaseinAnimate{
	    0%{ -webkit-transform: translateX(-2000px); opacity: 0;}
	    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
	}
	@-ms-keyframes lefteaseinAnimate{
	    0%{ -webkit-transform: translateX(-2000px); opacity: 0;}
	    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
	}
	@-moz-keyframes lefteaseinAnimate{
	    0%{ -webkit-transform: translateX(-2000px); opacity: 0;}
	    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
	}
	/*定义一个名字为righteaseinAnimate动画，实现从页面的右边淡入页面效果*/
	@keyframes righteaseinAnimate{
	    0%{ transform: translateX(2000px); opacity: 0;}   /*在0%时设置文字在想X轴2000px位移处（右边），透明度为0，也就是看不见文字*/
	    100%{ transform: translateX(0px); opacity: 1;}      /*在100%时设置文字在想X轴0px位移处，也就是原始布局的位置，透明度为1，也就是文字可以看见了*/
	}
	@-webkit-keyframes righteaseinAnimate{
	    0%{ -webkit-transform: translateX(2000px); opacity: 0;}
	    100%{ -webkit-transform: translateX(0px); opacity: 1;}
	}
	@-o-keyframes righteaseinAnimate{
	    0%{ -webkit-transform: translateX(2000px); opacity: 0;}
	    100%{ -webkit-transform: translateX(0px); opacity: 1;}
	}
	@-ms-keyframes righteaseinAnimate{
	    0%{ -webkit-transform: translateX(2000px); opacity: 0;}
	    100%{ -webkit-transform: translateX(0px); opacity: 1;}
	}
	@-moz-keyframes righteaseinAnimate{
	    0%{ -webkit-transform: translateX(2000px); opacity: 0;}
	    100%{ -webkit-transform: translateX(0px); opacity: 1;}
	}
.layout {
	width: 75%;
	margin: 40px auto 0px;
}
.title {
	text-align: center;
	font-size: 2.7rem;
	letter-spacing: 2px;
	font-weight: 600;
}
.text {
	margin-top: 30px;
	line-height: 2;
	/* text-indent: 2rem; */
	text-align: center;
	font-size: 1.7rem;
}
.layout-module-img{
	display: flex;
}
.layout-module-left{
	width: 60%;
}
.layout-module-left img{
	/* width: 84%; */
}
.layout-module-right{
	width: 40%;
	padding-top: 55px;
}
.layout-module-list img{    
	width: 5%;
    height: 10%;
}
.module{
	display: flex;
}
.module-list{
	margin-bottom: 20px;
	background-color: #fff;
	width: 100%;
	padding: 25px 0;
	margin: 20px 10px;
	display: flex;
}
#one{
	animation: lefteaseinAnimate 1s ease 1;    /*调用已定义好的动画lefteaseinAnimate，全程运行时间1S，进入的速度曲线为ease，只播放一次*/
	-webkit-animation: lefteaseinAnimate 1s ease 1;
	-ms-animation: lefteaseinAnimate 1s ease 1;
	-o-animation: lefteaseinAnimate 1s ease 1;
	-moz-animation: lefteaseinAnimate 1s ease 1;
	
	/*规定动画的最后状态为结束状态*/
	animation-fill-mode:forwards;
	-webkit-animation-fill-mode: forwards;  
	  -o-animation-fill-mode: forwards; 
	  -ms-animation-fill-mode: forwards;   
	  -moz-animation-fill-mode: forwards; 
}
#two{
	animation: righteaseinAnimate 1s ease 1;    /*调用已定义好的动画righteaseinAnimate，全程运行时间1S，进入的速度曲线为ease，只播放一次*/
	-webkit-animation: righteaseinAnimate 1s ease 1;
	-moz-animation: righteaseinAnimate 1s ease 1;
	-ms-animation: righteaseinAnimate 1s ease 1;
	-o-animation: righteaseinAnimate 1s ease 1;
	
	/*规定动画的最后状态为结束状态*/
	animation-fill-mode:forwards;
	-webkit-animation-fill-mode: forwards;  
	  -o-animation-fill-mode: forwards; 
	  -ms-animation-fill-mode: forwards;   
	  -moz-animation-fill-mode: forwards; 
}
#three{
	animation: lefteaseinAnimate 1s ease 1;    /*调用已定义好的动画lefteaseinAnimate，全程运行时间1S，进入的速度曲线为ease，只播放一次*/
	-webkit-animation: lefteaseinAnimate 1s ease 1;
	-ms-animation: lefteaseinAnimate 1s ease 1;
	-o-animation: lefteaseinAnimate 1s ease 1;
	-moz-animation: lefteaseinAnimate 1s ease 1;
	
	/*规定动画的最后状态为结束状态*/
	animation-fill-mode:forwards;
	-webkit-animation-fill-mode: forwards;  
	  -o-animation-fill-mode: forwards; 
	  -ms-animation-fill-mode: forwards;   
	  -moz-animation-fill-mode: forwards; 
}
#four{
	animation: righteaseinAnimate 1s ease 1;    /*调用已定义好的动画righteaseinAnimate，全程运行时间1S，进入的速度曲线为ease，只播放一次*/
	-webkit-animation: righteaseinAnimate 1s ease 1;
	-moz-animation: righteaseinAnimate 1s ease 1;
	-ms-animation: righteaseinAnimate 1s ease 1;
	-o-animation: righteaseinAnimate 1s ease 1;
	
	/*规定动画的最后状态为结束状态*/
	animation-fill-mode:forwards;
	-webkit-animation-fill-mode: forwards;  
	  -o-animation-fill-mode: forwards; 
	  -ms-animation-fill-mode: forwards;   
	  -moz-animation-fill-mode: forwards; 
}
.module-title{
	width: 50%;
	display: grid;
}
.module-right{
	width: 50%;
}

}

@media screen and (min-width:960px) and (max-width:1200px) {
.layout {
	width: 75%;
	margin: 40px auto 0px;
}
.title {
	text-align: center;
	font-size: 1.2rem;
	letter-spacing: 2px;
	font-weight: 600;
}
.text {
	margin-top: 30px;
	line-height: 2;
	/* text-indent: 2rem; */
	text-align: center;
	font-size: 0.9rem;
}
.layout-module-img{
	display: flex;
}
.layout-module-left{
	width: 60%;
}
.layout-module-left img{
	/* width: 84%; */
}
.layout-module-right{
	width: 40%;
	padding-top: 55px;
}
.layout-module-list img{    
	width: 5%;
    height: 10%;
}
.module{
	display: flex;
}
.module-list{
	margin-bottom: 20px;
	background-color: #fff;
	width: 100%;
	padding: 25px 0;
	margin: 20px 10px;
}
.module-list{
	display: flex;
	margin-bottom: 20px;
}
.module-title{
	width: 50%;
	display: grid;
}
.module-right{
	width: 50%;
}

}

@media screen and (max-width:960px) {
.layout {
    width: 90%;
    margin: 20px auto 0px;
}
.title {
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 600;
}
.text {
    margin-top: 30px;
    line-height: 2;
    /* text-indent: 2rem; */
    text-align: center;
    font-size: 1rem;
}
.layout-module-img {
    display: block;
}
.layout-module-left {
    width: 100%;
}
.layout-module-left img {
    width: 100%;
}
.layout-module-right {
    width: 100%;
    padding-top: 35px;
}
.layout-module-list img {
    width: 7%;
    height: 10%;
}
.module {
    display: block;
	padding-top: 5px;
	padding-bottom: 5px;
}
.module-list {
    margin-bottom: 20px;
    background-color: #fff;
    width: 100%;
    padding: 25px 0;
    margin: 25px 0px;
}
.module-list {
    display: block;
    margin-bottom: 20px;
}
.module-title {
    width: 100%;
    display: grid;
}
.module-right {
    width: 100%;
}
}
body {
	padding: 0px;
	margin: 0px;
}

.entirety {
	width: 100%;
	margin: 0px;
}

.main-image {
	width: 100%;
	/* height: 28rem; */
}

.main-image img {
	width: 100%;
	height: 100%;
}






.module-title-title{
	float: left;
	color: #4197b2;
	font-size: 2.5rem;
	font-weight: bold;
	display: flex;
	align-items: center;
}

em{
	    font-style: normal;
	    font-size: 24px;
}

.module-text{
	   margin-top: 10px;
	   line-height: 33px;
	   text-align: initial !important;
	   font-size: 1.7rem;
}


.module-right img{
	width: 100%;
	height: 100%;
}

.images{
	margin-top: 30px;
	width: 100%;
}
.images img{
	width: 100%;
	height: 100%;
}