/* top banner -------------------------------------------------------------- */
.banner_b .pic{
    height: 480px;
}
.big_mark{
    text-align: center;
    margin-top: 20px;
}
.sub_label{
    text-align: center;
    margin-bottom: 0;
}

@media only screen and (max-width: 680px) {
    .big_mark {
        font-size: 32px;
        text-align: center;
        margin-top: 80px;
        margin-bottom: 20px;
    }
    .sub_label{
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 390px) {
    .big_mark {
        font-size: 28px;
        text-align: center;
        margin-top: 80px;
        margin-bottom: 20px;
    }
    .sub_label{
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }
}
/* top banner end----------------------------------------------------------- */

/*成功案例 -------------------------------------------------------------------*/
.tabbable-responsive {
    display: block;
    min-width: 100%;
    overflow-x: auto;height: 50px;
    margin: 0px -21px -13px -21px;
  }
  
  .tab__bar {
    position: relative;
    margin: 60px 0px 30px 0px;
  }
  .tab__bar .tab__navigation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: fit-content;
    margin: 0 auto;
   
  }
  .tab__bar .tab__menu {
    color: var(--Grayscale_900);
    list-style: none;
    max-width: 800px;
    white-space: nowrap;
    scroll-behavior: smooth;
    user-select: none;
    overflow-x: auto;
  }
  .tab__bar .tab__menu.dragging {
    scroll-behavior: unset;
    cursor: grab;
  }
  .tab__bar .tab__menu.dragging .tab-btn {
    pointer-events: none;
  }
  .tab__bar .tab__menu::-webkit-scrollbar {
    display: none;
  }
  .tab__bar .tab__menu .tab__btn {
    display: inline-block;
    color: var(--text-color);
    font-size: 1em;
    font-weight: 400;
    margin: 0 2px;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
  }
  .tab__bar .tab__menu .tab__btn:hover {
    background-color: var(--Secondary_base);
  }
  .tab__bar .tab__menu .tab__btn.active {
    background-color: var(--Secondary_base);
  }
  .tab__bar .left__btn, .tab__bar .right__btn {
    position: absolute;
    color: var(--text-color);
    /* font-size: 1.8em; */
    cursor: pointer;
  }
  .tab__bar .left__btn svg, .tab__bar .right__btn svg {
    width: 16px;
    height: 16px;
  }
  .tab__bar .left__btn svg path, .tab__bar .right__btn svg path {
    fill: var(--Grayscale_900);
  }
  .tab__bar .left__btn {
    display: none;
    left: 0px;
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.85) 60%);
    padding: 10px 20px 10px 0;
  }
  .tab__bar .right__btn {
    right: 0px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.85) 60%);
    padding: 10px 0 10px 20px;
  }
  .tab__content {
    position: relative;
  }
  .tab__content .tab {
    position: relative;
    width: 100%;
    /*padding: 15px 20px;*/
    display: none;
    animation: fadein 0.8s;
  }
  .tab__content .tab.active {
    display: flex;
  }
  .tab__content .tab .row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  @media (max-width: 767px) {
    .tab__content .tab .row {
      flex-direction: column;
    }
  }
  .tab__content .left-column, .tab__content .right-column {
    width: 50%;
    max-width: 500px;
  }
  @media (max-width: 767px) {
    .tab__content .left-column, .tab__content .right-column {
      width: 100%;
      max-width: 700px;
    }
  }
  .tab__content .left-column {
    display: flex;
    align-items: center;
  }
  .tab__content .left-column .img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--box-shadow);
  }
  .tab__content .left-column .img-card img {
    width: 100%;
  }
  .tab__content .info .city {
    margin-bottom: 15px;
    font-size: 32px;
  }
  .tab__content .info .description {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.8;
  }
  @media (max-width: 767px) {
    .tab__content .info .description {
      text-align: justify;
    }
  }
  .tab__content .info .city, .tab__content .info .description {
    color: #2e2e41;
  }
  @media (max-width: 767px) {
    .tab__content .info .city, .tab__content .info .description {
      text-align: center;
    }
  }
  @keyframes fadein {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .case{display: flex;flex-wrap: wrap;align-items: stretch;}
  .case>li{width: 32%;display: flex;margin: 0 2% 2% 0; background-color: var(--Primary_opacity_8);border-radius: 10px;}
  .case>li:nth-child(3n){margin: 0 0% 2% 0;}
  .case li {
    transition: transform 0.2s ease-in-out,
                box-shadow 0.2s ease-in-out;
  }
  .case li:hover{
    transform: scale(1.04); /* 滑鼠懸停時，放大 1.1 倍 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); /* 滑鼠懸停時加陰影 */
  }
  .case a{text-decoration: none;color: var(--Grayscale_900);}
  .case .pic img{border-radius: 10px 10px 0 0;}
  .case .text{font-size: 20px;margin-top: 4px;margin-bottom: 20px;padding: 0 10px;}
  .case .text>span{font-weight: bold !important;}
  .case .subtext{font-size: 16px;}
  .case .sort{
    display: flex;
    justify-content: center; 
    gap: 10px;
    margin-top: 10px;
    
  }
  .case .sort .tag {
    font-size: 14px;
    padding: 0 16px;
    border-radius: 20px;
    color: var(--Grayscale_0);
  }
  .case .sort .tag_1 {
    background-color: var(--Primary_base);
  }
  .case .sort .tag_2 {
    background-color: #bd673f;
  }
  .no_case{margin: auto;color: var(--Grayscale_600);}

  @media only screen and (max-width: 992px) {
    .case .sort{
      /*flex-direction: column;*/
      align-items: center;
      
    }
   
  }

  @media screen and (max-width: 680px) {
    .case>li {
        display: block;
        width: 100%;
        margin: 0 0 20px 0;
      }
      .case>li:nth-child(3n){margin: 0 0 20px 0;}
    }

  

  /*成功案例 end ------------------------------------------------------------*/




/* 呼籲口號 ----------------------------------------------------------------- */
.final_slogan{
    padding: 100px 0;
}
.final_slogan .title{
    margin-bottom: 40px;

}
.final_slogan .btn{
    font-size: 24px;
    color: #FFF;
    display: flex;
    justify-content: center;
    margin: auto;
    background-color: var(--Secondary_base);
    width: fit-content;
    height: fit-content;
    padding: 16px 24px;
    border-radius: 6px;
}

.final_slogan .btn{
  transition: transform 0.3s ease-in-out,
              box-shadow 0.3s ease-in-out;
}

.final_slogan .btn:hover{
  transform: scale(1.04); /* 滑鼠懸停時，放大 1.1 倍 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); /* 滑鼠懸停時加陰影 */
}


@media only screen and (max-width: 992px) {
    .final_slogan{
        padding: 60px 0;
    }
    .final_slogan .title{
        font-size: 28px;
        margin-bottom: 30px;
    
    }
    .final_slogan .btn{
        font-size: 18px;
        color: #FFF;
        display: flex;
        justify-content: center;
        margin: auto;
        background-color: var(--Secondary_base);
        width: fit-content;
        height: fit-content;
        padding: 16px 24px;
        border-radius: 6px;
    }
}

@media only screen and (max-width: 680px) {
    .final_slogan{
        padding: 40px 0;
    }
    .final_slogan .title{
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 30px;
    
    }
    .final_slogan .btn{
        font-size: 16px;
        color: #FFF;
        display: flex;
        justify-content: center;
        margin: auto;
        background-color: var(--Secondary_base);
        width: fit-content;
        height: fit-content;
        padding: 16px 24px;
        border-radius: 6px;
    }
}

/* 呼籲口號 end-------------------------------------------------------------- */


