@charset "utf-8";
/* ============================================================
 * 檔案:origin_place.css
 * 用途:產地走訪列表(origin_place.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: 460px;
        background: url(/images/origin/banner.jpg) no-repeat center center;
    }    
    #banner_title{
        width: 300px;
        height: 100px;
        padding-top: 230px;
        color: #FFF;     
        text-align: center;     
        margin: 0 auto;      
    }
    #banner_txt1{
        font-family: "新細明體";
        font-size: 28px;
        font-weight: bold;
        letter-spacing: 2px;
        text-shadow: 2px 2px 3px #aaa
    }
    #banner_txt2{
        font-family: 'Rasa', serif;
        font-size: 24px;
        text-transform:uppercase;
        text-shadow: 2px 2px 3px #aaa
    }
    #title_txt{
        width: 390px;
        height: 160px;
        font-size: 14px;
        text-align: center;
        letter-spacing: 2px;
        margin: 0 auto;
        padding-top: 60px;
    }
    #list {
        margin: 0 auto;
        padding-bottom: 50px;
    }
    #list :after{
        content:".";
        height:0;
        visibility:hidden;
        display:block;
        clear:both;
    }
    #list ul {
        margin: 0 ;
        padding: 0 ;
        text-decoration: none;
    }
    #list ul li{
        width: 33.33%;
        overflow: hidden;
  
        padding: 15px;
        float: left;
        
    }
    .show_img{
        width: 100%;
        transform: scale(1);
        transition: all 1s ease;
    }
    .hover{  
        transform: scale(1.2);      
    }


   
    .list_info{
        width: 100%;
        position:absolute;
        z-index: 1000;
        color: #FFF;
        text-align: center;
        overflow: hidden;           
    }
    .list_title{
        width: 100%;
        height: 80px;       
    }
    .list_txt1{
        font-family: "新細明體";
        font-size: 28px;
        padding-bottom: 10px;
    }
    .list_txt3{
        padding-top:20px;
        font-size: 12px;
    }
    #list_more{
        width:100%;
        height: 200px;
    }
    #btn_more{
        width: 52px;
        height: 52px;
        margin: 0 auto;
    }    
    
    #footer{
        border-top: 1px solid #9FA0A0;
    }

/* mobile start */
@media screen and (min-width:1200px){
    #list{
        width: 1080px;
    }
}
@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){
    #title_txt{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    #banner{
        width: 100%;
        height: 135px;
        background: url(/images/origin/m_banner.jpg) no-repeat center center;
    }
    #banner_title{
        width:300px;
        height: 100px;
        padding-top: 50px;
        margin: 0 auto;
        text-align: center;
        color: #FFF;
        text-shadow: 2px 2px 3px #aaa;
    }
    #banner_txt1{
        font-family: "微軟正黑體";
        font-size: 24px;
        font-weight: bold;
    }
    #banner_txt2{
        font-family: 'Rasa', serif;
        font-size: 20px;
    }
}
@media screen and (max-width:992px) and (min-width:576px){
    #list{
        padding: 5px;
    }
    #list ul li{
        width: calc(50%);
        padding: 5px;
        float: left;
    }
    .list_info{
          
    }
    .list_txt1{
        color: #fff;
    }
}
@media screen and (max-width:576px){
#list{
        padding: 5px;
    }
    #list ul li{
        width: calc(100%);
        padding: 5px;
        float: none;
    }
    .list_info{
          
    }
    .list_txt1{
        color: #fff;
    }
}

