@charset "UTF-8";
.news{
    overflow: visible;
}
.news__inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    margin: 40px auto -275px auto;
}

.c-new__item {
    width: calc(50% - 240px);
    margin: 0 120px 75px 120px;
}

.c-new__item:nth-of-type(even) {
    top: -275px;
}

.c-new__item:last-of-type {
    margin-bottom: 0;
}

.c-new__item:nth-of-type(odd):last-of-type:not(.c-new__item-push) {
    margin: 0 120px 275px 120px;
}

.c-new__item-push {
    height: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .c-new__item {
        width: calc(50% - 120px);
        margin: 0 60px 75px 60px;
    }

    .c-new__item:nth-of-type(odd):last-of-type:not(.c-new__item-push) {
        margin: 0 60px 275px 60px;
    }
}

@media screen and (max-width: 991px) {
    .c-new__item {
        width: calc(50% - 35px);
        margin: 0 70px 75px 0;
    }

    .c-new__item:nth-of-type(odd):not(.c-new__item-push) {
        margin: 0 0 75px 0;
    }

    .c-new__item:nth-of-type(odd):last-of-type:not(.c-new__item-push) {
        margin: 0 0 275px 0;
    }

}

@media screen and (max-width: 767px) {
    .news__inner {
        margin: 20px auto 0 auto;
    }

    .c-new__item-push {
        display: none;
    }

    .c-new__item,
    .c-new__item:nth-of-type(odd):not(.c-new__item-push) {
        width: 100%;
        margin: 0 auto 60px auto;
    }
    .c-new__item:nth-of-type(odd):last-of-type:not(.c-new__item-push) {
        margin: 0 auto;
    }
    .c-new__item:nth-of-type(even) {
        top: 0;
    }
}

@media screen and (max-width: 575px) {
    .news__inner {
        margin: 0 auto;
    }

    .c-new__item,
    .c-new__item:nth-of-type(odd):not(.c-new__item-push) {
        width: 100%;
        margin: 0 auto 20px auto;
    }
}



/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}