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

/* CSS Document */
    #banner{
        width: 100%;
        height: 300px;
    }
    #banner_title{
        width:200px;
        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-family: 'Noto Sans TC', sans-serif;
        font-size: 16px;
        color:#9FA0A0;
        letter-spacing: 6px;
    }
    #faq_list{
        background: #F5F2EA;
        padding-top: 50px;
        padding-bottom: 100px;
    }
    #faq_list:after{
        content:".";
        height:0;
        visibility:hidden;
        display:block;
        clear:both;
    }
    #faq_list ul{
        padding: 0px;
        margin: 0px;
        width: 810px;
        margin: 0 auto;
    }
    #faq_list ul li{
        width:250px;
        height: 175px;
        border: 1px solid #B7A99A;
        margin: 10px;
        float: left;
        transition: all .2s ease;
        cursor: pointer;
    }
    #faq_list ul li:hover{
        background: #7E5E4C;
        color:#FFFFFF;
    }
    .faq_title{
        width: 100%;
        height: 60px;
        font-size: 19px;
        font-weight: bold;
        text-align: center;
        padding-top: 30px;
    }
    .faq_icon{
        width: 100%;
        height: 50px;
        padding-top: 30px;
        text-align: center;
    }

/* mobile start */
@media screen and (min-width:1200px){

}
@media screen and (max-width:1200px) and (min-width:992px){
    
}
@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_list{
        width:100%;
    }
    #faq_list ul{
        width: 100%;
        padding:5%;
    }
    #faq_list ul li{
        height: 130px;
        width:43%;
        padding: 2%;
       
    }
    .faq_title{
        width: 100%;
        height: 30px;
        font-size: 19px;
        font-weight: bold;
        text-align: center;
        padding-top: 10px;
    }
    .faq_icon{
        width: 100%;
        height: 50px;
        padding-top: 30px;
        text-align: center;
    }
}
