 

/* 清除默认边距 */
*{
    margin: 0;
    padding: 0;
}

/* 整个网页添加背景图片 也可以设置颜色*/
body {
	background-color: rgb(242, 230, 209);
	position: relative;
	   height: auto;
	   min-height: 100%;
   }
  
   .box {  width:100%;
	  margin:0 auto;
  
   }
  
   .box>.box-in {
   
	   margin:0 auto;
	   
  width:100%;
  min-width:1280px;
   }
  

 /*header设置一个外边距 留出页面最上面的距离 */
.header{  
	background-color: grey;
    width: 1920px;
    height: 660px;
    background-image: url(../img/bg_guo.JPG);
    background-size: contain;
    background-repeat: no-repeat;}
 
 
/* 版心部分 */
.container {  
	width: 100%;height: 1400px;    
	/*居中*/ 
	/*background-color: rgb(242, 230, 209);*/
   
	 
	/*居中*/ }
 
    
/* 正文 */
.container>.now_location {  
 
	/*background-color: rgb(242, 230, 209);*/
    width: 80%;height: 100px;  

	 }
 
.container>.content {  
 
	/*background-color: rgb(242, 230, 209);*/
    width: 80%;height: 1200px; margin: 0 auto; 
	margin-top: 60px;
	 }


	 
	 
	/*居中*/ 
	.container>.content> h1{ 
	text-align: center;
 
	font: 32px;
	font-weight: 400;
}
.container>.content> h3{ text-align: center;
 
	font: 22px;
	font-weight: 400;
}
.container>.content>.date_author{ margin:0 auto;
	width: 60%;  /*跟下面content*/
	margin-top: 50px;
	text-align: center;
	font: 32px;
	font-weight: 400; border-bottom :1px solid;
}  
  
.container>.content>.pdf-block {  
	width:80%;margin:0 auto; 
	margin-top: 60px;  margin-bottom: 50px;
 
}


/*底部*/


.footer { background: url("../img/red_footer.png") ;
	width: 100%;
	height: 520px;  
	padding: 60px 90px;
	box-sizing: border-box;
	justify-content: space-between;
	
}
.footer> img{
	width: 100%;
	height: 280px;
}
.footer>p {
	text-align: center;
	margin-top: 15px;
}

.footer>.footer_top { 
	width: 100%;
	height: 200px; 
	color: rgb(196, 89, 2);
	padding: 30px 90px;
	box-sizing: border-box;
	display: flex;
}


.footer_top>.left {margin-left:120px;
	 
	height: 100%;
	;
	width: 60%;
	/* 左右的占比*/
	/* background-color: #307885; */

}

.footer_top>.right {
	height: 100%;
	width: 40%;
	/* 左右的占比*/
	/* background-color: #e916e9; */
}

.footer_top>.left>.left_word {
	width: 50%;
	height: 100%;
	float: left;
}


.footer_top>.left>.left_word {
	width: 50%;
	height: 100%;
	float: left;
}


/* p的字体要专门写一个来设置 img同理*/
.footer_top>.left>.left_word p {
	font-size: 17px;
	line-height: 25px;
}


.footer_top>.rightPic {
	width: 50%;
	height: 100%;
	float: right;
	/* background-color: #cf060a; */
}

.footer_top>.rightPic>div{
	float: left;
	width: 101px;
}

.footer_top>.rightPic>div>p{
	 text-align: center;
}

.footer_top>.rightPic img {
	float: left;
	/* 为什么margin-right不生效呢*/
}

.footer_top>.rightPic>img:nth-child(2){
	padding-top: 30px;
	margin-left: 20px;
}
.footer_top>.rightPic>img:nth-child(3){
	 padding-top: 20px;
	margin-left: 20px;
}

