﻿@charset "utf-8";

a,
a:hover {
    text-decoration: inherit;
    color: inherit;
}

:root {
    --common-padding: 8.3%;
    --common-time-fuc: cubic-bezier(0.19, 1, 0.22, 1);
    --main-color: #deb86f;
}

img {
    max-width: 100%;
}

body,
html {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    background-color: #fff;
    color: #747474;
    font-family: 'Microsoft JhengHei'
}

.transitioncover.active .loadr {
    opacity: 0;
    visibility: hidden;
}

.loadr {
    position: absolute;
    top: 50vh;
    left: 50%;
    height: 130px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 156px;
}

.m-d {
    width: 4vw;
    height: 6vw;
    max-width: 20px;
    max-height: 30px;
    border: 2px solid #fff;
    border-radius: 30px;
    margin: 6px auto;
}

.m-e {
    width: 100%;
    height: 10px;
    position: relative;
}

.m-e::after {
    content: '';
    position: absolute;
    left: calc(50% + 2px);
    top: 50%;
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
    width: 3px;
    height: 6px;
    background-color: white;
}

.m-e::before {
    content: '';
    position: absolute;
    right: calc(50% - 2px);
    top: 50%;
    transform: translateY(-50%) translateX(-50%) rotate(-45deg);
    width: 3px;
    height: 6px;
    background-color: white;
}

.m-d::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 6px;
    left: 50%;
    margin-left: -1px;
    top: 12px;
    background-color: #fff;
    animation: md 1s infinite alternate;
    transform-origin: center top;
}

@keyframes md {
    0% {
        transform: translateY(0) translate3d(0, 0, 0) scaleY(.5);
    }

    100% {
        transform: translateY(1px) translate3d(0, 0, 0) scaleY(1);
    }
}

.loadr .cccc {
    position: absolute;
    left: 50%;
    top: 0;
    right: 0;
    -webkit-animation: sdd 1s infinite;
    animation: sdd 1s infinite;
    -webkit-transform: rotate(0deg) translateX(-50%);
    -ms-transform: rotate(0deg) translateX(-50%);
    transform: rotate(0deg) translateX(-50%);
    -webkit-transform-origin: 0 center;
    -ms-transform-origin: 0 center;
    transform-origin: 0 center;
}

.loadr .loadingbar {
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
    height: 78px;
}


@-webkit-keyframes sdd {
    0% {
        -webkit-transform: rotate(0deg) translateX(-50%);
        transform: rotate(0deg) translateX(-50%);
    }

    100% {
        -webkit-transform: rotate(360deg) translateX(-50%);
        transform: rotate(360deg) translateX(-50%);
    }
}

@keyframes sdd {
    0% {
        -webkit-transform: rotate(0deg) translateX(-50%);
        transform: rotate(0deg) translateX(-50%);
    }

    100% {
        -webkit-transform: rotate(360deg) translateX(-50%);
        transform: rotate(360deg) translateX(-50%);
    }
}

@-webkit-keyframes rr {
    0% {
        -webkit-transform: rotateY(-10deg);
        transform: rotateY(-10deg);
    }

    100% {
        -webkit-transform: rotateY(40deg);
        transform: rotateY(40deg);
    }
}

@keyframes rr {
    0% {
        -webkit-transform: rotateY(-10deg);
        transform: rotateY(-10deg);
    }

    100% {
        -webkit-transform: rotateY(40deg);
        transform: rotateY(40deg);
    }
}

textarea {
    resize: none;
}


#main {
    width: 100%;
    height: auto;
    min-height: calc(100vh - 208px);
    overflow-x: hidden;
}

.mobile,
.w768 {
    display: none;
}

.transition,
.parallax {
    will-change: transform, opacity;
    -webkit-transition: opacity 1.5s,
        -webkit-transform 1.5s;
    transition: opacity 1.5s,
        -webkit-transform 1.5s;
    -o-transition: transform 1.5s,
        opacity 1.5s;
    transition: transform 1.5s,
        opacity 1.5s;
    transition: transform 1.5s,
        opacity 1.5s,
        -webkit-transform 1.5s;
    transition-timing-function: var(--common-time-fuc);
    -webkit-transition-timing-function: var(--common-time-fuc);
}

@font-face {
    font-family: 'iconfont';
    /* project id 632727 */
    src: url('//at.alicdn.com/t/font_632727_4ilb759od1a.eot');
    src: url('//at.alicdn.com/t/font_632727_4ilb759od1a.eot?#iefix') format('embedded-opentype'),
        url('//at.alicdn.com/t/font_632727_4ilb759od1a.woff2') format('woff2'),
        url('//at.alicdn.com/t/font_632727_4ilb759od1a.woff') format('woff'),
        url('//at.alicdn.com/t/font_632727_4ilb759od1a.ttf') format('truetype'),
        url('//at.alicdn.com/t/font_632727_4ilb759od1a.svg#iconfont') format('svg');
}

.wow {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: var(--common-time-fuc);
    animation-timing-function: var(--common-time-fuc);
}

.iconfont {
    font-family: "iconfont";
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


.backTop {
    position: absolute;
    width: 55px;
    height: 55px;
    background-color: #fff;
    right: 50px;
    bottom: 80px;
    text-align: center;
    line-height: 55px;
    font-size: 28px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(55, 55, 55, .3);
    font-weight: 700;
    transition: all .25s var(--common-time-fuc);
    transform: translateY(5vh) translate3d(0, 0, 0);
    opacity: 0;
    pointer-events: none;
}

.backTop.active {
    transform: translateY(0) translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: all;
}

.backTop:hover {
    color: #fff;
    background-color: #222;
}

.transitioncover {
    width: 102%;
    height: 102%;
    position: absolute;
    z-index: 12;
    left: -1%;
    top: -1%;
    overflow: hidden;
    background-color: #eaeaea;
    -webkit-transition: width 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: width 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: width 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide .transitioncover.ss {
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
}


.transitioncover.right {
    left: auto;
    right: 0;
}

.transitioncover.active {
    width: 0;
}

.iScrollVerticalScrollbar {
    width: 19px;
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    z-index: 9;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.index .iScrollVerticalScrollbar {
    opacity: 0;
}

.index .iScrollVerticalScrollbar.active {
    opacity: 1;
}

.iScrollIndicator {
    background-color: #f30002;
    position: absolute;
    width: 1px;
    -webkit-transition: -webkit-transform 1.5s var(--common-time-fuc) !important;
    transition: -webkit-transform 1.5s var(--common-time-fuc) !important;
    -o-transition: transform 1.5s var(--common-time-fuc) !important;
    transition: transform 1.5s var(--common-time-fuc) !important;
    transition: transform 1.5s var(--common-time-fuc), -webkit-transform 1.5s var(--common-time-fuc) !important;
    transition: transform 1.5s var(--common-time-fuc),
        -webkit-transform 1.5s var(--common-time-fuc) !important;
    transition: transform 1.5s var(--common-time-fuc),
        -webkit-transform 1.5s var(--common-time-fuc) !important;
    top: 0;
    right: 2px;
    opacity: 0.7;
    cursor: pointer;
}

.top {
    position: relative;
    overflow: hidden;
}

.top .img-box {
    overflow: hidden;
    position: relative;
}

.tex-cover {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.img-parallax {
    overflow: hidden;
    position: relative;
    background-color: #eaeaea;
}

.img-parallax video {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: .85;
}

.parallax {
    position: relative;
}

.mark {
    /* width: 100%;
    height: 100%; */
    background-color: rgba(0, 0, 0, .6);
}

.plp-image {
    background-color: #ffffff;
}


.mybeian {
    position: fixed;
    bottom: 20px;
    color: #f3f3f3;
    display: block;
    z-index: 9;
    left: 20px;
}