

.faq-area {
    padding: 110px 0px 140px;
	background-color:#ebebec;
}

.faq-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    color: #333;
    position: relative;
    padding-bottom: 20px;
}

.faq-title:before {
    width: 60px;
    height: 4px;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    background: #006ab7;
}

.faq-list {
    width: 81.25%;
    margin: 60px auto 0px;
    padding: 20px;
}

.faq-list li {
    margin-bottom: 20px;
}

.faq-list .t1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #ffffff70;
    cursor: pointer;
    
}

.faq-list .t1 span:nth-child(1){
    font-size: 20px;
    color: #006ab7;
}

.faq-list .t2 {
    display: none;
    margin-top: 20px;
    padding: 20px 40px;
    line-height: 30px;
    background-color: #ffffff70;
    font-size: 16px;
    color: #666;
}

.faq-list .t2 ul{
    list-style: decimal;
}

.faq-list .down {
    width: 20px;
    height: 20px;
    background: url(../images/down.png) no-repeat;
    background-size: cover;
    cursor: pointer;
}

.faq-list .up {
    transform: rotate(180deg);
}

.faq-more {
    width: 230px;
    margin: 50px auto 0px;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    background: #006ab7;
    text-align: center;
}

.faq-more a {
    font-size: 16px;
    color: #fff;
}

.faq-more:hover {
    transform: translateY(3px);
}


@media (max-width:991.98px) {
    .faq-title {
        font-size: 24px;
    }

    .faq-list {
        width: 100%;
        padding: 0 20px;
    }

    .faq-list .t1 span:nth-child(1){
        width: 85%;
        font-size: 16px;
    }

    .faq-more {
        width: 150px;
        margin: 30px auto 0px;
        height: 40px;
        line-height: 40px;
    }
}
