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

.insContent .bottomBox .item:before, .insContent .bottomBox .item:after, .insContent .bottomBox .item img {
  transition: all 0.65s ease-in-out; }

.filterBox {
  text-align: right; }
  .filterBox select {
    background-color: transparent;
    color: #a15e3d;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-bottom: 1px solid #a15e3d;
    padding: 2.5px 20px;
    letter-spacing: 1.4px; }

.dataItem {
  align-items: center;
  display: flex;
  position: relative;
  margin-bottom: 60px; }
  @media (max-width: 640px) {
    .dataItem {
      flex-direction: column; } }
  .dataItem:nth-child(even) {
    flex-direction: row-reverse; }
    @media (max-width: 640px) {
      .dataItem:nth-child(even) {
        flex-direction: column; } }
    .dataItem:nth-child(even) .textBox {
      top: 10%;
      right: auto;
      left: 0; }
      .dataItem:nth-child(even) .textBox:after {
        content: "";
        position: absolute;
        background-color: #61705f; }
    .dataItem:nth-child(even) .title {
      color: #61705f; }
  .dataItem .imgBox {
    width: 70%; }
    @media (max-width: 640px) {
      .dataItem .imgBox {
        width: 100%; } }
  .dataItem .textBox {
    position: absolute;
    top: 30%;
    right: 0;
    width: 40%;
    padding: 70px 50px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.26); }
    @media (max-width: 640px) {
      .dataItem .textBox {
        position: relative;
        width: 100%;
        padding: 20px 40px; } }
    .dataItem .textBox:after {
      content: "";
      position: absolute;
      height: 50%;
      top: -10px;
      left: 0;
      width: 20px;
      background-color: #a15e3d; }
  .dataItem .title {
    font-size: 24px;
    font-weight: 700;
    display: block;
    color: #a15e3d;
    margin-bottom: 15px;
    letter-spacing: 2.4px; }
  .dataItem .desc {
    font-size: 18px;
    color: #525252;
    margin-bottom: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 1.8px; }
    @media (max-width: 640px) {
      .dataItem .desc {
        font-size: 16px;
        margin-bottom: 20px;
        letter-spacing: 0.96px; } }
  .dataItem .btnBox {
    justify-content: flex-end; }

.insContent .dataBox {
  position: relative;
  padding: 50px;
  margin-bottom: 30px;
  background-color: rgba(250, 241, 216, 0.25);
  color: #000; }
  @media (max-width: 640px) {
    .insContent .dataBox {
      padding: 20px; } }
  .insContent .dataBox:after {
    content: "";
    position: absolute;
    height: 135px;
    top: -10px;
    left: 0;
    width: 20px;
    background-color: #a15e3d; }
    @media (max-width: 640px) {
      .insContent .dataBox:after {
        display: none; } }
  .insContent .dataBox .title {
    color: #a15e3d;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2.4px; }
  .insContent .dataBox .desc {
    color: #525252;
    line-height: calc(28/16);
    letter-spacing: 1.6px; }

.insContent .bottomBox {
  margin-top: 50px;
  display: flex;
  gap: 20px; }
  .insContent .bottomBox .leftBox,
  .insContent .bottomBox .centerBox,
  .insContent .bottomBox .rightBox {
    display: flex;
    flex-direction: column;
    gap: 30px; }
  .insContent .bottomBox .item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 0; }
    @media (min-width: 1281px) {
      .insContent .bottomBox .item:hover img {
        transform: scale(1.1); }
      .insContent .bottomBox .item:hover:before {
        content: "";
        position: absolute;
        opacity: 1; }
      .insContent .bottomBox .item:hover:after {
        content: "";
        position: absolute;
        opacity: 1; } }
    .insContent .bottomBox .item:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background-color: rgba(40, 65, 36, 0.5);
      z-index: 5;
      opacity: 0; }
    .insContent .bottomBox .item:after {
      content: "";
      position: absolute;
      width: 40px;
      height: 40px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      background-image: url("../assets/images/iconZoomIn.svg");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 6; }
    .insContent .bottomBox .item img {
      width: 100%;
      height: 100%; }

.insContent .albumList {
  display: none; }
