    /* //////手機排版////// */
@media (max-width: 800px) {
    body {
        background-color: #ffffff;
        font-family: Arial, sans-serif;
        line-height: 1.6;
        margin: 0;
        padding: 0;
        color: #333;
        background-image: url('picture/News/background_01.png');
        background-repeat: no-repeat;
        background-size: 100vw 100vh;
        background-attachment: scroll;
        background-position: center top;
        background-attachment: fixed;
    }
    /* //////頂部區域////// */
  header {
    position: fixed;
    background: linear-gradient(to right, #9e9d77f0, #2b3e57f0);
    width: 100%;
    height: 15vh;
    z-index: 1000;
    color: white;
  }
  .header-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; 
  }
  .header-logo {
    display: flex;
    align-items: center;
    justify-content: space-evenly; 
    min-width: 20%;
    height: auto;
    margin: 0 0;
    padding: 0 0;
  }
  .header-img {
    width: 130px;
    height: 100%;
    display: block;
    pointer-events: auto;
    user-select: none;
  }
  .menu-toggle {
    all: unset;
    color: #ffffff;
    display: block;
    font-size: 30px;
    font-weight: 1000;
  }
  .header-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: #e7e7e7;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 1000;
  }
  .header-links.active1 {
    max-height: 802px;
  }
  .header-links a {
    display: flex;
    align-items: center;
    justify-content: left; 
    color: rgb(20, 58, 59);
    text-decoration: none;
    width: 80%;
    padding: 0 10px;
    margin: 0 0;
    font-size: 20px;
    font-weight: 500;
    height: 50px;
  }
  .header-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: left; 
    width: auto;
    height: 35%;
    margin: 0 0;
    padding: 0 0;
  }
  .header-menu-line {
    background-color: #272727;
    width: 100%;
    height: 3px;
    margin: 0 0;
    padding: 0 0;
  }
  .header-menu-item-dropdown {
    position: relative;
    width: 80%;
    padding: 0 0;
    margin: 0 0;
    font-size: 20px;
    font-weight: 1000;
    height: 50px;
  }
  .header-menu-item-dropdown a {
    color: rgb(20, 58, 59);
    width: 100%;
    padding: 0 10px;
    margin: 0 0;
    font-size: 20px;
    font-weight: 500;
    height: 50px;
  }
  .product-toggle {
    all: unset;
    background-color: #ffffff00;
    color: rgb(20, 58, 59);
    display: flex;
    align-items: center;
    justify-content: center; 
    position: absolute;
    top: 0;
    right: -70px;
    width: 20%;
    height: 50px;
    padding: 0 0px;
    margin: 0 0;
    font-size: 30px;
    font-weight: 300;
  }
  .header-dropdown-menu{
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
    flex-direction: column;
    justify-content: left;
    position: absolute;
    left: 20px;
    width: 100%;
    padding: 0 20px;
    margin: 0 0;
    list-style: none;
    z-index: 1000;
  }
  .header-dropdown-menu.active2 {
    height: 190px;
  }
  .header-menu-space {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
    width: 100%;
    margin: 0 0;
    padding: 0 0;
  }
  .header-menu-space.active2 {
    height: 190px;
  }
  .header-menu-item.dropdown,.header-dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .header-item-image {
    color: #ffffff;
    width: 200px;
    height: auto;
    margin: 0px 0px;
    padding: 2px 0px;
    border-radius: 10px;
    font-size: 25px;
  }
  .header-item-image a {
    display: flex;
    align-items: center;
    justify-content: left;
    text-decoration: none;
    color: rgb(20, 58, 59);
    width: 200px;
    height: auto;
    margin: 0px 0px;
    padding: 10px 0px;
    border-radius: 10px;
    font-size: 25px;
  }
  .header-hover-image {
    display: none;
  }
  .lang-toggle {
    position: relative;
    width: 100px;
    height: 35%;
    background-color: #837762;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0 3vw;
    font-family: sans-serif;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s;
  }
  .lang-toggle .toggle-btn {
    position: absolute;
    width: 55%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    transition: transform 0.3s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.603);
    transform: translateX(0%);
  }
  .lang-toggle span {
    font-size: 15px;
    font-weight: 300;
    z-index: 1;
    width: 50%;
    text-align: center;
    font-weight: bold;
  }
  .lang-toggle.active .toggle-btn {
    transform: translateX(80%);
  }

    /* //////中部區域1_開場圖片////// */
    .opening {
        position: relative;
        top: 0vw;
        left: 0vw;
        width: 100%;
        height: 90vw;
        overflow: hidden;
    }
    .opening-img {
        position: absolute;
        top: 5%;
        left: 0%;
        width: 100%;
        height: 90vw;
    }
    .opening-img img {
        width: 100%;
        height: 90vw;
    }
    .opening-text {
        position: absolute;
        top: 40%;
        left: 5%;
    }
    .opening-text h1 {
        background: linear-gradient(to bottom, #ffeb36, #ffeb36, #ffffff);
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4vw;
    }

    /* //////中部區域2_LOGO////// */
    .gray-area {
        background-color: #f3f3f3;
        display: flex;
        justify-content: center;
        position: relative;
        margin-top: -25vw;
        left: 0;
        width: 100%;
        height: 35vw;
        clip-path: polygon(50% 0%, 100% 35%, 100% 100%, 0 100%, 0% 35%);
    }
    .gray-area img {
        position: absolute;
        top: 5vw;
        width: auto;
        height: 10vw;
    }
    .gray-area h1 {
        position: absolute;
        top: 17vw;
        width: auto;
        height: 15vw;
        font-size: 2vw;
        font-weight: 600;
    }

    /* //////中部區域3_2025////// */
    .title-century {
        background-color: #f7ea79;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-top: -5vw;
        left: 40%;
        width: 20%;
        height: 10vw;
        font-size: 5vw;
        font-weight: 900;
        clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 99%, 15% 100%, 0% 50%);
    }
    .area-2025 {
        position: relative;
        top: 0vw;
        left: 0%;
        width: 100%;
        height: 130vw;
    }
    .arrow-2025 {
        background-color: #f7ea79;
        position: absolute;
        top: 0vw;
        left: 48.75%;
        width: 2.5%;
        height: 130vw;
        clip-path: polygon(50% 0%, 100% 5%, 100% 100%, 0 100%, 0% 5%);
    }
    .area-news {
        position: relative;
        top: 10vw;
        left: 0%;
        width: 100%;
        height: 55vw;
        margin: 0 0;
    }
    .left-news {
        background-color: #f5f0c0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 0vw;
        left: 0%;
        width: 45%;
        height: 35vw;
        border-radius: 20px;
        border: 1px solid #000;     
    }
    .left-news h1 {
        position: absolute;
        top: 0;
        width: 90%;
        height: auto;
        font-size: 1.7vw;
        font-weight: 700;
    }
    .left-news h2 {
        position: absolute;
        top: 6vw;
        font-size: 1.4vw;
        font-weight: 400;
        height: auto;
    }
    .left-news img {
        position: absolute;
        bottom: 0;
        width: 90%;
        height: 25vw;
    }
    .left-smallarrow {
        background-color: #f5f0c0;
        position: absolute;
        top: 5vw;
        right: -4vw;
        width: 10%;
        height: 5vw;
        clip-path: polygon(0 0, 0% 100%, 100% 50%);
    }
    .right-news {
        background-color: #f5f0c0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 20vw;
        right: 0%;
        width: 45%;
        height: 35vw;
        border-radius: 20px;
        border: 1px solid #000;
    }
    .right-news h1 {
        position: absolute;
        top: 0;
        width: 90%;
        height: auto;
        font-size: 1.7vw;
        font-weight: 700;
    }
    .right-news h2 {
        position: absolute;
        top: 6vw;
        font-size: 1.4vw;
        font-weight: 400;
        height: auto;
    }
    .right-news img {
        position: absolute;
        bottom: 0;
        width: 90%;
        height: 25vw;
    }
    .right-smallarrow {
        background-color: #f5f0c0;
        position: absolute;
        top: 5vw;
        left: -4vw;
        width: 10%;
        height: 5vw;
        clip-path: polygon(100% 0, 100% 100%, 0 50%);
    }

    /* //////中部區域4_2024////// */
    .area-2024 {
        position: relative;
        top: 0vw;
        left: 0%;
        width: 100%;
        height: 185vw;
    }
    .arrow-2024 {
        background-color: #f7ea79;
        position: absolute;
        top: 0vw;
        left: 48.75%;
        width: 2.5%;
        height: 185vw;
        clip-path: polygon(50% 0%, 100% 5%, 100% 100%, 0 100%, 0% 5%);
    }

    /* //////中部區域5_2023////// */
    .area-2023 {
        position: relative;
        top: 0vw;
        left: 0%;
        width: 100%;
        height: 130vw;
    }
    .arrow-2023 {
        background-color: #f7ea79;
        position: absolute;
        top: 0vw;
        left: 48.75%;
        width: 2.5%;
        height: 130vw;
        clip-path: polygon(50% 0%, 100% 5%, 100% 100%, 0 100%, 0% 5%);
    }

    /* //////中部區域6_2022////// */
    .area-2022 {
        position: relative;
        top: 0vw;
        left: 0%;
        width: 100%;
        height: 75vw;
    }
    .arrow-2022 {
        background-color: #f7ea79;
        position: absolute;
        top: 0vw;
        left: 48.75%;
        width: 2.5%;
        height: 75vw;
        clip-path: polygon(50% 0%, 100% 5%, 100% 100%, 0 100%, 0% 5%);
    }

    /* //////中部區域7_2021////// */
    .area-2021 {
        position: relative;
        top: 0vw;
        left: 0%;
        width: 100%;
        height: 75vw;
    }
    .arrow-2021 {
        background-color: #f7ea79;
        position: absolute;
        top: 0vw;
        left: 48.75%;
        width: 2.5%;
        height: 75vw;
        clip-path: polygon(50% 0%, 100% 5%, 100% 100%, 0 100%, 0% 5%);
    }

    /* //////中部區域8_2020////// */
    .area-2020 {
        position: relative;
        top: 0vw;
        left: 0%;
        width: 100%;
        height: 75vw;
    }
    .arrow-2020 {
        background-color: #f7ea79;
        position: absolute;
        top: 0vw;
        left: 48.75%;
        width: 2.5%;
        height: 75vw;
        clip-path: polygon(50% 0%, 100% 5%, 100% 100%, 0 100%, 0% 5%);
    }

    /* //////中部區域9_2019////// */
    .title-century-Founding {
        background-color: #f7ea79;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-top: -5vw;
        left: 30%;
        width: 40%;
        height: 10vw;
        font-size: 5vw;
        font-weight: 900;
        clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 99%, 10% 100%, 0% 50%);
    }

    /* //////底部區域////// */
    footer {
        position: relative;
        background: linear-gradient(to right, #2b3e57f0, #9e9d77f0);
        padding: 20vh 5vw;
    }
    .footer-menu {
        position: absolute;
        top: 15%;
        left: 0%;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        font-size: 3vw;
        font-weight: 700;
        padding: 0 1vw;
        position: relative;
    }
    .footer-vertical-line {
        background-color: #bcbcbc;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0%;
        left: 96%;
        width: 2%;
        height: 100%;
        z-index: 20;
    }
    .footer-horizontal-line {
        background-color: #bcbcbc;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 30%;
        width: 80%;
        height: 1%;
        left: 10%
    }
    .footer-container {
        margin-top: 5%;
        margin-left: 10%;
        font-size: 3vw;
        font-weight: 200;
        color: #ffffff;
    }
    .footer-copyright {
        position: absolute;
        top: 90%;
        left: 20%;
        font-size: 1vw;
        color: #959595;
    }
    .footer-logo {
        position: absolute;
        top: 70%;
        left: 40%; 
    }
    .footer-img {
        width: 50%;
        height: auto;
    }
}


