/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family:'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', sans-serif;

    background-color: #fbd8b6; 

}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}


.faq-cta .btn-primary {
  background-color: #f85d23;
  border-color: var(--accent-color);
  padding: 16px 50px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
    font-size: 24px;
    
}

.faq-cta .btn-primary:hover {
  background-color: color-mix(in srgb, #f85d23, #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}



.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}
.col-xs-15 {
    width: 20%;
    float: left;
}

@media (max-width: 767px) {
  .col-sm-ttt {
        width: 50%;
        float: left;
    }
}
@media (min-width: 768px) {
.col-sm-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fef8f5;
}

.section-title {
  text-align: center;
  padding-top: 30px;
    
}
.section-title h2 {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 0;
line-height: 30px;
  margin: 20px;
  color: #5d5959;
}
.section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 28px;
  font-weight: 700;
  color: #4e4039;
}
.section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #eb5d1e;
  bottom: 0;
  left: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/* ==電腦版=========== */

#TOP{
	width:100%;
	height:70px;
	background-color:#fff;
    position: fixed;
    top: 0;
    z-index: 99999;
}

#LOGO{
	width:200px;
	height:40px;
	background-image:url(logo.png);
	background-size:cover;
	margin-left:45px;
    margin-top: 15px;
	float: left;
	
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
    src='logo.png',
    sizingMethod='scale');
}

#LOGO a{
    display: block;
    width:200px;
	height:40px;
    margin-left:45px;
    margin-top: 15px;
}
@media screen and (max-width: 736px) {
	
	html, body{
		min-width: 320px;	}
	
	body:before {
		content: "";
		background-image: inherit; 
        position: fixed; 
        right: 0;
		bottom: 0;
        -webkit-background-size: cover; 
        -moz-background-size: cover; 
        -o-background-size: cover; 
        background-size: cover;
        z-index: -1;
	}

    #TOP{ height:50px; }
	#LOGO{ width:150px; height:30px; margin-left:20px; margin-top: 10px; }
    #LOGO a{ width:150px; height:30px; margin-left:0; margin-top: 0; }
    
	#BTN{
		margin-right: 20px;
	}

	#BTN a{
		line-height: 50px;
	}
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
    width: 200px;
  max-height: 50px;
  margin-left: 20px;
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 56vh;
  background: url(hero-bg.svg) top center no-repeat;
    background-color: #f6f6fc;
  background-size: cover;
}


.hero .hero-img {
  width: 70%;
}

@media (min-width: 1024px) {
  .hero {
    
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 60px 0 0px 0;
  }

  .hero .hero-img {
    
    margin-top: 5px;
  }

  .hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: right;
  }


  .hero .hero-img img {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {

  padding-top: 30px;
    margin-top: 20px;
}

.featured-services .service-item {

  
    border-radius: 50px;
  text-align: center;  
  background-color: #fbe7d3;
  padding: 10px;
  transition: all ease-in-out 0.4s;
   color: #4d1111; 
  height: 100%;
    width: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 6px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 24px;
    
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
}

.featured-services .service-item:hover h4 a {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .box {
  padding: 20px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.values .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .box h3 {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.values .box:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  color: #012970;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  line-height: 0;
  background: #ecf3ff;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: #4154f1;
  color: #fff;
}

.features .feture-tabs {
  margin-top: 120px;
}

.features .feture-tabs h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .features .feture-tabs h3 {
    font-size: 28px;
  }
}

.features .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}

.features .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #012970;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}

.features .feture-tabs .nav-link.active {
  color: #4154f1;
  border-bottom: 3px solid #4154f1;
}

.features .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #012970;
}

.features .feture-tabs .tab-content i {
  font-size: 24px;
  line-height: 0;
  margin-right: 8px;
  color: #4154f1;
}



/*--------------------------------------------------------------
# 表格
--------------------------------------------------------------*/
.comparison {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 30px;
  text-align: center;
  padding: 10px;
}
.comparison h2 {
  font-size: 22px;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: auto;
}

.comparison td,
.comparison th {
  border-right: 1px solid #E8E8E8;
  empty-cells: show;
  padding: 10px;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  color: #636363;
  font-size: 16px;
    text-align: center;

}

.comparison tbody tr:nth-child(odd) {
  display: none;
}

.comparison .compare-row {
  background: #F7F7F7;
}

.fa-check {
  color: #278dbb;
}

.comparison th {
  font-weight: normal;
  padding: 0;
  border-top: 0px solid #E8E8E8;
  border-bottom: 0px solid #E8E8E8;
}

.comparison tr td:first-child {
  text-align: left;
  padding: 15px;
  border-left: 1px solid #E8E8E8;
  border-top: 1px solid #E8E8E8;
}

.comparison .product,
.comparison .tl {
  color: #FFF;
  padding: 10px;
  font-size: 14px;
}

.comparison .tl2 {
  border-right: 0;
}

.comparison .product {
  background: #278dbb;
  height: 40px;
  font-size: 18px;
  font-weight: 700;
}

.comparison .price-info {
  padding: 15px;
}

.comparison .price-now,
.comparison .price-now span {
  color: #808080;
}

.comparison .price-now span {
  font-size: 36px;
  color: #545454;
}

.comparison .price-now p {
  font-size: 14px;
  text-align: center;
  line-height: 16px;
  display: inline;
}

.comparison .price-buy {
  background: #EC671A;
  padding: 10px 20px;
  font-size: 14px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  text-transform: uppercase;
  margin: 5px 0 10px 0;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.comparison .price-buy:hover {
  background: #E84D00;
}

@media screen and (min-width: 721px) and (max-width: 1000px) {
  .table_ul li {
    letter-spacing: 0px;
  }
  .comparison .price-now span {
    font-size: 32px;
  }
  .comparison .price-now p {
    display: block;
  }
}




.menus{
    display: flex;
    list-style: none;
    gap: 10px;
    margin: auto;
    padding: 0px 0px 20px;
    max-width: 1420px;
    text-align: center;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
}
.menus li {
    padding: 8px 30px;
    font-size: 22px;
    font-family: "Inter", Sans-serif;
    border-bottom: 2px solid transparent;
    min-width: 200px;
}
.menus li.active {
    font-weight: 600; 
  border-color: #000000;
}
.eael-data-table {
    width: 100%;
    height: auto;
    padding: 0px 50px;
    border-collapse: separate;
    border: none;
    max-width: 1520px;
    margin: 0 auto;
    border-spacing: 0px;
}
.eael-data-table thead tr th,
.eael-data-table tbody tr td{
    padding: 40px;
    font-size: 20px;
    line-height: 1.35em;
    border-radius: 0px;
    text-align: left;
}
.eael-data-table thead tr th:not(:first-child),
.eael-data-table tbody tr td:not(:first-child){
    text-align: center;
}
.eael-data-table thead tr th,
.eael-data-table tbody tr td.heading-tage,
.eael-data-table tbody tr td.heading-tage ~ td{
    background: #B6B6F2 !important;
    color: #FFFFFF !important;
}

@media only screen and (min-width: 1024px){
  .menus,
  .eael-data-table tbody tr:nth-child(1){display:none;}
}
@media only screen and (max-width: 1024.98px){
  .eael-data-table thead{
    display:none;
  }
}


.hidden-column {
    display: none;
}
/*--------------------------------------------------------------
# mm
--------------------------------------------------------------*/
.mm {

}
.mm ul {

list-style-type: decimal;

}

.mm li {
    font-size: 1.1em;
    line-height: 34px;
    font-weight: 600;
    text-align: justify;
    
}



  @media (max-width: 767px) {
.mm {


}
}
.mm h3 {
    font-weight: 600;
    font-size: 30px;
    border-bottom: 2px solid #F7A424;
   display: inline-block;
    margin: 50px 0 0;

}


/*--------------------------------------------------------------
# note
--------------------------------------------------------------*/
.note {
 background: #f1f0f0;

}

.note h3 {
    font-weight: 600;
    font-size: 24px;
   display: inline-block;


}

.note ul {

list-style-type: decimal;
}

.note li {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    
}
/*--------------------------------------------------------------
CIS
--------------------------------------------------------------*/
.cis{
	font-size:0.5em;
	color:#cacaca;
	padding-left: 10px;
	padding-bottom: 10px;
    background-color: #f1f0f0; 
}
@media screen and (max-width: 736px) {
    .cis{
		font-size:0.5em;
		
		padding-left: 2%;
		padding-bottom: 0;
	}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
  height: 60px;
  color: #fff;
  line-height: .7vw;
  clear: both;
  background-size: 100%;
    background-color: #ff0a00;
}

@media only screen and (max-width: 768px) {
  footer {
    padding-top: 20px;
    max-width: 100%;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 18px;
    margin: 0px auto;
    background-size: cover;
      height: 150px;


  }

  footer span {
    display: block;
    text-indent: -99999px;
    height: 7px;
  }
}

 .styled-table {
            width: 80%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 20px;
            min-width: 400px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
            border-radius: 5px;
            overflow: hidden;
            margin: 0 auto;
            background-color: #fdf1db;
        }
        
        .styled-table thead tr {
            background-color: #f19740;
            color: #ffffff;
            text-align: center;
            font-weight: bold;
        }
        
        .styled-table th,
        .styled-table td {
            padding: 12px 15px;
        }
        
        .styled-table tbody tr {
            border-bottom: 1px solid #dddddd;
        }
        
        .styled-table tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }
        
        .styled-table tbody tr:last-of-type {
            border-bottom: 2px solid #f19740;
        }
        
        .styled-table tbody tr:hover {
            background-color: #ffeac9;
            color: #4d1111;
            font-weight: bold;
        }
        

table,th,td {
  
    
    text-align:left; 
  padding:12px 24px; 
    border:thin solid #ccc; 
    border-collapse:collapse;}


.title-wrapper {
  position: relative;
     text-align: center;
    color: #eb5d1e;
}

.title-wrapper::before {
  content: attr(data-en);
  font-size: 40px;
  font-weight: bold;
  line-height: 30px;
}

.title {
  font-size: 20px;
  font-weight: bold;
  color: #eb5d1e;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
     text-align: center;
}

.title::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #eb5d1e;
  border-radius: 100vh;  
}

.title::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #eb5d1e;
  border-radius: 100vh;  
}