/* color */
/* font */
/* transition */
.workBox .dataItem .title, .workBox .dataItem .desc {
  font-family: "Noto Sans TC", "Noto Sans TC", sans-serif; }

.workBox .dataItem .wrap, .workBox .dataItem .wrap:after, .workBox .dataItem .imgBox img, .workBox .dataItem .title, .albumList .albumItem:before {
  transition: all 0.65s ease-in-out; }

.topBox {
  position: relative; }
  .topBox .yearTitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
    text-align: center;
    transform: translateX(-24px); }
  .topBox .filterBox {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); }
    .topBox .filterBox select {
      background-color: transparent;
      color: #000;
      font-weight: 700;
      border: none;
      border-bottom: 1px solid #a15e3d;
      padding: 2.5px 20px;
      letter-spacing: 1.4px; }
      .topBox .filterBox select option {
        background-color: #e8ded1; }

.workBox {
  position: relative; }
  .workBox .line {
    position: absolute;
    left: 47.75%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    top: 0;
    background-color: #868686; }
    @media (max-width: 1024px) {
      .workBox .line {
        left: 42%; } }
    @media (max-width: 640px) {
      .workBox .line {
        display: none; } }
    .workBox .line:before {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      background-color: #868686;
      border-radius: 50%;
      left: 50%;
      top: 0;
      transform: translate(-50%, -50%); }
    .workBox .line:after {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      background-color: #868686;
      border-radius: 50%;
      left: 50%;
      bottom: -6px;
      transform: translate(-50%, -50%); }
  .workBox .titleBox {
    margin-bottom: 30px; }
  .workBox .dataBox {
    max-width: 1400px;
    margin: auto; }
  .workBox .dataItem {
    position: relative; }
    .workBox .dataItem .link {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 5; }
    .workBox .dataItem:nth-child(even) .wrap {
      flex-direction: row-reverse;
      margin-left: -100px; }
      @media (max-width: 1024px) {
        .workBox .dataItem:nth-child(even) .wrap {
          flex-direction: row;
          margin-left: 0; } }
      @media (max-width: 640px) {
        .workBox .dataItem:nth-child(even) .wrap {
          flex-direction: column; } }
    @media (min-width: 1281px) {
      .workBox .dataItem:hover .imgBox img {
        scale: 1.1; }
      .workBox .dataItem:hover .title {
        color: #f18e00; }
      .workBox .dataItem:hover .btnBox .btn {
        background-color: #f18e00;
        border-color: #f18e00;
        color: #fff; } }
    .workBox .dataItem .wrap {
      padding: 40px 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      gap: 30px; }
      @media (max-width: 1024px) {
        .workBox .dataItem .wrap {
          padding: 20px; } }
      @media (max-width: 640px) {
        .workBox .dataItem .wrap {
          display: flex;
          flex-direction: column;
          gap: 20px;
          padding: 20px 0; } }
      .workBox .dataItem .wrap:after {
        content: "";
        position: absolute;
        width: 30px;
        height: 50px;
        background-image: url("../assets/images/newsDeco.svg");
        left: 0;
        top: 50%;
        transform: translate(-50%, -50%);
        opacity: 0; }
    .workBox .dataItem .dateBox {
      height: 60px;
      width: 60px;
      border-radius: 50%;
      border: 2px solid #fff;
      background-image: linear-gradient(to bottom, #fff 65%, #f18e00 65%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25); }
      @media (max-width: 640px) {
        .workBox .dataItem .dateBox {
          order: 0; } }
      .workBox .dataItem .dateBox .day {
        color: #000;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 5px;
        line-height: 1;
        text-wrap: nowrap; }
      .workBox .dataItem .dateBox .month {
        color: #000;
        font-size: 12px;
        line-height: 1; }
    .workBox .dataItem .imgBox {
      font-size: 0;
      max-width: 400px;
      width: 400px;
      height: 240px;
      overflow: hidden; }
      @media (max-width: 1024px) {
        .workBox .dataItem .imgBox {
          max-width: 300px; } }
      @media (max-width: 640px) {
        .workBox .dataItem .imgBox {
          order: 1; } }
      .workBox .dataItem .imgBox img {
        max-width: 100%;
        object-fit: cover; }
    .workBox .dataItem .textBox {
      max-width: 450px; }
      @media (max-width: 1024px) {
        .workBox .dataItem .textBox {
          max-width: auto; } }
      @media (max-width: 640px) {
        .workBox .dataItem .textBox {
          order: 2; } }
    .workBox .dataItem .title {
      color: #000;
      font-weight: 500;
      font-size: 20px;
      line-height: 1.5;
      letter-spacing: 1.75px;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
    .workBox .dataItem .desc {
      color: #000;
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden; }

.workContent {
  padding-bottom: 50px;
  position: relative; }
  .workContent .bottomLine {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #868686;
    bottom: 0;
    left: 0; }
    .workContent .bottomLine:before {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      background-color: #868686;
      border-radius: 50%;
      left: -6px;
      top: 50%;
      transform: translateY(-50%); }
    .workContent .bottomLine:after {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      background-color: #868686;
      border-radius: 50%;
      right: -6px;
      top: 50%;
      transform: translateY(-50%); }
  .workContent .imgBox {
    max-width: 100%;
    width: 1050px;
    height: 630px;
    aspect-ratio: 1050/630;
    margin-bottom: 30px; }
    .workContent .imgBox img {
      max-width: 100%;
      width: 100%;
      height: auto;
      object-fit: cover; }
  .workContent .topBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px; }
  .workContent .viewBox {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #434343;
    font-weight: 500; }
  .workContent .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px; }
  .workContent .desc {
    line-height: 1.75;
    letter-spacing: 0.64px; }

.albumList {
  padding: 20px 0;
  gap: 10px; }
  .albumList .albumItem {
    position: relative;
    font-size: 0;
    aspect-ratio: 225/200;
    max-width: 100%;
    width: 255px;
    height: 200px; }
    @media (min-width: 1281px) {
      .albumList .albumItem:hover:before {
        content: "";
        position: absolute;
        opacity: 1; } }
    .albumList .albumItem:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background-image: url("../assets/images/news_album_mask.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      pointer-events: none;
      opacity: 0; }
    .albumList .albumItem img {
      max-width: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover; }

.btnBox {
  justify-content: center; }
