.charge-list table {
    width: 100%;
    border-collapse:separate;
    border-spacing: 5px 10px;
    margin-bottom: 25px;
}

.charge-list table {
    width: 100%;
    border-collapse:separate;
    border-spacing: 5px 10px;
    margin-bottom: 25px;
    
}

.charge-list table thead tr th{
    font-size: 14px;
    text-align: center;
    padding: 20px 0px;
    color: #fff;
    background-color: #287149;
}

.charge-list table tbody tr td{
    font-size: 14px;
    text-align: left;
    background-color: #fafafa;
    padding: 10px 30px;
    margin-bottom: 15px;
    position: relative;
    cursor: auto;
}

.charge-list table tbody tr td:nth-child(2){
    text-align: center;
}

.charge-list table tbody tr td::after{
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -3px;
    background-color: #287149;
}

.charge-list table tbody tr td:last-child::after{
    content: '';
    display: none;
}

.charge-list ul{
    display: none;
}

.charge-list ul li{
    position: relative;
    background-color: #fff;
    margin-bottom: 20px;
    list-style:none;
}

.charge-list ul li::before{
    content: '';
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #287149;
} 

.charge-list ul li .title{
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
} 

.charge-list ul li .title::before,.charge-list ul li .title::after{
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    background-color: #9dc89d;
    margin: auto;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
} 

.charge-list ul li .title::after{
    transform: rotate(270deg);
}

.charge-list ul li .title.active::after{
    transform: rotate(0deg);
}
.charge-list ul li .text{
    display: none;
    border-top: 5px solid #f2efef;
    padding: 15px 30px;
    position: relative;
}

.charge-list ul li .text::before{
    content: '';
    display: block;
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #287149;
}

.charge-list ul li p{
    font-size: 14px;
    line-height: 22px;
    margin: 0px;
	padding-left:10px;
}

@media (max-width:768px) {
    .charge-list table{
        display: none;
    }
    .charge-list ul{
        display: block;
    }
}