@charset "utf-8";
/* CSS Document */
.card_list {
    padding: 28px 0 0px 0;
}

.card_list .list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.card_list .title {
  color: #000000;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  font-family: "Microsoft JhengHei";
  padding: 0 0 0 0;
  position: absolute;
  font-size: 150%;
  letter-spacing: 2px;
  margin: -20px 0 0 0;
  width: 100%;
	z-index: 1;
}
.card_list .title p {
  position: absolute;
  color: #000;
  top: 65%;
  letter-spacing: 2px;
  margin: 0;
  left: 50%;
  width: initial;
  text-align: center;
  transform: translate(-50%, -50%);
	    line-height: 25px;
}
.card_list .title p::after {
  content: "";
  width: initial;
  height: 2px;
  display: block;
  background-color: #545352;
  margin: 5px auto 0 auto;
}

.card_list .list .box .pic img {
    max-width: 100%;

}
.card_list .list .box {
    padding: 10px 5px;
    align-items: stretch;
    text-align: center;
    overflow: hidden;
}

.card_list .list.B .box {
    width: 100%;
}

.card_list .list .box .stitle {
    margin: 0;
    font-size: 120%;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
	padding: 10px 18px;
    text-align: left;
}

.card_list .list.C .box .stitle {
    background-color: transparent !important;
    color: #fff;
    font-weight: 400;
    font-size: 105%;
    padding: 15px 5px;
}

.card_list .list .box:nth-child(3n+1) .stitle {
    background-color: #666666;
	/*background: url("../images/template/card_title_bg.jpg") repeat-y center;*/
}
.card_list .list .box:nth-child(3n+2) .stitle {
    background-color: #666666;
	/*background: url("../images/template/card_title_bg.jpg") repeat-y center;*/
}
.card_list .list .box:nth-child(3n+3) .stitle {
    background-color: #666666;
	/*background: url("../images/template/card_title_bg.jpg") repeat-y center;*/
}

.card_list .list .box .box_shadow {/*border: 4px rgba(0, 0, 0, 0.2) solid;*/height: 100%;background-color: #666666;position: relative;padding: 0 0 45px 0;}

.card_list .list.C .box .box_shadow {
    padding: 0;
}

.card_list .list .box ul {
    margin: 0;
    padding: 0 10px 10px 10px;
    text-align: left;
}

.card_list .list .box ul li {
    list-style-type: none;
    /*border-top: 1px #d1d1d1 solid;*/
}

.card_list .list .box ul li:nth-child(1) {
    border-top: none;
}

.card_list .list .box ul li a {
    display: block;
    padding: 7px 10px;
    overflow: hidden;
    /*white-space: nowrap;*/
    text-overflow: ellipsis;
    color: #fff;
    font-size: 95%;
    letter-spacing: 1px;
	max-width: 350px;
}
/*.card_list .list .box ul li a:before {
  content:"‧";
  position: absolute;
  left: 15px;
}*/
.card_list .list .box ul li a:hover {
    background-color: #e0e0e0;
    color: #000;
    text-decoration: none;
}
.card_list .list .box .more{
    position: absolute;
    width: 100%;
    bottom: 0;
}

.card_list .list .box .more a {
    background-color: #666666;
    display: block;
    /*padding: 10px 10px;*/
	/*padding: 6px 10px;*/
    color: #fff;
    font-weight: 400;
	text-align: left;
    float: right;
}

.card_list .list .box .more a:hover {
    /*background-color: #a35e0f;*/
    color: #e47b02;
    text-decoration: none;
}

@media (max-width: 992px){
.card_list.A .box {
    width: auto !important;
    max-width: 100%;
}
.col-lg-12 .card_list .list {
    display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: column;
  -webkit-flex-flow: row wrap; 
  flex-flow: row wrap; 
  display: -webkit-box;
  display: flex;
   
}
    .col-lg-12 .card_list .list .box{
    width: 50%;
}

.col-lg-4 .card_list .list .box {
    width: 50%;
}
}
@media (max-width: 767px){
    .card_list .list{
        display:-webkit-flex;
display:flex;
-webkit-flex-wrap:wrap;
flex-wrap:wrap;
-webkit-justify-content:center;
justify-content:center;
    }
    .col-lg-4 .card_list .list .box,.col-lg-3 .card_list .list .box{max-width: 370px;
    width: 100%;}
    .col-lg-9 .card_list .list .box{width: 50%;}
}
@media (max-width: 550px){
    .card_list .list .box{
    max-width: 370px !important;
    width: 100% !important;
}
}










/*新增*/ 
/*more 卡片更多 圖*/
.card_list .more a{
    color: #13449e;
    background: url(../images/template/more_icon03.png) no-repeat;
    padding: 13px 8px 13px 50px;
    text-decoration: none;
    font-weight: 500;
}
.card_list .more a:hover{
    color: #e47a01 ;
    background: url(../images/template/more_icon02_r.png) no-repeat;
    padding: 13px 8px 13px 50px;
	text-decoration: none;
	font-weight: 500;
}

/*大標題左右線條*/
/*.card_list .title::after {
	right: 0;
    position: absolute;
    content: '';
    width: 32%;
    top: 32px;
    height: 2px;
    background-color: #595959;
}

.card_list .title::before {
	left: 0;
    position: absolute;
    content: '';
    width: 32%;
    top: 32px;
    height: 2px;
    background-color: #595959;
}
@media (max-width: 769px) {
.card_list .title::after {
    width: 15%;
}
.card_list .title::before {
    width: 15%;
}
}*/

/*卡片圖有圓弧*/
.card_list .list .box img {
    border-top-left-radius: 20px;
	border-bottom-right-radius: 20px;
	padding: 2%;
}

@media (max-width: 1000px){
.card_list .list .box {
    padding: 10px 5px;
    align-items: stretch;
    text-align: center;
    overflow: hidden;
}
}


/*標題底線寬*/
/*@media (max-width: 767px){
.card_list .title::after {
    content: "";
    width: 40%;
    height: 2px;
    display: block;
    background-color: #545352;
    margin: 5px auto 0 auto;
}
}*/
