    body {
      margin: 0;
      font-family: "Noto Serif KR", serif;
      /*  background-color: #fafafa;*/
    }

    p {
      font-weight: 600;
      font-size: 1.2rem;
    }

    .stations_container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 10px;
      padding: 10px;
    }

    .line_pic {
      height: 50px;
    }

    .oline_pic {
      height: 40px;
    }

    .stations_photo {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 4;
      /* 長方形，豎著 */
      overflow: hidden;
      border-radius: 10px;
      background-color: #ddd;
    }

    .stations_photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    #ncr_logo {

      border-radius: 10px;
      width: 50px;

    }

    .sans {
      font-family: "Lexend Deca", sans-serif;
      font-weight: 500;
    }

    .sans_light {
      font-family: "Lexend Deca", sans-serif;
      font-weight: 400;
      font-size: 1rem;
    }

    .romaji {
      font-family: "Lexend Deca", sans-serif;
      font-weight: 400;
      font-size: 1.2rem;
    }

    .sans_bigger {
      font-family: "Lexend Deca", sans-serif;
      font-weight: 450;
      font-size: 1.5rem;
    }

    .serif_bigger {

      font-weight: 750;
      font-size: 1.5rem;
    }

    .ja {
      font-family: "Noto Serif JP", serif;
    }

    #stations-header-title {
      color: black;
    }


    .route-map-button {
      display: inline-block;
      background-color: white;
      color: black;
      text-align: center;
      text-decoration: none;
      border: 1px solid black;
      padding: 5px 5px;
      border-radius: 10px;
      font-family: "Noto Serif KR", serif;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .route-map-button .zh {
      font-weight: 600;
      font-size: 1rem;
    }

    .route-map-button .en {
      font-family: "Lexend Deca", sans-serif;
      font-weight: 400;
      font-size: 0.8rem;
    }

    .route-map-button:hover {
      background-color: #222;
      transform: scale(1.03);
    }


    @media (max-width: 760px) {
      h1 {
        font-size: 1.4rem;
      }



    }



    .one_about {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      padding: 2rem;
    }

    .centre_pic {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 75%;
      border-radius: 20px;
    }

    .one_img {
      max-width: 100%;
      /* 確保圖片不會爆版 */
      height: auto;
      border-radius: 20px;
    }

    .left_text {
      width: 75%;
      /* 這樣就會跟 .centre_pic 對齊 */
    }

    .left_text h1 {
      line-height: 1;
    }

    .left_text h2 {
      line-height: 1;
    }

    .left_text p {
      line-height: 1;
    }

    /* .left_text div {
line-height: 1;
} */


    @media screen and (min-width: 1000px) {
      .one_about {
        flex-direction: row;
        /* 寬螢幕時改為左右排列 */
        align-items: flex-start;
      }

      .one_content {
        flex: 1;
        /* 平均佔據左右空間 */
      }
    }

    @media screen and (min-width: 1250px) {

      .left_text h1 {
        line-height: 1.5;
      }

      .left_text h2 {
        line-height: 1.5;
      }

      .left_text p {
        line-height: 1.5;
      }

      .left_text div {
        line-height: 1.5;
      }


    }



    @media screen and (max-width: 999px) {

      .left_text h1 {
        line-height: 1.5;
      }

      .left_text h2 {
        line-height: 1.5;
      }

      .left_text p {
        line-height: 1.5;
      }

      .left_text div {
        line-height: 1.5;
      }


    }