@charset "utf-8";

/* **** Banner **** */
.banner {
    background: url(img/banners/faqBannerBg.jpg) center center/auto 100% no-repeat;
    background-size: auto;
}
/* **** 购票常见问题 **** */
.faqBox {
    width: 1190px;
    margin: 40px auto 90px;
}
.faqCategory {
    width: 200px;
    float: left;
    border: 1px #e8e8e8 solid;
}
.faqCategoryItem {
    text-align: center;
}
.faqCategoryItem:not(:nth-last-child(1)) {
    border-bottom: 1px #e8e8e8 solid;
}
.faqCategoryItemTitle {
    font-size: 14px;
    line-height: 50px;
    position: relative;
    cursor: pointer;
}
.faqCategoryItemTitle::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 20px;
    width: 9px;
    height: 9px;
    border-right: 1px #969696 solid;
    border-bottom: 1px #969696 solid;
    transition: .5s;
    transform-origin: 75% 75%;
    transform: rotate(45deg);
    z-index: 10;
}

.faqCategoryItem.active .faqCategoryItemTitle {
    background-color: #f5f5f5;
}
.faqCategoryItem.active .faqCategoryItemTitle::before {
    transform: rotate(225deg);
}
.faqMenuList {
    padding: 7px 0;
    display: none;
}
.faqMenuItem {
    padding: 0 16px;
    font-size: 14px;
    line-height: 38px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}
.faqMenuItem.active {
    color: #c30d23;
}
.faqContainer {
    box-sizing: border-box;
    width: 950px;
    float: right;
    padding: 12px 55px 30px;
    border: 1px #e8e8e8 solid;
}
.faqBack {
    display: none;
    font-style: normal;
}
.faqHead {
    font-size: 18px;
    line-height: 30px;
    font-weight: normal;
    padding-bottom: 12px;
    border-bottom: 1px #e8e8e8 solid;
}
.faqList {
    margin-top: 17px;
}
.faqItem {
    min-height: 320px;
    display: none;
}
.faqItemDesc {
    font-size: 14px;
    line-height: 28px;
}
.faqItemLink {
    display: inline-block;
    color: #c30d23;
}
.faqMTip {
    display: none;
}

@media screen and (max-width: 750px) {
    /* **** 购票常见问题 **** */
    .faqBox {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        width: 90%;
        margin: .8rem auto 1rem;
        -webkit-transition-property: -webkit-transform;
        transition-property: transform;
        align-items: start;
        -webkit-transition: -webkit-transform .5s;
        transition: transform .5s;
        overflow: hidden;
    }
    .fqaMove {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        overflow: visible;
    }
    .faqCategory {
        box-sizing: border-box;
        width: 100%;
        float: none;
        margin: 0 auto;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
    }
    .fqaMove .faqCategory {
        opacity: 0;
    }
    .faqCategoryItem {
        text-align: left;
    }
    .faqCategoryItemTitle {
        font-size: 0.28rem;
        line-height: 0.9rem;
        padding: 0 0.6rem;
        font-weight: normal;
    }
    .faqMenuList {
        padding: 0.2rem 0;
    }
    .faqMenuItem {
        padding: 0 0.6rem;
        font-size: 0.28rem;
        line-height: 0.6rem;
    }
    .faqContainer {
        width: 100%;
        margin: 0 auto;
        padding: 0.4rem 0.6rem;
        float: none;
        border: none;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
    }
    .faqBack {
        display: block;
        margin-bottom: 0.6rem;
        font-size: 0.28rem;
        line-height: 0.5rem;
        color: #c30d23;
    }
    .faqHead {
        font-size: 0.32rem;
        line-height: 0.5rem;
        padding-bottom: 0.1rem;
    }
    .faqList {
        margin-top: .3rem;
    }
    .faqItem {
        min-height: 1rem;
    }
    .faqItemDesc {
        font-size: 0.28rem;
        line-height: 0.5rem;
    }
    .faqMTip {
        display: inline-block;
    }
}