body{
    background-color: #fbe5ab;
}
.content{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
}
.img-responsive{
    width:100%
}
h1{
    color: #9b0004;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.list{
    color: #9b0004;
}
.list .list-item{
    text-align: left;
    line-height: 1.5;
}
.list .list-item .title{
    position: relative;
}
.list .list-item .title h5{
    font-size: 14px;
    font-weight: bold;
}
.list .list-item .title::after {
    content: " ";
    width: 10px;
    height: 10px;
    border-top: 2px solid #9b0004;
    border-right: 2px solid #9b0004;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    right: 0;
    top: 2%;
    transition: all .3s;
}
.list .list-item .body{
    max-height: 0px;
    overflow: hidden;
}
.list .list-item .body li{
    list-style: none;
    font-size: 12px;
    line-height: 1.8;
}
.list .list-item.active  .title::after {
    transform: rotate(135deg);
}
.list .list-item.active  .body {
    max-height: 1800px;
    padding-bottom: 20px;
    transition: max-height .5s;
}
.footer{
    padding:50px 0;
    text-align: center;
}