<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/*default*/
html { scroll-behavior: smooth; -webkit-scroll-behavior: smooth; width: 100%; height: 100%;}
img { 
    max-width: 100%;
    border: 0;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}
img a { outline : none;}
a:focus { outline: 0;}
a, img, li { 
	text-decoration: none !important;
	transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
}
body {
	width: 100%;
	height: 100%;
	margin: 0 auto;
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif !important;
    color: #343434;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	position: relative;
    -webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}



/* animation */
.hv-effect {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.hv-effect:hover, .hv-effect:focus, .hv-effect:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.hvr-forward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.hvr-forward:hover, .hvr-forward:focus, .hvr-forward:active {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}



/*head*/
.head {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.head .head_wrap {
    position: relative;
    width: 100%;
    background: url('../images/header_bg.webp') center top no-repeat;
    background-size: cover;
    margin: 0 auto;
    text-align: center;
}
.head .head_wrap img {
    width: 100vw;
    height: 81vh;
    
}


/* top_menu */
.top_menu {
	position: relative;
	width: 100%;
	margin: 0 auto;
	top: 0;
	display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    z-index: 9;
}
.top_menu ul {
	width: 100%;
	display: inline-flex;
    align-items: center;
    justify-content: center;
	background: linear-gradient(180deg, rgba(5,4,7,1) 0%, rgba(28,29,35,1) 100%);
    position: relative;
    padding: 1.2vw 0;
}
.top_menu ul li {
    position: relative;
	margin: 0 2%;
}
.top_menu ul li a {
	color: #fff;
	font-size: 1vw;
	font-family: 'Noto Sans TC';
	font-weight: 600;
	-webkit-transform: perspective(1px) translateZ(0);
  	transform: perspective(1px) translateZ(0);
	position: relative;
	display: inline-block;
}
.top_menu ul li a::before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 51%;
	right: 51%;
	bottom: -6px;
	background: #2e66ff;
	height: 3px;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.top_menu ul li a:hover:before,
.top_menu ul li a:focus:before,
.top_menu ul li a:active:before {
	left: 0;
	right: 0;
}


/* mobile menu */
.mobile_menu {
    display: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mMenu_wrap {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 60%;
    background: #000;
    transition: all 0.6s ease-in-out;
    z-index: 99;
    display: flex;
    justify-content: center;
}
#mMenu-active:checked ~ .mMenu_wrap{
    right: 0;
}
.mMenu-btn {
    position: fixed;
    right: 20px;
    top: 20px;
    height: 8vw;
    width: 8vw;
    background: rgba(0 0 0 / 55%);
    text-align: center;
    line-height: 50px;
    border: 1px solid #000;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.mMenu-btn span,
.mMenu-btn:before,
.mMenu-btn:after {
    content: '';
    position: absolute;
    width: 50%;
    border-bottom: 2px solid #9bc1e4;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mMenu-btn:before {
    transform: translateY(-10px);
}
.mMenu-btn:after {
    transform: translateY(10px);
}


.mMenu-close {
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background .6s;
    z-index: 100;
}

/* closing animation */
#mMenu-active:checked + .mMenu-btn span {
    transform: scaleX(0);
}
#mMenu-active:checked + .mMenu-btn:before {
    transform: rotate(45deg);
    border-color: #fff;
}
#mMenu-active:checked + .mMenu-btn:after {
    transform: rotate(-45deg);
    border-color: #fff;
}


.mMenu_wrap ul {
    position: relative;
    list-style: none;
    text-align: left;
    padding: 15vw 0;
}
.mMenu_wrap ul li {
    margin: 5vw 0;
}
.mMenu_wrap ul li a {
    text-decoration: none;
    font-size: 5vw;
    font-weight: 500;
    color: #fff;
    position: relative;
    opacity: 0;
    transition: all 0.3s ease;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mMenu_wrap ul li a:hover {
    color: #2e66ff;
}
input[type="checkbox"] {
    display: none;
}

#mMenu-active:checked ~ .mMenu_wrap ul li a {
    opacity: 1;
}
.mMenu_wrap ul li a {
    transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateX(100px);
}
#mMenu-active:checked ~ .mMenu_wrap ul li a {
    transform: none;
    transition-timing-function: ease, cubic-bezier(.1,1.3,.3,1);
    transition-delay: .6s;
    transform: translateX(-100px);
}

@media screen and (max-width:1024px) {
	
	.index_top_menu { display: none;}
	.mobile_menu { display: block;}
	
}


/*download*/
.download {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 1.2vw 0;
    background: linear-gradient(0deg, rgba(5,4,7,1) 0%, rgba(28,29,35,1) 100%);
    z-index: 9;
}
.download .download_wrap {
    width: 36%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.download a {
    margin: 0 10px;
}




/*feature*/
.feature {
    position: relative;
    width: 100%;
    background: url('../images/main_bg.webp') center top no-repeat;
    background-size: cover;
    margin: 0 auto;
    padding: 4vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature .feature_wrap {
    position: relative;
    max-width: 1920px;
    width: 1100px;
    text-align: center;
}
.title {
    width: 30vw;
    margin: 0 auto;
}
.feature .system_content {
    width: 100%;
    margin: 5% auto 0 auto;
}
.feature .swipe_area_pad, .feature .swipe_area_m { display: none;}




/*footer*/
.footer {
	width: 100%;
    background: #06163e;
    position: relative;
    padding: 2% 0 10% 0;
    text-align: center;
}
.footer .link {
    width: 45%;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer .link a {
    width: 20%;
	color: #fff;
    margin-right: 4%;
	text-decoration: none;
	transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
}
.footer a:hover { opacity: .7;}
.footer .rating {
    position: relative;
    display: inline-flex;
    color: #fff;
    font-size: 12px;
    text-align: left;
    line-height: 1.5;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 60%;
}
.footer .rating ul { margin-left: 3%;}
.footer h6 {
    color: #fff;
    font-size: 14px;
    margin-top: 15px;
}



/*----------------------------------------Mac book---------------------------------------------------*/
@media screen and (max-width:1440px) {
	
	
}
/*----------------------------------------小尺寸筆電---------------------------------------------------*/
@media screen and (max-width:1280px) and (min-width:1025px) {
	
    .footer .link { width: 50%;}
	
}
/*----------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1024px) {

    .sec_wrapper { width: 100%;}

    .head .head_wrap { background: url('../images/pad_header_bg.webp') center top no-repeat; background-size: cover;}
    .head .head_wrap img { height: 100vh;}
    .top_menu { display: none;}

    .download { padding: 4% 0;}
    .download .download_wrap { width: 90%;}
    .download a { margin: 0 5px;}

    .feature { background: url('../images/main_bg_m.webp') center top no-repeat; background-size: cover; padding: 12% 0;}
    .feature .feature_wrap { width: 100%;}
    .title { width: 45vw;}
    .feature .swipe_area { display: none;}
    .feature .swipe_area_pad { display: block;}


    .footer { padding: 5% 0 25% 0;}
    .footer .link { flex-direction: column; width: 90%;}
    .footer .link a { margin: 0 auto 4% auto;}
    .footer .rating { width: 100%;}
    .footer .logo { width: 60%; margin: 0 auto;}
    .footer h6 { font-size: 12px; margin-top: 10px;}


    
}
/*----------------------------------------------------------------------------------------------------*/
@media screen and (max-width:767px) {

    .head .head_wrap { background: url('../images/header_bg_m.webp') center top no-repeat; background-size: cover;}
    .mMenu-btn { right: 10px; top: 10px; height: 40px; width: 40px;}
    .mMenu-btn:before { transform: translateY(-8px);}
    .mMenu-btn:after { transform: translateY(8px);}
    .feature .swipe_area_pad { display: none;}
    .feature .swipe_area_m { display: block;}
    .title { width: 55vw;}
    
}

</pre></body></html>