/*자주하는질문*/
.sub_banner {
    width: 100%;
    height: 300px;
    background: url('/images/sub_banner_community.png');
    position: relative;
}

.sub_banner_inner {
    width: 1280px;
    margin: 0 auto;
}

.sub_banner_title {
    position: absolute;
    top: 120px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
}

/*경로*/
.sub_route {
    position: absolute;
    top: 176px;
    overflow: hidden;
}

.sub_route_home {
    float: left;
    margin-top: 4px;
}

.sub_route_arrow {
    float: left;
    margin: 0 12px;
    margin-top: 4px;
}

.sub_route_txt {
    float: left;
    color: #FFF;
    font-size: 0.9rem;
    font-weight: 400;
}

/*서브콘텐츠*/
.sub_contents {
    display: block;
    width: 1280px;
    margin: 0 auto;
    margin-top: 70px;
    margin-bottom: 200px;
}

/*자주하는질문_리스트*/
.question_box {
    margin-top: 70px;
    border-top: 1px solid #888888;
}

.question {
    overflow: hidden;
    padding: 13px 0;
    border-bottom: 1px solid rgba(136, 136, 136, 0.53);
}

.question_q {
    float: left;
    color: #080C52;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 15px;
}

.question_title {
    width: calc(100% - 100px);
    float: left;
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break:break-all;
    overflow: hidden;
}

.question_arrow {
    float: right;
    margin-top: 5px;
    margin-right: 15px;
}

.answer {
    overflow: hidden;
    padding: 13px 0;
    border-bottom: 1px solid rgba(136, 136, 136, 0.53);
    background: #F5F5F5;
}

.answer_a {
    float: left;
    color: #00A5BD;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 15px;
}

.answer_txt {
    width: calc(100% - 100px);
    float: left;
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 28px;
}

/*반응형_쿼리*/
@media screen and (max-width:1280px) {
    .sub_banner_inner {
        width: calc(100% - 40px);
    }

    .sub_contents {
        width: calc(100% - 40px);
    }
}

@media screen and (max-width:768px) {
    .sub_contents {
        position: relative;
        padding-top: 71px;
        margin-top: 50px;
    }
}

@media screen and (max-width:890px) {
	.question_list .question .question_q,
	.question_list .question .question_title,
	.question_list .answer .answer_a,
	.question_list .answer .answer_txt
	{font-size: 16px;}
}
@media screen and (max-width:490px) {
	.question_list .question .question_q,
	.question_list .question .question_title,
	.question_list .answer .answer_a,
	.question_list .answer .answer_txt
	{font-size: 13px;}
}
@media screen and (max-width:600px) {
    .sub_banner {
        height: 200px;
    }

    .sub_banner_title {
        top: 60px;
    }

    .sub_route {
        top: 116px;
    }
}