﻿@font-face {
    font-family: 'PingFang Medium';
    src: url('../fonts/PingFang Medium.ttf') format('truetype');
}
:root {
    --main-font-size: 1.75rem;
    --small-font-size: 1.15rem;
    --main-color: #be9562;
    --blue-color:#05034b;
}
pre {
    font-family: 'PingFang Medium';
    line-height: 175%;
}

body{font-family: 'PingFang Medium';}
.navBar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index:101
}
.navBar-top {
    background: #05034b;
    text-align: center;
    position: relative;
    height: 5.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #be9562;
    z-index:10
}
.main-logo{width:12rem}
.outer-link {
    position: absolute;
    right: 2rem;
    top: 2rem;
}
.outer-link a{color:var(--main-color);border-right:1px solid #8a6e4b;padding:0 1rem;font-size:12px}
.outer-link a:last-child{border-right:none}
.navBar-menu{
    transition:transform .3s linear
}
.navBar-menu-hide{transform:translateY(-101%)}
.menu-depth-1{display:flex;justify-content:center;position:relative;background:#fff;line-height:3rem;height:3rem}
.menu-depth-2 {
    display: flex;
    background: rgba(255,255,255,0.95);
    overflow: hidden;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid #f7f7f7;
}
.menu-1-item{font-size:1rem;padding:0 3rem;}
.menu-1-item:hover .menu-depth-2{height:auto}
.menu-1-item:hover>a{color:var(--main-color)}
.menu-2-item{margin:0 3rem;padding:.5rem 0;position:relative}
.menu-2-item img{width:13rem}
.menu-2-item .menu-link-title {
    font-size:1.25rem;
    font-weight: bold;
    line-height: 1.5;
    margin-top:.75rem
}
.menu-2-item::after{
    content:"";
    position:absolute;
    bottom:0;
    height:2px;
    width:0%;
    background:var(--main-color);
    border-radius:1px;
    transition:width .6s;
    left:0;
}
.menu-2-item:hover::after{width:100%;}
.menu-2-item .menu-link-desc{font-size:.9rem}
.menu-item-box {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
}
.footer-wrap {
    padding-top: 7rem;
    text-align: center;
    background: #fff;
}
.foot-logo{width:13rem}
.foot-link-box {
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    padding: 1.5rem 0;
    font-size: 1.35rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    margin: 4rem 17%;
}
.foot-link{font-weight:bold}
.foot-link:hover{color:var(--main-color)}
.copyright {
    display: flex;
    justify-content: center;
    background: #f5f7fa;
    padding: 1.5rem 0;
}
.copyright p{font-size:.8rem;opacity:0.6;text-transform:uppercase}
.copyright p:first-child{margin-right:12rem}
.foot-box{display:flex;background: #f5f7fa;padding: 6rem 0;text-align:left;justify-content:center}
.footer-wrap .foot-item {
    padding-right: 3rem;
    border-right: 1px solid #000;
    margin-right: 3rem;
}
.foot-item-title {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: var(--small-font-size);
}
.foot-item-depth li{
    font-size:.95rem;
    margin-top:.5rem
}
.foot-item-depth li:hover a{text-decoration:underline;}
.foot-contact p{font-size:var(--small-font-size);}
.foot-outer-link{display:flex;justify-content:space-between}
.foot-follow img{height:1.5rem;margin-right:1rem}
.foot-online img{height:1rem;margin-right:1rem}
.foot-outer-link a{opacity:.5}
.foot-outer-link a:hover{opacity:1}
.foot-contact{margin-bottom:1rem}
.foot-contact select {
    background: #f7f7f7;
    width: 10rem;
    padding-left: .5rem;
    height: 2rem;
    margin-right: 1rem;
}
.foot-phone{display:flex;}
.foot-phone strong {font-size:1.75rem;margin-right:2rem}
.o-splashscreen.hide {
    pointer-events: none;
}

.o-splashscreen {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9000;
}
.hide .o-splashscreen_bg {
    transform: scaleX(0);
}

.o-splashscreen_bg {
    background-color: var(--blue-color);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    transform: scaleX(1);
    transform-origin: 100% 0;
    transition: .8s cubic-bezier(.14,1,.34,1) .2s;
    width: 100%;
    z-index: 1;
}
.hide .o-splashscreen_bg:after {
    transform: scaleX(1);
}
:after, :before {
    box-sizing: border-box;
}
.o-splashscreen_inner {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%;
    z-index: 2;
}
.hide .o-splashscreen_logo {
    opacity: 0;
    transform: translateX(60px);
}

.o-splashscreen_logo {
    transition: .8s cubic-bezier(.14,1,.34,1) 0s,opacity .3s cubic-bezier(.215,.61,.355,1) 0s;
}
.load-logo {
    width: 15rem;
    animation: breathe 3s linear infinite;
}
@keyframes breathe{
    0%{
        opacity:1
    }
    50% {
        opacity: .7
    }
    100%{
        opacity:1
    }
}
.o-page-overlay {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5060;
}
.init.shrink .o-page-overlay_bg {
    animation-duration: .7s;
}

.shrink .o-page-overlay_bg {
    animation-delay: 0s;
    animation-direction: normal;
    animation-duration: 0s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-name: page-overlay-out;
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
}
.o-page-overlay_bg {
    background-color: var(--blue-color);
}
.shrink .o-page-overlay_bg:before {
    transform: scale(0);
}

.o-page-overlay_bg:before {
    background-color: #020038;
    content: "";
    transform-origin: 100% 0;
}

.o-page-overlay_bg, .o-page-overlay_bg:before {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.init.shrink .o-page-overlay_inner {
    animation-duration: .4s;
}

.shrink .o-page-overlay_inner {
    animation-delay: 0s;
    animation-direction: normal;
    animation-duration: 0s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-name: menuShrink;
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
}

.o-page-overlay_inner {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-direction:column
}
.expand .o-page-overlay_bg {
    animation-delay: 0s;
    animation-direction: normal;
    animation-duration: .7s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-name: page-overlay-in;
    animation-timing-function: cubic-bezier(.04,.93,.02,.98);
}
.expand .o-page-overlay_inner {
    animation-delay: .1s;
    animation-direction: normal;
    animation-duration: .7s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-name: menuExpand;
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
}
.expand .o-page-overlay_bg:before {
    animation-delay: 0s;
    animation-direction: normal;
    animation-duration: .94s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-name: page-overlay-moment-in;
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
}
@keyframes menuShrink {
    0% {
        opacity: 1;
        transform: translateX(0);
        transform-origin: bottom;
    }

    100% {
        opacity: 0;
        transform: translateX(60px);
        transform-origin: bottom;
    }
}
@keyframes page-overlay-out {
    0% {
        transform: translate(0);
        transform-origin: 100% 0;
    }

    100% {
        transform: translate(100%);
        transform-origin: 100% 0;
    }
}
@keyframes menuExpand {
    0% {
        opacity: 0;
        transform: translateX(-60px);
        transform-origin: bottom;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        transform-origin: bottom;
    }
}
@keyframes page-overlay-moment-in {
    0% {
        transform: scaleX(1);
        transform-origin: 100% 0
    }

    to {
        transform: scaleX(0);
        transform-origin: 100% 0
    }
}
@keyframes page-overlay-in {
    0% {
        transform: translate(-100%);
    }

    100% {
        transform: translate(0);
    }
}
.load-percentage {
    color: var(--main-color);
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}
.follow{margin-bottom:3rem}
.follow p{color:#be9562;font-size:var(--small-font-size)}
.follow_i a {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 0 1rem;
    background-image: url('../Images/Common/icon.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-top:1rem;
    cursor:pointer;
    position:relative
}
.follow_i a .footer-code{
    position: absolute;
    width: 100px;
    bottom: 125%;
    left: 50%;
    margin-left: -50px;
    display:none
}
.follow_i a:first-child {
    background-position: 0;
}
.follow_i a:nth-child(2) {
    background-position: -83px;
}
.follow_i a:nth-child(3) {
    background-position: -167px;
}
.follow_i a:nth-child(4) {
    background-position: -250px;
}
.follow_i a:last-child {
    background-position: -334px;
}
.follow_i a:hover {
    background-image: url('../Images/Common/icon-c.png');
}
.follow a:hover .footer-code{display:block}
.swiper-nav{width:80%}
.swiper-nav .swiper-slide{width:auto}
.product-nav-img{
    width:13rem;
    height:8.4rem;
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
    margin-bottom:2rem
}