.content_wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 32px 0;
}

.content_wrap::before {
    content: '';
    width: 100%;
    padding-bottom: 28.2%;
    position: absolute;
    top: 0;
    left: 0;
    background: #f5f8fb;
    transform: skewY(-6deg);
    transform-origin: 0 0;
    z-index: -1;
    transition: 1s;
}


/* 架構-限制範圍 */

.content {
    width: 80%;
    min-width: 900px;
    max-width: 1680px;
    margin: 32px auto;
    text-align: left;
}


/* 架構-左右排列 */

.item {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    padding: 0 5%;
    box-sizing: border-box;
}

.item.full {
    width: 100%;
}


/* 架構-區塊內小區隔 */

.box {
    margin: 0 0 24px;
}


/* ----------------最新消息內頁 */

.inside_title {
    width: 100%;
    margin: 0 0 48px;
    position: relative;
}

.inside_title h1 {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 5px;
    color: #434343;
}

.inside_title h2 {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 2.5px;
    color: #045ead;
}

.inside_title a {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 36px;
    letter-spacing: 1.5px;
    color: #045ead;
}

.inside_title a::before {
    content: '';
    width: 0;
    height: 5px;
    position: absolute;
    bottom: -12px;
    left: 0;
    background: #045ead;
    transform: skewX(-12deg);
    transition: .6s;
}

.inside_detail img {
    width: 50%;
    margin: 12px 0;
}

.inside_detail p {
    font-size: 15px;
    font-weight: 800;
    line-height: 28px;
    letter-spacing: 1.5px;
    color: #454545;
}

@media screen and (min-width: 1024px) {
    .inside_title a:hover::before {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {}

@media screen and (max-width: 1023px) {
    .content_wrap.active::before {
        padding-bottom: 42%;
    }
    .content {
        min-width: 300px;
        max-width: 640px;
    }
    .item {
        width: 100%;
        padding: 0;
    }
    .inside_title {
        width: 100%;
        margin: 0 0 24px;
        position: relative;
    }
    .inside_title h1 {
        font-size: 28px;
        line-height: 40px;
        letter-spacing: 3px;
    }
    .inside_title h2 {
        font-size: 18px;
        line-height: 24px;
    }
    .inside_title a {
        font-size: 16px;
        line-height: 24px;
    }
    .inside_detail img {
        width: 100%;
    }
    .inside_detail p {
        font-size: 14px;
        line-height: 25px;
    }
    @media screen and (min-width: 768px) {
        .title_wrap {
            padding-bottom: 50%;
        }
        .item_photo {
            width: 70%;
            margin: 32px auto;
        }
    }
    @media screen and (max-width: 360px) {}
}