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;
    white-space: nowrap;
}

.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%;
    display: flex;
}

.left_nested_nav {
    width: 15%;
    margin-bottom: 20%;
}

.left_nested_nav>ul {
    width: 100%;
    list-style: none;
    margin-top: 5%;
}

.left_nested_nav>ul>li {
    width: 100%;
    padding-bottom: 5%;
    margin-bottom: 5%;
    line-height: 200%;
    cursor: pointer;
    border-bottom: 1px solid #e5e4e4;
}

.left_nested_nav>ul>li>a {
    transition: all 0.5s ease;
}

.left_nested_nav>ul>li:hover>a {
    color: #036eb8;
}

.left_nested_nav>ul>li>a {
    list-style: none;
    text-decoration: none;
    color: #858585;
}

.ScrollDown {
    cursor: pointer;
}

.page1_li {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s linear;
}

@media (max-width:1200px) {
    .page1_left {
        opacity: 0;
    }
}

@media (max-width:740px) {
    .page1_left {
        display: none;
    }
}

.rightContent {
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    flex-direction: column;
}

.rightContent>div:first-child {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.productChunks {
    width: 25%;
    margin-top: 3%;
    margin-left: 5%;
    transition: all 0.6s linear;
    cursor: pointer;
}

.productChunks>a {
    display: block;
    color: #000;
    text-decoration: none;
}

.pic {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: clamp(30px, 3.125vw, 60px);
    height: clamp(200px, 18.22916666667vw, 380px);
}

.pic>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s linear;
}

.productChunks:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

.productChunks:hover>a>.pic>img {
    transform: scale(1.1);
}

.pro_name {
    font-size: 20px;
    margin-left: 10%;
    font-weight: bold;
}

@media (max-width:1100px) {

    .productChunks {
        width: 40%;
    }
}

@media (max-width:1000px) {

    .left_nested_nav {
        display: none;
    }

    .rightContent {
        width: 100%;
    }
}

@media (max-width:740px) {
    .rightContent {
        width: 100%;
    }

    .productChunks {
        width: 45%;
        height: 35%;
    }

    .pro_name {
        font-size: 18px;
        margin-left: 10%;
        font-weight: bold;
    }
}

@media (max-width:500px) {
    .rightContent {
        width: 100%;
    }

    .productChunks {
        width: 45%;
        height: 27%;
    }

    .pro_name {
        font-size: 14px;
        margin-left: 10%;
        font-weight: bold;
    }
}

.pagination_container {
    width: 100%;
    margin-top:10%;
    margin-bottom: 10%;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style-type: none;
}

.pagination>li:not(:first-child):not(:last-child) {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 2px solid #e6e5e5;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s linear;
}

.pagination>li:first-child,
.pagination>li:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}

.pagination>li:last-child > a > .product_icon {
    transform: rotate(180deg);
}

.pagination>li:not(:first-child):not(:last-child):hover {
    border-color: #036eb8 !important;
}

.pagination>li>a {
    text-decoration: none;
    color: #000;
}

.pagination>.active {
    border-color: #036eb8 !important;
}

.pagination>li:first-child>a,
.pagination>li:last-child>a {
    width: 10%;
}

.product_icon {
    width: 100%;
    height: 10%;
}