@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;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    font-family: "Microsoft JhengHei";
    font-size: 150%;
	padding: 0 17px 0 17px;
	margin-bottom: 0px;

}
.chart .title p {
  /*margin: 0;*/
}
.chart .title::after {
	content: "";
    width: 25%;
    height: 2px;
    display: block;
    background-color: #545352;
    margin: 5px auto 0 auto;
}

.chart .more{
    display: block;
    text-align: center;
    padding: 20px 0 0 0;
}
.chart .more a{
    background-color: #ff8a2b;
    color: #fff;
    padding: 15px 20px;
}
.chart .more a:hover{
    background-color: #015093;
}
.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;
}

.chart .box.info .stitle {
    /*background-color: #1c3686;*/
    color: #c4272c;
    font-weight: 600;
    font-size: 104%;
    letter-spacing: 2px;
    padding: 10px;
    text-align: left;
}

.chart .box.info .txt {
    padding: 10px;
    line-height: 160%;
}
.chart .slick-dots {
    position: relative;
    bottom: inherit;
    margin: 0 0 20px 0;
}

/*新增*/ 
/*more更多 圖*/
.chart .more a{
    background-color: #b63a2b;
    /*display: block;*/
    /* padding: 10px 10px; */
    padding: 12px 55px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    border-radius: 50px;
}
.chart .more a:hover{
    background-color: #944822;
	text-decoration: none;
}
.chart .more_frame{
	display: -webkit-flex;
    -webkit-justify-content: center;
}

.chart .more{
	display: block;
    text-align: center;
    padding: 20px 0 0 0;
	width: 100%;
    margin: 0 auto;
}

/*大標題左右線條*/
.chart .title::after {
	right: 0;
    position: absolute;
    content: '';
    width: calc(50% - 100px);
    top: 33px;
    height: 2px;
    background-color: #595959;
}

.chart .title::before {
	left: 0;
    position: absolute;
    content: '';
    width: calc(50% - 100px);
    top: 36px;
    height: 2px;
    background-color: #595959;
}