body a {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}
input[type="button"] {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}
h1, h2, h3, h4, h5, h6 {
  padding: 0 0;
  margin: 0 0;
}
p {
  margin: 0;
  padding: 0;
}
ul {
  padding: 0 0;
  margin: 0 0;
  list-style: none;
}
a {
  color: #333;
}
a:link {
  color: #333;
}
a:visited {
  color: #333;
}
a:hover {
  color: #ea5420;
}
a:active {
  color: #333;
}
html {
  font-size: 0.825em;
}
body {
  padding: 0 0;
  margin: 0 0;
  font-family: "微軟正黑體", "Helvetica Neue", Helvetica, Arial, "PingFang TC", "Heiti TC", "思源黑體", "Microsoft JhengHei", "Noto Sans T Chinese", "Droid Sans Fallback", sans-serif;
  font-size: 1.1em;
  color: #494949;
}
:focus {
  outline: 2px solid #26ad89 !important;
  background: #ffa600 !important;
  -moz-outline-style: 2px solid #26ad89 !important;
}
h1 {
  display: none;
  padding: 0;
  margin: 0;
}

/*==== 搜尋欄位 ====*/
.handle_search{
  padding: 0 1rem;
  margin: 0 0 2rem 0;
  text-align: right;
}
.handle_search .box_search{
  display: flex;
    flex-direction: row;
    justify-content: flex-end;

}
.handle_search .box_search select{
    border: 1px solid #00000033;
    padding: .8rem 1rem;
    border-radius: 3px;
    background: #fff;
    margin: 0 .5rem 0 0;
    font-size: 1.2rem;
    color: #000000db;
    min-width: 200px;
}

.handle_search .box_search select option{
  background: #fff;
}

.handle_search .box_search button{
    background: #798b69;
    color: #fff;
    padding: .8rem 1rem;
    border: none;
    margin: 0;
    border-radius: 2px;
    font-size: 1.2rem;

}
.handle_search .box_search select:focus, 
.handle_search .box_search select option:focus{
  background: #fff !important;
  border: 1px solid #00000033;
}

/*==== 最外框 ====*/
#app {
display: flex;
    justify-content: flex-start;
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}

.art-detail{}

.box {
  flex: 0 0 25%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0.5rem 0.8rem 3rem 0.8rem;
}
/*區塊連結*/
.box a.list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #535353;
  text-decoration: none;
  border: 1px solid #cccccc40;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomright: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
.box a:hover {
  color: #967249;
}
/*== 圖片 ==*/
.imgBox {
width: 100%;
    height: auto;
    max-height: 180px;
    overflow: hidden;
}
.imgBox img {
  width: 100%;
  height: 100%;
  transition: all 0.6s linear;
}
/*== 文字敘述區域 ==*/
.textfield {
  background: #fff;
  padding: 1rem;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomright: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
/*標題*/
.title {
  margin: 0 0 1rem 0;
  font-size: 1.58rem;
  min-height: 85px;
  border-bottom: 1px solid #c2ae9d52;
  padding: 0 0 0.5rem 0;
}
/*內容敘述擷取3段*/
.detail {
  text-align: justify;
  width: 100%;
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
/*詳細按鈕*/
.source {
  padding: 6px 20px;
  border-radius: 35px;
  margin: 20px;
  display: block;
  background: #ae927a;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}
/*鼠标hover效果*/
.box > a::after {
  content: '';
  width: 280px;
  position: absolute;
  background: #75b97d;
  bottom: 0;
  height: 0px;
  transition: height 0.3s linear;
  /*利用伪类高度，实现动画效果*/
}
.box > a:hover::after {
  height: 10px;
}
.box:hover img {
  transform: scale(1.15);
}
.box:hover .source {
  background: #75b97d;
  border-color: #75b97d;
  color: #ffffff;
}
/*====== 頁碼 ======*/
.web_paging{
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
  text-align: center;
}
.pagination{
width: auto;
    display: inline-block;
    font-size: 1.4rem;
    letter-spacing: 1px;
}
.pagination table{
  width: 100%!important;
}
.pagination table span{
  display: inline-block;
  margin: 0 2px;
  color: #75b97d;
}
.pagination table input{
    margin: 0 .6rem;
    border-radius: 3px;
    font-size: 1.26rem;
}
.pagination table input.page{
  text-align: center;
  padding: 5px 10px;
  border: 1px solid #967249;
  background: #fff;
}
.pagination table input.button{
background: #967249;
border: 1px solid #967249;
color: #fff;
  padding: 3px 20px;
}
.pagination table input.button:hover{
  background: #75b97d;
  border: 1px solid #75b97d;
}
.pagination table a{
 text-decoration: none;
}

/*========= 內頁內容 ==========*/
.wantam_tm_section {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
}

.wantam_tm_about {
    width: 100%;
    margin-bottom: 8rem;
}


.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    padding: 0px 40px;
    position: relative;
    clear: both;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wantam_tm_about .about_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    display: flex;
    align-items: flex-start;
    padding: 2rem 0 0 0;
}

/*==== 主標題 ====*/
.wantam_tm_about .nametit{
display: block;
    width: 100%;
    font-size: 2.16rem;
    font-weight: 600;
    text-align: center;
    color: #434343;
    position: relative;
    margin: 0 0 1rem 0;
}
.wantam_tm_about .nametit::after {
content: "";
    position: absolute;
    display: inline-block;
    width: 500px;
    height: 18px;
    background: #f3e9e1;
    left: 50%;
    bottom: -2px;
    margin-left: -255px;
}
.wantam_tm_about .nametit span{
  position: relative;
  z-index: 1;
}


/*==== 圖片 ====*/
.wantam_tm_about .about_inner .leftpart {
    width: 58%;
    height: auto;
}

.wantam_tm_about .about_inner .leftpart .author_image {
    position: relative;
    background: #fff;
}

.wantam_tm_about .about_inner .leftpart .author_image img {
min-width: 100%;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ffffff73;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.wantam_tm_about .about_inner .leftpart .author_image .shape {
position: absolute;
    width: 400px;
    height: 250px;
    background-color: #94b097;
    bottom: -30px;
    left: -30px;
    z-index: -1;
}
/*==== 內容 ====*/
.wantam_tm_about .about_inner .rightpart {
    width: 42%;
    padding-left: 5%;

}

/*標題*/
.wantam_tm_about .about_inner .rightpart .about_title{
  overflow: hidden;
  margin: 0 0 1rem 0;
}
.wantam_tm_about .about_inner .rightpart .about_title .ores {
font-size: 1.8rem;
    font-weight: 700;
    color: #434343;
    position: relative;
    padding: 0 0 .5rem 1.5rem;
}
.wantam_tm_about .about_inner .rightpart .about_title .ores span{
  display: inline-block;
  text-indent: -9999px;
}
.wantam_tm_about .about_inner .rightpart .about_title .ores::after{
position: absolute;
    content: "";
    width: 14px;
    height: 16px;
    display: block;
    left: 0;
    top: 9px;
    background: #967249;
}

/*受理時間*/
.wantam_tm_about .about_inner .rightpart .timeword{
overflow: hidden;
    margin: -1rem 0 1.5rem 0;
   padding:0;
    /*background: #c071712b;*/

}
.wantam_tm_about .about_inner .rightpart .applytime{
font-size: 1.5rem;
    color: #000;
    position: relative;
    padding: 0 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.wantam_tm_about .about_inner .rightpart .applytime::after{
position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    left: 0;
top: 5px;
    background: #967249;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.wantam_tm_about .about_inner .rightpart .applytime span.ap{
     font-weight: 600;
    color: #846037;

}
.wantam_tm_about .about_inner .rightpart .applytime span.ti{
      letter-spacing: -.25px;
}

/*進度條*/
.wantam_progress {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
   margin-bottom:3rem;
}

.wantam_progress:last-child{
  margin-bottom: 0;
}
.progress_inner {
    width: 100%;
    margin-bottom: 17px;
}

/*解說*/
.progress_inner .repair{
    margin: 0px 0px 7px 0px;
    width: 100%;
    display: block;
    text-align: left;
}

/*填空*/
.progress_inner .repair .null{
  display: inline-block;
  margin: 0 0 0 2px;
  width: 0!important;
}

.progress_inner span.number {
   font-size:1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    background: #bb5a5a;
    color: #fff;
    border-radius: 50%;
    padding: 2px 10px;
}
.progress_inner span.label {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Raleway";
}


.progress_inner .background {
    background: #d3c6b759;
    width: 100%;
    min-width: 100%;
    position: relative;
    height: 20px;
}
.progress_inner .background .bar {
    width: 0px;
    height: 100%;
}
.progress_inner .background .bar.open {
    -webkit-animation: wow 3s cubic-bezier(0.165, 0.840, 0.440, 1.000);
    -moz-animation: wow 3s cubic-bezier(0.165, 0.840, 0.440, 1.000);
    animation: wow 3s cubic-bezier(0.165, 0.840, 0.440, 1.000);
    width: 100%;
    display: flex;
}

/*進度段落*/
.progress_inner .background .strip{
    height: 100%;
    width: 0px;
    overflow: hidden;
}


/*灰色*/
.progress_inner .background .bar_no{
  background:#d3c6b729;
}


/*佔分比*/
.progress_inner .background .bar_in {
}

/*順序分色*/
.progress_inner.ba1 .background .bar_in,
.progress_inner.ba1 span.number {
      background: #627ca0;
}

.progress_inner.ba2 .background .bar_in ,
.progress_inner.ba2 span.number {
      background: #55a192;
}

.progress_inner.ba3 .background .bar_in ,
.progress_inner.ba3 span.number {
      background: #c96666;
}

.progress_inner.ba4 .background .bar_in ,
.progress_inner.ba4 span.number {
      background: #d77333;
}

.progress_inner.ba4 .background .bar_in ,
.progress_inner.ba4 span.number {
      background: #d77333;
}

.progress_inner.ba5 .background .bar_in ,
.progress_inner.ba5 span.number {
      background: #8569a2;
}

.progress_inner.ba6 .background .bar_in ,
.progress_inner.ba6 span.number {
      background: #9a915e;
}

.progress_inner.ba7 .background .bar_in ,
.progress_inner.ba7 span.number {
      background: #5b955e;
}


/*========= 開合選單+內容 ==========*/
.wantam_tm_untie{
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    margin: 0;
}

.untie_inner{
display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

/*== 左邊開合 ==*/
.untie_inner .leftpart{
  width: 62%;
}

    #accordion .panel{
        border: none;
        box-shadow: none;
        border-radius: 0;
        margin: 0 0 15px 10px;
    }
    #accordion .panel-heading{
        padding: 0;
        border-radius: 30px;
    }
    #accordion .panel-title a{
    display: block;
    padding: 12px 20px 12px 50px;
    background: #75b97d;
    font-size: 1.54rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    }

    #accordion .panel-title a.collapsed{
        background: #fff;
        color: #967249;
        border: 1px solid #ddd;
    }
    #accordion .panel-title a:focus{
    background: #75b97d;
    }

    #accordion .panel-title a:after,
    #accordion .panel-title a.collapsed:after{
        content: "↓";
        width: 55px;
        height: 55px;
        line-height: 55px;
        border-radius: 50%;
        background: #75b97d;
        font-size: 25px;
        color: #fff;
        text-align: center;
        border: 1px solid transparent;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.58);
        position: absolute;
        top: -5px;
        left: -20px;
        transition: all 0.3s ease 0s;
    }
    #accordion .panel-title a.collapsed:after{
        content: "→";
        background: #fff;
        color: #967249;
        border: 1px solid #ddd;
        box-shadow: none;
    }
    #accordion .panel-body{
padding: 20px 25px 30px 20px;
    background: transparent;
    font-size: 1.38rem;
    color: #3b3b3b;
    line-height: 160%;
    border-top: none;
    position: relative;
   border-left: 1px dashed #8c8c8c;
    }
 #accordion .panel-body p{
        padding-left: 20px;
        position: relative;


    }
 #accordion .panel-body p::after{
position: absolute;
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #7f9b7b;
    border-radius: 50%;
    top: 12px;
    left: 10px;
    display: none;
}

#accordion .panel-body a{
        color: #967249;
        font-weight:600;
      }

#accordion .panel-body ol{
  padding: 0 0 1rem 2.5rem;
  position: relative;
}

#accordion .panel-body ol::after{
position: absolute;
    content: "";
    display: block;
    width: 8px;
    height: 12px;
    background: #7f9b7b;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    top: 9px;
    left: 18px;
}

#accordion .panel-body ol li{
     margin: 2px 0 2px 1.5rem;
}

/*== 右邊備註 ==*/
.untie_inner .rightpart{
  width: 38%;
}
.explain{
    padding:0;
    border: 1px solid #ccc;
    margin: 1rem 2rem 3rem 4rem ;
    border-radius: 20px;
    background: #fff;
}
.explain .tett{
    font-size: 1.54rem;
    font-weight: 600;
    background: #806c55c7;
    color: #fff;
    padding: 1rem 1rem 1rem 3.8rem;
    position: relative;

    -webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.explain .tett::after{
  content: "";
  position: absolute;
  left: 2rem;
  top: 1.5rem;
  display: block;
  border-radius: 50%;
  background: #fff;
  width: 16px;
  height: 16px; 
}


.explain .exwor{
padding: 1.5rem;
    font-size: 1.38rem;
    line-height: 160%;
}
.explain .exwor ol{}
.explain .exwor ol li{
      margin: 0 0 2px 0;

}
.explain .exwor p{}


@media only screen and (max-width:1180px) {
  #app{
    padding: 0 1.5rem;
  }
  .box {
    flex: 0 0 33%;
  }
}


@media only screen and (max-width:820px) {
  #app{
    padding: 0 1rem;
  }

  .box {
    flex: 0 0 50%;
  }

.title {
    min-height: 65px;

}

.pagination table {
    letter-spacing: -1px;
}

.pagination table input.page {
  margin: 0 0rem;
    padding:5px 0px;

}

/*====== 內頁 ======*/


/*== 圖文 ==*/
.wantam_tm_about {
    margin-bottom: 0;
  }

.wantam_tm_about .about_inner {
display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.wantam_tm_about .about_inner .leftpart {
    width: 100%;
    margin-bottom: 4rem;

}

.wantam_tm_about .about_inner .rightpart{
      width: 100%;
    padding: 0;
}


/*== 解說 ==*/
.untie_inner {
   display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;

}

.untie_inner .leftpart {
    width: 100%;
}
.untie_inner .rightpart {
    width: 100%;
}


.explain {
    margin: 1rem;
}


}




@media only screen and (max-width:568px) {

.handle_search .box_search select{
    min-width: 254px;
}



#app {
    padding: 0;
}
.box {
    flex: 0 0 100%;
}
.pagination table input.page {
    margin: 2px;
    padding: 5px ;
    width: 10px;
}


.wantam_tm_about .about_inner .leftpart {
    margin-bottom: 2rem;
}


/*======== 標題 =============*/
.wantam_tm_about .container,
.wantam_tm_untie .container{
  padding: 0;
}
.wantam_tm_about .nametit {
      font-size: 1.8rem;
}




/*圖片底線隱藏*/
.wantam_tm_about .about_inner .leftpart .author_image .shape{
display: none;
}


.panel-group {
    padding: 0 1rem;
}


}