body {
    overflow-x: hidden;
    font-family: PingFang TC, Microsoft JhengHei, sans-serif;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: auto;
    padding-left: 5%;
}

.page1 {
    width: 100%;
    height: 20vh;
    display: flex;
}

.page2 {
    width: 90%;
    min-height: 30vh;
    display: flex;
    /* justify-content: space-evenly; */
    /* align-items: center; */
    flex-wrap: wrap;
    margin-left: 10%;
}

.page3 {
    width: 90%;
    display: flex;
    /* min-height: 60vh; */
    /* justify-content: space-evenly; */
    /* align-items: center; */
    flex-wrap: wrap;
    margin-left: 10%;
}

.active {
    color: #036eb8 !important;
}

.page1_left {
    width: 10%;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    /* margin-left: 5%; */
    left: 0;
    top: 0;
    overflow: hidden;
}

.page1_left>a {

    position: absolute;
    left: 0;
    bottom: 100%;
    transform-origin: left top;
    display: flex;
    align-items: center;
    color: #191f23;
    font-family: 'Montserrat', 'Noto Sans TW', "PingFang", "PingFangTC", "Microsoft JhengHei", Helvetica, Arial, sans-serif;
    z-index: 88;
    font-weight: bold;
    /* font-size: 16px; */

    font-size: clamp(0.7rem, 0.489rem + 1.05vw, 1.2rem);
    transition: all 0.45s ease;
    transform: rotate(-90deg) translate(calc(-100% - 32px));
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.page1_left>a>span {
    width: 180%;
    font-size: 18px;
}

.page1_left>a::before {
    content: '';
    display: block;
    width: 1.8vw;
    height: 0.5px;
    margin-right: 5%;
    background-color: #b3b3b3;
}

.page1_left>a:hover {
    letter-spacing: 2px;
}

.page1_content {
    width: 75%;
    border-top: 1px solid #000;
}

.news_list_nav {
    width: 50%;
    display: flex;
    margin-top: 2%;
}

.news_list_nav>a {
    color: #000;
    text-decoration: none;
    position: relative;
    display: flex;
    width: 30%;
    justify-content: space-between;
    font-weight: bold;
}

.news_list_nav>a:hover {
    color: #036eb8;
}

.news_list_nav>a:nth-child(1)::after,
.news_list_nav>a:nth-child(2)::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    border-right: 1px solid #000;
    margin-right: 10%;
}

.page2>a {
    width: 40%;
    color: #000;
    text-decoration: none;
    margin-bottom: 5%;
}

.page3>a {
    width: 40%;
    color: #000;
    text-decoration: none;
    margin-right: 5%;
    margin-bottom: 5%;
}

.page2Container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;

    /* transform: translateY(40px);
    opacity: 0;
    transition: transform 1s, opacity 1s linear; */
}

.page2label {
    width: 100%;
    display: flex;
    align-items: center;
}

.page2label>div:nth-child(1) {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #72795f;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s ease;
    margin-right: 5%;
}

@media (max-width: 1500px) {
    .page2label>div:nth-child(1) {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1000px) {
    .page2label>div:nth-child(1) {
        width: 30px;
        height: 30px;
    }
}

.page2label>div:nth-child(1)>img {
    width: 50%;
    height: 50%;

}

.page2label>div:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8vw;
}

.page2Context {
    font-size: 1.5vw;
    font-weight: bold;
    margin-top: 10%;
}

.page2More {
    width: 100%;
    margin-top: 10%;
    padding-top: 5%;
    display: flex;
    align-items: center;
    border-top: 1px solid #000;
    font-weight: bold;
    font-size: 0.9vw;
}

.page2More>img {
    width: 20%;
    height: 20%;
    transform: rotate(180deg);
    margin-left: 15%;
    transition: margin-left 0.3s linear;
}

.page2Container:hover>.page2label>div:first-child {
    background-color: #036eb8;
}

.page2Container:hover>.page2More>img {
    margin-left: 20%;
}

@media (max-width: 1000px) {
    .page1 {
        height: 20vh;
    }

    .news_list_nav {
        width: 100%;
    }

    .page2 {
        flex-direction: column;
        height: auto;
    }

    .page2Container {
        width: 60%;
    }

    .page2Context {
        margin-top: 3%;
    }

    .page2More {
        margin-top: 3%;
        padding-top: 0;
    }

    .page2More>img {
        width: 3%;
        height: auto;
        margin-left: 5%;
    }

    .page2Container:hover>.page2More>img {
        margin-left: 10%;
    }
}

.page3Container {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-right: 8%;
    margin-bottom: 10%;

    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s linear;
}

.ImgBox {
    width: 300px;
    height: 350px;
    /* height: auto; */
    border-radius: 10px;
    margin-right: 5%;
    overflow: hidden;
}

.ImgBox>img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s linear;
}

.page3TextContainer {
    width: 45%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.page3Container:hover>.ImgBox>img {
    transform: scale(1.2);
}

.page3Container:hover>.page3TextContainer>.page2label>div:first-child {
    background-color: #036eb8;
}

.page3Container:hover>.page3TextContainer>.page3More>img {
    margin-left: 20%;
}

.page3More {
    width: 100%;
    margin-top: 10%;
    padding-top: 5%;
    display: flex;
    align-items: center;
    border-top: 1px solid #000;
    font-weight: bold;
    font-size: 0.9vw;
}

.page3More>img {
    width: 20%;
    height: auto;
    transform: rotate(180deg);
    margin-left: 15%;
    transition: margin-left 0.3s linear;
}

@media (max-width: 1000px) {
    .page3Container {
        width: 90%;
        margin-bottom: 5%;
    }

    .ImgBox {
        width: 15%;
        height: 30%;
        margin-right: 6%;
    }

    .ImgBox>img {
        width: 100%;
        height: 100%;
        transition: transform 0.3s linear;
    }

    .page3TextContainer {
        width: 67%;
    }

    .page3TextContainer:hover>.page3More>img {
        margin-left: 10%;
    }

    .page3More {
        margin-top: 3%;
        padding-top: 0;
    }

    .page3More>img {
        width: 3%;
        height: auto;
        margin-left: 5%;
    }

    .page3Container:hover>.page3TextContainer>.page3More>img {
        margin-left: 10%;
    }
}


.ScrollDown {
    cursor: pointer;
}

@media (max-width: 980px) {
    .page3>a {
        width: 100% !important;
    }
}

@media (max-width:1200px) {
    .page1_left{
        opacity: 0;
    }
}
@media (max-width:740px) {
    .page1_left{
        display: none;
    }
}