.container .header div{
    width: 100vw;    
    /* background: yellow;     */
}
.container .header .header-info{
    width: 100%;
    overflow: hidden;
}
.container .header .title{
    text-align: center;
    line-height: 55px;    
    letter-spacing: -1px;
    font-size: 18px;
    font-weight: 700;
    border-bottom: rgb(0, 0, 0) 1px solid; 
    background: rgb(10, 10, 10);
}

.container .header .search{
    /* background: rgb(36, 189, 16); */
    padding:20px 10px;
    font-size: 14px;
    font-weight: 700;
    color: royalblue;
    border-top: rgb(25, 25, 25) 1px solid;
}

.container .header .header-info .accordion {
    position:absolute;
    top:110px;
    left:50%;
    transform:translateX(-50%);
    width:98%;
}
.container .header .header-info .accordion .notice-tit {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    color:rgb(145, 145, 145);
    /* background: rgb(153, 6, 141); */
}
.container .header .header-info .accordion .notice-date {
    padding: 0 15px;    
}
.container .header .header-info .accordion span {
    display: inline-block;
    font-size: 11px;
    color:rgb(145, 145, 145);
}
input[id*="answer"] {
    display:none;
}
input[id*="answer"] + label {
    display:block;
    padding:15px;
    border-top:1px solid rgb(45, 45, 45);
    cursor:pointer;
    position:relative;
    width:100%;
}
input[id*="answer"] + label:nth-child(even) {
    border-bottom:1px solid rgb(0, 0, 0);
    color:#fff;
    font-weight:300;
    background:rgb(30, 30, 30);
}
input[id*="answer"] + label em {
    position:absolute;
    top:50%;
    right:10px;
    width:30px;
    height:30px;
    margin-top:-15px;
    display:inline-block;
    background:url('../img/arrow.png') 0 0 no-repeat;
}
input[id*="answer"] + label + div {
    max-height:0;
    transition: all .35s;
    overflow:hidden;
    background :rgb(30, 30, 30);
    font-size:14px;
    width:98%;
}
input[id*="answer"] + label + div p {
    display:inline-block;
    padding:20px;
}
input[id*="answer"]:checked + label + div {
    max-height:150px;
    overflow:auto;
    width:100%;
}
input[id*="answer"]:checked + label em {
    background-position:0 -30px;
}
.container .foot div{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    /* background: chartreuse; */
}
.container .foot div span{
    display: inline-block; 
    width: 95%;
    font-weight: 700;
    text-align: center;
    padding: 15px 10px;
    border-radius: 5px;
    background: rgb(26, 26, 26);
    color: rgb(121, 121, 121);
}