@charset "utf-8";
/* CSS Document */
.chart {
    padding: 0 0 30px 0;
}

.chart .row {
    margin: 0;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.chart .title {
    color: #000000;
    letter-spacing: 2px;
    text-align: center;
    font-family: "Microsoft JhengHei";
    font-size: 140%;
    padding: 10px 0 20px 0;
}

.chart .title::before {
    content: "";
    display: block;
    margin: 5px auto 0 auto;
    background-image: url(images/template/title_icon.png);
    background-repeat: no-repeat;
    background-position: top center;
    padding: 15px 0;
}
.chart .more {
    text-align: center;
    padding: 30px 0;
}
.chart .more a {
    background-color: #516c8a;
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 110%;
    letter-spacing: 1px;
    text-decoration: none;
}

.chart .more a:hover {
    background-color: #f1efe8;
    color: #000;
}
.chart_slider {
    width: 100%;
}

.chart .box {
    padding: 10px;
    background-color: #fff;
    border: 5px rgba(0, 0, 0, 0.1) solid;
    height: 100%;
}

.chart .box.info {
    padding: 0;
    border: none;
    background-color: transparent;
}

.chart .box.info .stitle {
    background-color: #f1efe8;
    color: #000;
    font-weight: 600;
    font-size: 104%;
    letter-spacing: 2px;
    padding: 10px 20px;
    text-align: center;
    border-radius: 30px;
    position: relative;
}

.chart .box.info .stitle::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: #f1efe8 transparent transparent transparent;
    position: absolute;
    left: 48%;
    bottom: -10px;
}

.chart .box.info .txt {
    padding: 15px 10px 10px 10px;
    line-height: 160%;
}
.chart .slick-dots {
    position: relative;
    bottom: inherit;
    margin: 0 0 20px 0;
}