@charset "UTF-8";
/* global */
:root {
  --blue: #1e90ff;
  --white: #ffffff;
    /* color: var(--blue); */
    font-size: 20px;
    font-weight: 500;
}
body {
    font-family: "Noto Sans TC", sans-serif;
    color: #333333;
/*	font-size: 1.25rem;*/
/*	line-height: 1.8;*/
    overflow-x: hidden;
}
*, *:before, *:after {
    box-sizing: border-box;
	 -webkit-box-sizing: border-box;
}
*:focus { 
    outline: none; 
}
table {
    width: 100%;
}
a {
    text-decoration: none;
    color: currentColor;
    transition: all .3s;
    
}


a:hover {
/*    text-decoration: underline;*/
}
img {
    vertical-align: bottom;
}
.link {
    color: #007dc5;
    display: inline-block;
}
.link:hover {
    text-decoration: underline;
}
p, .p {
    margin-bottom: 2rem;
	line-height: 1.8;
}
.hidden {
    overflow: hidden;
}
.clear:after {
	content: '';
	display: table;
	clear: both;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.tl {
    text-align: left;
}
.tc {
    text-align: center;
}
.tr {
    text-align: right;
}
.inner {
	max-width: 1440px;
	margin: auto;
}
main {
	min-height: 100vh;
}
section {
	padding: 50px 0;
}
.video_wrap {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	max-height: 100%;
	max-width: 100%;
	min-height: 100%;
	min-width: 100%;
	width: 0;
}
.max100 {
    max-width: 100%;
}
.full {
    width: 100%;
}
.r {
    position: relative;
}
.flex {
    display: flex;
}
.flex_1 {
    flex: 1;
}
.grid {
    display: grid;
}
.trans {
    transition: all .3s;
}
figure {
    margin: 0;
}
.color-w {
    color: #fff;
}

/* title & font-size */
h1 {
    margin: 0;
}
h2 {
    font-size: 2rem;
    line-height: 1;
    font-weight: 400;
    margin: 0 0 30px;
/*    text-align: center;*/
}
h2 .ch {
    margin-bottom: .5rem;
    line-height: 1.2;
}
h2 .en {
    font-size: 60%;
}
h3 {
    margin-bottom: 20px;
}
h4 {
    color: #259bb1;
}
h5 {
    color: #ffffff;
}
big {
	
}
small {
    font-size: 20px;
}

/* breed */
.bread_wrap {
    margin: 0 0 30px;
    padding: 0 15px;
    font-weight: 400;
}
.bread a:hover {
    opacity: .8;
}
.bread a:not(:last-of-type):after {
    content: '>';
    margin: 0 15px;
}

/* btn */
button, [type="button"], [type="reset"], [type="submit"] {
    appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    border: none;
    cursor: pointer;
    font-size: 20px;
}
.btns > *[class^='btn'] {
    float: none;
    margin-right: 20px;
    width: 180px;
}
.btns > *[class^='btn']:last-child {
    margin-right: 0;
}
.align_center .btn1 {
    margin-top: 15px;
}
.btn {
	background-color: transparent;
	padding: 0;
    text-align: center;
    transition: all .5s;
}
.btn:hover {
    filter: contrast(130%);
}
.btn1 {
    display: block;
    background: #d30c0c;
    color: #ffffff;
    padding: 15px;
    position: relative;
    line-height: 1;
    font-size: 1.05rem;
    max-width: 185px;
    margin: auto;
    font-weight: 500;
}
.btn2 {
    display: block;
    background: #fac715;
    color: #333;
    padding: 15px;
    position: relative;
    line-height: 1;
    font-size: 1.05rem;
    width: 185px;
    margin: auto;
    font-weight: 500;
}
.btn3 {
    display: block;
    background: #3870a8;
    color: #fff;
    padding: 15px;
    position: relative;
    line-height: 1;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 500;
}

/* form */
.form {
    max-width: 800px;
    margin: auto;
    padding: 0 15px;
}
.form .btn {
    margin-top: 50px;
}
.form_wrap {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
/*    align-items: center;*/
}
.form_wrap > label {
    position: relative;
    white-space: nowrap;
    min-width: 12ch;
    line-height: 50px;
}
.form_wrap > label:before {
    content: '*';
/*    color: #ff0000;*/
}
.form_red {
    color: #ff0000;
}
textarea {
	width: 100%;
	resize: none;
	padding: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    box-shadow: inset 0px 0px 9px 0px rgba(0, 0, 0, 0.13);
}

/* input */
.input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0; /* must! */
    width: 100%;
    padding: 0 10px;
    border: none;
    height: 50px;
    box-shadow: none;
    margin: 0;
    color: #333333;
    box-shadow: inset 0px 0px 9px 0px rgba(0, 0, 0, 0.13);
}
.input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input:-ms-input-placeholder {
  color: #999;
}
.input::-webkit-input-placeholder {
  color: #999;
}
.input[disabled] {
    background: #D1D1D1;
    -webkit-text-fill-color: #acacac;
    color: #acacac;
    opacity: 1;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    width: 100%;
}
.input-group > * {
    display: table-cell;
    vertical-align: top;
}
.input-group input {
/*    color: #999999;*/
}
.input2 {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 50px; /* must! */
    width: 100%;
    padding: 0 10px 0 50px;
    border: none;
    height: 50px;
    box-shadow: none;
    margin: 0;
    color: #333333;
    box-shadow: 0 0 4px 4px rgba(0,0,0,.2);
    font-size: 1rem;
}

/* select */
select::-ms-expand {
    display: none;
}
.select1 {
    position: relative;
    text-align-last: center;
}
.select1 select {
    width: 100%;
    padding: 0 20px;
    border: 1px solid #cccccc;
    height: 40px;
    border-radius: 10px;
    box-shadow: none;
    margin: 0;
    font-size: 20px;
    color: #333333;
    appearance:none;
-moz-appearance:none; /* Firefox */
-webkit-appearance:none; /* Safari and Chrome */
    background: #ffffff;
}
.select1 .arrow {
    border-radius: 0 3px 3px 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    line-height: 30px;
    pointer-events: none;
}
.select1 .arrow:before {
    position: absolute;
    content: '';
    border: solid #000000;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: -1px;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
}

/* radio */
.radio_wrap {
    position: relative;
    padding: 0 25px;
    padding-bottom: 30px;
    font-size: 18px;
}
.radio_wrap input[type='radio'] {
    display: none;
}
.radio_wrap input[type='radio'] + label {
    height: 20px;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    display: inline-block;
} 
.radio_wrap input[type='radio'] + label:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 2px solid #555555;
    top: 8px;
    left: 0;
}
.radio_wrap input[type='radio']:checked + label {
    color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:before {
    border-color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background: #259bb1;
    top: 12px;
    left: 4px;
}

/* checkbox */
.checkbox_wrap {
    margin-bottom: 0.5vw;
    display: flex;
    gap: 0.5vw;
    align-items: center;
    font-size: 1.25vw;
    margin: 1.5vw 0;
}
.checkbox_wrap input[type='checkbox'] {
    display: none;
}
.checkbox_wrap input[type='checkbox'] + label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5vw;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    content: "";
    width: 2vw;
    height: 2vw;
    border-radius: 5px;
    border: 1px solid #555;
    left: 2px;
    display: inline-block;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    border-radius: 0.5vw;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #555;
}

/* elements */
.box1 {
    border: 4px solid rgba(255, 255, 255, .5);
    margin: 0 auto 2rem;
    max-width: 1140px;
    box-shadow: 0px 0px 19.68px 4.32px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-weight: 400;
}
.box1 .box_in {
    padding: 2rem 3rem;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari */
}



.bar1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#259bb1+0,01b6ad+83,01b6ad+100 */
    background: #259bb1;
    /* Old browsers */
    background: -moz-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#259bb1', endColorstr='#01b6ad', GradientType=1);
    /* IE6-9 */
    color: #ffffff;
    padding: 15px;
    position: relative;
}

/* tab */
.tab {
	margin-left: 0;
}
.tab_btn {
	display: flex;
}
.tab_btn > * {
	padding: 0 2px;
	position: relative;
	z-index: 1;
	padding: 10px;
	text-align: center;
	border: 1px solid #cccccc;
	cursor: pointer;
    flex: 1;
}	
.tab_btn > *:not(:last-of-type) {
    border-right: 0;
}
.tab_btn > *:last-of-type {
    border-right: 1px solid #cccccc;
}
.tab_con {
	border: 1px solid #cccccc;
	border-top: none;
}
.tab_con > div {
	opacity: 0;
	transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
	display: none;
	padding: 10px;
}
.tab_con > div.show {
	display: block;
}
.tab_con > div.fade {
	opacity: 1;
}

/* acc */
.acc_btn {
    padding: 10px;
    border: 1px solid #000;
    cursor: pointer;
}
.acc_con {
    display: none;
    padding: 10px;
}


/* list */
.no_list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.list1 li {
    margin-bottom: .5rem;
}

/* pagers */
.pagers {
    text-align: center;
    margin: 50px auto;
}
.pagers .num {
    margin: 0 12px;
    display: inline-block;
    box-sizing: border-box;
}
.pagers .num.cur,
.pagers .num:hover {
    text-decoration: underline;
}
.pagers .btn {
    display: inline-block;
    box-sizing: border-box;
    background-image: url(../img/arrow-02.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1;
    width: 13px;
    margin: 0 12px;
}
.pagers .prev {
    transform: scaleX(-1);
}

/* owl-carousel */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    font-size: 0px;
    background: url(../img/icon-arrow-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 29px;
    height: 29px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 15px;
}
.owl-carousel .owl-nav button.owl-next {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    /*IE*/
    filter: FlipH;
    right: 15px;
}
.owl-carousel .owl-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.owl-carousel .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    display: inline-block;
    margin: 0 8px;
    opacity: .5;
    border-radius: 100px;
    transition: all .3s;
}
.owl-carousel .owl-dots button.owl-dot.active, .owl-carousel .owl-dots button.owl-dot:hover {
	opacity: 1;
}

/* popup */
.p_layout {
    position: relative;
    background: #fff;
    padding: 3vw;
    background-image: url(../img/bg-02.jpg);
    background-size: cover;
/*    font-size: 0.9vw;*/
    min-height: 50vh;
    margin: 10vw;
    font-size: 1.25vw;
}
.mfp-container {
    padding: 0;
}
.pop_close {
    background-image: url(../img/icon-close.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    aspect-ratio: 1;
    width: 36px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
}
.pop_con {
    
}

/* scrollbar */
.scroll_con {
    font-family: "Noto Sans TC", serif;
    height: 80vh;
    padding-right: 3vw;
}
.mCSB_scrollTools {
    width: 18px;
}
.mCSB_scrollTools .mCSB_draggerRail {
	width: 100%;
	background: none;
/*	height: calc( 100% - 100px );*/
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	border-radius: 10px;
	width: 100%;
	background: #f098bc;
/*	border: 4px solid #fff;*/
}
/*
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:after {
	position: absolute;
	content: '';
	left: 0;
	top: calc( 70% - 4px );
	width: 100%;
	height: 4px;
	background: #fff;
}
*/
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background: #f098bc;
}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
	background: #f098bc;
}
.mCSB_outside + .mCSB_scrollTools {
	right: 20px;
}
.mCSB_scrollTools .mCSB_draggerContainer {
/*	top: 50px;*/
/*	bottom: 50px;*/
}
.mCSB_scrollTools .mCSB_dragger {
/*	height: calc( 100% - 100px ) !important;*/
}

/* header */
#header {
    gap: 10px;
    align-items: center;
    padding: 1.5%;
    position: relative;
    background: #fff;
    z-index: 4;
}
#header:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 20px;
    bottom: 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .2);
    left: 0;
    z-index: 2;
}
.logo {
    max-width: 20%;
    display: block;
    margin-left: 2%;
}
.menu {
    display: flex;
    align-items: center;
    margin-left: auto;
}
nav {
    font-size: 1.2rem;
	font-weight: 600;
}
nav a {
    display: inline-block;
    margin: 0 30px;
}
.nav_menu {
    position: relative;
}
.nav_menu:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 8px;
    background: #fac715;
    left: 0;
    bottom: -16px;
    opacity: 0;
    transition: all .3s;
    transform: translateY(100%);
}
.nav_menu:hover:before, .nav_menu.cur:before {
    opacity: 1;
    transform: translateY(0%);
}
.nav_wrap {
    position: relative;
}
.nav_btn {
    position: relative;
    padding-right: 24px;
}
.nav_btn:after {
    position: absolute;
    content: '';
    background-image: url(../img/arrow-01.png);
    width: 15px;
    height: 13px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
/*    transition: all .3s;*/
}
.nav_wrap.open .nav_btn:after {
    transform: translateY(-50%) rotate(-180deg);
}
.nav_btn:hover + .nav_con {
/*    display: block;*/
}
.nav_con {
    display: none;
    position: absolute;
    background: #fff;
    transform: translateX(-50%);
    left: 50%;
    width: 100%;
    text-align: center;
/*    margin-top: 26px;*/
    top: calc(100% + 40px);
    z-index: 2;
    font-size: 1rem;
}
.nav_con a {
    display: block;
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    
}
.search_box {
/*    justify-items: flex-end;*/
    max-width: 285px;
/*    margin-left: auto;*/
}
.search_box .icon {
    position: absolute;
    width: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

/* footer */
footer {
	background: #333333;
    color: #fff;
    font-size: 0.9rem;
    padding: 1.5%;
    line-height: 1.5;
}
.f_flex {
    justify-content: center;
    gap: 2.5%;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.f_flex a:hover {
    text-decoration: underline;
}

/* 首頁 */
.home .slider_wrap {
    background: #15122d;
}
.slider_wrap .owl-dots {
    bottom: 6%;
}
.index_pro {
    background-image: url(../img/bg-blue-deco-01.png), url(../img/bg-blue-deco-02.png);
    background-position: top left, bottom right;
    background-repeat: no-repeat;
    background-color: #0068b7;
}
.with_shadow {
    position: relative;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .2);
}
.pro-slider {
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.pro_box1 {
    background: #fff;
    text-align: center;
    display: block;
}
.pro_box1 figcaption {
    background: #eeeeee;
    padding: 1rem 10px;
}
.figure_box {
    overflow: hidden;
}
.pro_box1 figure img {
    transition: all .3s;
}
.pro_box1:hover img {
    transform: scale(1.1);
}
.news-slider {
    padding: 0 34px 50px;
}
.theme2 .owl-dots button.owl-dot {
    background: #666666;
}
.news_box1 {
    display: flex;
/*    max-width: 433px;*/
    aspect-ratio: 1;
    margin: auto;
    flex-direction: column;
}
.news_box1.odd {
    background: #0068b7;
    color: #fff;
}
.news_box1.even {
    background: #eeeeee;
    color: #666666;
}
.news_box1.no_img .n_con {
    -webkit-line-clamp: 9;
}
.news_txt {
    padding: 1rem;
    font-weight: 400;
    flex: 1;
    display: flex;
    flex-direction: column;
    /* margin-right: auto; */
}
.n_tit {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: .5rem;
    
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    visibility: visible;
}
.date {
    font-size: 0.9rem;
    margin-bottom: .5rem;
}
.n_con {
    line-height: 1.5;
    /* margin-bottom: 2rem; */
    min-height: 2ch;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    visibility: visible;
}
.n_con.all {
    display: block;
}
.news_box1 figure img {
    transition: all .3s;
}
.news_box1:hover figure img {
    transform: scale(1.1);
}
.btn-more {
    font-size: 0.9rem;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-top: auto;
}
.news_box1:hover .btn-more {
    transform: translateX(5px);
}
.index_solution {
    padding: 0;
    background-color: #eeeeee;
    background-image: url(../img/bg-gray-deco-01.png);
    background-position: right -45px;
    background-repeat: no-repeat;
}
.index_solution .flex {
    min-height: 540px;
}
.index_solution .bg_area {
/*    background-attachment: fixed;*/
    background-position: center;
    background-size: cover;
/*    height: 150%;*/
    min-height: 540px;
    background-image: url(../img/_img-index-01.jpg);
}
.index_solution .txt_area {
    align-self: center;
}
.index_solution .txt_in {
    max-width: 720px;
    padding: 2rem;
}
.home .btn-call {
    display: none;
}

/* 最新消息 */
.page .inner {
    padding: 0 0 50px;
    margin-top: 30px;
}
.banner_wrap {
    height: 272px;
    margin-bottom: 50px;
}
.banner_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.news_grid {
    gap: 35px;
    grid-template-columns: repeat(3, 1fr);
/*    grid-template-columns: repeat(auto-fit, minmax(433px, max-content));*/
    justify-content: center;
    margin-bottom: 100px;
    padding: 0 34px;
}
.btn-call {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #fac715;
    border-radius: 20px;
    color: #fff;
    width: 130px;
    aspect-ratio: 1;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 5%;
    z-index: 2;
    align-items: center;
    justify-content: center;
}
.btn-call .icon {
    max-width: 50%;
    margin: 0 auto;
    transition: all .3s;
}
.btn-call:hover .icon {
    transform: rotate(10deg);
}
.news_con {
    max-width: 950px;
    padding: 30px 15px 100px;
    margin: auto;
    line-height: 1.5;
}
.news_con .n_tit {
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 2ch;
}
.news_con a {
border-bottom: 1px #000 solid;
}
.n_tit.all {
    display: block;
}
/* 聯絡我們 */
.page .slider_wrap {
    background: #999999;
}
.slider_wrap .inner {
    padding: 0;
    margin: 0 auto;
}
.contact {
    background-color: #f7f8f8;
}
.contact .bg {  
    background-image: url(../img/bg-gray2-deco-01.png), url(../img/bg-gray2-deco-02.png);
    background-position: left 200px, right 578px;
    background-repeat: no-repeat;
}
.contact_wrap {
    width: fit-content;
    margin: 100px auto;
}
.contact_wrap .item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}
.contact_wrap .icon {
    width: 2.5ch;
    aspect-ratio: 1;
}
.contact_wrap .icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}
.contact_wrap a:hover {
    text-decoration: underline;
}

/* 產品應用 */
.pro {
    background: #f7f8f8;
}
.pro_flex {
    gap: 3%;
    padding: 0 15px;
}
.side_left {
    width: 250px;
}
.pro_type {
    margin: 50px 30px;
}
.pro_type a {
    display: block;
    position: relative;
    padding-left: 1rem;
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.pro_type a:hover:before, .pro_type a.cur:before {
    position: absolute;
    content: '';
    background-image: url(../img/arrow-02.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1;
    width: 13px;
    left: 0;
    top: .5rem;
}
.side_main {
    min-height: 1000px;
}
.pro_grid {
/*    grid-template-columns: repeat(auto-fit, minmax(265px, max-content));*/
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.pro_box2 {
    text-align: center;
    display: block;
}
.pro_box2 .figure_box {
    background: #fff;
    border: 1px solid #d6d6d6;
}
.pro_box2 figcaption {
    padding: 15px 10px;
}
.pro_box2 figure img {
    transition: all .3s;
}
.pro_box2:hover img {
    transform: scale(1.1);
}
.pro_btm {
    background: #f7f8f8;
    padding-top: 50px;
}
.link_wrap {
    width: fit-content;
    margin: 40px auto 80px;
    min-height: 100px;
}
.link_list {
    position: relative;
    padding-left: 70px;
    display: block;
    text-decoration: underline;
    width: fit-content;
    margin: 0 15px 50px;
    line-height: 1.5;
}
.link_list:before {
    position: absolute;
    content: '';
    background-image: url(../img/icon-pdf.png);
    background-size: contain;
    width: 45px;
    aspect-ratio: 45/54;
    left: 0;
    top: -.5rem;
    transition: all .3s;
}
.link_list:hover:before {
    transform: translateY(3px);
}
.pro_inner .pro_grid {
    grid-template-columns: repeat(3, fit-content(385px));
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 15px;
}
.pro_pic {
    max-width: 680px;
    width: 50%;
}
.pro-slider2 .owl-dots {
    bottom: 1.5rem;
}
.pro_detail {
    gap: 2%;
}
.pro_con {
    padding-top: 3.75rem;
}
.pro_top .inner {
    margin-top: 0;
    padding-left: 15px;
    padding-right: 15px;
}

/* 公司簡介 */
.about {
    background-image: url(../img/bg-about.jpg);
    background-size: cover;
    background-position: center 80px;
    background-repeat: no-repeat;
    background-color: #13356d;
}
.about main {
    min-height: 1096px;
}
.about .bread_wrap {
    color: #fff;
}
.about_logo {
    max-width: 480px;
    margin: 0 auto 2rem;
}
.indent {
    text-indent: 2rem;
}

/* 動畫 */
/**********
* Grow in2 *
***********/
@keyframes zoomOut { 
    0% { 
        transform: scale(1.1); 
        opacity:0;
    }
    100% { 
        transform: scale(1); 
        opacity:1;
    } 
} 
.zoomOut { 
    transform: scale(1.1);
    opacity:0;
}
.zoomOut.go {
    animation-name: zoomOut; 
}

/* 站內搜尋 */
.search_box.type2 {
    margin: 30px auto;
    max-width: 600px;
}
.sreach_wrap {
    max-width: 950px;
    padding: 30px 15px 100px;
    margin: auto;
}
.sreach_list {
    margin-bottom: 35px;
}
.sreach_list.odd {
    background: #0068b7;
    color: #fff;
}
.sreach_list.even {
    background: #eeeeee;
    color: #666666;
}
.search_outer {
    display: none;
}

/* 資安政策宣導 */
.info_sec {
    background-image: url(../img/bg_info_sec.jpg);
    background-size: cover;
    background-position: center 80px;
    background-repeat: no-repeat;
    background-color: #13356d;
}
.info_sec .bread_wrap {
    color: #fff;
}

/* pc & mobile */
.pc {
	display: initial;
}
.mo {
	display: none;
}

/* 125% */
@media only screen and (max-width: 1680px) {
    :root {
        font-size: 16px;
    }
    .logo {
        margin-left: 0;
    }
    .input {
        height: 40px;
    }
    .form_wrap > label {
        line-height: 40px;
    }
}

@media only screen and (max-width: 1440px) {
    .bread_wrap {
        margin: 0 0 15px;
    }
    .pro-slider {
        padding: 0 1rem 50px;
    }
    .owl-carousel .owl-dots button.owl-dot {
        margin: 0 5px;
    }
}

/* 150% */
@media only screen and (max-width: 1280px) {
    :root {
        font-size: 14px;
    }
    #header {
        padding: 15px;
    }
    .logo {
        max-width: 170px;
    }
    nav a {
        margin: 0 15px;
    }
    .input2 {
        height: 40px;
    }
    .btn-call {
        width: 100px;
        font-size: 12px;
    }
    .about main {
        min-height: 800px;
        padding: 0 15px;
    }
    .about_logo {
        max-width: 320px;
    }
    .pro_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .info_sec main {
/*        min-height: 800px;*/
        padding: 0 15px;
    }
}

@media only screen and (max-width: 1024px) {
    .news_grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .index_pro {
        background-size: 30%;
    }
    .index_solution {
        background-size: 30%;
        background-position: right top;
    }
    .contact .bg {
        background-size: 30%;
        background-position: left 200px, right bottom;
    }
    .pro_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 1000px) {
    #header:before {
        box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
    }
    .menu_wrap {
        background-image: url(../img/icon-menu2.png);
        background-size: 100% auto;
        aspect-ratio: 1;
        width: 24px;
        height: 24px;
/*        margin-left: auto;*/
        cursor: pointer;
        transition: all .3s;
    }
    .menu_wrap.show {
/*        background-image: url(../img/icon-close.png);*/
        background-position: bottom;
    }
    .menu {
        display: block;
        position: absolute;
        width: 100%;
        top: 100%;
        background: #fff;
        left: 0;
        text-align: center;
/*        transform: translateY(-200%);*/
        transition: all .5s;
        opacity: 0;
        z-index: -1;
/*        flex-direction: column;*/
        visibility: hidden;
        padding-top: 10px;
    }
    .menu.show {
/*        display: block;*/
/*        transform: translateY(0%);*/
        opacity: 1;
        z-index: 1;
        visibility: visible;
    }
    .menu .flex {
        flex-direction: column;
    }
    .search_icon {
        background-image: url(../img/icon-search-02.svg);
        aspect-ratio: 1;
        width: 24px;
        margin-left: auto;
        cursor: pointer;
    }
    .search_outer {
        display: block;
        position: absolute;
        width: 100%;
        background: #fff;
        left: 0;
        top: 62px;
        z-index: -1;
        visibility: hidden;
        opacity: 0;
        transition: all .5s;
    }
    .search_outer.show {
        opacity: 1;
        z-index: 1;
        visibility: visible;
    }
    .search_outer .input2 {
        padding-left: 15px;
    }
    nav + .search_box {
        display: none;
    }
    .search_box {
        margin: 20px;
        max-width: none;
    }
    .search_box.type2 {
        margin: 20px;
        max-width: none;
    }
    .nav_menu {
        padding: 10px;
        margin: 0;
        display: block;
        border-bottom: 1px solid #ccc;
    }
    .nav_menu:before {
        display: none;
    }
    .nav_con {
        position: static;
        transform: none;
        background: #eee;
    }
    .nav_btn:after {
        right: 10px;
    }
    .mask.show {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        background: rgba(0,0,0,.8);
    }
}

@media only screen and (max-width: 769px) {
    .banner_wrap {
        margin-bottom: 0;
    }
    .page .inner {
        margin-top: 15px;
    }
    footer {
        padding: 2rem;
    }
    .index_solution .flex {
        flex-direction: column-reverse;
        min-height: auto;
    }
    .index_solution .bg_area {
        min-height: 250px;
    }
    .news_grid {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 50px;
    }
    .btn-call {
        display: none;
    }
    .slider_wrap .inner {
        padding: 0;
        margin-top: 0;
    }
    .contact_wrap {
        margin: 50px auto;
    }
    .contact_wrap .item {
        margin: 20px 0;
    }
    .form_wrap {
        flex-direction: column;
        gap: 5px;
    }
    .form_wrap > label {
        line-height: 1.5;
    }
    .form .btn {
        margin-top: 25px;
    }
    .index_pro {
        background-size: 50%;
    }
    .index_solution {
        background-size: 50%;
    }
    .contact .bg {
        background-size: 50%;
        background-position: left 50px, right bottom;
    }
    .side_left {
        width: auto;
    }
    .pro_type a:hover:before, .pro_type a.cur:before {
        width: 10px;
        top: 5px;
    }
    .pro_flex {
        flex-direction: column;
        gap: 1rem;
    }
    .pro_type {
        margin: 25px 15px;
    }
    .pro_type {
        display: none;
    }
    .pro_detail {
        flex-direction: column;
    }
    .pro_pic {
        width: 100%;
        margin: auto;
    }
    .link_list {
        padding-left: 45px;
    }
    .link_list:before {
        width: 30px;
        top: 0;
    }
    .sreach_wrap {
        padding: 15px 15px 50px;
    }
    
    .pc {
    	display: none;
    }
    .mo {
    	display: initial;
    }
}

@media only screen and (max-width: 480px) {
    .pro_inner .pro_grid {
        grid-template-columns: repeat(1, fit-content(250px));
    }
    .box1 .box_in {
        padding: 1rem;
    }
    .pro_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* renew 手機板文字大小 */
@media only screen and (max-width: 480px) {
    .date, .btn-more, footer { /* 原本0.9rem */
        font-size: 1rem;
    }
    p, .p, .n_con, .bread_wrap, .pro_box1 figcaption, .news_con, .contact_wrap, .form_wrap, .link_wrap, .pro_box2 figcaption, .pagers, .input, .input2 { /* 原本1rem */
        font-size: 1.2rem;
    }
    .btn1, .btn2 { /* 原本1.05rem */
        font-size: 1.3rem;
    }
    .n_tit { /* 原本1.2rem */
        font-size: 1.4rem;
    }
}