@charset "utf-8";
/* ============================================================
 * 檔案:faq_detail.css
 * 用途:常見問題內頁(faq_detail.php)
 * ------------------------------------------------------------
 * 【常見小修改速查】
 *   字體大小  → 搜尋  font-size      (例 font-size: 16px;)
 *   字型      → 搜尋  font-family    (全站預設字型設定在 public.css)
 *   文字顏色  → 搜尋  color
 *   背景顏色  → 搜尋  background  或  background-color
 *   外距(元素之間) → 搜尋  margin
 *   內距(框內留白) → 搜尋  padding
 *   粗體      → font-weight: bold;   置中 → text-align: center;
 * ============================================================ */

    #banner{
        width: 100%;
        height: 300px;
    }
    #banner_title{
        width:300px;
        height: 100px;
        text-align: center;
        margin: 0 auto;
        letter-spacing: 2px;
        padding-top: 100px;
    }
    #banner_txt1{
        font-size: 28px;
        font-family: "新細明體";
        font-weight: bold;        
    }
    #banner_txt2{      
        font-size: 16px;
        color:#9FA0A0;
        letter-spacing: 6px;
    }
    #faq_list{
        width:100%;
        background: #F5F2EA;
        padding-top: 50px;
        padding-bottom: 100px;
    }
    #faq_content_title{
        width: 100%;
        height: 60px;
        color:#7E5E4C;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }
    #btn_back{
        width:350px;
        height: 60px;
        line-height: 60px;
        font-size: 18px;
        font-weight: bolder;
        background: #7E5E4C;
        display: block;
        margin: 0 auto;
        text-align: center;
        margin-top: 50px;
        color:#FFF;
        transition: all 0.2s ease;
    }
    #btn_back:hover{
        border-radius: 30px;
        overflow: hidden;
    }
    a:hover{
        text-decoration: none;
    }
    .faq_content{
        font-weight: bolder;      
    }

/* mobile start */
@media screen and (min-width:1200px){
    .faq_content{
        width: 1120px;
        margin: 0 auto;
        padding: 50px 200px 50px 200px;
        background: #FFF;
    }
    #web_title{
        width: 950px;
        margin: 0 auto;
        margin-top: 160px;
        font-size: 14px;
    }
}
@media screen and (max-width:1200px) and (min-width:992px){
    .faq_content{
        width: 90%;
        margin: 0 auto;
        padding: 50px 100px 50px 100px;
        background: #FFF;

    }
     #web_title{
        width: 100%;
        height: 30px;
        padding-left: 10%;
        margin-top: 160px;
        font-size: 14px;
        font-family: 'Noto Sans TC', sans-serif;
    }
}
@media screen and (min-width:992px){
    article{
        width: calc(100% - 150px);
        margin-left: 150px;            
    }
       
}
@media screen and (max-width:992px){
    #banner{
        height: 150px;
    }
    #banner_title{
        padding-top: 40px;
    }
    #web_title{
        display: none;
    }
    .faq_content{
        width: 100%;
        padding: 20px;
        background: none;
    }
    #btn_back{
        width:90%;
    }
}

