@charset "utf-8";
/* CSS Document */
.card_list .list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.card_list .title {
       color: #3153ba;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    font-family: "Microsoft JhengHei";
    font-size: 120%;
    padding: 5px 0 10px 0;
}
.card_list .title p {
    margin: 0;
}
.card_list .title::after {
    content: "";
    width: 7px;
    height: 22px;
    display: block;
    background-color: #fc961a;
    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: 110%;
    font-weight: bold;
    color: #fff;
    padding: 10px 5px;
}

.card_list .list.C .box .stitle {
    background-color: transparent !important;
    color: #000;
    font-weight: 400;
    font-size: 105%;
    padding: 15px 5px;
}

.card_list .list .box:nth-child(4n+1) .stitle {
    background-color: #d43d24;
}
.card_list .list .box:nth-child(4n+2) .stitle {
    background-color: #1d8600;
}
.card_list .list .box:nth-child(4n+3) .stitle {
    background-color: #006e7a;
}
.card_list .list .box:nth-child(4n+4) .stitle {
    background-color: #00427a;
}

.card_list .list .box .box_shadow {border: 4px rgba(0, 0, 0, 0.2) solid;height: 100%;background-color: #fff;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;
}

.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: 10px 10px;
    color: #000;
    font-size: 105%;
    max-width: 350px;
    margin: auto;
}

.card_list .list .box ul li a:hover {
    background-color: rgba(158, 158, 158, 0.2);
    text-decoration: none;
}
.card_list .list .box .more{
    position: absolute;
    width: 100%;
    bottom: 0;
}

.card_list .list .box .more a {
    background-color: #d1d1d1;
    display: block;
    padding: 10px 10px;
    color: #000;
    font-weight: 500;
}

.card_list .list .box .more a:hover {
    background-color: #000;
    color: #fff;
    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 .box{
    max-width: 50%;
}

.card_list .list .box {
}
}
@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;
    }
}
@media (max-width: 550px){
    .col-lg-12 .card_list .box{
    max-width: 100%;
    /* width: auto; */
}

.card_list .list .box {
    width: auto;
}
}