body {
    overflow-x: hidden;
    font-size: 18px;
    font-family: PingFang TC, Microsoft JhengHei, sans-serif;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: auto;
    padding-left: 5%;
}

.page1 {
    width: 100%;
    /* height: 100vh; */
    display: flex;
}

.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: 80%;
    counter-reset: faq_counter;
}


.page1Container {
    display: flex;
    counter-increment: faq_counter;
    padding-bottom: 10%;
    margin-bottom: 5%;
    border-bottom: 1px solid #000;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s linear;
}

.page1_Textleft {
    width: 12%;
    font-size: 1.6vw;
}

.page1_Textleft::before {
    content: counter(faq_counter, decimal-leading-zero);
    color: #036eb8;
    display: block;
    font-weight: bold;
}

.page1_TextContent {
    width: 75%;
    margin-left: 2%;
}

.page1_TextContent>h4:first-child {
    border-bottom: 1px solid #f0f0f0;
    margin-right: 37%;
    padding-bottom: 2%;
    margin-bottom: 5%;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Noto Sans TC', "PingFang", "PingFangTC", "Microsoft JhengHei", sans-serif;
}

.cross_animate>div {
    display: block;
    width: 20px;
    border-top: 3px solid #adadad;
    position: absolute;
    right: 5%;

    transition: all 0.4s ease;

}

.cross_animate>div:first-child {
    transform: rotate(90deg);
}

.answer {
    text-indent: 3em;
    margin-right: 37%;
}

.answer>p {
    line-height: 150%;
    font-weight: normal;
}

.edit {
    font-size: 23px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s linear;
    font-family: "PingFang", "PingFangTC", "Microsoft JhengHei", sans-serif;
}

@media (max-width:1000px) {
    .page1Container {
        display: flex;
        flex-direction: column;
    }

    .page1_Textleft {
        width: 100%;
        font-size: 23px;
        margin-bottom: 5%;
    }

    .page1_TextContent {
        width: 100%;
        margin-left: 0;
    }

    .page1_TextContent>h4:first-child {
        width: 90%;
        font-size: 16px;
        margin-right: 20%
    }

    .answer {
        margin-right: 20%
    }
}

@media (max-width:700px) {

    .page1_Textleft {
        margin-bottom: 5%;
    }

    .page1_TextContent {
        margin-left: 0;
    }

    .page1_TextContent>h4:first-child {
        margin-right: 0%
    }

    .answer {
        margin-right: 0%
    }
    .page1_content{
        width: 90%;
    }
    .page1_left{
        display: none;
    }
}

.ScrollDown {
    cursor: pointer;
}

@media (max-width:1200px) {
    .page1_left{
        opacity: 0;
    }
}

@media (max-width:740px) {
    .page1_left{
        display: none;
    }
}