﻿/* p标签样式 */
p{
  position: relative;
  padding-left: 14px;
}
p::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  /* background: #8f0009; */
  background-color: #064089;
}
/* 头部样式 */
.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-container{
    width: 100%;
}
.box-container ul{
    list-style: none;
    width: 100%;
    padding: 10px 20px;
}
.box-container h2{
    margin-bottom: 20px;
}
.box-container ul li{
    width: 100%;
    height: 65px;
    font-size: 18px;
    padding: 10px 0px;
    border-bottom: 1px solid #ddd;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    align-items: center;
}
.box-container ul li p{
    width: 700px;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: all .2s;
}
.box-container ul li p:hover{
    cursor: pointer;
    color:#064089;
}
.box-container ul li span{
    /* display: block;
    padding-left: 12px;
    font-size: 13px;
    text-align: left; */
    color: #999;  
}