/* 全局樣式 */
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
html{
  overflow-x: hidden;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}
.swiper{
  overflow: hidden;
}
/* 導航欄 */
#navbar {
    /* position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    padding: 10px 0;
    z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-around; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* width: 100vw; */
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;

    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.logo {
	max-width: 280px;
	width: 100%;
}

img{
	width: 100%;
	max-width: 100%;
	height: auto;
}

/* 漢堡菜單按鈕樣式 */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1a3066;
    transition: all 0.3s ease;
  }

#navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

#navbar ul li {
    margin: 0 15px;
}

#navbar ul li a {
    color: #072957;
    text-decoration: none;
    font-weight: bold;
	font-size: 17px;
}

#navbar ul li a:hover {
    color: #f4c10f;
}

#navbar ul li a.active{
    color: #f4c10f;
}

/* 每個區塊的樣式 */
.section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
.nav-list{
  position: relative;
}
.nav-list .mobile-logo {
  display: none;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: absolute;
  top: 20px;
}

.nav-list .mobile-logo img {
  width: 220px;
  max-width: 100%;
  height: auto;
}

/* 移動端樣式 */
@media (max-width: 768px) {
    #navbar{
        justify-content: space-between;
        padding: 10px 20px 10px 10px;
    }
    .logo{
        max-width: 220px;
    }
    .menu-toggle {
      display: flex;
    }
    .nav-list .mobile-logo {
      display: block;
    }

    #navbar ul{
        padding-top: 110px;
        justify-content: flex-start;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: -100%;
      bottom: auto;
      width: 80%;
      height: 100vh;
      background: #fff;
      flex-direction: column;
      gap: 0;
      padding: 80px 30px 30px;
      transition: right 0.3s ease;
      box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }
  
    .nav-list.active {
      right: 0;
    }
  
    .nav-list li {
      padding: 15px 0;
      border-bottom: 1px solid #eee;
    }
  
    /* 漢堡菜單動畫 */
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }
  
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -6px);
    }
  }

#home {
    background: #f4f4f4;
}




.container{
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
  overflow: hidden;
}
.title h3{
	font-size: 45px;
	line-height: 50px;
	text-align: center;
	font-weight: 600;
    position: relative;
	color: #072957;
    padding-bottom: 15px;
}
.title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #1a3066;
  }

.title p{
	font-size: 20px;
	text-align: center;
}


.property-section {
    padding: 80px 0;
	background: #fff;
}


.question-block {
    /* background: #f8f9fa; */
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #072957;
}

.question-block:hover {
    transform: translateY(-3px);
}

.question-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #072957;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}


.question-answer {
    color: #666;
    line-height: 29px;
    padding-left: 30px;
	font-size: 17px;
	font-weight: 500;
}


.property-types {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 20px;
	flex-wrap: wrap;
	justify-content: space-around;
	row-gap: 30px;
}

.property-item {
	width: 30%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.property-item:hover {
    transform: translateY(-5px);
}

.property-image {
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-info {
    padding: 20px;
    text-align: center;
}

.property-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.property-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}


.property-section .col-lg-4{
	width: 32%;
}
.property-section .row{
	display: flex;
	justify-content: space-around;
	row-gap: 30px;
	margin: 50px 0 30px 0;
}
.service .service-desc{
	right: -25px;
	background-color: rgba(7,41,87,0.95);
	box-shadow: 0 2px 15px rgba(0,0,0,0.2);
	width: 250px;
}
.service .service-desc:hover{
    background-color: rgba(244,193,15,0.95);
}
.service{
	box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}
.pro-des h5{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
	font-size: 25px;
}



/* 禁用狀態樣式 */
.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* 教育 */
.edu-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  /* 標題樣式 */
  .edu-section .title {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .edu-section .title h3 {
    font-size: 36px;
    color: #1a3066;
    margin-bottom: 20px;
  }
  
  
  /* 內容布局 */
  .edu-content {
    display: flex;
    gap: 50px;
    align-items: center;
  }
  
  /* 左側文字卡片 */
  .edu-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .edu-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .edu-card:hover {
    transform: translateY(-5px);
  }
  
  .edu-card i {
    font-size: 24px;
    color: #1a3066;
    margin-bottom: 15px;
  }
  
  .edu-card p {
    line-height: 1.8;
    color: #666;
    font-size: 17px;
  }
  
  /* 右側輪播圖 */
  .edu-swiper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
  }
  
  .edu-item {
    position: relative;
    overflow: hidden;
  }
  
  .edu-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .edu-item:hover img {
    transform: scale(1.1);
  }
  
  /* 輪播圖文字遮罩 */
  .edu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    /* transform: translateY(100%);
    transition: transform 0.3s ease; */
  }

  .edu-overlay {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.2s ease;
  }
  
  .edu-overlay.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .edu-item:hover .edu-overlay {
    transform: translateY(0);
  }
  
  .edu-overlay h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  /* Swiper 導航按鈕 */
  .swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    color: #072957;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #072957;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: #fff;
}
  
  /* 響應式設計 */
  @media (max-width: 992px) {
    .edu-content {
      flex-direction: column;
    }
  
    .edu-item img {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .title h3 {
      font-size: 28px;
    }
  
    .edu-card {
      padding: 20px;
    }
  
    .edu-item img {
      height: 300px;
    }

    .edu-swiper {
        padding: 0;
        width: 100%;
    }
    

    
    .swiper-button-prev,
    .swiper-button-next {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 15px;
    }

    .edu-overlay{
      padding: 20px;
    }
    .edu-overlay h4{
      margin-bottom: 0;
    }
    .edu-overlay p{
      margin-top: 3px;
    }
  }

/* 教育 */



/* 僱傭服務 */
.employ-section{
	padding: 80px 0;
}
.employ-container .title p{
	text-align: left;
	text-indent: 2em;
}

.business-section{
	padding: 80px 0;
}

.employ-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.employ-row {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.employ-row:hover {
    transform: translateY(-5px);
}

.employ-left {
    position: relative;
}

.employ-left span {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    background-color: rgba(7,41,87,0.9);
    color: #fff;
}



.employ-left img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.employ-right {
    padding: 25px;
}

.employ-right p {
    margin-bottom: 10px;
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
}

.employ-right strong {
    color: #072957;
    margin-right: 10px;
    font-weight: 600;
    font-size: 17px;
}
/* .employ-right p:first-child{
  margin-bottom: 10px;
} */
/* 工作範圍列表樣式 */
.employ-right p:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

/* 響應式調整 */
@media (max-width: 992px) {
    .employ-row {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .employ-row {
        flex: 0 0 100%;
    }
    
    .employ-container .title h3 {
        font-size: 2rem;
    }
    
    .employ-left img {
        height: 200px;
    }
}

/* 僱傭服務 */


/* 移民服務 */
.immigration-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.immigration-header h2{
    color: #072957;
    font-size: 50px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}
.immigration-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #1a3066;
  }
.immigration-container .title p{
    text-align: left;
    font-size: 17px;
}

.plans-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* 左側常規計劃樣式 */
.regular-plans h3,
.new-plans h3 {
    color: #072957;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.regular-plans h3 span,
.new-plans h3 span {
    color: #f4c10f;
}

.plans-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.plan-item {
    width: 48%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.plan-item .fas {
    color: #072957;
    font-size: 1.2rem;
    min-width: 24px;
    display: inline-block;
}

.plan-item span {
    color: #333;
    font-size: 0.95rem;
}

/* 右側最新計劃樣式 */
.new-plan-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #f4c10f;
}

.new-plan-card .plan-icon {
    width: 60px;
    height: 60px;
    background: #fff3e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.new-plan-card .plan-icon span {
    font-size: 24px;
    color: #f4c10f;
}

.new-plan-card h4 {
    color: #072957;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.new-plan-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f4c10f;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.new-plans .plan-icon{
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.new-plan-card:hover .plan-icon{
    transform: rotateY(360deg);
}

/* 響應式調整 */
@media (max-width: 992px) {
    .plans-container {
        grid-template-columns: 1fr;
    }
    
    .new-plans {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .plan-item {
        padding: 10px 15px;
        width: 100%;
    }
    
    .plan-item span {
        font-size: 0.9rem;
    }
}
/* 移民服務 */


/* 联络我们 */

.google-map-container{
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}
.contact-container{
	display: flex;
	column-gap: 50px;
}
.contact-container .contact-left{
	width: 50%;
}
.contact-container .contact-right{
	width: 50%;
}
.isotope-tt{
	flex-direction: column;
}
.contact-section{
    padding: 80px 0;
    background-color: #f8f9fa;
}
.contact-section .btn{
    background-color: #072957;
    border-color: #072957;
}
.contact-section .btn:hover{
    background-color: #f4c10f;
    border-color: #f4c10f;
}
.google-map-container h3{
    margin-bottom: 50px;
    font-size: 45px;
    font-weight: 600;
    color: #072957;
    position: relative;
    padding-bottom: 15px;
}
.google-map-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #1a3066;
  }

/* 聯絡我們 */

.whatsapp-fix-icon{
	position: fixed;
	right: 41px;
	bottom: 100px;
	background: #072957;
	box-shadow:  0 1px 10px 0 rgba(0, 0, 0, 0.15);
	border-radius: 50%;
	width: 46px;
	height: 46px;
	text-align: center;
	line-height: 46px;
	font-size: 20px;
	color: #fff;
	z-index: 100;
    transition: all 0.3s ease;
}
.whatsapp-fix-icon:hover{
	background: #fff !important;
	color: #072957 !important;
}

.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-main{
	padding: 5px 0;
}

.footer-classic .order-lg-2 a,.footer-classic .order-lg-1 a{
	color: rgba(255, 255, 255, 0.7);
}
.footer-right-txt p{
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
}
.footer-classic h6{
    color: #fff;
    text-transform: none;
}
.footer-classic .icon::before{
    color: rgba(255, 255, 255, 0.7);
}
.list-inline .icon-xxs::before{
    color: #072957;
}
.bg-accent{
    background-color: #072957;
}
.footer-classic .brand img{
    width: 300px;
}

.ui-to-top{
    background-color: rgba(255, 255, 255);
    color: #072957;
}
.ui-to-top:hover{
    background-color: #fff !important;
    color: #072957 !important;
}


/* 創業 */
.business-section {
    padding: 80px 0;
  }
  
  .business-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  /* 左側輪播圖 */
  .bus-left {
    width: 50%;
  }
  
  .business-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .business-swiper img {
    width: 100%;
    height: auto;
    display: block;
  }

  .business-swiper .swiper-pagination{
    bottom: 20px;
  }
  .business-swiper .swiper-pagination-bullet{
    background-color: rgba(255, 255, 255, 0.7);
  }
  
  /* 右側文字 */
  .bus-right {
    width: 50%;
  }
  
  .bus-right h2 {
    margin-bottom: 20px;
    color: #072957;
    font-weight: 500;
    font-size: 45px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
  }
.bus-right h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #1a3066;
  }
  
  .bus-right p {
    line-height: 1.6;
    color: #666;
    font-size: 20px;
  }
  
  /* 響應式 */
  @media (max-width: 768px) {
    .business-wrapper {
      flex-direction: column;
    }
    
    .bus-left,
    .bus-right {
      width: 100%;
    }
  }
/* 創業 */


.edu-section{
    background-color: #f8f9fa;
}


#home {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/estate-2.jpg');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 87px 20px 0 20px;
  }

  /* 只在桌面版使用 fixed 背景 */
@media (min-width: 769px) {
  #home {
      background-attachment: fixed;
  }
}

/* 移動端特別處理 */
@media (max-width: 768px) {
  #home {
      background-attachment: scroll; /* 移動端使用滾動背景 */
      background-position: center center;
      background-repeat: no-repeat;
  }
}
  
  #home h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  #home p {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  .home-section .btn-primary {
    background-color: #072957;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    border-color: #072957;
  }
  
  .home-section .btn-primary:hover {
    background-color: #fff;
    color: #072957;
  }


  /* 公司介紹 */

  .about-section{
        padding: 80px 0;
        /* background: #F1F3F9; */
        fill: #F1F3F9;
    }
    .content{
        margin-top: 30px;
    }
    .content p{
        font-size: 20px;
        line-height: 45px;
        text-indent: 2em;
        color: #333;
    }
  .about-section .content p:last-child {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .about-section .content p span{
    margin-right: 20px;
  }
  .about-section .title {
    text-align: center;
    margin-bottom: 50px;
  }
  .about-section .title h3 {
    font-size: 45px;
    color: #1a3066;  /* 深藍色 */
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
  }
  
  .about-section .title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #1a3066;
  }
  @media (max-width: 768px) {
    .about-section {
      padding: 50px 20px;
    }
  
    .about-section .title h3 {
      font-size: 28px;
    }
  
    .about-section .content p {
      font-size: 16px;
      line-height: 30px;
    }
  }

  /* 公司介紹 */

  /* 地圖懶加載 */
  .map-placeholder {
	position: relative;
	background: #f5f5f5;
	min-height: 450px;
  }
  
  .map-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #666;
  }
  
  .map-placeholder iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.3s;
  }
  
  .map-placeholder.loaded iframe {
	opacity: 1;
  }
  /* 地圖懶加載 */

  .footer-right-txt .M-logo{
    display: none;
  }

  @media screen and (max-width:768px) {
    #home h1{
        font-size: 30px;
        margin-bottom: 0;
    }
    #home p{
        font-size: 18px;
        margin-bottom: 0;
    }

    .property-section .col-lg-4{
        width: 100%;
    }
    .service .service-desc{
        width: 100%;
        right: 0;
        max-width: 100%;
        text-align: center;
    }

    .edu-container .title p{
        font-size: 18px;
    }

    .plan-item .fas{
        min-width: 15px;
    }

    .bus-right p{
        font-size: 17px;
    }

    .contact-container{
        flex-direction: column;
    }

    .contact-container .contact-left{
        width: 100%;
    }
    .contact-container .contact-right{
        width: 100%;
        margin-top: 30px;
    }

    .whatsapp-fix-icon{
        right: 20px;
        bottom: 80px;
    }
    .ui-to-top{
        right: 20px;
        bottom: 20px;
    }

    .property-section{
        padding: 50px 0;
    }
    .edu-section{
        padding: 50px 0;
    }
    .employ-section{
        padding: 50px 0;
    }
    .edu-card p{
        font-size: 16px;
    }
    .employ-container .title p{
        font-size: 16px;
    }
    .immigration-section{
        padding: 50px 0;
    }
    .immigration-container h2{
        font-size: 38px;
    }
    .business-section{
        padding: 50px 0;
    }
    .bus-right h2{
        font-size: 38px;
    }

    .contact-section{
        padding: 50px 0;
    }
    .google-map-container h3{
        font-size: 38px;
    }

    .footer-classic .rights{
        margin-top: 30px;
    }
    .footer-classic{
      padding-top: 30px;
    }
    .footer-right-txt .M-logo{
      display: block;
      margin-left: -26px;
    }
    .footer-right-txt .M-logo img{
      width: 300px;
    }
    .footer-right-txt h6{
      display: none;
    }
    .M-logo-bottom{
      display: none;
    }


    
  }
  .back-to-top {
    display: none;
}


/* 移動端適配 */
@media (max-width: 768px) {
   /* 回到頂部按鈕樣式 */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #072957;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* 激活狀態 */
.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); 
}

/* 懸停效果 */
.back-to-top:hover {
  background: #072957;
  color: #fff;
}
  .back-to-top {
      width: 46px;
      height: 46px;
      right: 20px;
      bottom: 20px;
      font-size: 20px;
  }

}