@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap');

/* Varialbes */
:root {
	--font-default: 'Yantramanav', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #047c51;
	--dark-secondary: #1e2837;
	--white: #ffffff; 
	--color-primary: #ff0000;
	--color-secondary: #e07a29;
	--color-heading: #1d2746;
	--color-paragraph: #666666;
	--border-default: #e7e7e7;
	--box-shadow-primary: 0 0 25px rgb(0 0 0 / 8%);
	--box-shadow-secondary: 0 10px 30px 0 rgb(44 130 237 / 40%);
	--box-shadow-tertiary: 0px 2px 12px 0px #e7e7e7;
	--box-shadow-dark: 0px 0px 0px;
	--bg-gray: #eef0f6;
	--bg-gradient: linear-gradient(to right, #1239ac, #00f3dd, #1239ac);
}

/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tfoot, thead, 
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;

border: 0;
font-size: 16px;
font-family: Arial,微軟正黑體,Microsoft JhengHei,新細明體,sans-serif;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
html{height:100%;}
body{line-height:1; height:100%;}
ol, ul{list-style:none;}
blockquote, q{quotes:none;}
blockquote:before, blockquote:after, q:before, q:after{content:''; content: none;}
table{border-collapse:collapse; border-spacing:0;}
sup{vertical-align:super;}

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

button:focus{outline:none!important;}

.default-btn {
    border: 1px solid #0099ff;
    color: #0099ff;
    padding: 5px 10px;
}

.full-btn{
    background:#0099ff;
    color:#fff;
    padding:5px 10px;
    transition:0.5s;
    }

.full-btn:hover{background:transparent; color:#0099ff;}

/* button hover style */
.hover-sweep-right {
	display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
	}

.hover-sweep-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0099ff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
	}

.hover-sweep-right:hover, .hover-sweep-right:focus, .hover-sweep-right:active {
	color: #fff;
	}

.hover-sweep-right:hover:before,
.hover-sweep-right:focus:before,
.hover-sweep-right:active:before{
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	}

.hover-shutter-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    background: transparent;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
	}

.hover-shutter-vertical:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0099ff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }

.hover-shutter-vertical:hover,
.hover-shutter-vertical:focus,
.hover-shutter-vertical:active{
    color: #fff;
	}

.hover-shutter-vertical:hover:before,
.hover-shutter-vertical:focus:before,
.hover-shutter-vertical:active:before{
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
	}

.hover-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
	}

.hover-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-color: #0099ff;
    border-style: solid;
    border-width: 0;
    -webkit-transition-property: border-width;
    transition-property: border-width;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }

.hover-reveal:hover:before,
.hover-reveal:focus:before,
.hover-reveal:active:before{
    -webkit-transform: translateY(0);
    transform: translateY(0);
    border-width: 2px;
	}

.hover-underline-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
  }

.hover-underline-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #fff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
	}

.hover-underline-right:hover:before,
.hover-underline-right:focus:before,
.hover-underline-right:active:before{
    right:0;
	}

/*選單展開按鈕_start*/
.navTrigger{
	display:none;
	cursor:pointer;
	width:30px; 
	height:25px;
	margin:auto;
	position:fixed;
	top:20px;
	right:20px;
	z-index:1100;
	}

.navTrigger>i{
    background-color:#666;
    /*border-radius:2px;*/
    content:'';
    display:block;
    width:100%;
	height:2px;
	}

.navTrigger>i:nth-child(1){
    -webkit-animation:outT 0.8s backwards;
    animation:outT 0.8s backwards;
    -webkit-animation-direction:reverse;
    animation-direction:reverse;
	}
.navTrigger>i:nth-child(2){
    margin: 7px 0;
    -webkit-animation:outM 0.8s backwards;
    animation:outM 0.8s backwards;
    -webkit-animation-direction:reverse;
    animation-direction:reverse;
	}
.navTrigger>i:nth-child(3){
    -webkit-animation:outBtm 0.8s backwards;
    animation:outBtm 0.8s backwards;
    -webkit-animation-direction:reverse;
    animation-direction:reverse;
	}

.navTrigger.active>i:nth-child(1){
	-webkit-animation:inT 0.8s forwards;
	animation:inT 0.8s forwards;
    }
.navTrigger.active>i:nth-child(2){
	-webkit-animation:inM 0.8s forwards;
	animation:inM 0.8s forwards;
	}
.navTrigger.active>i:nth-child(3){
	-webkit-animation:inBtm 0.8s forwards;
	animation:inBtm 0.8s forwards;
	}

@-webkit-keyframes inM{
50%{-webkit-transform:rotate(0deg);}
100%{-webkit-transform:rotate(45deg);}
}
@keyframes inM{
50%{transform:rotate(0deg);}
100%{transform:rotate(45deg);}
}

@-webkit-keyframes outM{
50%{-webkit-transform:rotate(0deg);}
100%{-webkit-transform:rotate(45deg);}
}
@keyframes outM{
50%{transform:rotate(0deg);}
100%{transform:rotate(45deg);}
}

@-webkit-keyframes inT{
0%{-webkit-transform: translateY(0px) rotate(0deg);}
50%{-webkit-transform: translateY(9px) rotate(0deg);}
100%{-webkit-transform: translateY(9px) rotate(135deg);}
}
@keyframes inT{
0%{transform: translateY(0px) rotate(0deg);}
50%{transform: translateY(9px) rotate(0deg);}
100%{transform: translateY(9px) rotate(135deg);}
}

@-webkit-keyframes outT{
0%{-webkit-transform: translateY(0px) rotate(0deg);}
50%{-webkit-transform: translateY(9px) rotate(0deg);}
100%{-webkit-transform: translateY(9px) rotate(135deg);}
}
@keyframes outT{
0%{transform: translateY(0px) rotate(0deg);}
50%{transform: translateY(9px) rotate(0deg);}
100%{transform: translateY(9px) rotate(135deg);}
}

@-webkit-keyframes inBtm{
0%{-webkit-transform: translateY(0px) rotate(0deg);}
50%{-webkit-transform: translateY(-9px) rotate(0deg);}
100%{-webkit-transform: translateY(-9px) rotate(135deg);}
}
@keyframes inBtm{
0%{transform: translateY(0px) rotate(0deg);}
50%{transform: translateY(-9px) rotate(0deg);}
100%{transform: translateY(-9px) rotate(135deg);}
}

@-webkit-keyframes outBtm{
0%{-webkit-transform: translateY(0px) rotate(0deg);}
50%{-webkit-transform: translateY(-9px) rotate(0deg);}
100%{-webkit-transform: translateY(-9px) rotate(135deg);}
}
@keyframes outBtm{
0%{transform: translateY(0px) rotate(0deg);}
50%{transform: translateY(-9px) rotate(0deg);}
100%{transform: translateY(-9px) rotate(135deg);}
}

.overlay{
    position:fixed;
    z-index:150;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#1c1d21;
    opacity:0;
    visibility:hidden;
    transition:opacity 0.5s, visibility 0.5s;
	}

.nav-open .overlay{opacity:0.85; visibility:visible;}

/*選單展開按鈕_end*/

/*手機選單_start*/
.mobile-menu-area{
	width:80%;
	max-width:400px;
	padding:20px;
	background-color:#ddd;
	position:absolute;
	top:0;
	right:0;
	z-index:1000;
	}

.mobile-menu-area::after{
	content:"";
	width:100%;
	height:50%;
	position:absolute;
	left:0;
	bottom:0;
	background:linear-gradient(to bottom, #ddd 0%, #eee 100%);
	z-index:-1;
	}

.mobile-logo{width:250px; margin:10px;}

.navmenu{padding:15px; margin-bottom:0;}

.navmenu-item{
	padding:20px 0 10px;
    list-style:none;
    border-bottom:1px solid rgba(51,51,51,0.2);
	}

.drop-navmenu {
    margin-left: 8px;
    padding: 10px;
    border-left: 2px solid #ccc;
}
.drop-navmenu li {
    padding: 6px 0;
}
.drop-navmenu li a {
    color: #666;
}

.navmenu-item a{
	display:block;
	font-size:18px;
	color:#333;
	position:relative;
	}

.navmenu-item a:hover{color:#c60000;}

.navmenu-item.has-drop>a::before{
	content:"";
    display:inline-block;
    width:60px;
    height:100%;
    position:absolute;
    top:0;
    right:0;
    z-index:1;
	}

.navmenu-item.has-drop>a::after {
    content:"\f107";
    font-family:'Font Awesome 6 Free';
    font-weight:900;
    font-size:20px;
    position:absolute;
    top:0;
    left:auto;
    right:24px;
    z-index:10;
    transition:all 0.5s ease;
	}

.navmenu-item.has-drop a.is-open::after{
	transform:rotate(180deg);
	}

.navmenu-bottom{width:90%; margin:0 auto 60px;}

.navmenu-bottom ul{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	}

.navmenu-bottom li{
	width:40px;
    height:40px;
    font-size:20px;
    margin:10px;
	}

.navmenu-bottom li a{
	width:100%;
	height:100%;
	color:#fff;
    border-radius:50%;
    background-color:#000;
	display:flex;
    justify-content:center;
    align-items:center;
    }

.navmenu-bottom li:hover a.icon-fb{background-color:#3b5998;}
.navmenu-bottom li:hover a.icon-ig{background-color:#d82f79;}
.navmenu-bottom li:hover a.icon-line{background-color:#44a73b;}
.navmenu-bottom li:hover a.icon-mail{background-color:#4da8d5;}
.navmenu-bottom li:hover a.icon-tel{background-color:#fc7000;}
.navmenu-bottom li:hover a.icon-map{background-color:#a596f4;}

.mobile-submenu-list{
    display: none;
	margin-top:20px;
	margin-left:8px;
	padding-left:0;
	width:calc(100% - 20px);
	list-style:none;
}

.mobile-submenu-list:after {
    content: '';
    display: block;
    clear: both;
}

.mobile-submenu-list>li{padding:10px 0 10px 15px;}

.navmenu-item{
	opacity:0;
	animation-name:curtain;
	animation-duration:0.3s;
	animation-timing-function:ease-out;
	animation-fill-mode:forwards;
	}

.navmenu-item:last-child{border-bottom:none;}

@keyframes curtain{
	0%{transform:translate(-20px, -20px);} 
	100%{transform:translate(0, 0); opacity:1;}
	}

.navmenu .navmenu-item:nth-child(2){animation-delay:0.2s;}
.navmenu .navmenu-item:nth-child(3){animation-delay:0.4s;}
.navmenu .navmenu-item:nth-child(4){animation-delay:0.6s;}
.navmenu .navmenu-item:nth-child(5){animation-delay:0.8s;}
.navmenu .navmenu-item:nth-child(6){animation-delay:1s;}
.navmenu .navmenu-item:nth-child(7){animation-delay:1.2s;}
.navmenu .navmenu-item:nth-child(8){animation-delay:1.4s;}

.mobile-lan-box ul{padding-left:0;}

.mobile-lan-box ul li{
    display:inline-block;
    margin-right:10px;
	}

.mobile-lan-box ul li a{
    padding:5px 12px;
    border:1px solid rgba(0,0,0,0.5);
	}

/*手機選單_end*/

/*頁首選單_start*/
.menu-container{
    position:absolute;
    width:100%;
    height:80px;
    top:0;
    background-color: #fff;
    border-bottom: 2px solid var(--color-primary);
    z-index:999;
	}

.menu-row{
	width:100%;
	max-width:1400px;
	margin:0 auto;
	display:flex;
	justify-content:space-between;
	align-items:center;
	}

.main-logo{max-width:300px; padding:5px 10px;}

.main-logo img {
    margin-top: 7px;
}

.nav-open .main-logo{opacity:0.25;}

.nav-navbar{
    position:relative;
    padding-left:0;
    margin-bottom:0;
	}

.nav-item{display:inline; list-style:none; padding: 0 15px;}
.drop-nav-item {
    position: relative;
}
.drop-navbar {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    box-shadow: 0 3px 8px 1px rgba(0,0,0,0.3);
    transition: 0.5s;
    z-index: 0;
}
.drop-nav-item:hover .drop-navbar {
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
    z-index: 10;
}
.drop-navbar li {
    width: 100%;
    padding: 10px 20px;
}

.nav-navbar>.nav-item a{
    color: #333;
    font-size:16px;
    text-decoration:none;
    letter-spacing:0.1em;
    position:relative;
    cursor:pointer;
	}

.nav-navbar>.nav-item a::after{
    content:"";
    position:absolute;
    height:2px;
    width:100%;
    transform:scale(0,1);
    background:var(--color-primary);
    transition:all .2s ease-in-out;
    top:25px;
    border-radius:5px;
    left:0;
	}

.nav-navbar>.nav-item a:hover{color:var(--color-primary);}
.nav-navbar>.nav-item a:hover::after{transform:scale(1,1);}

/*
.drop-nav-item::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 1px solid #aaa;
    border-width: 0 1px 1px 0;
    margin-left: 5px;
    position: relative;
    top: -3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
*/

.nav-navbar>.nav-item.nav-lan-btn a{
	color: #333;
	margin-left:20px;
	padding:8px 15px;
	border: 1px solid #666;
	border-radius:5px;
	}

.nav-lan-btn:hover a{
    color: #fff !important;
    border: 1px solid #ff0000;
    background-color: #ff0000;
	}

.nav-lan-btn form {
    display: inline;
}

.nav-lan-btn form select {
    padding: 5px;
    border: 1px solid #aaa;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}

.mobile-lan-btn select {
    padding: 6px 8px;
    border: 1px solid #aaa;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}

.nav-lan-box{
	display:inline-block;
	margin-right:10px;
	margin-left:15px;
	position:relative;
	}

.nav-lan-box .nav-lan-btn{
	font-size:16px;
	color:#868686;
	cursor:pointer;
	display:flex;
	align-items:center;
	}

.nav-lan-box .nav-lan-btn>i{
	padding-right:3px;
	padding-bottom:2px;
	}

.nav-lan-list{
	list-style:none;
	padding-left:0;
    position:absolute;
    top:100%;
    left:50%;
    margin-left:-35px;
    -webkit-transform-origin:top;
    -ms-transform-origin:top;
    transform-origin:top;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    -webkit-transition:all 0.4s ease;
    -o-transition:all 0.4s ease;
    transition:all 0.4s ease;
    pointer-events:none;
    -webkit-transform:rotateX(90deg);
    transform:rotateX(90deg);
    opacity:0;
	}

.nav-lan-open .nav-lan-list{
	pointer-events:auto;
    -webkit-transform:rotateX(0deg);
    transform:rotateX(0deg);
    opacity:1;
    }

.nav-lan-list li{background-color:#d84d34;}

.nav-lan-list li a{
	display:inline-block;
    width:100%;
    height:35px;
    line-height:35px;
    padding:0 25px;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    text-align:center;
    position:relative;
    font-size:13px;
    font-weight:300;
    color:#fff;
	}

.nav-lan-list li:not(:first-child) a::before{
    content:"";
    position:absolute;
    top:0;
    left:10px;
    width:calc(100% - 20px);
    height:1px;
    background-color:rgba(255, 255, 255, 0.3);
	}

.nav-lan-list li:hover{background-color:var(--dark);}
.nav-lan-box:hover .nav-lan-btn{color:var(--color-primary);}

/*頁首選單_end*/
.main-wrapper{overflow:hidden;}

.banner-section{
	width:100%;
	height:100vh;
	background-image:url(../img/index-banner-bg.jpg);
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	position:relative;
	}

.index-banner-area{
	width:90%;
	max-width:1480px;
	margin:0 auto;
	}

.swiper{width:100%; height:100%; overflow:hidden;}

.index-banner-block .swiper-slide {
    position: relative;
    height: 100%;
    min-height: 100vh;
}

.banner-section .swiper-slide{
        font-size:18px;

        /* Center slide text vertically */
        display:-webkit-box;
        display:-ms-flexbox;
        display:-webkit-flex;
        display:flex;
        -webkit-box-pack:center;
        -ms-flex-pack:center;
        -webkit-justify-content:center;
        justify-content:center;
        -webkit-box-align:center;
        -ms-flex-align:center;
        -webkit-align-items:center;
        align-items:center;
      }

.banner-slide-pic{flex-basis:800px; z-index: 1;}

.banner-slide-bg {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 720px;
    z-index: -1;
}

.banner-slide-info {
    flex: 1;
    padding: 20px;
    display: flex;
    z-index: 1;
}

.banner-info-box {
    margin-left: auto;
}

.banner-slide-info h1 {
    font-family: system-ui;
    font-size: 60px;
    font-weight: 200;
}

.banner-slide-info h1, .banner-slide-info p{color:#666;}

.banner-slide-info p {
    padding-top: 20px;
}

.index-main-area{
	position:relative;
	background-image:url(../img/index-main-background.jpg);
	}

.index-banner-main-pic{
	position:absolute;
	top:15%;
	right:10%;
	width:600px;
	z-index:200;
	}

.index-banner-main-pic img{width:100%;}

.main-title-block{
	position:absolute;
	top:12%;
	left:50%;
	width:90%;
	max-width:900px;
	height:550px;
	border:3px solid #fff;
	margin-left:-450px;
	padding:60px 30px;
	z-index:10;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
    align-items:center;
	}

.main-title{width:450px; text-align:center;}
.main-title img{width:100%;}
.main-title p{
	font-size:20px;
	font-weight:600;
	color:#fff;
	letter-spacing:1px;
	margin:5px auto;
	}

.main-text-box{text-align:center; color:#fff;}
.main-text-box h2{font-size:52px; font-weight:bolder;}

.main-title-block .link-box a{
	padding:12px 30px;
	color:#27475f;
	font-weight:600;
	background-color:#fff;
	}

.moving-picbox1{position:absolute; top:15%; right:5%; z-index:100;}
.moving-picbox2{position:absolute; top:10%; left:10%; z-index:100;}

.moving-pic1{
	width:100%;
	max-width:600px;
	-webkit-transition:all 1s 1.2s ease;
    -o-transition:all 1s 1.2s ease;
    transition:all 1s 1.2s ease;
	}

.moving-pic2{
	width:100%;
	max-width:450px;
	-webkit-transition:all 1s 2.4s ease;
    -o-transition:all 1s 2.4s ease;
    transition:all 1s 2.4s ease;
	}

.moving-pic1 img{
	-webkit-animation:items_float 6s forwards cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation:items_float 6s forwards cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
	}

.moving-pic2 img{
	-webkit-animation:items_float 9s forwards cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation:items_float 9s forwards cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
	}

@-webkit-keyframes items_float{
	0%, 44%, 88%, 100%{-webkit-transform:translateY(0); transform:translateY(0);}
	22%, 66%{-webkit-transform:translateY(10px); transform:translateY(10px);}
	}

@keyframes items_float{
	0%, 44%, 88%, 100%{-webkit-transform:translateY(0); transform:translateY(0);}
	22%, 66%{-webkit-transform:translateY(10px); transform:translateY(10px);}
	}

.progressive-box{
	position:absolute;
	bottom:-45%;
	left:50%;
	}

.progressive-box a{
	color:#fff;
	position:absolute;
    bottom:20px;
    left:50%;
    margin-left:-20px;
    padding-top:70px;
    z-index:2;
	display:inline-block;
    -webkit-transform:translate(0, -50%);
    transform:translate(0, -50%);
    transition:opacity 0.3s;
	}

.progressive-box a:hover{color:#fff; opacity:0.3;}

.progressive-box a span{
	position:absolute;
	top:0;
	left:50%;
	width:24px;
	height:24px;
	margin-left:-12px;
	border-left:1px solid #fff;
	border-bottom:1px solid #fff;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	-webkit-animation:progressive 2s infinite;
	animation:progressive 2s infinite;
	opacity:0;
	box-sizing:border-box;
	}

.progressive-box a span:nth-of-type(1){
	-webkit-animation-delay:0s;
	animation-delay:0s;
	}
.progressive-box a span:nth-of-type(2){
	top:16px;
	-webkit-animation-delay:0.15s;
	animation-delay:0.15s;
	}
.progressive-box a span:nth-of-type(3){
	top:32px;
	-webkit-animation-delay:0.3s;
	animation-delay:0.3s;
	}

@-webkit-keyframes progressive{
	0%{opacity:0;}
	50%{opacity:1;}
	100%{opacity:0;}
	}
@keyframes progressive{
	0%{opacity:0;}
	50%{opacity:1;}
	100%{opacity:0;}
	}

.main-background-block{
	width:100%;
	position:relative;
	}

.arc-box{
	position:absolute;
	bottom:0;
	}

.arc-box img{width:100%;}

.animejs-area{
	position:relative;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	min-height:100vh;
	overflow:hidden;
	}

.animejs-bg{
	height:100%;
	width:100%;
	position:absolute;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	}

.block{
	position:absolute;
	height:60px;
	width:60px;
	background:rgba(11,74,114,0.05);
	-webkit-box-shadow:10px 10px 50px rgba(0, 0, 0, 0.1);
	box-shadow:10px 10px 50px rgba(0, 0, 0, 0.1);
	}

/* Slide */


/* Off Canvas */
.off-canvas {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999999999;
    top: 0;
    right: 0;
    background-color: #0099ff;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}
.off-canvas a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}
.off-canvas a:hover {
    color: #fff;
}
.off-canvas .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.off-navbar{list-style:none;}

.open-nav {
    display: none;
    position: absolute;
    top: 15px;
    right: 80px;
    font-size: 20px;
    color: #fff;
}

.off-item{padding:10px 0;}

.index-edit-area{width:90%; max-width:1280px; margin:0 auto;}

.index-edit-block{padding:30px 0 50px;}

.index-block-title h2{
	font-size:40px;
    font-weight:bold;
    letter-spacing:2px;
    margin-bottom:10px;
    font-family: serif;
}

.index-block-title hr {
    height: 3px !important;
    color:var(--color-primary);
    opacity: 1;
}

.index-block-title h3 {
    text-align: right;
    font-size: 32px;
    font-weight: 600;
    font-family: serif;
    color:var(--color-primary);
}

/*
.index-block-title.tw-block-title h2{
	font-size:40px;
    font-family:微軟正黑體,Microsoft JhengHei,新細明體,sans-serif;
	}
*/

/* About Section */
.about-section{
    width:100%;
    position:relative;
	}

.index-about-block{
	padding:50px 0;
	display:flex;
	flex-direction:row-reverse;
	align-items:center;
    margin-bottom: 40px;
	}

.index-about-editbox{
	width:50%;
	padding:10px 25px;
	position:relative;
	}
    
.about-infobox {
    border-right: 8px solid var(--color-primary);
    height: 100%;
}

.about-picbox{
	display:flex;
	align-items:center;
	}

.about-picbox p{margin-bottom:0;}

.about-picbox img {
    box-shadow: -50px 50px 0 #666;
}

.about-picbox .index-block-entit {
    position: absolute;
    left: -20px;
    bottom: -40px;
}

.index-block-entit h2 {
    font-size: 40px;
    font-weight: 600;
    font-family: serif;
    color:var(--color-primary);
}

.about-spirit-pic1{
	width:250px;
	position:absolute;
	top:0;
	left:120px;
	z-index:1;
	}

.about-spirit-pic2{
	position:absolute;
	top:50px;
	right:0;
	z-index:5;
	}

.about-spirit-pic3{
	position:absolute;
	bottom:20px;
	left:150px;
	z-index:10;
	}

.about-spirit-pic4{
	position:absolute;
	bottom:80px;
	left:10px;
	z-index:15;
	}

/* Service Section */
.service-section {
    background: url(/img/service-section-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.index-service-block {
    padding: 50px 0;
    display: flex;
    align-items: center;
}
.service-infobox h2 {
    color: #fff;
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 10px;
}
.service-infobox p {
    color: #fff;
}
.service-infobox ul {
    color: #fff;
}
.service-infobox li {
    list-style: initial;
}
.service-infobox li::marker {
    color:var(--color-primary);
}
.service-editbox .index-block-entit h2 {
    transform: rotate(90deg);
    display: flex;
    justify-content: center;
}

/* Certificate Section */
.certificate-section {
    background: url(/img/certificate-section-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 40px 0;
}
.certificate-editbox .index-block-entit h2 {
    text-align: right;
}
.certificate-infobox p {
    padding-right: 20px;
}
.certificate-editbox {
    position: relative;
}
.certificate-editbox .index-block-entit {
    position: absolute;
    top: 0;
    right: 0;
}
.certificate-img-item {
    margin-bottom: 10px;
    display: block;
    height: 0;
    text-align: center;
    padding-bottom: 40%;
    overflow: hidden;
    position: relative;
}
.certificate-img-item img {
    max-width: 90%;
    min-width: 90%;
    height: 95%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    transform: translate(-50% , 0) scale(1);
    transition: all 0.3s;
    box-shadow: 0 3px 8px 1px rgba(0,0,0,0.3);
}
.certificate-infobox {
    border-left: 4px solid var(--color-primary);
    margin: auto;
    margin-top: 5% !important;
}

/*product-block*/
.product-section{background-color:#fff;}

.index-product-content{position:relative;}

.swiper-container{
	width:100%;
	height:100%;
    }

.index-slide-container{padding:50px 0;}

.product-section .swiper-slide{
	text-align:center;
	font-size:18px;
	background:#fff;
	
	/* Center slide text vertically */
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	-webkit-justify-content:center;
	justify-content:center;
	-webkit-box-align:center;
	-ms-flex-align:center;
	-webkit-align-items:center;
	align-items:center;
	}

    .banner-slide-info img {
        width: 100%;
        max-width: 360px;
    }

.index-banner-block .swiper-slide img{
	display:block;
	width:100%;
	object-fit:cover;
	}

.banner-slide-pic img {
    max-width: 75%;
    margin: auto;
}

.banner-maintxt {
    position: absolute;
    left: 0;
    bottom: 35%;
    transform: rotate(90deg);
}

.banner-maintxt h2 {
    color: #c60000;
    font-size: 80px;
    font-weight: 600;
    font-family: serif;
}

.banner-subtxt {
    position: absolute;
    right: 0;
    bottom: 5%;
}

.banner-subtxt h3 {
    color: #fff;
    font-size: 150px;
    font-weight: bold;
}

.swiper-slide .banner-slide-info {
	transform: translateY(-300px);
	opacity: 0;
	transition-duration: 0.8s;
    transition-delay: 0.5s;
}

.swiper-slide-active .banner-slide-info {
	transform: none;
	opacity: 1;
}

.swiper-slide .banner-slide-pic {
	transform: scale(0.4);
	opacity: 0;
	transition-duration: 0.8s;
}

.swiper-slide-active .banner-slide-pic {
	transform: scale(0.8);
	opacity: 1;
}

.swiper-slide .banner-slide-bg {
	transform: translateX(-300px);
	opacity: 0;
	transition-duration: 0.8s;
    transition-delay: 0.3s;
}

.swiper-slide-active .banner-slide-bg {
	transform: none;
	opacity: 0.15;
}

.index-banner-block .swiper-button-prev {
    color: #000;
}

.change-over-box{
	width:150px;
	position:absolute;
	top:0;
	right:0;
	}

.change-over-box>.box-inner{position:relative;}

.change-over-box .swiper-button-prev:after,
.change-over-box .swiper-button-next:after{
	font-size:24px;
	}

.link-btn-block{margin:0 auto 60px; text-align:center;}

.link-btn-box{
	display:inline-block;
    padding:20px 0 6px;
    margin-bottom:0;
    font-size:14px;
    font-weight:400;
    line-height:1.42857143;
    text-align:center;
    white-space:nowrap;
    vertical-align:middle;
    -ms-touch-action:manipulation;
    touch-action:manipulation;
    cursor:pointer;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    background-image:none;
    border:1px solid transparent;
    border-radius:4px;
    transition:all 0.2s ease-in-out;
    -moz-transition:all 0.2s ease-in-out;
    -webkit-transition:all 0.2s ease-in-out;
    -o-transition:all 0.2s ease-in-out;
	}

.btn_cis .arrow{
	display:inline-block;
	position:absolute;
	top:50%;
	right:19px;
	transform:translate(0, -50%);
	}

.red-btn .arrow:before {
    background:#fff;
}

.red-btn .arrow:after{
    border-top:1px solid #fff;
}

.white-btn .arrow:before {
    background:#ff0000;
}

.white-btn .arrow:after{
    border-top:1px solid #ff0000;
}

.btn_cis .arrow:before{
	width:18px;
	height:1px;
	display:block;
	content:" ";
	animation:elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
	}

.btn_cis .arrow:after{
	position:absolute;
	top:-4px;
	right:0;
	content:"";
	display:block;
	width:9px;
	height:7px;
	behavior:url(-ms-transform.htc);
	transform:rotate(45deg);
	}

.btn_cis .arrow:hover:before{background:#ffffff;}

.btn_cis .arrow.goback{left:19px; right:unset;}
.btn_cis .arrow.goback:after{top:-9px; left:-3px; right:unset; transform:rotate(135deg);}
.btn_cis .arrow.goback:before{animation:none;}

.red-btn {
    color: #fff;
    background-color:var(--color-primary);
}

.red-btn:hover {
    color: #fff;
    background-color:var(--dark);
}

.white-btn {
    color:var(--color-primary);
    background-color: #fff;
}

.white-btn:hover {
    color:var(--dark);
    background-color: #ccc;
}

.btn_cis{
	font-size: 15px;
	font-weight: 500;
	width:160px;
	padding: 14.5px 10px;
	display: inline-block;
	margin:0 auto;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.7s ease;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	-ms-transition: all 0.7s ease;
	} 

.btn_cis .insider {
	background-color:#fff;
	width:100%;
	height:20px;
	position:absolute;
	left:-250px;
	transform:rotateZ(45deg);
	-webkit-transform:rotateZ(45deg);
	-moz-transform:rotateZ(45deg);
	-o-transform:rotateZ(45deg);
	-ms-transform:rotateZ(45deg);
	}

.btn_cis:hover .insider{
	transition:all 0.7s ease;
	-webkit-transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	left:250px;
	}

.red-btn:hover .arrow:before{
	background-color: #fff;
}

.red-btn:hover .arrow:after{
	border-color: #fff;
}

.white-btn:hover .arrow:before{
	background-color: #ff0000;
}

.white-btn:hover .arrow:after{
	border-color: #ff0000;
}

.index-banner-btn .btn_cis{color:#fff; border:1px solid #fff;}

@keyframes elasticus{
	0%{transform:scaleX(0); transform-origin:left;}
	50%{transform:scaleX(1); transform-origin:left;}
	50.1%{transform:scaleX(1); transform-origin:right;}
	100%{transform:scaleX(0); transform-origin:right;}
	}

.page-tab{position:relative;}

.numpage-btn{width:100%; text-align:center; margin:0 auto 50px;}

.numpage-btn .pagination{margin:20px 0; display:inline-flex;}

.numpage-btn .pagination li{
	margin:5px 10px;
	list-style:none!important;
	}

.numpage-btn .pagination li.active{
    background-color:#333;
    color:#fff;
	}

    .numpage-btn .pagination li.active a {
        color: #fff;
    }

.pagination>li>a, .pagination>li>span{
    position:relative;
    float:left;
    padding:6px 12px;
    margin-left:-1px;
    line-height:1.42857143;
    color:#787878;
    text-decoration:none;
    background-color:#fff;
    border:1px solid #ddd;
	}

.pagination>.active>a{
	background-color:unset!important;
    border-color:unset!important;
	}

.pagination>li>a:hover,
.pagination>li>a:active,
.pagination>li>a:focus{
	background-color:#686868!important;
	color:#fff;
	}

.pagination>li>a:hover i,
.pagination>li>a:active i
.pagination>li>a:focus i{
	color:#fff!important;
	}

/*熱門產品_start*/
.index-hot-block{
	width:100%;
	max-width:1480px;
	margin:0 auto 80px;
	}

#demos .row{width:100%; margin:0 auto;}

.column,.columns{padding-left:.9375rem;padding-right:.9375rem;width:100%;float:left}

.column+.column:last-child,.columns+.column:last-child,.column+.columns:last-child,.columns+.columns:last-child{float:right}

.column+.column.end,.columns+.column.end,.column+.columns.end,.columns+.columns.end{float:left}

#demos .owl-carousel{margin:2rem 0;}

#demos .owl-carousel .item{
	background:#eee;
	padding:0;
	text-align:center;
	transition:all 0.5s ease;
	}

#demos .owl-carousel .item a{width:100%; height:100%;}

#demos .owl-carousel .product-slider-cover{
	display:block;
    height:0;
    text-align:center;
    padding-bottom:75%;
    overflow:hidden;
    position:relative;
	}

#demos .owl-carousel .product-slider-cover img{
	max-width:100%;
    min-width:100%;
    object-fit:cover;
    -moz-object-fit:cover;
    -ms-object-fit:cover;
    -o-object-fit:cover;
    -webkit-object-fit:cover;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    transition:all 0.3s;
	}

#demos .owl-carousel .item a h3{
	margin-bottom:0;
	padding-top:15px;
	padding-bottom:15px;
	font-size:18px;
	font-weight:500;
	color: #fff;
    background-color: #666;
	display:flex;
	align-items:center;
	justify-content:center;
	}
	
#demos .owl-carousel .item a:hover h3{color:#fff;}

.item > a:before{
	color:var(--color-primary);
    top:0px;
    left:0px;
    right:100%;
    bottom:100%;
    border-top:4px solid;
    border-left:4px solid;
	}

.item > a:after{
	color:var(--color-primary);
    left:100%;
    top:100%;
    bottom:0px;
    right:0px;
    border-bottom:4px solid;
    border-right:4px solid;
	}

.item > a:before, .item > a:after{
	content:"";
    filter:alpha(opacity=0);
    Opacity:0;
    pointer-events:none;
    z-index:3;
    position:absolute;
    box-sizing:border-box;
    transition:all 0.5s ease;
    box-shadow:none;
	}

#demos .owl-carousel .item:hover{background-color:#ccc;}

.item:hover > a:before{
	filter:alpha(opacity=100);
    Opacity:1.0;
    bottom:0px;
    right:0px;
	}

.item:hover > a:after{
	filter:alpha(opacity=100);
    Opacity:1.0;
    top:0px;
    left:0px;
	}

.index-product-block{
	width:90%;
	max-width:1480px;
	margin:0 auto;
	padding-top:30px;
	}

.owl-carousel .owl-nav.disabled{
	width:100px;
	display:flex;
	justify-content:space-between;
	position:absolute;
	top:-100px;
	}

.owl-carousel .owl-nav button.owl-prev span{font-size:50px; color:#c60000;}
.owl-carousel .owl-nav button.owl-next span{font-size:50px; color:#c60000;}

/*熱門產品_end*/

/*news section*/
.news-section{
    width:100%;
    position:relative;
    background-color:#ccc;
	}

.news-section::after{
	content:"";
	width:100%;
	height:2px;
	background-color:#fff;
	position:absolute;
	top:78px;
	right:50%;
	margin-right:-520px;
	}

.index-news-title{position:relative; text-align:right;}

.index-news-title h2{color:#fff;}

.index-news-content{position:relative;}

.index-news-list{
	padding-left:0;
	margin-bottom:0;
	display:flex;
	}

.index-news-box{
	list-style:none;
	width:25%;
	padding-top:50px;
	position:relative;
	}

.index-news-box:nth-child(odd){padding-top:120px;}

.index-news-box a{
	margin:15px;
	display:block;
	background-color:#fff;
	box-shadow:1px 2px 6px #a6a6a6;
	}

.index-news-cover{
    display:block;
    height:0;
    text-align:center;
    padding-bottom:75%;
    overflow:hidden;
    position:relative;
    z-index:10;
    background-color:#686868;
	}

.index-news-cover img{
    max-width:100%;
    min-width:100%;
    object-fit:cover;
    height:100%;
    -moz-object-fit:cover;
    -ms-object-fit:cover;
    -o-object-fit:cover;
    -webkit-object-fit:cover;
    position:absolute;
    transform:scale(1);
    transition:all 0.3s;
    opacity:0.5;
	}

.index-news-content{padding:5px 10px; position:relative;}

.index-news-content h3{
	display:-webkit-box;
    width:90%;
    height:3.6em;
    line-height:1.8em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    color:#54595f;
    font-size:18px;
    font-weight:400;
    margin-bottom:0;
	}

.index-news-content .arrow{
	position:absolute;
	right:8px;
	bottom:20px;
	font-size:22px;
	color:#ccc;
	}

.index-news-date{
	position:absolute;
	top:25px;
	left:70px;
	}

.index-news-date p{margin-bottom:0; color:#fff;}

.index-news-circle{
	background-color:#b2b2b2;
    border:4px solid #fff;
    border-radius:10px;
    height:20px;
    width:20px;
    position:absolute;
    top:26px;
    left:41px;
    z-index:10;
    }

.index-news-line{
	width:2px;
	height:50%;
	background-color:#fff;
	position:absolute;
	top:-35px;
	left:50px;
	z-index:0;
	}

.index-news-box:nth-child(odd) .index-news-date{top:90px;}
.index-news-box:nth-child(odd) .index-news-circle{top:91px;}

.index-news-box:hover .index-news-cover img{transform:scale(1.2); opacity:1;}
.index-news-content h3:hover{color:#0072af;}
.index-news-box:hover .index-news-content .arrow{color:#0099ff;}
.index-news-box:hover .index-news-circle{background-color:#fff; border:4px solid #0099ff;}

/* Plan Section */
.plan-section {
    width: 100%;
    position: relative;
    background: linear-gradient(to bottom, #eee 75%, #fff 0);
}
.plan-lump {
    position: absolute;
    top: 90px;
    left: 0;
    width: 260px;
    height: 10px;
    background-color: #0099ff;
}
.planimg-lump {
    position: absolute;
    bottom: 165px;
    right: 220px;
    width: 140px;
    height: 25px;
    background-color: #0099ff;
    z-index: 1;
}
.plan-block {
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.plan-block .row{padding:60px 40px;}

.plan-info{z-index:1;}

.plan-img{position:relative;}

.plan-img h3 {
    color: #0099ff;
    font-size: 48px;
    font-weight: 600;
    font-style: italic;
    position: absolute;
    top: -44px;
    right: 0;
}


/* Result Section */
.result-section {
    width: 100%;
    background-image: url(/img/result-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.result-block {
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.result-box {
    position: relative;
    left: 70%;
    width: 30% !important;
}
.result-txt {
    padding: 160px 0;
}
.result-txt h2 {
    margin-top: -40px;
}
.result-txt h3 {
    color: #295087;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
}
.result-txt h4 {
    color: #eee;
    font-size: 60px;
    font-weight: 600;
    font-style: italic;
    line-height: 1em;
    margin-left: -50px;
}

.result-detail-block{
	width:95%;
	max-width:950px;
	margin:0 auto 80px;
	}

.result-detail-cover-pic{
    width:90%;
    max-width:600px;
    margin:0 auto 30px;
	}

.result-detail-content h4{
    font-size:24px;
    font-weight:600;
    color:#295087;
	}

.result-detail-content h5{
    font-size:14px;
    font-style:italic;
    color:#9b9b9b;
	}

/* Fixed icon */
.fixed-icon {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
}
.fixed-btn {
    position: relative;
    background-color:var(--color-primary);
    border-radius: 50px;
    margin-bottom: 6px;
    box-shadow: 1px 1px 3px 2px rgba(0,0,0,0.3);
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.fixed-btn:hover {
    background-color:var(--dark);
}
.fixed-btn a {
    color: #fff;
    display: flex;
    width: 45px;
    height: 45px;
    font-size: 22px;
    align-items: center;
    justify-content: center;
}
.fixed-btn a:hover {
    color: #fff;
}
.fixed-btn .prompt-txt {
    position: absolute;
    width: 120px;
    top: 0;
    right: 60px;
    font-size: 16px;
    text-align: center;
    background-color: #ffffff;
    color: #ffffff;
    padding: 6px 0;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.fixed-btn .prompt-txt::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background-color: #ffffff;
    right: -7px;
    top: 42%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.fixed-btn:hover .prompt-txt {
    top: 5px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.fixed-btn:hover .prompt-txt,
.fixed-btn:hover .prompt-txt::before {
  background-color: #c60000;
  color: #ffffff;
}


/* Footer & Copyright */
footer {
    width: 100%;
    background-image: url(../img/footer-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.footer{
	background-size:400% 400%;
}

.footer-block{
	width:100%;
	max-width:1000px;
	margin:0 auto;
	padding:40px 0 20px;
}

img {
    margin-bottom: 1rem;
}

.footer-col-tit{text-align:center; position:relative;}

.footer-col-tit img {
    padding: 3px;
}

.footer-col-tit h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.footer-col-tit h5 {
    color: #fff;
    font-size: 15px;
}

.footer-block .footer-col-txt {
    display: flex;
    justify-content: center;
    position:relative;
}

.footer-col-txt a {
    color: #fff;
}

.footer-col-txt a:hover {
    color: #ff4040;
}

.footer-block p {
    color: #fff;
}

.footer-txtblock{display:flex;}

.footer-logo{flex:0 0; flex-basis:120px; padding:10px;}
.footer-txtbox{
	flex-grow:1;
	padding:20px;
	display:flex;
	flex-wrap:wrap;
	}

.footer-txtbox-title{width:100%;}
.footer-txtbox-content{width:100%;}

.footer-txtbox-title h3{font-size:22px; font-weight:600; color:#fff;}

.footer-txtbox-content h4{font-size:18px; font-weight:600;}

.footer-txtbox-content ul{padding-left:0; margin-bottom:0;}

.footer-txtbox-content ul li{
	font-size:16px;
	color:#9b9b9b;
	list-style:none;
	line-height:1.7em;
	margin-right:5px;
	display:inline-block;
	}

.footer-txtbox-content ul li:last-child{display:block;}

.footer-txtbox-content ul li a{letter-spacing:1px; color:#fff;}
.footer-txtbox-content ul li a:hover{color:#fcc729;}

.footer-txtbox-content ul li i{margin-right:5px; color:#fff;}

.foot-link-block{
	display:flex;
	justify-content:flex-end;
	padding:25px;
	}

.foot-link-box{width:70px; margin:0 0 0 15px;}
.foot-link-box img{width:100%;}

.copyright{
	padding:10px 0;
	}

.copyright .privacy {
    text-align: center;
}
.copyright .privacy a {
    color: #fff;
}
.copyright .privacy a:hover {
    color: #ff4040;
}
.ccin{
	width:100%;
	max-width:400px;
	margin:0 auto;
    padding-bottom: 20px;
	color:#9b9b9b;
    font-size:14px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    }

.ccin a{color:#fff; font-size:14px;}
.ccin li{font-size:12px;}
.ccin img{vertical-align: middle; padding:0; margin: 0 5px;}

.ccin a:hover{color:#ff4040;}

/*分頁設定_start*/
.page-header-area{
	min-height:350px;
	padding-top:80px;
	background-image:url(../img/page-banner-bg.jpg);
	background-size:cover;
    background-position: center;
	position:relative;
	}

.page-header-banner{
	width:100%;
	max-width:1200px;
	margin:0 auto;
	}

.page-header-banner>.box-inner{
	height:100%;
	display:flex;
    align-items:center;
    flex-direction: row-reverse;
    padding-top: 20px;
	}

.banner-picbox{
	flex-basis:500px;
	margin-top:20px;
	margin-bottom:20px;
    display: block;
    height: 0;
    text-align: center;
    padding-bottom: 20%;
    overflow: hidden;
    position: relative;
}

.banner-picbox img {
    max-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-titlebox{
	flex:1;
	padding:0 50px;
	}

.page-header-banner .banner-title{
	color:var(--color-primary);
    font-size:36px;
    font-weight:bold;
    border-bottom: 3px solid var(--color-primary);
	}

.page-header-banner .banner-subtitle{
    color: #fff;
    font-size: 80px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: right;
    font-family: serif;
	}

.page-edit-area{
	width:100%;
	max-width:1400px;
	margin:0 auto 50px;
	position:relative;
	}

.page-edit-block{
	width:90%;
    max-width:1400px;
    margin:0 auto 60px;
	}

.page-edit-title{text-align:center;}

.page-edit-title h2{
	font-size:40px;
	font-weight:bold;
	}

/*分頁設定_end*/

.main-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/*索引區_start*/
.bread-block{
	width:100%;
	margin:20px auto 10px;
	}

.bread{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    height:50px;
	}

.bread span, .bread span a, .bread i{
	font-size:14px;
	font-weight:600;
    color:#555555;
    transition:all 0.4s ease;
	text-transform: uppercase;
	}

.bread span:hover a{color:#ff0000;}
.bread span:hover i{color:#ff0000;}

.bread a::after{
	content:"/";
    padding-right:7px;
    padding-left:7px;
    color:#ff0000;
	}

.bread-block ol{
	display:flex;
    flex-wrap:wrap;
    align-items:center;
    height:80px;
    padding-left: 1rem;
	}

.bread-block ol li{
    font-weight:600;
    color:#555555;
	}

.bread-block ol li a{position:relative; color:var(--color-primary);}
.bread-block ol li a:hover{color:var(--dark);}

.bread-block ol li a::after{
	content:"/";
    padding-right:7px;
    padding-left:5px;
    color:#868686;
	}

.bread-block a span{
	font-size:14px;
    font-weight:600;
    color:#555555;
    transition:all 0.4s ease;
    text-transform:uppercase;
	}

.bread-block a:hover span{color:#c69c6d;}

.bread-block ol li i{margin-right:7px;}

/*索引區_end*/

/* inside page - about */
.page-content-item {
    margin-bottom: 100px;
}
.page-about-picbox {
    display: block;
    height: 0;
    text-align: center;
    padding-bottom: 70%;
    overflow: hidden;
    position: relative;
    box-shadow: -40px 40px 0 #666;
}
.page-about-picbox img {
    cursor: pointer;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    right: 0;
    transition: all 0.3s;
    transform: scale(1);
}
.page-about-picbox img:hover {
    transform: scale(1.1);
}
.page-about-infobox {
    height: auto;
    padding-right: 20px !important;
}
.page-about-1 .page-about-infobox {
    border-right: 8px solid var(--color-primary);
}
.page-about-2 .page-content-item {
    flex-direction: row-reverse;
}
.page-about-2 .page-about-infobox {
    border-left: 8px solid var(--color-primary);
    padding-left: 20px !important;
    padding-right: 0 !important;
}
.page-about-infobox .table-responsive table {
    width: 90%;
}
.table-responsive tr {
    border-bottom: 1px solid #ccc;
    transition: 0.5s;
}
.table-responsive tr:hover {
    background-color: #eee;
    transition: 0.5s;
}
.table-responsive td:first-child {
    font-weight: 600;
    color: #c60000;
}
.table-responsive td {
    padding: 10px;
}
.page-about-3 .page-about-infobox {
    border-right: 8px solid var(--color-primary);
}
.spirit-top-picbox{
	width:90%;
	max-width:900px;
	height:0;
	margin:0 auto;
	padding-bottom:400px;
	text-align:center;
	overflow:hidden;
    position:relative;
	}

.spirit-top-picbox img{
	max-width:100%;
    min-width:100%;
    object-fit:cover;
    height:100%;
    -moz-object-fit:cover;
    -ms-object-fit:cover;
    -o-object-fit:cover;
    -webkit-object-fit:cover;
    position:absolute;
    transition:all 0.3s;
	}

.about-edit-area{
	width:100%;
	max-width:1400px;
	margin:0 auto 70px;
	position:relative;
	}

.about-edit-area::after{
	content:"";
	width:100%;
	height:100%;
	background-color:rgba(220,220,220,0.5);
	position:absolute;
	top:20px;
	z-index:-1;
	}

.no-bg-about-area{width:100%;}

.no-bg-about-area::after{background-color:unset;}

.about-edit-block{
	max-width:1000px;
	margin:0 auto 50px;
	display:flex;
	align-items:center;
	}

.reverse-block{flex-direction:row-reverse;}

.about-edit-cover{flex-basis:400px;}

.about-edit-cover img{width:100%;}

.about-edit-content{flex:1; padding:0 25px;}

.about-edit-content span{color:#0099ff; font-size:20px; font-weight:600;}

.service-list-block {
    max-width: 900px;
    margin: 50px auto 0;
}

.service-item {
    margin: 40px 0 60px;
}

.service-item h4 {
    font-size: 22px;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.service-item h4 i {
    font-size: 22px;
    color: #ff0000;
}

/* inside page - equipment */
.equipment-item {
    margin-bottom: 60px;
}
.table-tit h3 {
    font-size: 22px;
}
.table-tit h3 i {
    font-size: 22px;
    color: #ff0000;
}
.table-responsive table {
    width: 100%;
    border-top: 1px solid #ccc;
}
.table-responsive th {
    background-color: #333;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 5px 10px;
}
.equipment-img {
    display: block;
    height: 0;
    text-align: center;
    padding-bottom: 70%;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}
.equipment-img img {
    cursor: pointer;
    max-width: 100%;
    min-width: 90%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    transform: translate(-50% , 0) scale(1);
    transition: all 0.3s;
}
.equipment-img img:hover {
    transform: translate(-50% , 0) scale(1.1);
}

/* inside page - product */
.product-picbox .swiper-container{
	width:100%;
	height:480px;
	margin-left:auto;
	margin-right:auto;
    }

	.product-picbox .swiper-slide {
		background-size: cover;
		background-position: center;
		display: block;
		height: 0;
		text-align: center;
		padding-bottom: 100%;
		overflow: hidden;
		position: relative;
	}

	.product-picbox .swiper-slide img {
		width: 100%;
		max-width: 100%;
    	min-width: 100%;
	    object-fit: cover;
    	height: auto;
	    -moz-object-fit: cover;
    	-ms-object-fit: cover;
    	-o-object-fit: cover;
    	-webkit-object-fit: cover;
    	position: absolute;
    	transform: translate(-50% , 0) scale(1);
    	transition: all 0.3s;
	}

	.product-picbox .gallery-top {
		height: 100%;
		max-height: 320px;
		width: 100%;
	}

.product-picbox .gallery-thumbs{height:80px; box-sizing:border-box; padding:10px 0;}

.product-picbox .gallery-thumbs .swiper-slide{height:100%; opacity:0.4;}

.product-picbox .gallery-thumbs .swiper-slide-thumb-active{opacity:1;}

.product-list-item {
    margin-bottom: 40px;
}
.product-list-item h4 {
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ff0000;
}
.product-list-item h4 i {
    font-size: 18px;
    color: #ff0000;
}
.product-list-item ul {
    padding: 0 10px;
}
.product-list-item ul li {
    padding: 8px 0;
}
.product-list-item ul li a {
    color: #8e0000;
    transition: 0.5s;
}
.product-list-item ul li a:hover {
    color: #ff0000;
    transition: 0.5s;
}
.page-product-txt {
    padding: 0 15px;
}
.page-product-block{
	width:100%;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	}

.page-product-box{
	width:33.333%;
	margin-top:10px;
	margin-bottom:30px;
	}

.page-product-box>.box-inner{
	margin:15px;
    background-color:#fff;
    box-shadow:0px 0px 20px rgb(0 0 0 / 20%);
	}

.product-box-cover{
    display:block;
    height:0;
    text-align:center;
    padding-bottom:75%;
    overflow:hidden;
    position:relative;
    background-color:#ccc;
	}

.product-box-cover img{
	max-width:100%;
    min-width:100%;
    object-fit:cover;
    -moz-object-fit:cover;
    -ms-object-fit:cover;
    -o-object-fit:cover;
    -webkit-object-fit:cover;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%) scale(1);
    transition:all 0.3s;
	opacity:0.6;
	}

.page-product-box:hover .product-box-cover img{
	transform: translate(-50% , -50%) scale(1.1);
	opacity:0.9;
	}

.product-box-type{text-align:center; padding:10px 0;}

.product-box-type h3{
	font-size:20px;
	text-transform:uppercase;
	margin-bottom:0;
    color: #333;
	}

.page-product-box a:hover h3 {
    color:var(--color-primary);
}

.page-link-area{
	padding:70px 0;
	background-color:#ccc;
	}

.page-link-block{
    width:90%;
    max-width:1000px;
    margin:0 auto;
    display:flex;
    align-items:center;
	}

.product-hr {
    border: 1px solid var(--color-primary);
    opacity: 1;
}

.product-infobox td {
    border-width: 1px;
}

.linkbox-cover{flex-basis:400px;}
.linkbox-cover img{width:100%;}

.linkbox-content{flex:1; padding:0 50px;}

.table-btn-block{
	display:flex;
	justify-content:center;
	}

.table-btn-block .table-btn-box a{
	width:inherit;
	padding:15px 45px 15px 20px;
	text-transform:uppercase;
	}

/* inside page - standard */
.product-table{
	width:100%;
	max-width:900px;
	text-align:center;
	border:1px solid #ccc;
	margin:0 auto;
	}

.product-table th, .product-table td{
	border:1px solid #ccc;
	padding:10px;
	}

.product-table th{font-weight:bold; background-color:#ddd;}

.product-table tr:nth-child(even){background-color:#f2f2f2;}

.screw-table-block{display:flex; flex-wrap:wrap;}

.screw-table-box{width:50%; padding:10px 15px 25px;}

/* inside - news */
.news-list-block{
	max-width:900px;
	margin:50px auto 0;
	display:flex;
	flex-wrap:wrap;
	}

.news-list-box{position:relative; margin:20px auto 50px;}

.news-list-box>.box-inner{
	display:flex;
	align-items:center;
	background-color:#fff;
	box-shadow:0px 0px 10px rgb(0 0 0 / 20%);
	}

.news-list-box:nth-child(2n)>.box-inner{
	flex-direction:row-reverse;
	}

.news-list-cover-box{flex-basis:400px;}

.news-list-cover{
	display:block;
    height:0;
    text-align:center;
    padding-bottom:60%;
    overflow:hidden;
    position:relative;
	}

.news-list-cover img{
	max-width:100%;
    min-width:100%;
    object-fit:cover;
    height:100%;
    -moz-object-fit:cover;
    -ms-object-fit:cover;
    -o-object-fit:cover;
    -webkit-object-fit:cover;
    position:absolute;
    right: 0;
    transition:all 0.3s;
    transform:scale(1);
	}

.news-narrative{
	flex:1;
	padding:0 30px;
    margin: 15px 0;
	position:relative;
	}

.news-narrative h4{
	display:-webkit-box;
    width:95%;
    height:1.5em;
    line-height:1.2em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
	font-size:24px;
	font-weight:bold;
	color:#222;
}

.news-narrative h4 i {
    color:var(--color-primary);
    font-size: 24px;
}

.news-date{font-style:italic; color:#9b9b9b;}

.news-detail-date {
    text-align: center;
}

.news-narrative p{
	display:-webkit-box;
    width:100%;
    line-height:1.8em;
    /*-webkit-line-clamp:2;*/
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    color:#222;
    font-size:16px;
    font-weight:400;
    margin:0;
	}

.news-list-box .arrow{
	position:absolute;
	top:20px;
	right:20px;
	}

.news-list-box .arrow i{
	font-size:28px;
	color:#ededed;
	}

.news-narrative::after{
	content:"";
	width:85%;
	height:1px;
	background-color:#ccc;
	position:absolute;
	bottom:-5px;
	transform-origin:right top;
    transform:scaleX(0);
    background:linear-gradient(315.21deg,#ff0000,#f9b7b7 100.37%);
    transition:transform .3s ease-in-out .07s;
	}

.row-reverse {
    flex-direction: row-reverse;
}

.news-list-box:hover>.box-inner{
	box-shadow:0px 0px 20px rgb(0 0 0 / 30%);
	}

.news-list-box:hover .news-list-cover img{
    transform:scale(1.1);
    }

.news-list-box:hover .arrow i{color:#ff0000;}

.news-list-box:hover .news-narrative::after{
	transform:scale(1);
	}

.page-edit-box{width:90%; max-width:900px; margin:0 auto;}

.news-detail-cover-pic{max-width:600px; margin:0 auto;}

.news-detail-title{
	font-size:24px;
	font-weight:bold;
	text-align:center;
	margin-top:20px;
	}

.page-edit-box p{line-height: 1.8em;}

.back-btn-block{
	width:90%;
    max-width:900px;
    margin:20px auto 50px;
    display:flex;
	}

.back-btn-box {
    margin-left: auto;
}

.back-btn-box a{
	font-size:16px;
    color:#fff;
    padding:12px 25px;
    border-radius:5px;
    background-color:var(--color-primary);
	}

.back-btn-box i{margin-right:5px; color:#fff;}

.back-btn-box:hover a{color:#fff; background-color:var(--dark);}

/* inside - contact */

.contact-info-row .col-md-4 {
    display: flex;
    justify-content: center;
}

.contact-info-logo .contact-info-item {
    margin: auto;
}

.contact-info-col {
    border-left: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
}

.contact-info-txt .contact-info-item {
    width: 85%;
}

.contact-info-item a {
    color: #000;
}

.contact-info-item a:hover {
    color: #ff4040;
}

.contact-info-item h4 {
    font-size: 22px;
    font-weight: 600;
    color:var(--color-primary);
}

.contact-block{max-width:1080px;}

.remark{padding:0 25px;}
.remark p{font-size:16px; margin-bottom:0;}
.remark span{color:#ea0000; margin-right:5px;}

.contact-form-block{
	padding:10px;
}

.contact-form-part{
	display:flex;
	flex-wrap:wrap;
	}

.contact-form-box{width:50%;}
.form-box-inner{margin:10px;}

.contact-form-box label{
	font-size:16px;
	font-weight:bold;
	padding-left:3px;
	margin-bottom:7px;
	color:#686868;
	}

.verify-box label{display:inline-block;}

.contact-form-box span{
	margin-left:3px;
	color:#ea0000;
	font-size:14px;
	}

.contact-column{
    display:block;
    width:100%;
    height:50px;
    padding:14px 15px;
    font-size:14px;
    line-height:1.57143;
    color:#212121;
    background-color:#fff;
    background-image:none;
    border:1px solid #b1b1b1;
    border-radius:5px;
    -webkit-box-shadow:0 1px 1px 1px rgb(0 0 0 / 10%);
    box-shadow:0 1px 1px 1px rgb(0 0 0 / 10%);
    -webkit-transition:border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition:border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition:border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    outline:none;
	}

textarea.contact-column{
	height:220px;
	min-height:54px;
    max-height:400px;
    resize:vertical;
	}

input#contact-yzm{
    width:150px;
    height:38px;
    display:inline-block;
    margin:0 0 0 10px;
    vertical-align:top;
	}

.btn-block button{
	width:200px;
	margin:20px auto 0;
	padding:15px 15px;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
	border-radius:5px;
	}

.btn-block button i{color:#fff; padding-right:10px;}

.btn-block button:hover{
	color: #fff;
    background-color:var(--dark);
    border: 1px solid var(--dark);
	}

.btn-block button:hover i{color:#fff;}

.contact-info-block{
	display:flex;
	flex-wrap:wrap;
	}

.contact-info-block h3{
	font-size:24px;
	font-weight:bold;
	margin-bottom:0;
	}

.contact-info-block h4{
	font-size:20px;
	color:#888888;
	}

.contact-info-block ul{padding:10px; margin-bottom:0;}

.contact-info-block li{padding:3px 0;}

.contact-info-block li i{margin-right:3px;}

.contact-info-block hr{margin:7px auto; border-top:1px solid #dcdcdc;}
.contact-info-block p{font-size:16px; line-height:30px;}

.contact-info-box{position:relative; margin-bottom: 20px;}
.map-box{
	width:100%;
	position:relative;
    margin-bottom: 60px;
	}

.map-box iframe{width:100%; height:320px;}

.contact-info-box>.box-inner{
	padding:15px 25px;
	margin:0 15px 0 10px;
	border:1px solid #b1b1b1;
	border-radius:5px;
	background-color:#fff;
	-webkit-box-shadow:0 1px 1px 1px rgb(0 0 0 / 10%);
    box-shadow:0 1px 1px 1px rgb(0 0 0 / 10%);
	}

.map-block{margin:80px auto 0;}

.btn-block{
	display:block;
    width:100%;
	margin-top:15px;
	}

/*result*/
.result-block{
    width:95%;
    max-width:1080px;
    margin:0 auto;
	}

.result-exhibit-block{margin:30px auto 50px;}

.result-list{
	margin:20px;
	padding-left:0;
	}

.result-exhibit-box{
	list-style:none;
	border-bottom:1px dashed rgba(220,220,220,0.5);
	position:relative;
	}

.result-exhibit-box>a{
	display:flex;
	align-items:center;
	}

.result-cover{
    flex:0 0;
    flex-basis:300px;
    padding:15px;
	}


.result-narrative{flex-grow:1; padding:15px;}

.result_arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    width:72px;
    height:72px;
    border-radius:50%;
    position:absolute;
    right:20px;
	}

.result_arrow i{
    color:#86949a;
    font-size:20px;
	}

.result_arrow::before{
    content:"";
    display:block;
    width:100%;
    height:100%;
    background:#0b4a72;
    border-radius:50%;
    position:absolute;
    top:0;
    left:0;
    z-index:-1;
    transform:scale(0);
    transition:transform 0.2s ease-out;
	}

.result_arrow::after{
    content:"";
    background:currentColor;
	}

.result-exhibit-box>a:hover .result_arrow:before {
    transition-timing-function:cubic-bezier(.175,.885,.32,1.275);
    transform:scale(1);
	}

.result-exhibit-box>a:hover .result_arrow i{color:#fff;}

.result-narrative h4{
	width:85%;
	font-weight:600;
	color:#295087;
	}

.result-narrative h5{
	width:85%;
	font-size:14px;
	font-style:italic;
	color:#9b9b9b;
	}

.result-narrative p{
	display:-webkit-box;
    width:85%;
    height:3.6em;
    line-height:1.8em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    color:#000;
    margin:0;
	}

/* Collapsibles Accordion */
.filter{padding:20px; display:none;}

.filter .accordion {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    background-color: #eee;
    color: #333;
    cursor: pointer;
    padding: 10px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
  }
  
  .expand, .filter .accordion:hover {
    background-color: #ddd;
  }
  
  .filter .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .expand:after {
    content: "\2212";
  }
  
  .filter .panel {
    border-bottom: 1px solid #eee;
    margin-top: 10px;
    padding: 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}


/* Price Table */
.price-content {
    background: linear-gradient(to bottom, #eee 93%, #fff 0);
    margin-top: 60px;
    margin-bottom: 40px;
}
.plan-frame h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    font-style: italic;
    text-align: right;
    padding-top: 30px;
}
.plan-frame h3 {
    font-size: 28px;
    font-weight: 600;
    text-align: right;
    margin-top: -32px;
    margin-bottom: 30px;
}
.plan-frame .package {
    width: calc(100% / 3);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    float: left;
    margin: 0 auto;
    padding: 20px;
    transform: scale(1);
}
.plan-frame .package:hover {
    transform: scale(1.07);
}
.plan-frame .package:hover .package-title {
    background: #0099ff;
}
.plan-frame .package:hover .package-price, 
.plan-frame .package:hover .package-expiry {
    color: #0099ff
}
.package-title {
    background: #295087;
    font-weight: bold;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 3px 3px 0px 0px;
}
.package-details {
    min-height: 320px;
    background: #fff;
    border-radius: 0px 0px 3px 3px;
    box-shadow: 2px 2px 3px 0px rgb(0 0 0 / 30%);
}
.package-price {
    font-weight: bold;
    padding: 20px 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.price-symbol {
    font-size: 18px;
}
.price-number {
    font-size: 36px;
}
.package-expiry {
    font-size: 14px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.package-dashes {
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
.package-dashes span {
    display: block;
}
.packages-stat {
    margin: 30px auto;
    background: #fff;
    box-shadow: 2px 2px 3px 0px rgb(0 0 0 / 30%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.packages-stat .stat {
    display: grid;
    padding: 10px 0;
    grid-template-rows: 50% 50%;
}
.stat-one {
    display: flex;
    flex-direction: row;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
}
.stat-range {
    height: 10px;
    width: 100%;
    background: #eee;
    border-radius: 10px;
    margin: 5px 0px;
    position: relative;
    overflow: hidden;
}
.stat-range::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #0099ff;
    width: 0%;
    transition: all .3s linear;
}
.package1:hover ~ .packages-stat .stat1 .stat-two .stat-range::after {
    width: 10%;
}
.package1:hover ~ .packages-stat .stat2 .stat-two .stat-range::after {
    width: 10%;
}
.package1:hover ~ .packages-stat .stat3 .stat-two .stat-range::after {
    width: 10%;
}
.package2:hover ~ .packages-stat .stat1 .stat-two .stat-range::after {
    width: 25%;
}
.package2:hover ~ .packages-stat .stat2 .stat-two .stat-range::after {
    width: 75%;
}
.package2:hover ~ .packages-stat .stat3 .stat-two .stat-range::after {
     width: 50%;
}
.package3:hover ~ .packages-stat .stat1 .stat-two .stat-range::after {
    width: 100%;
}
.package3:hover ~ .packages-stat .stat2 .stat-two .stat-range::after {
    width: 100%;
}
.package3:hover ~ .packages-stat .stat3 .stat-two .stat-range::after {
    width: 100%;
}
.host-frame h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    font-style: italic;
    padding-top: 30px;
}
.host-frame h3 {
    font-size: 28px;
    font-weight: 600;
    margin-top: -32px;
    margin-bottom: 30px;
}
.host-frame .center {
    display: flex;
}
.host-grid {
    width: 25%;
    text-align: center;
}
.grid-top {
    font-size: 24px;
    letter-spacing: 3px;
    background: #295087;
    color: #fff;
    padding: 20px;
    transition: 0.5s;
}
.host-grid:hover .grid-top {
    background: #0099ff;
}
.grid-body {
    background: #fff;
    padding: 20px;
    min-height: 120px;
    box-shadow: 2px 2px 3px 0px rgb(0 0 0 / 30%);
    display: flex;
    justify-content: center; 
    align-items: center;
    position: relative;
    transition: 0.5s;
}
.host-grid:hover .grid-body {
    color: #0099ff;
}
.grid-body:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8%;
    height: 84%;
    width: 1px;
    background: #c9caca;
    -webkit-transform: scale(0.5, 1);
    transform: scale(0.5, 1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.price-average{display:block;}

/* FAQ */
.faq-content{position:relative;}

.faq-box {
    display: flex;
    padding: 50px 0;
}
.faq-tit {
    width: 30%;
}
.faq-tit h1 {
    color: #eee;
    font-size: 120px;
    font-weight: 600;
    font-style: italic;
}
.faq-tit h3 {
    color: #295087;
    font-size: 28px;
    font-weight: 600;
    margin-top: -50px;
}
.faq-lump {
    position: absolute;
    top: 60%;
    left: 0;
    width: 25%;
    height: 6px;
    background-color: #0099ff;
    z-index: -1;
}
.faq-list {
    width: 70%;
}
.faq-list .accordion {
    background-color: #fff;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.5s;
}
  .faq-list .accordion:hover {
    background-color: #eee;
  }
  .faq-list .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  .faq-list .panel {
    padding: 0 20px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }


/* inside page - plan */
.plan-content {
    margin-top: 60px;
    margin-bottom: 40px;
}
.plan-content .txt {
    padding: 0 40px;
}
.plan-content h3 {
    color: #295087;
    line-height: 1.5em;
}
.planinfo-lump {
    position: absolute;
    top: 30%;
    left: 0;
    width: 30%;
    height: 45%;
    background-color: #295087;
    z-index: -1;
}
.planitem-tit {
    position: absolute;
    bottom: 20%;
    left: 6%;
}
.planitem-tit h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    font-style: italic;
    width: 50%;
}
.planitem-tit h3 {
    font-size: 28px;
    font-weight: 600;
    color: #0099ff;
    width: 50%;
}
.plan-item {
    padding-top: 100px;
    padding-bottom: 60px;
}
.planup-lump {
    position: absolute;
    bottom: 36%;
    right: 0;
    width: 75%;
    height: 2px;
    background-color: #0099ff;
}
.plandown-lump {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 75%;
    height: 2px;
    background-color: #0099ff;
}
.planitem-block {
    width: 1400px;
    margin-left: auto;
    padding-right: 100px;
}
.planitem-block .row {
    margin: 0;
}
.plan-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.plan-item .icon i {
    font-size: 50px;
    color: #fff;
    background-color: #0099ff;
    width: 120px;
    height: 120px;
    border-radius: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.plan-item .tit h4 {
    font-size: 24px;
    font-weight: 400;
    padding-top: 10px;
}
.planitem-lump {
    width: 40%;
    height: 5px;
    background-color: #0099ff;
    margin: auto;
}
.plan-item .txt {
    padding: 10px 80px;
}

/* inside page - contact */





.contact-form-part .link-btn-box i{margin-right:10px;}

/* inside page - result */
.result-content {
    position: relative;
    padding-top: 40px;
    padding-bottom: 80px;
}
.result-item {
    padding: 20px 0 !important;
}
.result-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.result-item .icon i {
    font-size: 50px;
    color: #fff;
    background-color: #0099ff;
    width: 100px;
    height: 100px;
    border-radius: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.result-item .txt h3 {
    font-size: 24px;
    font-weight: 400;
    padding-top: 10px;
    color: #295087;
}
.result-tit {
    position: absolute;
    background-color: #295087;
    color: #fff;
    padding: 30px;
    width: 24%;
    bottom: 3%;
    right: 10%;
}
.result-lump {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 80%;
    height: 2px;
    background-color: #0099ff;
}


/* result data */
.statistic-section {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #00c6ff;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0099ff, #00c6ff);
    background: linear-gradient(to right, #0099ff, #00c6ff); 
}
.count-title {
   font-size: 50px;
   font-weight: normal;
   margin-top: 10px;
   margin-bottom: 0;
     text-align: center;
     font-weight: bold;
   color: #fff;
}
.stats-text {
   font-size: 15px;
   font-weight: normal;
   margin-top: 15px;
   margin-bottom: 0;
   text-align: center;
     color: #fff;
     text-transform: uppercase;
     font-weight: bold;
}
.stats-line-black {
   margin: 12px auto 0;
   width: 55px;
   height: 2px;
   background-color: #fff;
}
.stats-icon {
     font-size: 35px;
     margin: 0 auto;
   float: none;
   display: table;
   color: #fff;
}

/* Tab Style */
.tab {
    display: flex;
}
.tablinks {
    background-color: #fff;
    border: 1px solid #000;
    padding: 5px 30px;
    margin-right: 15px;
    transition: 0.5s;
}
.tablinks:hover {
    color: #0099ff;
    border: 1px solid #0099ff;
}
.work-tab .tab .active {
    background-color: #0099ff;
    color: #fff;
    border: 1px solid #0099ff;
}
.work-tab .tab .active:hover {
    color: #fff;
}
.tabcontent{margin-top:30px;}


/* Responsive */
@media only screen and (max-width:1800px){
    .about-lump{top:145px;width:160px;}
    .about-txt{padding:120px 0;}
    .work-lump{width:620px;}
    .plan-lump{width:200px;}
    .planimg-lump{right:150px;}
    .planitem-tit{left:0;}
    .planitem-tit h2{font-size:50px;}
    .result-tit{right:5%;}
	}

@media only screen and (max-width:1600px){
    .lump{display:none;}
    .about-txt{padding:100px 20px;}
    .planitem-block{margin:auto; padding:0;}
    .planitem-tit{bottom:28%;}
    .result-tit{width:30%; right:0;}
    .moving-picbox1{right:0;}
    .moving-picbox2{left:3%;}
    .moving-pic1{max-width:500px;}
	}

@media only screen and (max-width:1400px){
    .about-block{width:100%;}
    .about-txt{padding:50px 20px;}
    .work-block{width:100%;}
    .plan-block{width:100%;}
    .result-block{width:100%; height:100%;}
    .header-banner{width:100%;}
    .main-block{width:100%;}
    .planitem-block{width:100%;}
    .result-box{left:65%;}
    .result-txt{padding:100px 0;}
    .footer-block{width:90%;}
    .planinfo-lump{height:25%;}
    .planitem-tit{position:relative; text-align:center; padding-top:100px;}
    .planitem-tit h2{color:#0099ff; width:100%;}
    .planitem-tit h3{color:#000; width:100%;}
    .plan-item{padding-top:40px;}
    .planup-lump{bottom:50%;}
    .moving-picbox2{top:20%;}
    .moving-pic2{width:380px;}
    .news-section::after{right:15%; margin-right:unset;}
    .banner-slide-pic{flex-basis:650px;}
	}

@media only screen and (max-width:1360px){
    .page-header-banner{max-width:1000px;}
    .slide-txt{bottom:180px; left:150px;}
    .about-txt{padding:20px;}
    .work-project{padding:0 40px;}
    .work-custom{right:27%;}
    .work-software{right:43%;}
	}

@media only screen and (max-width:1280px){
    .product-picbox .gallery-top {
        max-height: 300px;
    }
    .work-depiction{left:0;}
    .work-custom{right:0;}
    .work-shopping{left:0; margin-top:20px!important;}
    .work-software{right:0; margin-top:20px!important;}
    .work-module{left:0; margin-top:20px!important;}
    .work-entit{right:0; margin-top:20px!important;}
    .work-img{width:100%!important; height:100%!important;}
    .work-img img{width:100%; margin:0;}
    .work-info{padding:0;}
    .work-info h3{margin:0;}
    .moving-picbox1{top:30%;}
    .moving-pic1{width:400px;}
    .product-slider-banner-bolck{margin-left:-490px;}
    .product-slider-banner{max-width:980px;}
    .product-exhibit-box{width:33.333%;}
    .about-spirit-pic1{left:0;}
	}

@media only screen and (max-width:1200px){
    body{font-size:14px!important;}
    .menu-container .row{width:100%;}
    .slide-txt h2{font-size:42px;}
    .slide-txt h3{font-size:24px;}
    .slide-txt h4{font-size:18px;}
    .about-txt h2, .work-info h2, .plan-info h2, .result-txt h2{font-size:32px;}
    .about-txt h3{margin-top:10px;}
    .about-txt h4{font-size:18px;}
    .result-txt h2{margin:0;}
    .result-txt h4{display:none;}
    .footer .row, .copyright .row{width:100%;}
    .planinfo-lump{height:20%;}
    .planitem-tit{padding-top:70px;}
    .planup-lump{bottom:54%;}
    .result-lump{display:none;}
    .news-section::after{right:17%;}
	}

@media only screen and (max-width:1080px){
    .index-banner-block .swiper-slide {
        padding-top: 80px;
    }
    .banner-slide-bg {
        right: 0;
        max-width: 600px;
    }
    .banner-info-box {
        margin-right: auto;
        padding-left: 30px;
    }
    .banner-subtxt {
        display: none;
    }
    .product-picbox .gallery-top {
        max-height: 260px;
    }
    .main-logo{max-width:240px;}
    .logo-img a{display:block; padding:5px 0;}
    .navTrigger{display:block;}
    .page-header-banner{max-width:800px;}
    .nav-navbar{display:none;}
    .open-nav{display:block;}
    .about-txt{padding:100px 30px;}
    .second-title, .second-paragraph{display:none;}
    .work-info h3{font-size:42px;}
    .plan-img h3{font-size:36px; top:-32px;}
    .result-txt{padding:60px 0;}
    .header-banner .en-tit h3{font-size:66px;}
    .header-banner .tit{bottom:120px;}
    .planinfo-lump{height:18%;}
    .plan-item{padding-bottom:40px;}
    .planup-lump{bottom:56%;}
    .plan-item .txt{padding:10px 60px;}
    .result-content{padding-bottom:40px;}
    .result-item{padding:10px 0 !important;}
    .result-item .icon i{width:80px; height:80px;}
    .result-item .txt h3{font-size:20px;}
    .result-tit{width:40%; bottom:5%;}
    .moving-picbox2{top:30%;}
    .moving-pic2{width:300px;}
    .product-slider-banner-bolck{margin-left:-300px;}
    .product-slider-banner{max-width:600px;}
    .swiper-button-next, .swiper-button-prev{top:50%!important;}
	.banner-section{height:inherit;}
    .banner-section .swiper-slide{flex-wrap:wrap;}
    .banner-slide-pic{flex-basis:100%; max-width:600px;}
    .banner-slide-info{flex:inherit;}
    .screw-table-box{width:100%; padding:0; margin:0 auto 30px;}
	}

@media only screen and (max-width:991px){
    .product-picbox {
        margin-bottom: 40px;
    }
    .product-picbox .gallery-top {
        max-height: 480px;
    }
    .product-picbox .gallery-thumbs {
        height: 120px;
    }
}

@media only screen and (max-width:960px){
    .banner-maintxt {
        display: none;
    }
    .footer-col-tit h4 {
        font-size: 24px;
    }
    .footer-col-tit h5 {
        font-size: 13px;
    }
    .main-title-block{top:8%; width:80%; margin-left:-400px;}
    .main-title-block{padding:60px 30px 180px; align-items: flex-start;}
    .moving-picbox1{top:20%;}
    .moving-picbox2{top:40%;}
    .moving-pic1{width:500px;}
    .main-text-box{text-align:left;}
	.index-banner-btn{margin:0;}
    .slide-txt{bottom:130px;}
    .slide-txt h2{font-size:36px;}
    .slide-txt h3{font-size:20px;}
    .slide-txt h4{font-size:16px;}
    .swiper-more{font-size:36px; bottom:40px;}
    .about-txt{padding:30px;}
    .about-txt h2, .work-info h2, .plan-info h2, .result-txt h2{font-size:28px;}
    .about-txt h3{font-size:18px;}
    .about-txt h4{font-size:16px;}
    .result-txt{padding:30px 0;}
    .result-txt h3{font-size:18px;}
    .header-banner{margin-top:70px;}
    .header-banner .en-tit h3{font-size:60px;}
    .header-banner .tit{bottom:80px;}
    .header-banner .tit h3{font-size:30px;}
    .filter{padding:20px 0;}
    .accordion{position:relative;}
    .package-details{min-height:280px;}
    .grid-body{min-height:150px;}
    .price-symbol{font-size:16px;}
    .price-number{font-size:30px;}
    .faq-box{display:block; padding:0 0 50px 0;}
    .faq-tit{width:100%; padding-bottom:20px; text-align:center;}
    .faq-list{width:100%; padding:0 15px;}
    .plan-content h3{font-size:20px;}
    .plan-content .txt{padding:0 20px;}
    .planinfo-lump{top:25%;}
    .planup-lump{bottom:60%;}
    .result-item{padding:5px 0 !important;}
    .result-item .icon i{font-size:30px; width:50px; height:50px;}
    .result-item .txt h3{font-size:18px;}
    .result-item .txt p{line-height:1.2em;}
    .result-tit{padding:20px; bottom:10%;}
    .product-exhibit-box{width:50%;}
    .contact-form-area{flex-wrap:wrap; justify-content: center; flex-direction:initial;}
    .contact-map-part{width:80%;}
    .plan-mainarea{flex-wrap:wrap; flex-direction:column-reverse;}
    .plan-mainblock-pic{width:95%; max-width:800px; margin:0 auto;}
    .plan-mainblock-text{width:95%; max-width:800px; margin:0 auto;}
    .plan-mainarea2{flex-wrap:wrap;}
    .plan-illustrate{width:95%; max-width:800px; margin:0 auto;}
    .plan-spirit{max-width:500px; height:600px;}
    .result-cover{flex-basis:250px;}
    .contact-section::after{right:25%;}
    .index-news-title{text-align:center;}
    .index-news-list{width:100%; max-width:600px; margin:30px auto 0; flex-wrap:wrap;}
    .index-news-box{width:50%; padding-top:0;}
    .index-news-box:nth-child(odd){padding-top:inherit;}
    .index-news-line{display:none;}
    .index-news-box:nth-child(odd) .index-news-circle{top:inherit;}
    .index-news-circle{top:30px!important; left:30px;}
    .index-news-box:nth-child(odd) .index-news-date{top:inherit;}
	.index-news-date{top:30px!important; left:60px; z-index:15;}
    .news-section::after{position:unset;}
    .news-narrative h4{width:90%;}
    .contact-block{max-width:650px;}
    .contact-info-box{margin:0 auto 20px;}
    .page-product-block{max-width:700px;}
    .page-product-box{width:50%;}
	}

@media only screen and (max-width:840px){
    .page-header-area {
        background-size: auto;
        background-position: top right;
    }
    .about-infobox {
        height: auto;
        padding-bottom: 40px;
    }
    .page-header-banner .banner-title {
        color: #fff;
        border-bottom: 3px solid #fff;
    }
    .page-header-banner .banner-subtitle {
        opacity: 0.15;
    }
    .index-service-block {
        flex-wrap: wrap;
    }
    .service-editbox .index-block-entit h2 {
        transform: none;
        justify-content: right;
    }
    .product-picbox .gallery-top {
        max-height: 400px;
    }
	.page-header-banner{max-width:500px;}
	.main-title-block{margin-left:-350px;}
	.index-main-area{min-height:1200px;}
	.index-about-block{flex-wrap:wrap;}
	.index-about-editbox{width:100%; max-width:600px; margin:0 auto;}
	.page-header-area{padding-top:80px; min-height:auto;}
	.page-header-banner>.box-inner{flex-wrap:wrap;}
	.banner-picbox{margin-top:0; margin-bottom:20px; display:none;}
	.banner-titlebox{text-align:center; margin-bottom:30px;}
	}

@media only screen and (max-width:768px){
    .index-edit-block {
        padding: 15px 0 25px;
    }
    .page-content-box .page-about-infobox h2 {
        margin-top: 60px;
    }
    .product-picbox .gallery-top {
        max-height: 380px;
    }
    .product-picbox .gallery-thumbs {
        height: 100px;
    }
    .equipment-img {
        padding-bottom: 50%;
    }
    .contact-info-logo .contact-info-item {
        margin: 0;
    }
    .contact-info-row .col-md-4 {
        justify-content: left;
        margin-bottom: 10px;
    }
    .contact-info-col {
        border: none;
    }
    .footer-col-tit {
        text-align: left;
    }
    .footer-block .footer-col-txt {
        display: block;
    }
    .footer-block p {
        margin: 0;
    }
    .copyright {
        width: 90%;
        margin: 0 auto;
    }
    .copyright .privacy {
        text-align: left;
    }
    .ccin {
        max-width: 100%;
        margin: 0;
        display: block;
    }
    .main-title-block{margin-left:-300px;}
    .moving-picbox1{top:25%;}
    .moving-pic1{width:350px;}
    .moving-pic2{width:200px;}
    .menu-container{height:60px;}
    .slide-txt{bottom:90px;}
    .swiper-more{display:none;}
    .about-box{width:50%!important;}
    .about-txt h2, .work-info h2, .plan-info h2, .result-txt h2{font-size:24px;}
    .first-paragraph{display:none;}
    .work-box{padding:60px 0;}
    .work-project{padding:0 20px;}
    .plan-img{margin-top:40px !important;}
    .result-box{left:60%; width:40% !important;}
    .result-txt{padding:50px 0;}
    .result-txt p{display:none;}
    .fixed-icon{right:20px;}
    .footer-block .footer-info{padding:10px 40px;}
    .footer-logo{width:100px!important;}
    .footer-info h3{font-size:20px;}
    .header-banner .en-tit{top:30px;}
    .header-banner .en-tit h3{font-size:42px;}
    .header-banner .tit{bottom:55px;}
    .header-banner .tit h3{font-size:24px;}
    .tablinks{padding:5px 20px; margin:0 7px;}
    .aboutweb-lump{width:75%; height:100%;}
    .software h2{font-size:48px;}
    .plan-frame h2{font-size:48px;}
    .plan-frame h3{font-size:24px;}
    .host-frame h2{font-size:48px;}
    .host-frame h3{font-size:24px;}
    .plan-frame .package{padding:10px;}
    .package-title{font-size:16px;}
    .package-details{min-height:300px;}
    .package-price{display:block;}
    .package-price span{display:block; text-align:center;}
    .price-symbol{font-size:14px;}
    .price-number{font-size:24px;}
    .grid-top{font-size:20px;}
    .planinfo-lump{top:15%; height:28%;}
    .planitem-tit{padding-top:40px;}
    .planup-lump{bottom:58%;}
    .plan-item .txt{padding:10px 30px;}
    .plan-item .icon i{font-size:42px; width:100px; height:100px;}
    .plan-item .tit h4{font-size:20px;}
    .result-content{padding-top:0;}
    .result-content .txt{width:100%; padding:10px 0;}
    .result-content .img{width:100%; padding:10px;}
    .result-item .icon i{font-size:50px; width:80px; height:80px;}
    .result-item .txt h3{font-size:20px;}
    .result-item .txt p{line-height:1.5em;}
    .result-item{padding:10px 0!important;}
    .result-tit{width:50%; bottom:0;}
    .result-data .counter{padding:30px 0;}
    .foot-link-block{justify-content:center; padding:0;}
    .foot-link-box{margin:0 15px;}
    .contact-title h3{font-size:50px; top:-35px;}
    .contact-map-part{width:100%;}
    .process-step-block{width:90%; max-width:500px; flex-direction:column;}
    .process-step-box{flex-direction:initial; justify-content:space-between;}
    .process-step-box{width:100%; height:145px; padding:30px 0 30px 70px;}
    .step-line{height:100%; width:3px; top:-70px; left:19px;}
    .process-step-circle{left:0;}
    .process-step-icon{width:30%; padding-top:0;}
    .process-step-summary{width:40%;}
    .process-step-summary p{margin-bottom:0;}
    .process-step-box:hover .process-step-circle{height:50px; width:50px;}
    .process-step-box:hover .process-step-circle{top:unset; left:-15px;}
    .process-step-num{top:60px; left:12px;}
    .process-step-summary p{margin-bottom:0; padding:0 10px;}
    .process-step-box:hover::before{top:35px; left:35px;}
    .web-category{max-width:480px!important; margin:0 auto;}
    .aboutweb-lump{display:none;}
    .exhibit-summary{max-width:600px;}
    .result-exhibit-box>a{flex-wrap:wrap;}
    .btn_cis{width:160px;}
    .count-box{width:50%!important;}
    .result-exhibit-box{margin-bottom:25px; padding-bottom:15px;}
    .result-detail-content{width:90%; margin:0 auto;}
    .result-detail-content p{font-size:16px; line-height:1.8em;}
    .contact-section::after{position:unset;}
    .contact-title{text-align:center;}
    .news-list-cover-box{flex-basis:300px;}
    .news-list-cover{padding-bottom:80%;}
    .about-edit-block{flex-wrap:wrap;}
    .about-edit-cover{flex-basis:100%; max-width:400px; margin:0 auto;}
    .about-edit-content{flex:inherit; width:90%; margin:20px auto 0;}
	}

@media only screen and (max-width:640px){
    .product-picbox .gallery-top {
        max-height: 300px;
    }
    .product-picbox .gallery-thumbs {
        height: 80px;
    }
	.moving-picbox1{top:35%;}
	.moving-pic1{width:300px;}
    .main-title-block{margin-left:-250px;}
    .main-title{width:100%;}
    .main-text-box h2{font-size:40px;}
    .product-slider-banner-bolck{margin-left:-200px;}
    .product-slider-banner{max-width:400px;}
    .index-banner-block .swiper-slide p{bottom:5%;}
    .page-tab .tablinks{padding:10px 5px; margin-right:0;}
    .footer-txtbox-content{width:100%; margin:5px 0;}
    .contact-form-box>.box-inner{flex-wrap:wrap;}
    .contact-form-box label{padding-top:0; margin-bottom:10px;}
    .contact-column{width:100%;}
    .index-news-box{width:100%;}
    .index-news-box a{display:flex; align-items:center;}
    .index-news-cover{flex-basis:160px; padding-bottom:120px;}
    .index-news-content{flex:1;}
    .index-news-circle{display:none;}
    .index-news-date{left:unset; top:20px!important; right:20px;}
    .index-news-date p{color:#868686;}
    .footer-txtbox{padding:10px;}
    .news-list-box{max-width:400px;}
    .news-list-box>.box-inner{flex-wrap:wrap;}
    .news-list-cover-box{flex-basis:100%;}
    .news-list-cover{padding-bottom:60%;}
    .news-narrative{padding:15px 30px 30px;}
    .news-narrative::after{bottom:20px;}
    .news-list-box .arrow{top:unset; bottom:85px;}
    .contact-form-box{width:100%;}
    .page-header-banner{max-width:350px;}
    .banner-titlebox{padding:0;}
    .page-header-banner .banner-subtitle{font-size:24px;}
    .table-btn-block{flex-wrap:wrap;}
	}

@media only screen and (max-width: 575px){
    .index-banner-block .swiper-slide {
        min-height: auto;
    }
    .product-picbox .gallery-top {
        max-height: 260px;
    }
    .product-picbox .gallery-thumbs {
        height: 70px;
    }
    .certificate-img-item {
        margin-bottom: 20px;
        padding-bottom: 100%;
    }
    .certificate-img-item img {
        height: 100%;
    }
	.page-header-banner{top:60px;}
	.main-title-block{margin-left:-200px;}
    .menu-container .logo{width:100%;}
    .menu-container .logo .logo-img{max-width:220px;}
    .menu-container .main-menu{width:50%;}
    .open-nav{right:40px;}
    .slide-txt{bottom:50px; left:80px;}
    .slide-txt h2{font-size:24px; line-height:1em;}
    .slide-txt h3{font-size:16px;}
    .slide-txt h4{font-size:14px; line-height:1em;}
    .work-project{padding:0 10px;}
    .work-info h3{font-size:36px;}
    .plan-frame .package{padding:6px;}
    .plan-block .row{padding:30px 20px;}
    .header-banner .en-tit{top:20px;}
    .header-banner .en-tit h3{font-size:36px;}
    .header-banner .tit{bottom:40px;}
    .header-banner .tit h3{font-size:20px;}
    .tablinks{padding:5px 10px; margin:0 5px;}
    .planinfo-lump{top:-25px; width:50%; height:15%;}
    .plan-content{margin-bottom:40px;}
    .plan-content .txt{padding:20px;}
    .planup-lump, .plandown-lump{display:none;}
    .plan-item{padding-top:20px; padding-bottom:20px;}
    .plan-item .txt{padding:10px 80px;}
    .planitem-tit h2{font-size:40px;}
    .result-item .icon{justify-content:left;}
    .result-item .icon i{width:100px; height:100px;}
    .result-item .txt h3{font-size:24px;}
    .result-tit{padding:30px; width:70%;}
    .about-spirit-pic2{top:100px; width:250px;}
    .about-spirit-pic4{bottom:0;}
    .page-product-box{width:100%; max-width:350px; margin:0 auto 30px;}
    .index-news-box a{flex-wrap:wrap;}
    .index-news-cover{flex-basis:100%; padding-bottom:200px;}
    .index-news-content{flex:inherit; width:100%;}
    .index-news-date p{color:#fff;}
    .page-link-block{flex-wrap:wrap;}
    .linkbox-cover{flex-basis:100%; max-width:400px; margin:0 auto 20px;}
    .linkbox-content{padding:0 30px;}
	}

@media only screen and (max-width:480px){
    .banner-info-box {
        padding-left: 0;
    }
    .banner-slide-info h1 {
        font-size: 40px;
    }
    .banner-slide-info img {
        max-width: 240px;
        margin: 0;
    }
    .product-picbox {
        margin-bottom: 20px;
    }
    .product-picbox .gallery-top {
        max-height: 240px;
    }
    .page-header-area{/*min-height:200px;*/ margin-bottom:0; padding-top:60px;}
    .page-header-banner{position:inherit; top:unset; left:unset; bottom:unset;}
    .page-header-banner{max-width:inherit; height:inherit; margin-left:inherit; padding:10px;}
    .page-header-banner .banner-title{font-size:40px;}
    .page-header-banner .banner-subtitle{font-size:30px;}
    .exhibit-title h2{font-size:28px; letter-spacing:1px;}
    .exhibit-title h3{font-size:46px; top:-35px;}
    .main-content{margin-top:0;}
    .main-title-block{margin-left:-165px; padding:60px 30px 150px;}
    .main-text-box h2{font-size:32px;}
    .result-txt{padding:10px 0;}
    .tablinks{padding:5px;}
    .package-dashes{padding:10px;}
    .package-dashes span{font-size:12px;}
    .contact-title h2{font-size:26px; letter-spacing:1px;}
    .contact-title h3{font-size:42px; top:-30px; left:-10px;}
    .process-step-num{top:63px;}
    .web-category .txt h2{font-size:46px;}
    .footer-txtblock{flex-wrap:wrap;}
    .footer-txtbox{padding:10px 0;}
    .plan-list-box{flex-wrap:wrap;}
    .plan-mainblock-pic>.box-inner{min-height:350px;}
    .plan-step-block{flex-wrap:wrap;}
    .plan-step-box{width:80%;}
    .plan-spirit{height:500px;}
    .result-txt h2{font-size:20px;}
    .result-txt h3{font-size:14px;}
    .result_arrow{width:50px; height:50px; top:50%;}
    .footer-logo{padding:20px 0 0;}
    .footer-txtbox-content ul li{display:block;}
    .verify-box label{display:block;}
	}

@media only screen and (max-width:400px){
    .banner-slide-pic img {
        max-width: 90%;
    }
    .product-picbox .gallery-top {
        max-height: 200px;
    }
	.moving-pic1{width:200px;}
	.main-title-block{margin-left:-150px;}
	.main-title p{font-size:16px;}
	.main-text-box h2{font-size:32px;}
    .header-banner .en-tit{top:10px;}
    .header-banner .en-tit h3{font-size:26px;}
    .header-banner .tit{bottom:20px;}
    .header-banner .tit h3{font-size:16px;}
    .software h2{font-size:40px;}
    .process-step-num{top:60px;}
    .mobile-logo{width:200px; margin:25px 10px 10px;}
    .product-exhibit-box{width:100%;}
    .numpage-btn .pagination li{margin:5px;}
    .pagination>li>a, .pagination>li>span{padding:6px 8px;}
    .result-cover{flex-basis:200px;}
}

@media only screen and (max-width:360px){
    .product-picbox .gallery-top {
        max-height: 180px;
    }
    .product-picbox .gallery-thumbs {
        height: 60px;
    }
}

