@charset "UTF-8";
/* CSS Document */
.contentBox .leftBox {
    padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
    .contentBox .leftBox {
        padding: 0 0 30px 0;
    }
}
.contentBox .rightBox {
    padding: 0;
}

/*新訊列表*/
.newsList {
    margin: 0 -12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.newsList .newsItem {
    padding: 10px 12px;
    width: 33.33%;
}
@media (max-width: 960px) {
    .newsList .newsItem {
        width: 50%;
    }
}
@media (max-width: 640px) {
    .newsList .newsItem {
        width: 100%;
    }
}
.newsList .newsItem.imgHover .Img img {
    opacity: 0.3;
}
.newsList .item {
    position: relative;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
.newsList .Img {
    position: relative;
    background-color: #14345b;
    overflow: hidden;
}
.newsList .Img:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
.newsList .Img img {
    width: 100%;
    display: block;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    opacity: 0.7;
}
.newsList .Txt {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
}
.newsList .Txt .title a {
    display: block;
    font-size: 35px;
    font-weight: 400;
    color: #fff;
}
@media (max-width: 1180px) {
    .newsList .Txt .title a {
        font-size: 30px;
    }
}
.newsList .Txt .more {
    margin-top: 20px;
    position: relative;
    padding-left: 20px;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}
.newsList .Txt .more::before, .newsList .Txt .more::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -0.5px;
    width: 10px;
    height: 1px;
    background-color: #fff;
}
.newsList .Txt .more::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

.newsDate {
    font-size: 14px;
    color: #818181;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.newsDate strong {
    font-weight: 400;
}
.newsDate strong i {
    margin-right: 2px;
    font-size: 14px;
    color: #AE4233;
}
.newsDate b {
    margin-left: 3px;
}

.classTitle {
    display: inline-block;
    padding: 3px 5px;
    margin-right: 3px;
    border-radius: 3px;
    font-weight: 400;
    font-size: 12px;
    font-family: "微軟正黑體";
    color: #fff;
}

/*內頁*/
/****分享*****/
.shareBox {
    float: right;
}
.shareBox .btn-fb {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.shareBox .back {
    display: inline-block;
    vertical-align: middle;
    padding: 3px 5px;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    background: rgb(174, 66, 51);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(174, 66, 51)), color-stop(100%, rgb(196, 76, 76)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
    /* IE10+ */
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(174, 66, 51)), to(rgb(196, 76, 76)));
    background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae4233", endColorstr="#c44c4c", GradientType=0);
    /* IE6-9 */
    cursor: pointer;
}
.shareBox .back:hover {
    background: #398cb1;
}