@charset "utf-8";
/*  global  */
body {
    font-family: 'Noto Sans TC', sans-serif;
    overflow-x: hidden;
}
.wrap {
    width: 100%;
}
.container {
    max-width: 1200px;
    margin: auto;
}

:root {
    --cyanblue: #00aca8;
}

.bg-eeeeee {
    background-color: #eeeeee;
}
.bg-e5e5e5 {
    background-color: #e5e5e5;
}
.bg-2b8a91 {
    background-color: #2b8a91;
}
.bg-1e798b {
    background-color: #1e798b;
}
.bg-3a3a3a {
    background-color: #3a3a3a;
}
.bg-006672 {
    background-color: #006672;
}
.bg-c7e0e4 {
    background-color: #c7e0e4;
}

.text-white,
.text-white a,
a.text-white {
    color: #fff;
}
.text-003d3e,
.text-003d3e a,
a.text-003d3e {
    color: #003d3e;
}
.text-2b8a91,
.text-2b8a91 a,
a.text-2b8a91 {
    color: #2b8a91;
}
.text-383838,
.text-383838 a,
a.text-383838 {
    color: #383838;
}

/*  onscrolling  */
.headerbox.headroom--pinned {
    transition: all 0.33333s ease-in-out;
    background-color: #303030;
}
.headerbox.headroom--top {
    background-color: transparent;
}
/*  header  */
.headerbox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    transition: all 0.33333s ease-in-out;
    background-color: transparent;
    /* background-color: rgba(0, 0, 0, 0.8); */
}
.logo {
    float: left;
    width: 212px;
    padding-top: 20px;
    margin-left: 46px;
}
.menu {
    float: right;
}

.menulist {
    display: flex;
}

.menulist > li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    height: 5rem;
    position: relative;
}
.menulist > li > a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* .menulist > li > a > p {
    transform: translate3d(0%, 170%, 0);
} */
.menulist > li:hover:after,
.menulist > li.active:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #003d3e;
    z-index: -1;
    /* transform: translate3d(0%, 0%, 0) skewX(20deg); */
}
.menu2 {
    display: none;
    position: absolute;
    left: 0px;
    top: 80px;
    background-color: rgba(232, 228, 203, 0.9);
}
.menu2list li {
    position: relative;
}

.menu2list li:last-child:before {
    display: none;
}
.menu2list a {
    text-align: center;
    width: 10rem;
    padding: 15px 0;
    display: inline-block;
    color: #003d3e;
}
.menu2list a:hover,
.menu2list a.active {
    background-color: #eeb13e;
}

.menulist li:hover .menu2,
.menulist li.active .menu2 {
    display: block;
}

/*  rwd menu  */
.rwdmenubtn {
    display: none;
}
.navbar-toggle {
    border: 0;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: calc((100% - 25px) / 2);
    outline: none;
}
.navbar-toggle .icon-bar {
    background-color: var(--cyanblue);
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    transition: all 500ms ease-in-out;
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}

.rwdmenu-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.rwdmenu li a {
    /*background-color:var(--blue);*/
    color: #fff;
    display: block;
    font-weight: bolder;
    padding: 15px;
}

.rwdmenu2list {
    background-color: rgba(232, 228, 203, 0.9);
}
.rwdmenu2list li a {
    color: #003d3e;
}
.rwdmenu2list li a.active {
    background-color: #eeb13e;
}
.rwddropmenumenu .li a {
    font-weight: normal;
    display: block;
    padding: 10px;
    padding-left: 26px;
    background-color: var(--white);
    color: var(--dark);
}
.rwddropmenumenu .li {
    border-bottom: 1px solid var(--gray);
}
.rwddropmenumenu .li:last-child {
    border-bottom: 0;
}

.rwdmenu li a.rwddropmenubtn {
    padding-right: 25px;
}
.rwddropmenubtn {
    position: relative;
}
.rwddropmenubtn.collapsed:before {
    content: '';
    position: absolute;
    right: 15px;
    top: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 10px 5px 0;
    border-color: transparent #ffffff transparent transparent;
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}
.rwddropmenubtn:not(.collapsed):before {
    content: '';
    position: absolute;
    right: 15px;
    top: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 10px 5px 0;
    border-color: transparent #ffffff transparent transparent;
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}

.rwdmenubox {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    z-index: 999;
    opacity: 0;
    background-color: #006672;
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}
.rwdmenubox.active {
    opacity: 1;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}
.mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9;
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}
.mask.active {
    display: block;
}

/*	footer	*/
footer {
    position: relative;
    z-index: 1;
}
.footerbox {
    background: url('/assets/img/index/index_bg_03.png') no-repeat center;
    background-size: cover;
    padding: 30px 15px;
}
.footerbox .address {
    letter-spacing: 0.2em;
}

.footerright {
    padding-left: 100px;
}
.footerlink .sub {
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
}
.footerlink .item {
    margin: 0 30px;
}
.footerlink .item:last-child {
    margin-right: 0;
}

.sidecontact {
    position: fixed;
    right: 5px;
    top: 350px;
    z-index: 1;
    /* width: 1.5rem; */
}

/* .gotop {
    position: fixed;
    right: 0;
    bottom: 177px;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}
.gotop.active {
    opacity: 1;
} */

/*  index  */
.imgbar {
    background-color: #000;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.pnlm-load-box {
    /* visibility: hidden; */
}
.info {
    background-image: none;
    width: 1.4vw;
    height: 1.4vw;
}
.info:hover {
    background-color: transparent;
}
.goto {
    background-image: none;
    width: 2vw;
    height: 2.5vw;
}
.goto:hover {
    background-color: transparent;
}

.gohome {
    position: fixed;
    top: 20px;
    left: 15px;
    z-index: 3;
}

/* content */
.cookiebox {
    padding: 15px 0;
}
.cookie {
    text-align: right;
}
.cookie li {
    display: inline-block;
    line-height: 22px;
}
.cookie a,
.cookie {
    color: var(--gray);
    font-size: 10pt;
    word-break: break-all;
}
.cookie li:after {
    content: '>';
    padding: 0 3px;
    display: inline-block;
}
.cookie li:last-child:after {
    content: '';
}
.cookie li.active a,
.cookie li:hover a {
    color: var(--gray);
}

.pager {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    font-size: 10pt;
}
.pager li a {
    display: block;
    margin: 8px;
    color: var(--dark);
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 25px;
}

/* hack  */
.headroom {
    will-change: transform;
    transition: transform 200ms linear;
}
.headroom--pinned {
    transform: translateY(0%);
}
.headroom--unpinned {
    transform: translateY(-100%);
}
.articlebox iframe {
    max-width: 100%;
}
.articlebox img {
    max-width: 100%;
}
.articlebox ul {
    list-style: square;
}

.mCSB_inside > .mCSB_container {
    margin-right: 0;
}

.modal-backdrop {
    background-color: rgba(255, 255, 255, 0.6);
}
.modal-backdrop.fade.in {
    opacity: 1;
}

.custom-control-label::before {
    background-color: var(--gray);
    border: 1px solid var(--gary);
}
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--blue);
    border: 1px solid var(--blue);
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: none;
}

.modal-body {
    overflow: auto;
}

.fancybox-container {
    z-index: 999;
}

/* ANIMATED X */
.navbar-toggle .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 10% 10%;
    -ms-transform-origin: 10% 10%;
    transform-origin: 10% 10%;
}

.navbar-toggle .icon-bar:nth-of-type(2) {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggle .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 10% 90%;
    -ms-transform-origin: 10% 90%;
    transform-origin: 14% -10%;
}

/* ANIMATED X COLLAPSED */
.navbar-toggle.closed .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.navbar-toggle.closed .icon-bar:nth-of-type(2) {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggle.closed .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
/* END ANIMATED X */

@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 425px) {
}

@media screen and (max-width: 414px) {
}

@media screen and (max-width: 375px) {
}

@media screen and (max-width: 320px) {
}
