﻿/* 头部样式 */
.header-container{
    width: 100%;
    /* height: 200px;
    background-color: rgba(0, 204, 204, .4); */
    background-color: rgba(6, 64, 137, .8);
    position: absolute;
    z-index: 100;
}
.header-wrapper{
    width: 1200px;
    height: 100%;
    margin: 0px auto;
    padding: 5px 0px;
    display: flex;
}

/* 导航栏下边内容区样式 */
.wrapper-container {
  width: 80%;
  min-width: 1200px;
  min-height: 600px;
  padding-bottom: 30px;
  margin: 0px auto;
}
.wrapper-container .wrapper{
    margin: 20px 0px;
}
.wrapper-container .wrapper .wrapper-content{
    padding-left: 220px;
}

/* 左部导航栏样式 */
.routerCon-container{
    float: left;
    width: 180px;
    min-height: 300px;
    font-size: 18px;
    overflow: hidden;
}
.routerCon-container::after{
    content: '';
    display: block;
    height: 0;
    clear: both;
}
.routerCon-container .title{
    height: 60px;
    line-height: 60px;
    font-size: 21px;
    /* background-color: #90000A; */
    background-color: #064089;
    color: #fff;
}
.meun li:not(:last-child)::after{
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background-color: #ccc;
    bottom: 0;
    left: 10%;
}
/* .meun li:first-child{
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    background-color: aquamarine;
    color: #fff;
} */

.meun li{
    width: 100%;
    height: 50px;
    line-height: 50px;
    position: relative;
    cursor: pointer;
    transition: all .2s;
}
.meun li.selected{
    color: #064089;
    font-weight: 700;
}
.routerCon-container .meun{
    width: 100%;
    border: 1px solid #eee;
}

/* 右边内容区头部展示 */
.wrapper-header{
        /* height: 80px; */
    border-bottom: 1px solid #ccc;
}
.header-content{
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
}
.header-content span{
    font-size: 18px;
    font-weight: 600;
}

/*  */
.box{
    width: 100%;
}
.box div a{
    min-width: 150px;
    height: 20px;
    line-height: 20px;
    padding: 10px 20px;
	color: #064089;
	border: 1px solid #064089;
	font-size: 17px;
	letter-spacing: 1px;
	transition: all .2s;
}
.box .box-container{
    width: 100%;
    padding-top: 20px;
    display: flex;
    justify-content: flex-start;
	flex-wrap: wrap;
}
.box-container a{
	min-width: 150px;
    height: 20px;
    line-height: 20px;
    padding: 10px 20px;
	color: #064089;
	border: 1px solid #064089;
	font-size: 17px;
    margin-right: 30px;
	margin-bottom: 20px;
	letter-spacing: 1px;
	transition: all .2s;
}
.box-container a:hover{
	background-color: #064089;
	color: #fff;
	font-weight: 600;
}