/* 清除默认边距 */
*{
    margin: 0;
    padding: 0;
}

/* 整个网页添加背景图片 也可以设置颜色*/
body{
background: rgb(250, 219, 191);
position:relative;
height:auto;
min-height:100%;
}
 
.box{width:100%}

.box>.box-in{
   width:1200px;
   position: relative;
   margin:0 auto 
}


 /*header设置一个外边距 留出页面最上面的距离 */
.header{
    /* height: 900px;   这里设置高度会导致下面的div跟上一个div之间有一段空隙*/
     /*margin-top: 15px;*/}

 


/* logo部分样式 */
.logo{
    width:100%;
    height: 120px;
    background-color: #cf060a;
}


/* 导航条样式 */

.nav{
   width: 100%;
   height: 120px;
   background-color:#e92c2f;
   margin:0 auto; 
}


/* 清除a标签的样式 否则默认是蓝色的会很丑*/

a{
    text-decoration: none;
    color: #101111ce;
}
    


/* 导航条部分 */


.nav>ul{
    margin-left: 310px;  /* 这块想要居中的 但未生效 */
    height: 90px;
}


.nav>ul>li{

    height: 70px;
    padding: 0 15px;
    /* background-color: #e46f71; */
    float: left;
    list-style:  none; /* 否则会有那个小圆点*/
 
}



.nav>ul>li>a{
    font-size: 25px;
    color: white;
    line-height: 70px; /* 等于导航条高度*/

}
/* logo图片设置 */
.header>img{
    width:320px;
    height:60px;
    float: left;
    margin-left: 35px; /* 外边距设置*/
}

/* logo 依法治校 专题网标签设置 */
.logo>p{
font-size: 56px;
margin-left: 600px; 
color:white;  
font-family: "华文行楷";
}
/* 设置导航条下方图片区域格式 先设置大的div 再设置img格式 */

.header>.pic{
    width: 100%;
    height: 80px;
    background-color: #291212;
} 



.header>.pic>img{
    width: 100%; 
    height: 90px;
}

 
/* 版心container部分 */
.container {
	width: 75%;
	/*占屏幕多少*/
	height: 700px;
	/*temp 后期扩充内容以后就还要变高一点*/
  
	/*往下挪一点（相对导航条那个div*/
	margin: 50px auto;
	/*居中*/ 
	
}


/* top1 start */

 
.container>.top1> {
   /*高度记得跟它的上一级div一样*/
   width: 80%;
   height: 100%;   
}
 

 /* top1;  */
 .top1>.theme1 {
	width: 100%; 
	/*100%即横向填充，如果在height那里写100%就是竖向填充*/
	height: 35px;
	/*background-color: #f1dc19;设置完这一行就可以把颜色去掉了*/
	border-bottom: 2px solid rgb(3, 26, 128);
	/*  边框 */
	line-height: 35px;
	/*  行高 */
}
 
.top1>.theme1>.theme1_left {
	font-size: larger;
	font-weight: 800;
	box-sizing: border-box;
	padding-bottom: 8px;
	/* border-bottom: 3px solid rgb(40, 6, 235); 边框 */

}
 
.top1>.theme1>.theme1_right {
	font-size: small;
	font-style: italic;
	/* 斜体*/
	box-sizing: border-box;
	padding-bottom: 8px;
	float: right;
}
 
 
.top1>.theme1>.theme1_right:hover a {
   /* 光标移过去会变色 记得在大括号前加上标签名 a！！*/
   color: #aad4e7
}


.top1>ul {
	
   width: 100%;
   height: auto; 
   margin-top: 5px;
   margin-left: 0;
   list-style: none;
   /* 去掉li格式自带的原点*/
   padding: 0 15px;
   box-sizing: border-box;
   overflow: hidden;
   /*设置以后 在下面的list调上距的时候不会一起变*/
}

.top1>ul>li:nth-of-type(1) {
   /*第一个li距离顶端的距离*/
   margin-top: 8px;
}

.top1>ul>li { 
  margin-left: 1px;
   font-size: 15px;
   color: rgba(71, 68, 68, 0.932);
   line-height: 32px;
   /*  background-color: rgb(245, 241, 25);*/
   padding-left:2px;
   /* 空出左边位置*/
   /* background: url(../img/circle.png) no-repeat 0px 8px;*/
}

.top1>ul>li>a {
   
   margin-left: 0;
   display: block;
   width: 80%;   /* 这里的宽设小一点 不然会移行*/
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.top1>ul>li>.time {
   float: right;
}


.top1>ul>li>a:hover {
   /* 光标移过去会加上下划线 变色*/
   text-decoration: underline;
   color: #aad4e7;
}






/*底部*/


.footer{
    width: 100%;
    height: 280px;
    background-color: #eb6112;
    color: white;
    padding: 30px 90px;
    box-sizing: border-box;
    justify-content:space-between; 
    position:absoluted;
bottom:0;
}

.footer>.footer_top{
    width: 100%;
    height: 200px;
    background-color: #f19a67;
    color: white;
    padding: 30px 90px;
    box-sizing: border-box;
    display: flex;
}


.footer_top>.left{
    height: 100%;;
    width: 70%;   /* 左右的占比*/
    /* background-color: #307885; */
   
}

.footer_top>.right{
    height: 100%;;
    width: 30% ;  /* 左右的占比*/
    /* 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: 18px;
        line-height: 25px;
        }
    

    .footer_top>.rightPic{
        width:50%;
        height: 100%;
        float:right;
        /* background-color: #cf060a; */
        }

        .footer_top>.rightPic img{
           margin-top: 15px;
           margin-left: 145px;
        /* 为什么margin-right不生效呢*/    
            }

