@charset "UTF-8"; /*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2021 Animate.css
 */
:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}
.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animate__animated.animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: var(--animate-repeat);
    animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
    animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
    animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation-delay: calc(var(--animate-delay) * 4);
    animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 5);
    animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-duration: calc(var(--animate-duration) / 2);
    animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
    animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-duration: calc(var(--animate-duration) * 3);
    animation-duration: calc(var(--animate-duration) * 3);
}
@media (prefers-reduced-motion: reduce), print {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
    .animate__animated[class*="Out"] {
        opacity: 0;
    }
}
@-webkit-keyframes bounce {
    0%,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}
@keyframes bounce {
    0%,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}
.animate__bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    transform-origin: center bottom;
}
@-webkit-keyframes flash {
    0%,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
@keyframes flash {
    0%,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
.animate__flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}
@-webkit-keyframes pulse {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        transform: scaleX(1);
    }
}
@keyframes pulse {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        transform: scaleX(1);
    }
}
.animate__pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
    0% {
        transform: scaleX(1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        transform: scaleX(1);
    }
}
@keyframes rubberBand {
    0% {
        transform: scaleX(1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        transform: scaleX(1);
    }
}
.animate__rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
    0%,
    to {
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0);
    }
}
@keyframes shakeX {
    0%,
    to {
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0);
    }
}
.animate__shakeX {
    -webkit-animation-name: shakeX;
    animation-name: shakeX;
}
@-webkit-keyframes shakeY {
    0%,
    to {
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(0, -10px, 0);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(0, 10px, 0);
    }
}
@keyframes shakeY {
    0%,
    to {
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(0, -10px, 0);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(0, 10px, 0);
    }
}
.animate__shakeY {
    -webkit-animation-name: shakeY;
    animation-name: shakeY;
}
@-webkit-keyframes headShake {
    0% {
        transform: translateX(0);
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        transform: translateX(0);
    }
}
@keyframes headShake {
    0% {
        transform: translateX(0);
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        transform: translateX(0);
    }
}
.animate__headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake;
}
@-webkit-keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    to {
        transform: rotate(0deg);
    }
}
@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    to {
        transform: rotate(0deg);
    }
}
.animate__swing {
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}
@-webkit-keyframes tada {
    0% {
        transform: scaleX(1);
    }
    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }
    to {
        transform: scaleX(1);
    }
}
@keyframes tada {
    0% {
        transform: scaleX(1);
    }
    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }
    to {
        transform: scaleX(1);
    }
}
.animate__tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}
@-webkit-keyframes wobble {
    0% {
        transform: translateZ(0);
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg);
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg);
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes wobble {
    0% {
        transform: translateZ(0);
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg);
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg);
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}
@-webkit-keyframes jello {
    0%,
    11.1%,
    to {
        transform: translateZ(0);
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
@keyframes jello {
    0%,
    11.1%,
    to {
        transform: translateZ(0);
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
.animate__jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    transform-origin: center;
}
@-webkit-keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}
@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}
.animate__heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
    animation-duration: calc(var(--animate-duration) * 1.3);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
@-webkit-keyframes backInDown {
    0% {
        transform: translateY(-1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes backInDown {
    0% {
        transform: translateY(-1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInDown {
    -webkit-animation-name: backInDown;
    animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
    0% {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes backInLeft {
    0% {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInLeft {
    -webkit-animation-name: backInLeft;
    animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
    0% {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes backInRight {
    0% {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInRight {
    -webkit-animation-name: backInRight;
    animation-name: backInRight;
}
@-webkit-keyframes backInUp {
    0% {
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes backInUp {
    0% {
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp;
}
@-webkit-keyframes backOutDown {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateY(700px) scale(0.7);
        opacity: 0.7;
    }
}
@keyframes backOutDown {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateY(700px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutDown {
    -webkit-animation-name: backOutDown;
    animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }
}
@keyframes backOutLeft {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutLeft {
    -webkit-animation-name: backOutLeft;
    animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }
}
@keyframes backOutRight {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutRight {
    -webkit-animation-name: backOutRight;
    animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateY(-700px) scale(0.7);
        opacity: 0.7;
    }
}
@keyframes backOutUp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateY(-700px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutUp {
    -webkit-animation-name: backOutUp;
    animation-name: backOutUp;
}
@-webkit-keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
.animate__bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0) scaleY(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0) scaleY(0.9);
    }
    75% {
        transform: translate3d(0, -10px, 0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, 5px, 0) scaleY(0.985);
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0) scaleY(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0) scaleY(0.9);
    }
    75% {
        transform: translate3d(0, -10px, 0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, 5px, 0) scaleY(0.985);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0) scaleX(1);
    }
    75% {
        transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }
    90% {
        transform: translate3d(5px, 0, 0) scaleX(0.995);
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0) scaleX(1);
    }
    75% {
        transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }
    90% {
        transform: translate3d(5px, 0, 0) scaleX(0.995);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0) scaleX(1);
    }
    75% {
        transform: translate3d(10px, 0, 0) scaleX(0.98);
    }
    90% {
        transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0) scaleX(1);
    }
    75% {
        transform: translate3d(10px, 0, 0) scaleX(0.98);
    }
    90% {
        transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0) scaleY(5);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    75% {
        transform: translate3d(0, 10px, 0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, -5px, 0) scaleY(0.985);
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0) scaleY(5);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    75% {
        transform: translate3d(0, 10px, 0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, -5px, 0) scaleY(0.985);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
    20% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
@keyframes bounceOut {
    20% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
.animate__bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0) scaleY(0.985);
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0) scaleY(3);
    }
}
@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0) scaleY(0.985);
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0) scaleY(3);
    }
}
.animate__bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0) scaleX(2);
    }
}
@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0) scaleX(2);
    }
}
.animate__bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0) scaleX(2);
    }
}
@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0) scaleX(2);
    }
}
.animate__bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0) scaleY(0.985);
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0) scaleY(3);
    }
}
@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0) scaleY(0.985);
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0) scaleY(3);
    }
}
.animate__bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInTopLeft {
    -webkit-animation-name: fadeInTopLeft;
    animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInTopRight {
    -webkit-animation-name: fadeInTopRight;
    animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInBottomLeft {
    -webkit-animation-name: fadeInBottomLeft;
    animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInBottomRight {
    -webkit-animation-name: fadeInBottomRight;
    animation-name: fadeInBottomRight;
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.animate__fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}
.animate__fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}
.animate__fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}
.animate__fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}
.animate__fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}
.animate__fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}
.animate__fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}
.animate__fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}
.animate__fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0);
    }
}
@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0);
    }
}
.animate__fadeOutTopLeft {
    -webkit-animation-name: fadeOutTopLeft;
    animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
    }
}
@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
    }
}
.animate__fadeOutTopRight {
    -webkit-animation-name: fadeOutTopRight;
    animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 100%, 0);
    }
}
@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 100%, 0);
    }
}
.animate__fadeOutBottomRight {
    -webkit-animation-name: fadeOutBottomRight;
    animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0);
    }
}
@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0);
    }
}
.animate__fadeOutBottomLeft {
    -webkit-animation-name: fadeOutBottomLeft;
    animation-name: fadeOutBottomLeft;
}
@-webkit-keyframes flip {
    0% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
@keyframes flip {
    0% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
.animate__animated.animate__flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}
@-webkit-keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}
.animate__flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}
@-webkit-keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateY(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}
@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateY(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}
.animate__flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
    0% {
        transform: perspective(400px);
    }
    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}
@keyframes flipOutX {
    0% {
        transform: perspective(400px);
    }
    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}
.animate__flipOutX {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
    0% {
        transform: perspective(400px);
    }
    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@keyframes flipOutY {
    0% {
        transform: perspective(400px);
    }
    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
.animate__flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedInRight {
    0% {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        transform: skewX(-5deg);
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes lightSpeedInRight {
    0% {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        transform: skewX(-5deg);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__lightSpeedInRight {
    -webkit-animation-name: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
    0% {
        transform: translate3d(-100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
    60% {
        transform: skewX(-20deg);
        opacity: 1;
    }
    80% {
        transform: skewX(5deg);
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes lightSpeedInLeft {
    0% {
        transform: translate3d(-100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
    60% {
        transform: skewX(-20deg);
        opacity: 1;
    }
    80% {
        transform: skewX(5deg);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__lightSpeedInLeft {
    -webkit-animation-name: lightSpeedInLeft;
    animation-name: lightSpeedInLeft;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
    0% {
        opacity: 1;
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
@keyframes lightSpeedOutRight {
    0% {
        opacity: 1;
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
.animate__lightSpeedOutRight {
    -webkit-animation-name: lightSpeedOutRight;
    animation-name: lightSpeedOutRight;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: translate3d(-100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
}
@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: translate3d(-100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
}
.animate__lightSpeedOutLeft {
    -webkit-animation-name: lightSpeedOutLeft;
    animation-name: lightSpeedOutLeft;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
    0% {
        transform: rotate(-200deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
@keyframes rotateIn {
    0% {
        transform: rotate(-200deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
    transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
    0% {
        transform: rotate(-45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
@keyframes rotateInDownLeft {
    0% {
        transform: rotate(-45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
    transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
@keyframes rotateInDownRight {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
    transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
@keyframes rotateInUpLeft {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
    transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
    0% {
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
@keyframes rotateInUpRight {
    0% {
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
    transform-origin: right bottom;
}
@-webkit-keyframes rotateOut {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(200deg);
        opacity: 0;
    }
}
@keyframes rotateOut {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(200deg);
        opacity: 0;
    }
}
.animate__rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
    transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(45deg);
        opacity: 0;
    }
}
.animate__rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
    transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(-45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownRight {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(-45deg);
        opacity: 0;
    }
}
.animate__rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
    transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(-45deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(-45deg);
        opacity: 0;
    }
}
.animate__rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
    transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(90deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpRight {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(90deg);
        opacity: 0;
    }
}
.animate__rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
    transform-origin: right bottom;
}
@-webkit-keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        transform: rotate(80deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        transform: rotate(60deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
@keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        transform: rotate(80deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        transform: rotate(60deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
.animate__hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2);
    -webkit-animation-name: hinge;
    animation-name: hinge;
    transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }
    50% {
        transform: rotate(-10deg);
    }
    70% {
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }
    50% {
        transform: rotate(-10deg);
    }
    70% {
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.animate__jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox;
}
@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}
@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg);
    }
}
@keyframes rollOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg);
    }
}
.animate__rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.animate__zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
@keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
.animate__zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
    transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(-2000px, 0, 0);
    }
}
@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(-2000px, 0, 0);
    }
}
.animate__zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(2000px, 0, 0);
    }
}
@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(2000px, 0, 0);
    }
}
.animate__zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
    transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
    transform-origin: center bottom;
}
@-webkit-keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes slideOutDown {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}
.animate__slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes slideOutLeft {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
    }
}
.animate__slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes slideOutRight {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0);
    }
}
.animate__slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes slideOutUp {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0);
    }
}
.animate__slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

.wb {
  font-family: wb !important;
}

.Cafele-brand {
  font-family: "Microsoft YaHei";
  font-size: 0;
  min-width: 1024px;
}

.Cafele-brand a {
  text-decoration: none;
}

.Cafele-brand a:hover {
  text-decoration: none;
}

.Cafele-brand ul li {
  list-style: none;
}

.Cafele-brand .section {
  box-sizing: border-box;
  position: relative;
}

.Cafele-brand .section img {
  width: 100%;
  height: auto;
}

.Cafele-brand .transi-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s, transform 1.2s;
}

.Cafele-brand .transi-up {
  opacity: 1;
  transform: translateY(0);
}

.Cafele-brand img {
  width: 100%;
  height: auto;
}

.Cafele-brand .sticky {
  position: fixed !important;
  left: 0;
  top: 0;
}

.Cafele-brand .mb {
  display: none;
}

.Cafele-brand .banner-box {
  padding: 0 1.6rem;
  box-sizing: border-box;
}

.Cafele-brand .banner-box .banner {
  width: 100%;
  position: relative;
}

.Cafele-brand .banner-box .banner .prod-name {
  z-index: 2;
  position: absolute;
  bottom: 0.67rem;
  left: 1.05rem;
  font-size: 0.6rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: white;
  line-height: 0.75rem;
  width: 0.55rem;
}

.Cafele-brand .banner-box .banner .desc-box {
  z-index: 2;
  position: absolute;
  right: 1rem;
  bottom: 0.6rem;
  display: flex;
  align-items: center;
}

.Cafele-brand .banner-box .banner .desc-box p {
  font-size: 0.14rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: white;
  line-height: 0.27rem;
}

.Cafele-brand .banner-box .banner .desc-box p:hover {
  color: rgba(255, 255, 255, 0.75);
}

.Cafele-brand .banner-box .banner .desc-box a.check {
  display: flex;
  align-items: center;
}

.Cafele-brand .banner-box .banner .desc-box a.check::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgba(204, 57, 54, 0);
  border: 2px solid white;
  box-sizing: border-box;
  border-radius: 50%;
  margin-right: 0.1rem;
}

.Cafele-brand .main-contain {
  padding: 0 1.6rem;
  box-sizing: border-box;
  margin-top: 1.5rem;
  margin-bottom: 2.59rem;
}

.Cafele-brand .main-contain .section1 {
  display: flex;
  justify-content: space-between;
}

.Cafele-brand .main-contain .section1 .min-title {
  font-size: 0.17rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #222222;
  line-height: 0.34rem;
}

.Cafele-brand .main-contain .section1 .contain {
  width: 12.8rem;
}

.Cafele-brand .main-contain .section1 .contain .text-top {
  display: flex;
  justify-content: space-between;
}

.Cafele-brand .main-contain .section1 .contain .text-top .text h1.title {
  line-height: 0.82rem;
}

.Cafele-brand .main-contain .section1 .contain .text-top .text h1.title .font1 {
  vertical-align: middle;
  font-size: 0.64rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: black;
  margin-right: 0.1rem;
}

.Cafele-brand .main-contain .section1 .contain .text-top .text h1.title .font2 {
  vertical-align: middle;
  font-size: 0.82rem;
  font-family: ws-bold;
  font-weight: bold;
  color: black;
}

.Cafele-brand .main-contain .section1 .contain .text-top .text .desc {
  width: 8rem;
  margin-top: 0.75rem;
  font-size: 0.16rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #333333;
  line-height: 0.3rem;
}

.Cafele-brand .main-contain .section1 .contain .text-top .s1-pic {
  width: 3.2rem;
  height: 1.48rem;
}

.Cafele-brand .main-contain .section1 .contain .s1-pic2 {
  margin-top: 1.06rem;
  width: 100%;
  height: 5.96rem;
}

.Cafele-brand .main-contain .section2 {
  margin-top: 1.58rem;
  display: flex;
  justify-content: space-between;
}

.Cafele-brand .main-contain .section2 .min-title {
  font-size: 0.17rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #222222;
  line-height: 0.34rem;
}

.Cafele-brand .main-contain .section2 .contain {
  width: 12.8rem;
}

.Cafele-brand .main-contain .section2 .contain h1.title {
  line-height: 0.64rem;
  font-size: 0.64rem;
  font-family: SourceHanSansCN;
  color: black;
}

.Cafele-brand .main-contain .section2 .contain h1.title .font1 {
  font-weight: bold;
}

.Cafele-brand .main-contain .section2 .contain h1.title .font2 {
  font-weight: 300;
}

.Cafele-brand .main-contain .section2 .contain .schdule {
  margin-top: 0.91rem;
  line-height: 0.41rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Cafele-brand .main-contain .section2 .contain .schdule .time {
  font-size: 0.41rem;
  font-family: ws-bold;
  font-weight: bold;
  color: #d2d2d2;
  cursor: pointer;
}

.Cafele-brand .main-contain .section2 .contain .schdule .time:hover {
  color: rgba(0, 0, 0, 0.5);
}

.Cafele-brand .main-contain .section2 .contain .schdule .time.check {
  color: black;
}

.Cafele-brand .main-contain .section2 .contain .schdule img {
  width: 0.42rem;
  height: auto;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity .3s ease;
}

.Cafele-brand .main-contain .section2 .contain .schdule img:hover {
  opacity: 1;
}

.Cafele-brand .main-contain .section2 .contain .desc {
  margin-top: 1.45rem;
}

.Cafele-brand .main-contain .section2 .contain .desc .text {
  font-size: 0.18rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #333333;
  line-height: 0.37rem;
  display: inline-block;
  vertical-align: middle;
}

.Cafele-brand .main-contain .section2 .contain .desc::before {
  content: "";
  display: inline-block;
  width: 0.05rem;
  height: 0.98rem;
  background: #282829;
  margin-right: 0.75rem;
  vertical-align: middle;
  height: 1.2rem;
}

.Cafele-brand .main-contain .section2 .contain .datacard-list {
  margin-top: 0.85rem;
  display: flex;
  justify-content: space-between;
}

.Cafele-brand .main-contain .section2 .contain .datacard-list .datacard-item {
  width: 3.2rem;
  height: 4.3rem;
  background: #131313;
  padding: 0.6rem 0 0.55rem 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.Cafele-brand .main-contain .section2 .contain .datacard-list .datacard-item h1.title {
  font-size: 0.22rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: white;
  line-height: 0.3rem;
}

.Cafele-brand .main-contain .section2 .contain .datacard-list .datacard-item .num-box .num {
  font-size: 0.55rem;
  font-family: ws-md;
  font-weight: 500;
  color: white;
  line-height: 0.55rem;
}

.Cafele-brand .main-contain .section2 .contain .datacard-list .datacard-item .num-box .unit {
  font-size: 0.4rem;
  font-family: ws-sb;
  font-weight: 600;
  color: white;
  line-height: 0.3rem;
  margin-top: 0.1rem;
}

.Cafele-brand .main-contain .section2 .contain .datacard-list .datacard-item.bottom {
  margin-top: 1.1rem;
}

.Cafele-brand .main-contain .section2 .contain .datacard-list .datacard-item.center {
  margin-top: 0.55rem;
}

.Cafele-brand .main-contain .section3 {
  margin-top: 1.63rem;
}

.Cafele-brand .main-contain .section3 .text-top {
  display: flex;
  justify-content: space-between;
}

.Cafele-brand .main-contain .section3 .text-top .left-contain {
  display: flex;
}

.Cafele-brand .main-contain .section3 .text-top .left-contain .min-title {
  font-size: 0.17rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #222222;
  line-height: 0.34rem;
  margin-right: 2.33rem;
}

.Cafele-brand .main-contain .section3 .text-top .left-contain .main-text h1.title {
  font-size: 0.64rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: black;
  line-height: 0.94rem;
}

.Cafele-brand .main-contain .section3 .text-top .left-contain .main-text .text {
  margin-top: 0.69rem;
}

.Cafele-brand .main-contain .section3 .text-top .left-contain .main-text .text div {
  font-size: 0.16rem;
  font-family: SourceHanSansCN;
  color: black;
  line-height: 0.3rem;
}

.Cafele-brand .main-contain .section3 .text-top .left-contain .main-text .text div.bold {
  font-weight: 600;
  margin-bottom: 0.28rem;
}

.Cafele-brand .main-contain .section3 .text-top .left-contain .main-text .btn {
  display: block;
  padding: 0.2rem 0;
  width: 1.6rem;
  text-align: center;
  font-size: 0.14rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: white;
  line-height: 0.14rem;
  box-sizing: border-box;
  margin-top: 1.26rem;
  background-color: #000000;
}

.Cafele-brand .main-contain .section3 .text-top .left-contain .main-text .btn:hover {
  opacity: .75;
}

.Cafele-brand .main-contain .section3 .text-top .right-contain {
  width: 3.2rem;
  border-top: 1px solid #bfbfbf;
}

.Cafele-brand .main-contain .section3 .text-top .right-contain .item {
  font-size: 0.14rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: #999999;
  line-height: 0.14rem;
  padding: 0.31rem 0.11rem;
  border-bottom: 1px solid #bfbfbf;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Cafele-brand .main-contain .section3 .text-top .right-contain .item::after {
  content: "+";
  display: block;
  font-size: 0.18rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: #bfbfbf;
  line-height: 0.18rem;
}

.Cafele-brand .main-contain .section3 .text-top .right-contain .item:hover {
  color: #222222;
}

.Cafele-brand .main-contain .section3 .text-top .right-contain .item:hover::after {
  color: #222222;
}

.Cafele-brand .main-contain .section3 .text-bottom {
  display: flex;
  width: 12.8rem;
  height: 6rem;
  margin-top: 1.5rem;
  margin-left: 3.2rem;
}

.Cafele-brand .main-contain .section3 .text-bottom div {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.Cafele-brand .main-contain .section3 .text-bottom div.s3-pic2 img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.Cafele-brand .main-contain .section3 .text-third {
  margin-left: 3.2rem;
  margin-top: 1.5rem;
  display: flex;
}

.Cafele-brand .main-contain .section3 .text-third .text-item {
  font-family: SourceHanSansCN;
  font-size: 0.36rem;
  font-weight: bold;
  line-height: 0.55rem;
  padding-left: 0.5rem;
  padding-right: 2.5rem;
  border-left: 6px solid #000;
}

.Cafele-brand .scale {
  overflow: hidden;
  position: relative;
}

.Cafele-brand .scale img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.8s ease;
}

.Cafele-brand .scale img:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.Cafele-brand h1,
.Cafele-brand h2,
.Cafele-brand h3 {
  margin: 0;
  font-weight: bold;
}

.Cafele-brand .banner-box .banner .desc-box .desc-story,
.Cafele-brand .banner-box .banner .desc-box .desc-dynamic {
  margin-right: 0.91rem;
}

.hidden {
  display: none;
}

.my-select {
  width: 2.9rem;
  position: relative;
  margin-left: 0.3rem;
  border: 1px solid #666666;
  cursor: pointer;
}

.my-select .view-item {
  height: 0.6rem;
  padding: 0 0.25rem 0 0.36rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.my-select .view-item span {
  font-size: 0.14rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: #999999;
  line-height: 1.08rem;
}

.my-select .view-item img {
  width: 0.17rem;
  height: 0.17rem;
}

.my-select .view-item .arrow {
  width: 0.08rem;
  height: 0.08rem;
  border-top: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  transform: rotate(135deg);
  transition: transform 0.3s ease;
}

.my-select .select-contain-view {
  position: absolute;
  overflow: hidden;
  height: auto;
  top: 120%;
  background: #fff;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  transform: rotateX(90deg);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.my-select .select-contain-view .select-contain .select-item {
  padding: 0.25rem 0.25rem 0.25rem 0.36rem;
  box-sizing: border-box;
  font-size: 0.14rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: #999999;
}

.my-select .select-contain-view .select-contain .select-item.check {
  color: #409eff;
}

.my-select .select-contain-view .select-contain .select-item:hover {
  background-color: #f5f7fa;
}

.my-select.open .view-item .arrow {
  transform: rotate(315deg);
}

.my-select.open .select-contain-view {
  transform: rotateX(0deg);
}

.Cafele-concat {
  font-family: "Microsoft YaHei";
  font-size: 0;
  min-width: 1024px;
}

.Cafele-concat a {
  text-decoration: none;
}

.Cafele-concat a:hover {
  text-decoration: none;
}

.Cafele-concat ul li {
  list-style: none;
}

.Cafele-concat h1,
.Cafele-concat h2,
.Cafele-concat h3 {
  margin: 0;
  font-weight: bold;
}

.Cafele-concat .section {
  box-sizing: border-box;
  position: relative;
}

.Cafele-concat .section img {
  width: 100%;
  height: auto;
}

.Cafele-concat .transi-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s, transform 1.2s;
}

.Cafele-concat .transi-up {
  opacity: 1;
  transform: translateY(0);
}

.Cafele-concat img {
  width: 100%;
  height: auto;
}

.Cafele-concat .sticky {
  position: fixed !important;
  left: 0;
  top: 0;
}

.Cafele-concat .mb {
  display: none;
}

.Cafele-concat .banner-box {
  padding: 0 1.6rem;
  box-sizing: border-box;
}

.Cafele-concat .banner-box .banner {
  width: 100%;
  position: relative;
}

.Cafele-concat .banner-box .banner .prod-name {
  z-index: 2;
  position: absolute;
  bottom: 0.67rem;
  left: 1.05rem;
  font-size: 0.6rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: white;
  line-height: 0.75rem;
  width: 0.55rem;
}

.Cafele-concat .banner-box .banner .desc-box {
  z-index: 2;
  position: absolute;
  right: 0.72rem;
  bottom: 0.6rem;
  display: flex;
  align-items: center;
}

.Cafele-concat .banner-box .banner .desc-box h1.title {
  font-size: 0.14rem;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: white;
  line-height: 0.28rem;
  margin-right: 0.22rem;
}

.Cafele-concat .banner-box .banner .desc-box .customer-list .customer-item {
  margin: 0 0.08rem;
}

.Cafele-concat .banner-box .banner .desc-box .customer-list .customer-item:hover {
  opacity: .75;
}

.Cafele-concat .banner-box .banner .desc-box .customer-list .customer-item img {
  width: 0.13rem;
  height: 0.13rem;
}

.Cafele-concat .main-contain {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 1.6rem;
  margin-top: 1.5rem;
  margin-bottom: 2.4rem;
}

.Cafele-concat .main-contain h1.min-title {
  font-size: 0.17rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #181818;
  line-height: 0.26rem;
}

.Cafele-concat .main-contain .text-box {
  width: 12.8rem;
}

.Cafele-concat .main-contain .text-box .top-text {
  display: flex;
  justify-content: space-between;
}

.Cafele-concat .main-contain .text-box .top-text .address-box .address-icon {
  width: 0.8rem;
  height: 0.8rem;
  background: black;
  border-radius: 50%;
  position: relative;
}

.Cafele-concat .main-contain .text-box .top-text .address-box .address-icon img {
  width: 0.17rem;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.Cafele-concat .main-contain .text-box .top-text .address-box .address-text {
  font-size: 0.22rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #181818;
  line-height: 0.26rem;
  margin-top: 0.43rem;
}

.Cafele-concat .main-contain .text-box .top-text .qrcode {
  width: 1.49rem;
}

.Cafele-concat .main-contain .text-box .map-contain {
  width: 12.8rem;
  height: 6rem;
  box-shadow: 0rem 0rem 1rem 0rem rgba(0, 0, 0, 0.15);
  margin-top: 0.86rem;
}

.Cafele-concat .main-contain .text-box .map-contain .map {
  width: 100%;
  height: 100%;
}

.Cafele-concat .main-contain .text-box .concat-box {
  display: flex;
  margin-top: 0.9rem;
  justify-content: space-between;
}

.Cafele-concat .main-contain .text-box .concat-box .concat-item {
  display: flex;
  align-items: center;
}

.Cafele-concat .main-contain .text-box .concat-box .concat-item.phone .iconfont {
  width: 0.8rem;
  height: 0.8rem;
  background: black;
  border-radius: 50%;
  position: relative;
}

.Cafele-concat .main-contain .text-box .concat-box .concat-item.phone .iconfont img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.2rem;
}

.Cafele-concat .main-contain .text-box .concat-box .concat-item.qq .iconfont {
  width: 0.8rem;
  height: 0.8rem;
  background: black;
  border-radius: 50%;
  position: relative;
}

.Cafele-concat .main-contain .text-box .concat-box .concat-item.qq .iconfont img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.22rem;
}

.Cafele-concat .main-contain .text-box .concat-box .concat-item.email .iconfont {
  width: 0.8rem;
  height: 0.8rem;
  background: black;
  border-radius: 50%;
  position: relative;
}

.Cafele-concat .main-contain .text-box .concat-box .concat-item.email .iconfont img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.26rem;
}

.Cafele-concat .main-contain .text-box .concat-box .concat-item .concat-text {
  font-size: 0.22rem;
  font-family: Axis;
  font-weight: 400;
  color: #181818;
  line-height: 0.26rem;
  font-weight: bold;
  margin-left: 0.27rem;
}

.Cafele-concat .scale {
  overflow: hidden;
  position: relative;
}

.Cafele-concat .scale img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.8s ease;
}

.Cafele-concat .scale img:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.hidden {
  display: none;
}

.Cafele {
  font-family: "Microsoft YaHei";
  font-size: 0;
  min-width: 1024px;
}

.Cafele a {
  text-decoration: none;
}

.Cafele a:hover {
  text-decoration: none;
}

.Cafele ul li {
  list-style: none;
}

.Cafele h1,
.Cafele h2,
.Cafele h3 {
  margin: 0;
  font-weight: bold;
}

.Cafele .section {
  box-sizing: border-box;
  position: relative;
}

.Cafele .section .transi-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s, transform 1.2s;
}

.Cafele .section .transi-up {
  opacity: 1;
  transform: translateY(0);
}

.Cafele .section img {
  width: 100%;
  height: auto;
}

.Cafele img {
  width: 100%;
  height: auto;
}

.Cafele .sticky {
  position: fixed;
  left: 0;
  top: 0;
}

.Cafele .section1 {
  position: relative;
}

.Cafele .section1 img.banner {
  width: 100%;
  height: auto;
}

.Cafele .section1 .top-text {
  position: absolute;
  top: 3.51rem;
  left: 1.6rem;
  z-index: 2;
}

.Cafele .section1 .top-text .title {
  font-size: 0.65rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: white;
  line-height: 0.87rem;
}

.Cafele .section1 .top-text .desc {
  margin-top: 0.6rem;
  line-height: 0.24rem;
}

.Cafele .section1 .top-text .desc a {
  font-size: 0.14rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: white;
}

.Cafele .section1 .top-text .desc a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.Cafele .section1 .main {
  position: relative;
  margin-top: -7rem;
  margin-bottom: 2.3rem;
  width: 100%;
  padding: 0 1.6rem;
  box-sizing: border-box;
}

.Cafele .section1 .main .classify {
  position: relative;
}

.Cafele .section1 .main .classify .top-classify {
  display: flex;
  align-items: baseline;
}

.Cafele .section1 .main .classify .top-classify .classify-A {
  display: block;
  cursor: pointer;
  width: 9.6rem;
  height: 4.8rem;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.8s ease;
}

.Cafele .section1 .main .classify .top-classify .classify-A:hover {
  background-size: 130% !important;
}

.Cafele .section1 .main .classify .top-classify .classify-A .text-box {
  position: absolute;
  left: 0.55rem;
  top: 0.6rem;
}

.Cafele .section1 .main .classify .top-classify .classify-A .text-box .text {
  font-size: 0.22rem;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: white;
  line-height: 0.22rem;
}

.Cafele .section1 .main .classify .top-classify .classify-A .text-box .arrow {
  width: 0.42rem;
  height: auto;
  margin-top: 0.2rem;
  transition: width 0.8s ease;
}

.Cafele .section1 .main .classify .top-classify .classify-B {
  cursor: pointer;
  width: 6.4rem;
  height: 9.6rem;
  position: relative;
}

.Cafele .section1 .main .classify .top-classify .classify-B .swiper-wrapper .swiper-slide a {
  width: 100%;
  height: 100%;
  font-size: 0;
  display: block;
}

.Cafele .section1 .main .classify .top-classify .classify-B .swiper-wrapper .swiper-slide a img {
  width: 100%;
  height: 100%;
}

.Cafele .section1 .main .classify .top-classify .classify-B .swiper-pagination {
  bottom: 0.8rem;
  left: 1.55rem;
  text-align: left;
}

.Cafele .section1 .main .classify .top-classify .classify-B .swiper-pagination .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
}

.Cafele .section1 .main .classify .top-classify .classify-B .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000;
}

.Cafele .section1 .main .classify .bottom-classify {
  background: #000;
  display: flex;
  height: 2.4rem;
  width: 100%;
  margin-top: -1px;
}

.Cafele .section1 .main .classify .bottom-classify .classify-div {
  display: block;
  cursor: pointer;
  width: 4.8rem;
  height: 100%;
  transition: background-size 0.8s ease;
  position: relative;
}

.Cafele .section1 .main .classify .bottom-classify .classify-div:hover {
  background-size: 130% !important;
}

.Cafele .section1 .main .classify .bottom-classify .classify-div .text-box {
  position: absolute;
  left: 0.55rem;
  top: 0.6rem;
}

.Cafele .section1 .main .classify .bottom-classify .classify-div .text-box .text {
  font-size: 0.22rem;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: white;
  line-height: 0.22rem;
}

.Cafele .section1 .main .classify .bottom-classify .classify-div .text-box .arrow {
  width: 0.42rem;
  height: auto;
  margin-top: 0.2rem;
}

.Cafele .section1 .main .classify .bottom-classify .classify-div .text-box .arrow img {
  width: 100%;
  height: auto;
}

.Cafele .section1 .main .classify .bottom-classify .classify-C {
  background-size: 100% 100%;
}

.Cafele .section1 .main .classify .bottom-classify .classify-E {
  width: 6.4rem;
  background: url("../images/home/classifyE.jpg") no-repeat center;
  background-size: 100%;
}

.Cafele .section1 .main .classify .bottom-classify .classify-E .text-box {
  position: absolute;
  top: 1.1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.Cafele .section1 .main .classify .bottom-classify .classify-E .text-box .text {
  text-align: center;
  font-size: 0.22rem;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: white;
  line-height: 0.22rem;
}

.Cafele .section1 .main .classify .bottom-classify .classify-E .text-box .all {
  width: 0.22rem;
  height: auto;
  margin: 0 auto;
  margin-top: 0.2rem;
  text-align: center;
}

.Cafele .section1 .main .classify .bottom-classify .classify-E .text-box .all img {
  width: 100%;
  height: auto;
}

.Cafele .section1 .main .text-intro {
  display: flex;
  margin-top: 1.95rem;
}

.Cafele .section1 .main .text-intro .text-name {
  font-size: 0.17rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #222222;
  line-height: 0.1rem;
  margin-right: 2.7rem;
}

.Cafele .section1 .main .text-intro .text-title {
  margin-right: 1.65rem;
}

.Cafele .section1 .main .text-intro .text-title h1.title {
  font-size: 0.45rem;
  font-family: SourceHanSansCN;
  font-weight: 300;
  color: #111111;
  line-height: 0.6rem;
}

.Cafele .section1 .main .text-intro .text-title h1.title .text-bold {
  font-weight: bold;
}

.Cafele .section1 .main .text-intro .text-title .readmore {
  display: block;
  margin-top: 0.75rem;
}

.Cafele .section1 .main .text-intro .text-title .readmore span {
  font-size: 0.19rem;
  font-family: BrandonText;
  font-weight: 500;
  color: #999999;
  line-height: 0.35rem;
  margin-right: 0.3rem;
  vertical-align: middle;
}

.Cafele .section1 .main .text-intro .text-title .readmore img {
  width: 0.42rem;
  vertical-align: middle;
  transition: transform 0.8s ease;
}

.Cafele .section1 .main .text-intro .text-title .readmore:hover img {
  transform: translateX(30px);
}

.Cafele .section1 .main .text-intro .text-desc {
  margin-right: 2.15rem;
  font-size: 0.16rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 0.31rem;
}

.Cafele .section1 .main .text-intro .text-flagship .stroe-item {
  display: block;
}

.Cafele .section1 .main .text-intro .text-flagship .stroe-item img {
  vertical-align: middle;
  width: 0.2rem;
  margin-right: 0.1rem;
}

.Cafele .section1 .main .text-intro .text-flagship .stroe-item span {
  vertical-align: middle;
  font-size: 0.14rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 0.45rem;
}

.Cafele .section1 .main .text-intro .text-flagship .stroe-item:hover span {
  color: rgba(51, 51, 51, 0.75);
}

.Cafele .section1 .main .intro-pic {
  width: 100%;
  height: 8rem;
  overflow: hidden;
  position: relative;
  margin-top: 1.1rem;
}

.Cafele .section1 .main .intro-pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  transition: width 0.8s ease;
}

.Cafele .section1 .main .intro-pic img:hover {
  width: 130%;
}

.Cafele .section1 .main .text-partner {
  display: flex;
  margin-top: 1.95rem;
  justify-content: space-between;
}

.Cafele .section1 .main .text-partner .text-title {
  font-size: 0.17rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #222222;
  line-height: 0.24rem;
}

.Cafele .section1 .main .text-partner .text-main {
  position: relative;
  width: 12.8rem;
}

.Cafele .section1 .main .text-partner .text-main h1.title {
  font-size: 0.45rem;
  font-family: SourceHanSansCN;
  font-weight: 300;
  color: #111111;
  line-height: 0.6rem;
}

.Cafele .section1 .main .text-partner .text-main h1.title .text-bold {
  font-weight: bold;
}

.Cafele .section1 .main .text-partner .text-main .partner-box {
  width: 100%;
  margin-top: 0.8rem;
  border-top: 1px solid #d4d4d4;
}

.Cafele .section1 .main .text-partner .text-main .partner-box .partner-itemlist {
  display: flex;
  align-items: center;
  padding: 0.34rem 0;
  justify-content: space-between;
  border-bottom: 1px solid #d4d4d4;
}

.Cafele .section1 .main .text-partner .text-main .partner-box .partner-itemlist .partner-item {
  width: 2.3rem;
  position: relative;
}

.Cafele .section1 .main .text-partner .text-main .partner-box .partner-itemlist .partner-item img {
  width: 100%;
  height: auto;
}

.Cafele .section1 .main .text-partner .text-main .partner-box .partner-itemlist .partner-item .default {
  position: relative;
  z-index: 1;
}

.Cafele .section1 .main .text-partner .text-main .partner-box .partner-itemlist .partner-item .hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  opacity: 0;
  transition: opacity .3s linear;
}

.Cafele .section1 .main .text-partner .text-main .partner-box .partner-itemlist .partner-item:hover .hover {
  opacity: 1;
}

.Cafele .section1 .main .text-partner .text-main .add-icon {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.45rem;
  font-family: SourceHanSansCN;
  font-weight: 800;
  color: #333333;
  line-height: 0.6rem;
}

.Cafele .mb {
  display: none;
}

.hidden {
  display: none;
}

@font-face {
  font-family: "iconfont";
  /* project id 1876104 */
  src: url("../font/icon/iconfont.eot");
  src: url("../font/icon/iconfont.eot") format("embedded-opentype"), url("../font/icon/iconfont.woff2") format("woff2"), url("../font/icon/iconfont.woff") format("woff"), url("../font/icon/iconfont.ttf") format("truetype"), url("../font/icon/iconfont.svg") format("svg");
}

.Cafele-info {
  font-family: "Microsoft YaHei";
  font-size: 0;
  min-width: 1024px;
}

.Cafele-info a {
  text-decoration: none;
}

.Cafele-info a:hover {
  text-decoration: none;
}

.Cafele-info ul li {
  list-style: none;
}

.Cafele-info h1,
.Cafele-info h2,
.Cafele-info h3 {
  margin: 0;
  font-weight: bold;
}

.Cafele-info .section {
  box-sizing: border-box;
  position: relative;
}

.Cafele-info .section img {
  width: 100%;
  height: auto;
}

.Cafele-info .transi-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s, transform 1.2s;
}

.Cafele-info .transi-up {
  opacity: 1;
  transform: translateY(0);
}

.Cafele-info img {
  width: 100%;
  height: auto;
}

.Cafele-info .sticky {
  position: fixed !important;
  left: 0;
  top: 0;
}

.Cafele-info .mb {
  display: none;
}

.Cafele-info .container {
  padding: 1rem 1.6rem 0 1.6rem;
  margin-bottom: 1.1rem;
}

.Cafele-info .container .navlist {
  display: flex;
  justify-content: space-between;
}

.Cafele-info .container .navlist .nav-item {
  width: 3.2rem;
  height: 1.3rem;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.14rem;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  line-height: 0.14rem;
  cursor: pointer;
}

.Cafele-info .container .navlist .nav-item:hover {
  opacity: .85;
}

.Cafele-info .container .navlist .nav-item.check {
  background: #222222;
  color: #fff;
  opacity: 1;
}

.Cafele-info .container .infolist {
  margin-top: 1rem;
}

.Cafele-info .container .infolist .info-item {
  margin-bottom: 0.4rem;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  padding: 0.6rem 0.54rem 0.6rem 0.6rem;
}

.Cafele-info .container .infolist .info-item img.info_pic {
  width: 4.2rem;
  margin-right: 0.8rem;
}

.Cafele-info .container .infolist .info-item .info-text {
  width: 10rem;
}

.Cafele-info .container .infolist .info-item .info-text .top-text {
  display: flex;
  justify-content: space-between;
}

.Cafele-info .container .infolist .info-item .info-text .top-text h1.title {
  font-size: 0.24rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #222222;
  line-height: 0.28rem;
}

.Cafele-info .container .infolist .info-item .info-text .top-text span.time {
  font-size: 0.14rem;
  font-family: Arial;
  font-weight: 400;
  color: #999999;
  line-height: 0.28rem;
}

.Cafele-info .container .infolist .info-item .info-text .text {
  font-size: 0.14rem;
  width: 8rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #666666;
  line-height: 0.28rem;
  margin-top: 0.36rem;
}

.Cafele-info .container .infolist .info-item .info-text .arrow {
  width: 0.42rem;
  margin-top: 0.55rem;
}

.Cafele-info .scale {
  overflow: hidden;
  position: relative;
}

.Cafele-info .scale img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.8s ease;
}

.Cafele-info .scale img:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.hidden {
  display: none;
}

.Cafele-infodetail {
  font-family: "Microsoft YaHei";
  font-size: 0;
  min-width: 1024px;
}

.Cafele-infodetail a {
  text-decoration: none;
}

.Cafele-infodetail a:hover {
  text-decoration: none;
}

.Cafele-infodetail ul li {
  list-style: none;
}

.Cafele-infodetail h1,
.Cafele-infodetail h2,
.Cafele-infodetail h3 {
  margin: 0;
  font-weight: bold;
}

.Cafele-infodetail .section {
  box-sizing: border-box;
  position: relative;
}

.Cafele-infodetail .section img {
  width: 100%;
  height: auto;
}

.Cafele-infodetail .transi-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s, transform 1.2s;
}

.Cafele-infodetail .transi-up {
  opacity: 1;
  transform: translateY(0);
}

.Cafele-infodetail img {
  width: 100%;
  height: auto;
}

.Cafele-infodetail .sticky {
  position: fixed !important;
  left: 0;
  top: 0;
}

.Cafele-infodetail .mb {
  display: none;
}

.Cafele-infodetail .container {
  padding: 1.1rem 4.8rem 0 4.8rem;
  margin-bottom: 1.58rem;
}

.Cafele-infodetail .container h1.title {
  font-size: 0.34rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #222222;
  line-height: 0.34rem;
}

.Cafele-infodetail .container .time {
  font-size: 0.18rem;
  font-family: Arial;
  font-weight: 400;
  color: #999999;
  line-height: 0.18rem;
  margin-top: 0.23rem;
}

.Cafele-infodetail .container .detail_pic {
  margin-top: 0.7rem;
  width: 100%;
  height: auto;
}

.Cafele-infodetail .container .detail_text {
  margin-top: 0.67rem;
  font-size: 0.14rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #666666;
  line-height: 2;
}

.Cafele-infodetail .container .back {
  width: 1.43rem;
  height: 0.57rem;
  cursor: pointer;
  background: black;
  font-size: 0.16rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: white;
  line-height: 0.28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 1.03rem;
}

.Cafele-infodetail .container .back::before {
  content: '';
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
  width: 0.08rem;
  height: 0.08rem;
  position: absolute;
  left: 0.26rem;
}

.Cafele-infodetail .container .back:hover {
  opacity: .75;
}

.Cafele-infodetail .scale {
  overflow: hidden;
  position: relative;
}

.Cafele-infodetail .scale img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.8s ease;
}

.Cafele-infodetail .scale img:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.hidden {
  display: none;
}

.Cafele-join {
  font-family: "Microsoft YaHei";
  font-size: 0;
  min-width: 1024px;
}

.Cafele-join a {
  text-decoration: none;
}

.Cafele-join a:hover {
  text-decoration: none;
}

.Cafele-join ul li {
  list-style: none;
}

.Cafele-join h1,
.Cafele-join h2,
.Cafele-join h3 {
  margin: 0;
  font-weight: bold;
}

.Cafele-join .section {
  box-sizing: border-box;
  position: relative;
}

.Cafele-join .section img {
  width: 100%;
  height: auto;
}

.Cafele-join .transi-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s, transform 1.2s;
}

.Cafele-join .transi-up {
  opacity: 1;
  transform: translateY(0);
}

.Cafele-join img {
  width: 100%;
  height: auto;
}

.Cafele-join .sticky {
  position: fixed !important;
  left: 0;
  top: 0;
}

.Cafele-join .mb {
  display: none;
}

.Cafele-join .banner-box {
  padding: 0 1.6rem;
  box-sizing: border-box;
}

.Cafele-join .banner-box .banner {
  width: 100%;
  position: relative;
}

.Cafele-join .banner-box .banner .prod-name {
  z-index: 2;
  position: absolute;
  bottom: 0.67rem;
  left: 1.05rem;
  font-size: 0.6rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: white;
  line-height: 0.75rem;
  width: 0.55rem;
}

.Cafele-join .banner-box .banner .desc-box {
  z-index: 2;
  position: absolute;
  right: 1rem;
  bottom: 0.6rem;
  display: flex;
  align-items: center;
}

.Cafele-join .banner-box .banner .desc-box p {
  font-size: 0.14rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: white;
  line-height: 0.27rem;
}

.Cafele-join .banner-box .banner .desc-box p:hover {
  color: rgba(255, 255, 255, 0.75);
}

.Cafele-join .banner-box .banner .desc-box a.check {
  display: flex;
  align-items: center;
}

.Cafele-join .banner-box .banner .desc-box a.check::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgba(204, 57, 54, 0);
  border: 2px solid white;
  box-sizing: border-box;
  border-radius: 50%;
  margin-right: 0.1rem;
}

.Cafele-join .banner-box .banner .desc-box .desc-story,
.Cafele-join .banner-box .banner .desc-box .desc-dynamic {
  margin-right: 0.91rem;
}

.Cafele-join .main-contain {
  padding: 0 1.6rem;
  box-sizing: border-box;
  margin-top: 1.35rem;
  margin-bottom: 1.54rem;
  display: flex;
  justify-content: space-between;
}

.Cafele-join .main-contain .min-title {
  font-size: 0.17rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #212121;
  line-height: 0.09rem;
  margin-top: 0.15rem;
}

.Cafele-join .main-contain .text {
  width: 12.8rem;
}

.Cafele-join .main-contain .text .text-top h1.title {
  font-size: 0.64rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: black;
  line-height: 0.94rem;
}

.Cafele-join .main-contain .text .text-top h2.title {
  margin-top: 0.64rem;
  font-size: 0.28rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: black;
  line-height: 0.3rem;
}

.Cafele-join .main-contain .text .text-top .claim-list {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.Cafele-join .main-contain .text .text-top .claim-list .claim-item {
  width: 6.3rem;
  height: 1.5rem;
  box-sizing: border-box;
  background-color: #e9e9e9;
  padding-left: 0.59rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}

.Cafele-join .main-contain .text .text-top .claim-list .claim-item .index {
  font-size: 0.42rem;
  font-family: av-bold;
  font-weight: 400;
  color: #cbcbcb;
  line-height: 0.3rem;
  margin-right: 0.62rem;
}

.Cafele-join .main-contain .text .text-top .claim-list .claim-item .value {
  font-size: 0.16rem;
  font-family: SourceHanSansCN-Medium;
  font-weight: 600;
  color: #212121;
  line-height: 0.3rem;
}

.Cafele-join .main-contain .text .text-bottom {
  margin-top: 1.29rem;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .top-contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .top-contain h1.title {
  font-size: 0.64rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: black;
  line-height: 0.94rem;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box {
  position: relative;
  display: flex;
  align-items: center;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box div {
  cursor: pointer;
  width: 0.42rem;
  height: 0.17rem;
  background: url(../images/arrow-black.png) no-repeat;
  background-size: 100% 100%;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  margin-top: 0;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box div:hover {
  opacity: 0.7;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box div.swiper-button-prev {
  transform: rotate(180deg);
  margin-right: 0.75rem;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box div.swiper-button-disabled {
  opacity: 0.2 !important;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box div::after {
  content: "";
}

.Cafele-join .main-contain .text .text-bottom .ins-card .swiper-pagination {
  position: relative;
  text-align: left;
  margin-top: 0.46rem;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .swiper-wrapper {
  margin-top: 0.77rem;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .swiper-wrapper .swiper-slide {
  width: 12.8rem;
  height: 3.8rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  background-color: #111111;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .swiper-wrapper .swiper-slide .slider-pic {
  width: 4.05rem;
  margin-right: 0.86rem;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .swiper-wrapper .swiper-slide .slide-text h1.title {
  font-size: 0.28rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: white;
  line-height: 0.28rem;
}

.Cafele-join .main-contain .text .text-bottom .ins-card .swiper-wrapper .swiper-slide .slide-text p {
  margin-top: 0.25rem;
  font-size: 0.16rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #999999;
  line-height: 0.35rem;
}

.Cafele-join .main-contain .text .text-bottom .botton-box {
  margin-top: 1.23rem;
  display: flex;
}

.Cafele-join .main-contain .text .text-bottom .botton-box a.btn {
  width: 2.8rem;
  height: 0.78rem;
  font-size: 0.22rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: white;
  line-height: 0.22rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Cafele-join .main-contain .text .text-bottom .botton-box a.btn.advisory {
  background-color: #111111;
  margin-right: 0.38rem;
}

.Cafele-join .main-contain .text .text-bottom .botton-box a.btn.advisory:hover {
  opacity: .75;
}

.Cafele-join .main-contain .text .text-bottom .botton-box a.btn.concat {
  background-color: #e9e9e9;
  color: #111111;
}

.Cafele-join .main-contain .text .text-bottom .botton-box a.btn.concat:hover {
  opacity: .75;
}

.Cafele-join .scale {
  overflow: hidden;
  position: relative;
}

.Cafele-join .scale img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.8s ease;
}

.Cafele-join .scale img:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.hidden {
  display: none;
}

.my-select {
  width: 2.9rem;
  position: relative;
  margin-left: 0.3rem;
  border: 1px solid #666666;
  cursor: pointer;
}

.my-select .view-item {
  height: 0.6rem;
  padding: 0 0.25rem 0 0.36rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.my-select .view-item span {
  font-size: 0.14rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: #999999;
  line-height: 1.08rem;
}

.my-select .view-item img {
  width: 0.17rem;
  height: 0.17rem;
}

.my-select .view-item .arrow {
  width: 0.08rem;
  height: 0.08rem;
  border-top: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  transform: rotate(135deg);
  transition: transform 0.3s ease;
}

.my-select:hover .view-item span {
  color: #222222;
}

.my-select .select-contain-view {
  position: absolute;
  overflow: hidden;
  top: 120%;
  background: #fff;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  transform: rotateX(90deg);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.my-select .select-contain-view .select-contain {
  height: 0.6rem;
}

.my-select .select-contain-view .select-contain .select-item {
  padding: 0.25rem 0.25rem 0.25rem 0.36rem;
  box-sizing: border-box;
  font-size: 0.14rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: #999999;
}

.my-select .select-contain-view .select-contain .select-item.check {
  color: #409eff;
}

.my-select .select-contain-view .select-contain .select-item:hover {
  background-color: #f5f7fa;
}

.my-select.open .view-item .arrow {
  transform: rotate(315deg);
}

.my-select.open .select-contain-view {
  transform: rotateX(0deg);
}

.Cafele-product {
  font-family: "Microsoft YaHei";
  font-size: 0;
  min-width: 1024px;
}

.Cafele-product a {
  text-decoration: none;
}

.Cafele-product a:hover {
  text-decoration: none;
}

.Cafele-product ul li {
  list-style: none;
}

.Cafele-product h1,
.Cafele-product h2,
.Cafele-product h3 {
  margin: 0;
  font-weight: bold;
}

.Cafele-product .transi-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s, transform 1.2s;
}

.Cafele-product .transi-up {
  opacity: 1;
  transform: translateY(0);
}

.Cafele-product img {
  width: 100%;
  height: auto;
}

.Cafele-product .sticky {
  position: fixed !important;
  left: 0;
  top: 0;
}

.Cafele-product .mb {
  display: none;
}

.Cafele-product .section1 .banner-box {
  padding: 0 1.6rem;
  box-sizing: border-box;
}

.Cafele-product .section1 .banner-box .banner {
  width: 100%;
  position: relative;
}

.Cafele-product .section1 .banner-box .banner .prod-name {
  z-index: 2;
  position: absolute;
  bottom: 0.67rem;
  left: 1.05rem;
  font-size: 0.6rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: white;
  line-height: 0.75rem;
  width: 0.55rem;
}

.Cafele-product .section1 .banner-box .banner .desc-box {
  z-index: 2;
  position: absolute;
  right: 1rem;
  bottom: 0.6rem;
  display: flex;
  flex-direction: column;
}

.Cafele-product .section1 .banner-box .banner .desc-box .gang {
  width: 0.8rem;
  height: 1px;
  background: #ffffff;
  margin-bottom: 0.25rem;
  align-self: flex-end;
}

.Cafele-product .section1 .banner-box .banner .desc-box p {
  font-size: 0.3rem;
  font-family: SourceHanSansCN;
  font-weight: 300;
  color: #ffffff;
}

.Cafele-product .main-contain {
  margin-bottom: 2.3rem;
}

.Cafele-product .main-contain .prod-contain {
  padding: 0.74rem 1.6rem;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

.Cafele-product .main-contain .prod-contain .prod-item {
  width: 25%;
  height: 4.8rem;
  box-sizing: border-box;
  padding-bottom: 0.3rem;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}

.Cafele-product .main-contain .prod-contain .prod-item img {
  width: auto;
  height: 2.46rem;
}

.Cafele-product .main-contain .prod-contain .prod-item p {
  font-size: 0.22rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: black;
  line-height: 1.08rem;
  margin-top: 0.18rem;
}

.Cafele-product .main-contain .prod-contain .prod-item:hover {
  box-shadow: 0rem 0rem 100px 0rem rgba(0, 0, 0, 0.05);
}

.Cafele-product .main-contain .newtop-contain {
  margin-top: 0.8rem;
  padding: 0 1.6rem;
}

.Cafele-product .main-contain .newtop-contain .title {
  text-align: center;
}

.Cafele-product .main-contain .newtop-contain .title h2 {
  font-size: 0.2rem;
  font-family: WorkSans;
  font-weight: 600;
  color: #000000;
  line-height: 1;
}

.Cafele-product .main-contain .newtop-contain .title p {
  font-size: 0.14rem;
  margin-top: 0.2rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: #999999;
  line-height: 1;
}

.Cafele-product .main-contain .newtop-contain .level1_list {
  display: flex;
  justify-content: space-between;
  margin-top: 0.2rem;
  padding: 0.6rem 0;
  font-weight: 600;
  border-bottom: 1px solid #d9d9d9;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon {
  width: 0.59rem;
  height: 0.59rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: 0.3rem;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon img.default {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon10,
.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon3 {
  height: 0.22rem;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon1,
.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon5,
.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon6 {
  height: 0.27rem;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon2 {
  height: 0.2rem;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon4 {
  height: 0.35rem;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon:hover {
  border: 1px solid #1a1a1a;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item .name {
  font-size: 0.14rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #191919;
  line-height: 1;
  margin-top: 0.2rem;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item.checked .icon {
  border: 1px solid #1a1a1a;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item.checked .icon img.default {
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}

.Cafele-product .main-contain .newtop-contain .level1_list .level1_item.checked .icon img.check {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.Cafele-product .main-contain .newtop-contain .level2_list {
  display: flex;
  align-self: center;
  margin-top: 0.5rem;
}

.Cafele-product .main-contain .newtop-contain .level2_list span {
  margin-right: 0.65rem;
  font-size: 0.14rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #9b9b9b;
  cursor: pointer;
}

.Cafele-product .main-contain .newtop-contain .level2_list span:hover {
  color: #1a1a1a;
}

.Cafele-product .main-contain .newtop-contain .level2_list span.checked {
  color: #1a1a1a;
  position: relative;
  border-bottom: 1px solid #191919;
  padding-bottom: 0.08rem;
}

.hidden {
  display: none;
}

.Cafele-productdetail {
  font-family: "Microsoft YaHei";
  font-size: 0;
  min-width: 1024px;
}

.Cafele-productdetail a {
  text-decoration: none;
}

.Cafele-productdetail a:hover {
  text-decoration: none;
}

.Cafele-productdetail ul li {
  list-style: none;
}

.Cafele-productdetail h1,
.Cafele-productdetail h2,
.Cafele-productdetail h3 {
  margin: 0;
  font-weight: bold;
}

.Cafele-productdetail .transi-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s, transform 1.2s;
}

.Cafele-productdetail .transi-up {
  opacity: 1;
  transform: translateY(0);
}

.Cafele-productdetail img {
  width: 100%;
  height: auto;
}

.Cafele-productdetail .sticky {
  position: fixed !important;
  left: 0;
  top: 0;
}

.Cafele-productdetail .mb {
  display: none;
}

.Cafele-productdetail .main-contain {
  background-color: #f6f6f6;
}

.Cafele-productdetail .main-contain .product-introbox {
  width: 100%;
  background: #fff;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro {
  padding-top: 0.8rem;
  margin: 0 auto;
  width: 12.8rem;
  display: flex;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-show {
  width: 6.4rem;
  height: 5.39rem;
  margin-right: 0.8rem;
  box-sizing: border-box;
  padding: 0.5rem 0.63rem 0.57rem 0.63rem;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container {
  width: auto;
  height: 100%;
  position: relative;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-button-box {
  position: absolute;
  top: 50%;
  transform: translateY(-0.15rem);
  width: 100%;
  z-index: 2;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-button-box .swiper-button {
  background: url(../images/productdetail/prev.png) no-repeat;
  background-size: 100% 100%;
  width: 0.17rem;
  height: 0.29rem;
  cursor: pointer;
  position: absolute;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-button-box .swiper-button.swiper-button-disabled {
  opacity: 0.25;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-button-box .swiper-button-myprev {
  left: 10px;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-button-box .swiper-button-mynext {
  transform: rotate(180deg);
  right: 10px;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-wrapper .swiper-slide {
  text-align: center;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: auto;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info {
  margin-top: 0.42rem;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info h1.proname {
  font-size: 0.32rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #333333;
  line-height: 0.54rem;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox .subtitle {
  font-size: 0.14rem;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  line-height: 0.14rem;
  margin-top: 0.36rem;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.colorbox .attrvalue {
  display: flex;
  margin-top: 0.22rem;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.colorbox .attrvalue img {
  width: 0.41rem;
  height: 0.41rem;
  margin-right: 0.14rem;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.material .attrvalue {
  width: 3.2rem;
  padding: 0.13rem 0;
  background: #e7e7e7;
  text-align: center;
  margin-top: 0.2rem;
  color: #333333;
  font-size: 0.14rem;
  font-weight: bold;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.desc {
  margin-top: 0.36rem;
  display: flex;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.desc .attrvalue {
  margin-left: 0.05rem;
  font-size: 0.12rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #666666;
  line-height: 0.12rem;
  display: inline;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.desc .subtitle {
  display: inline;
  font-size: 0.12rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #666666;
  margin-top: 0;
  margin-left: 0;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox .default {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.1rem;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox .default span {
  font-size: 0.14rem;
}

.Cafele-productdetail .main-contain .product-introbox .product-intro .product-info a.buy {
  display: block;
  text-align: center;
  width: 1.6rem;
  padding: 0.2rem 0;
  background: #171717;
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.14rem;
  color: #fff;
  border: none;
}

.Cafele-productdetail .main-contain .product-desc {
  width: 12.8rem;
  margin: 0 auto;
  margin-top: 0.2rem;
  padding: 0 1.6rem;
  box-sizing: border-box;
  background-color: #fff;
}

.Cafele-productdetail .main-contain .product-desc .desc-item {
  display: flex;
  justify-content: space-between;
}

.Cafele-productdetail .main-contain .product-desc .desc-item * {
  box-sizing: border-box;
}

.Cafele-productdetail .main-contain .product-desc .desc-item h1.title {
  font-size: 0.32rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #171717;
  line-height: 0.54rem;
  max-height: 3rem;
}

.Cafele-productdetail .main-contain .product-desc .desc-item .text {
  width: 6.4rem;
  font-size: 0.18rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #333333;
  line-height: 0.33rem;
}

.Cafele-productdetail .main-contain .product-desc .desc-item.overview {
  padding: 0.95rem 0 0.9rem 0;
  border-bottom: 1px solid #e7e7e7;
}

.Cafele-productdetail .main-contain .product-desc .desc-item.parameter {
  padding-top: 0.75rem;
}

.Cafele-productdetail .main-contain .product-desc .desc-item.parameter .param-list {
  width: 6.4rem;
}

.Cafele-productdetail .main-contain .product-desc .desc-item.parameter .param-list .param-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 0.22rem 0 0.22rem 0.2rem;
  display: flex;
}

.Cafele-productdetail .main-contain .product-desc .desc-item.parameter .param-list .param-item .param-name {
  font-size: 0.16rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #666666;
  line-height: 0.16rem;
  min-width: 1.4rem;
}

.Cafele-productdetail .main-contain .product-desc .desc-item.parameter .param-list .param-item .param-value {
  font-size: 0.16rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #666666;
  line-height: 0.16rem;
}

.Cafele-productdetail .main-contain .product-desc .desc-item.picture {
  margin-top: 0.8rem;
  padding-bottom: 1.16rem;
}

.Cafele-productdetail .main-contain .product-desc .desc-item.picture .picture-list {
  width: 6.4rem;
}

.Cafele-productdetail .main-contain .product-desc .desc-item.picture .picture-list div {
  margin-bottom: 0.1rem;
}

.Cafele-productdetail .main-contain .recommend {
  width: 12.8rem;
  margin: 0 auto;
  margin-top: 0.95rem;
}

.Cafele-productdetail .main-contain .recommend h1.title {
  font-size: 0.32rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: black;
  line-height: 0.32rem;
  margin-bottom: 0.61rem;
  text-align: center;
}

.Cafele-productdetail .main-contain .recommend .swiper-container {
  padding-bottom: 2.25rem;
  width: 100%;
}

.Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper {
  width: 100%;
}

.Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list a.recommend-item {
  display: block;
  width: 4rem;
  height: 4.8rem;
  padding: 0.75rem 0 0.77rem 0;
  box-sizing: border-box;
  text-align: center;
  background-color: #fff;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list a.recommend-item .rec-pic {
  height: 2.46rem;
  width: auto;
}

.Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list a.recommend-item .rec-pic img {
  height: 100%;
  width: auto;
}

.Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list a.recommend-item .rec-name {
  font-size: 0.22rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: black;
  line-height: 0.22rem;
  margin-top: 0.62rem;
}

.Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list a.recommend-item.rec-transi {
  opacity: 0;
  transform: translateY(30px);
}

.Cafele-productdetail .main-contain .recommend .swiper-container .swiper-pagination {
  bottom: 1.55rem;
}

.Cafele-productdetail .main-contain .recommend .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 0.11rem;
  height: 0.11rem;
  margin: 0 0.1rem;
}

.Cafele-productdetail .main-contain .recommend .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #393939;
}

.hidden {
  display: none;
}

.header a {
  cursor: pointer;
}

.load-wrap {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  height: 102vh;
  width: 100vw;
  background-color: #fff;
  font-size: 0;
}

body {
  min-height: 102vh;
}

.blackbg {
  position: fixed;
  width: 100%;
  opacity: 0;
  background-color: #fff;
  left: 0;
  top: 0;
  height: 100vh;
  /* transition: opacity 3s ease; */
}

.blackbg.fadeout {
  -webkit-animation: fadeout 1.6s linear;
  animation: fadeout 1.6s linear;
}

.blackbg.fadein_out {
  -webkit-animation: fadein_out 1s linear;
  animation: fadein_out 1s linear;
}

a[data-href] {
  cursor: pointer;
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
    z-index: 999;
  }
  100% {
    opacity: 0;
    z-index: -10;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
    z-index: 999;
  }
  100% {
    opacity: 0;
    z-index: -10;
  }
}

@-webkit-keyframes fadein_out {
  0% {
    opacity: 0;
    z-index: 999;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    z-index: -10;
  }
}

@keyframes fadein_out {
  0% {
    opacity: 0;
    z-index: 999;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    z-index: -10;
  }
}

#mainpage {
  position: relative;
  z-index: 1;
}

.frag {
  opacity: 0;
  position: fixed;
  height: 1px;
  overflow: hidden;
  left: -100vw;
  top: 0;
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

.homeheader {
  opacity: 1;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 1.2rem;
}

.homeheader .defaultbox {
  box-sizing: border-box;
  display: flex;
  padding: 0.28rem 1.6rem;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.homeheader .defaultbox .logo {
  width: 1.55rem;
  height: auto;
}

.homeheader .defaultbox .logo:hover {
  opacity: 0.75;
}

.homeheader .defaultbox .navlist {
  display: flex;
}

.homeheader .defaultbox .navlist li {
  line-height: 0.54rem;
  margin-right: 0.6rem;
}

.homeheader .defaultbox .navlist li a {
  font-size: 0.17rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: white;
}

.homeheader .defaultbox .navlist li a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.homeheader .defaultbox .toollist {
  display: flex;
  align-items: center;
}

.homeheader .defaultbox .toollist li {
  margin-left: 0.25rem;
  cursor: pointer;
}

.homeheader .defaultbox .toollist li .iconfont {
  color: #84838b;
  font-size: 0.14rem;
}

.homeheader .defaultbox .toollist li .iconfont:hover {
  color: #fff;
}

.homeheader .defaultbox .toollist li.language {
  vertical-align: middle;
  font-size: 0.12rem;
  font-weight: 400;
  color: #84838b;
  font-family: BrandonText;
  display: flex;
  flex-direction: column;
  padding-top: 0.33rem;
}

.homeheader .defaultbox .toollist li.language .l-check {
  margin-bottom: 0.1rem;
}

.homeheader .defaultbox .toollist li.language .l-check span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border: 0.03rem solid transparent;
  margin-left: 0.04rem;
  border-color: #84838b transparent transparent transparent;
  transition: transform .2s ease;
}

.homeheader .defaultbox .toollist li.language .l-list {
  display: flex;
  flex-direction: column;
  transform: rotateX(90deg);
  transform-origin: 0 0;
  transition: transform 0.2s ease;
}

.homeheader .defaultbox .toollist li.language .l-list a {
  display: block;
  margin-bottom: 0.1rem;
}

.homeheader .defaultbox .toollist li.language .l-list a span {
  color: #84838b;
}

.homeheader .defaultbox .toollist li.language .l-list a span:hover {
  color: #fff;
}

.homeheader .defaultbox .toollist li.language.colspan .l-list {
  transform: rotateX(0deg);
}

.homeheader .defaultbox .toollist li.language.colspan .l-check span::after {
  transform: rotate(-90deg);
  transform-origin: 50% 32%;
}

.homeheader .defaultbox .toollist li.language span {
  position: relative;
}

.homeheader .defaultbox .toollist li.language span:hover {
  color: #fff;
}

.homeheader .defaultbox .toollist li.language span:hover::after {
  border-color: #fff transparent transparent transparent;
}

.homeheader .searchbox {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0.28rem 0.52rem;
  transition: opacity 0.3s ease;
}

.homeheader .searchbox .contain {
  width: 7.6rem;
  height: 0.52rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0 0.3rem;
}

.homeheader .searchbox .contain input {
  font-size: 0.16rem;
  padding: 0.05rem 3rem 0.05rem 0.2rem;
  box-sizing: border-box;
  border: none;
  outline: none;
  width: 7.6rem;
  height: 0.46rem;
}

.homeheader .searchbox .contain .close {
  font-size: 0.2rem;
  cursor: pointer;
}

.homeheader .hide {
  opacity: 0;
  z-index: 0;
}

.footer {
  margin-top: 0rem;
  display: flex !important;
  padding: 1.68rem 1.58rem 0 1.58rem;
  box-sizing: border-box;
  justify-content: space-between;
  background-color: #000000;
}

.footer .text-left {
  width: 1.6rem;
}

.footer .text-left a {
  display: block;
}

.footer .text-left a img:hover {
  opacity: 0.8;
}

.footer .text-right {
  width: 12.8rem;
  margin-top: 0.04rem;
}

.footer .text-right h1.toptitle {
  font-size: 0.45rem;
  font-family: SourceHanSansCN-Light;
  font-weight: lighter;
  color: #f6f6f6;
  line-height: 0.24rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #181818;
}

.footer .text-right h1.toptitle span.text-bold {
  font-weight: bold;
  font-family: SourceHanSansCN;
}

.footer .text-right .main {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0 1.9rem 0;
}

.footer .text-right .main .navlist {
  display: flex;
}

.footer .text-right .main .navlist .nav-item h1.title {
  font-size: 0.18rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #f6f6f6;
  line-height: 0.24rem;
}

.footer .text-right .main .navlist .nav-item ul {
  margin-top: 0.32rem;
}

.footer .text-right .main .navlist .nav-item ul .prod-item {
  line-height: 0.28rem;
}

.footer .text-right .main .navlist .nav-item ul .prod-item a {
  font-size: 0.14rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #6c6c6c;
}

.footer .text-right .main .navlist .nav-item ul .prod-item a:hover {
  color: #fff;
}

.footer .text-right .main .navlist .nav-item:nth-child(1) {
  margin-right: 1.4rem;
}

.footer .text-right .main .navlist .nav-item:nth-child(2) {
  margin-right: 1.67rem;
}

.footer .text-right .main .shop-link .text {
  text-align: right;
  font-size: 0.18rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #f6f6f6;
  line-height: 0.24rem;
}

.footer .text-right .main .shop-link .link-box {
  margin-top: 0.3rem;
  box-sizing: border-box;
  width: 2.3rem;
}

.footer .text-right .main .shop-link .link-box .link-itembox {
  padding: 0 0.22rem;
  box-sizing: border-box;
  display: block;
  position: relative;
  background-color: #f6f6f6;
}

.footer .text-right .main .shop-link .link-box .link-itembox .link-item {
  display: flex;
  align-items: center;
  height: 0.6rem;
  border-bottom: 1px solid #c7c7c7;
}

.footer .text-right .main .shop-link .link-box .link-itembox .link-item .tianmao,
.footer .text-right .main .shop-link .link-box .link-itembox .link-item .jd {
  width: 0.19rem;
  height: auto;
  margin-right: 0.2rem;
}

.footer .text-right .main .shop-link .link-box .link-itembox .link-item .ebay {
  width: 0.26rem;
  margin-right: 0.13rem;
  height: auto;
}

.footer .text-right .main .shop-link .link-box .link-itembox .link-item .amazon {
  width: 0.2rem;
  margin-right: 0.19rem;
  margin-top: 0.02rem;
  height: auto;
}

.footer .text-right .main .shop-link .link-box .link-itembox .link-item .ail {
  width: 0.2rem;
  margin-right: 0.19rem;
  margin-top: 0.05rem;
  height: auto;
}

.footer .text-right .main .shop-link .link-box .link-itembox .link-item .typename {
  margin-right: 0;
  font-size: 0.14rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #777777;
  line-height: 0.24rem;
}

.footer .text-right .main .shop-link .link-box .link-itembox .link-item .down-arrow {
  transition: transform 0.5s ease;
  transform: rotate(0deg);
  width: 0.11rem;
  height: auto;
  position: absolute;
  right: 0.22rem;
  top: auto;
}

.footer .text-right .main .shop-link .link-box .link-itembox:hover .link-item .typename {
  color: #222222;
}

.footer .text-right .main .shop-link .link-box .link-itembox:last-child .link-item {
  border-bottom: none;
}

.footer .text-right .main .shop-link .link-box .foldbox {
  transform: rotateX(90deg);
  transform-origin: 0 0;
  transition: transform 0.5s ease;
}

.footer .text-right .main .shop-link .link-box:hover .link-itembox .link-item .down-arrow {
  transform: rotate(-90deg);
}

.footer .text-right .main .shop-link .link-box:hover .foldbox {
  transform: rotateX(0deg);
}

.footer .text-right .version {
  padding: 0.35rem 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #181818;
}

.footer .text-right .version .version-text {
  font-size: 0.14rem;
  font-family: BrandonText;
  font-weight: 400;
  color: #2c2c2c;
  line-height: 0.18rem;
}

.footer .text-right .version .link-list a {
  margin-left: 0.24rem;
  vertical-align: middle;
}

.footer .text-right .version .link-list a .iconfont {
  color: #3b3b3b;
  font-size: 0.16rem;
}

.footer .text-right .version .link-list a .iconfont:hover {
  color: #fff;
}

.footer .text-right .version .link-list .qrcode {
  position: relative;
}

.footer .text-right .version .link-list .qrcode .qrcodeimg {
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -100%);
  top: -0.3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer .text-right .version .link-list .qrcode .qrcodeimg::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #ededed;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 5.5px) rotate(45deg);
}

.footer .text-right .version .link-list .qrcode:hover .qrcodeimg {
  opacity: 1;
}

.header {
  box-sizing: border-box;
  position: relative;
  left: 0;
  top: 0;
  border-bottom: 1px solid #d2d2d2;
  height: 1.2rem;
}

.header .defaultbox {
  position: relative;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  z-index: 100;
  padding: 0.28rem 1.6rem;
  transition: opacity 0.3s ease;
}

.header .defaultbox .logo {
  width: 1.55rem;
  height: auto;
}

.header .defaultbox .logo:hover {
  opacity: 0.75;
}

.header .defaultbox .navlist {
  display: flex;
}

.header .defaultbox .navlist li {
  line-height: 0.54rem;
  margin-right: 0.6rem;
}

.header .defaultbox .navlist li a {
  font-size: 0.17rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000;
}

.header .defaultbox .navlist li a:hover {
  color: rgba(0, 0, 0, 0.75);
}

.header .defaultbox .toollist {
  display: flex;
  align-items: center;
}

.header .defaultbox .toollist li {
  margin-left: 0.25rem;
  cursor: pointer;
}

.header .defaultbox .toollist li .iconfont {
  color: #222222;
  font-size: 0.14rem;
}

.header .defaultbox .toollist li .iconfont:hover {
  color: #737272;
}

.header .defaultbox .toollist li.language {
  vertical-align: middle;
  font-size: 0.12rem;
  font-weight: 400;
  color: #222222;
  font-family: BrandonText;
  display: flex;
  flex-direction: column;
  padding-top: 0.33rem;
}

.header .defaultbox .toollist li.language .l-check {
  margin-bottom: 0.1rem;
}

.header .defaultbox .toollist li.language .l-check span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border: 0.03rem solid transparent;
  margin-left: 0.04rem;
  border-color: #222222 transparent transparent transparent;
  transition: transform .2s ease;
}

.header .defaultbox .toollist li.language .l-list {
  display: flex;
  flex-direction: column;
  transform: rotateX(90deg);
  transform-origin: 0 0;
  transition: transform 0.2s ease;
}

.header .defaultbox .toollist li.language .l-list a {
  display: block;
  margin-bottom: 0.1rem;
}

.header .defaultbox .toollist li.language .l-list a span {
  color: #222222;
}

.header .defaultbox .toollist li.language .l-list a span:hover {
  color: #737272;
}

.header .defaultbox .toollist li.language.colspan .l-list {
  transform: rotateX(0deg);
}

.header .defaultbox .toollist li.language.colspan .l-check span::after {
  transform: rotate(-90deg);
  transform-origin: 50% 32%;
}

.header .defaultbox .toollist li.language span {
  position: relative;
}

.header .defaultbox .toollist li.language span:hover {
  color: #737272;
}

.header .defaultbox .toollist li.language span:hover::after {
  border-color: #737272 transparent transparent transparent;
}

.header .searchbox {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0.28rem 0.52rem;
  transition: opacity 0.3s ease;
}

.header .searchbox .contain {
  width: 7.6rem;
  height: 0.52rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0 0.3rem;
}

.header .searchbox .contain input {
  font-size: 0.16rem;
  padding: 0.05rem 3rem 0.05rem 0.2rem;
  box-sizing: border-box;
  border: none;
  outline: none;
  width: 7.6rem;
  height: 0.46rem;
}

.header .searchbox .contain .close {
  font-size: 0.2rem;
  cursor: pointer;
}

.header .hide {
  opacity: 0;
  z-index: 0;
}

.mb {
  display: none;
}

.Cafele-search {
  font-family: "Microsoft YaHei";
  font-size: 0;
  min-width: 1024px;
}

.Cafele-search a {
  text-decoration: none;
}

.Cafele-search a:hover {
  text-decoration: none;
}

.Cafele-search ul li {
  list-style: none;
}

.Cafele-search h1,
.Cafele-search h2,
.Cafele-search h3 {
  margin: 0;
  font-weight: bold;
}

.Cafele-search .section {
  box-sizing: border-box;
  position: relative;
}

.Cafele-search .section img {
  width: 100%;
  height: auto;
}

.Cafele-search .transi-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s, transform 1.2s;
}

.Cafele-search .transi-up {
  opacity: 1;
  transform: translateY(0);
}

.Cafele-search img {
  width: 100%;
  height: auto;
}

.Cafele-search .search-contain {
  padding: 0.3rem 4rem;
  box-sizing: border-box;
  background-color: #000;
}

.Cafele-search .search-contain .search {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0.2rem;
  border-radius: 4px;
}

.Cafele-search .search-contain .search i {
  font-size: 0.2rem;
  margin-right: 0.2rem;
}

.Cafele-search .search-contain .search input {
  width: 70%;
  border: none;
  font-size: 0.2rem;
}

.Cafele-search .search-contain .search input:focus {
  outline: none;
}

.Cafele-search .header {
  padding: 0.28rem 2.4rem;
}

.Cafele-search .data-contain {
  height: auto;
  width: 12.8rem;
  min-height: 2rem;
  margin: 0 auto;
  padding: 1rem 0;
  background-color: #fff;
}

.Cafele-search .data-contain .data-cate {
  display: flex;
}

.Cafele-search .data-contain .data-cate .data-cateitem {
  cursor: pointer;
  font-size: 0.2rem;
  font-family: "Microsoft YaHei";
  color: #666666;
  margin-right: 0.6rem;
}

.Cafele-search .data-contain .data-cate .data-cateitem:hover {
  opacity: .75;
}

.Cafele-search .data-contain .data-cate .data-cateitem .text {
  padding-bottom: 0.1rem;
}

.Cafele-search .data-contain .data-cate .data-cateitem.selected .text {
  border-bottom: 2px solid #f7a83f;
}

.Cafele-search .data-contain .data-value {
  margin-top: 1rem;
}

.Cafele-search .data-contain .data-value .data-valueitem {
  display: flex;
  align-items: center;
  margin-bottom: 0.65rem;
}

.Cafele-search .data-contain .data-value .data-valueitem .item-pic {
  width: 2.8rem;
  height: 2.6rem;
  text-align: center;
  display: block;
  font-family: "Microsoft YaHei";
  line-height: 2.6rem;
  font-size: 0;
}

.Cafele-search .data-contain .data-value .data-valueitem .item-pic img {
  max-width: 2.3rem;
  max-height: 2.5rem;
  height: auto;
  width: auto;
  vertical-align: middle;
}

.Cafele-search .data-contain .data-value .data-valueitem .item-text h1.item-title {
  font-size: 0.28rem;
  color: #000;
  font-weight: 500;
}

.Cafele-search .data-contain .data-value .data-valueitem .item-text .item-desc {
  width: 6.2rem;
  margin-top: 0.4rem;
  font-size: 0.2rem;
  color: #666666;
  line-height: 1.5;
}

.Cafele-search .data-contain .data-value .data-valueitem .item-text a.link-btn {
  display: block;
  color: #ef9926;
  font-size: 0.2rem;
  line-height: 1;
  margin-top: 0.25rem;
}

.Cafele-search .data-contain .data-value .data-valueitem .item-text a.link-btn:hover {
  opacity: 0.75;
}

.Cafele-search .sticky {
  position: fixed !important;
  left: 0;
  top: 0;
}

.Cafele-search .mb {
  display: none;
}

.hidden {
  display: none;
}

@media screen and (max-width: 769px) {
  .Cafele-brand {
    background-color: #fcfcfc;
    min-width: 320px;
  }
  .Cafele-brand .pc {
    display: none !important;
  }
  .Cafele-brand .mb {
    display: block;
  }
  .Cafele-brand .banner-box {
    padding: 0;
    box-sizing: border-box;
  }
  .Cafele-brand .banner-box .banner {
    width: 100%;
    position: relative;
  }
  .Cafele-brand .banner-box .banner .prod-name {
    z-index: 2;
    position: absolute;
    bottom: 1.79rem;
    left: 1.51rem;
    font-size: 0.82rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: white;
    line-height: 1.02rem;
    width: 0.55rem;
  }
  .Cafele-brand .banner-box .banner .desc-box {
    z-index: 2;
    position: absolute;
    right: 1.56rem;
    bottom: 1.79rem;
    display: flex;
    align-items: center;
  }
  .Cafele-brand .banner-box .banner .desc-box p {
    font-size: 0.41rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: white;
    line-height: 0.27rem;
  }
  .Cafele-brand .banner-box .banner .desc-box p:hover {
    color: rgba(255, 255, 255, 0.75);
  }
  .Cafele-brand .banner-box .banner .desc-box a.check {
    display: flex;
    align-items: center;
  }
  .Cafele-brand .banner-box .banner .desc-box a.check::before {
    content: "";
    width: 0.2rem;
    height: 0.2rem;
    background: rgba(204, 57, 54, 0);
    border: 0.05px solid white;
    border-radius: 50%;
    border: 1px solid white;
    box-sizing: border-box;
    border-radius: 50%;
    margin-right: 0.3rem;
  }
  .Cafele-brand .banner-box .banner .desc-box .desc-story,
  .Cafele-brand .banner-box .banner .desc-box .desc-dynamic {
    margin-right: 1.7rem;
  }
  .Cafele-brand .main-contain {
    padding-right: 0;
    padding-left: 1.54rem;
    box-sizing: border-box;
    margin-top: 1.7rem;
    margin-bottom: 3.59rem;
  }
  .Cafele-brand .main-contain .section1 {
    display: block;
    width: 100%;
  }
  .Cafele-brand .main-contain .section1 .contain {
    width: 100%;
  }
  .Cafele-brand .main-contain .section1 .contain .text-top {
    display: flex;
    justify-content: space-between;
    padding-right: 1.75rem;
  }
  .Cafele-brand .main-contain .section1 .contain .text-top .text .flex-box {
    display: flex;
    justify-content: space-between;
  }
  .Cafele-brand .main-contain .section1 .contain .text-top .text .min-title {
    font-size: 0.46rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: #222222;
    line-height: 0.46rem;
  }
  .Cafele-brand .main-contain .section1 .contain .text-top .text h1.title {
    line-height: 0.82rem;
    margin-top: 0.56rem;
  }
  .Cafele-brand .main-contain .section1 .contain .text-top .text h1.title .font1 {
    vertical-align: middle;
    font-size: 1.23rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: black;
    margin-right: 0.3rem;
  }
  .Cafele-brand .main-contain .section1 .contain .text-top .text h1.title .font2 {
    vertical-align: middle;
    font-size: 1.61rem;
    font-family: ws-bold;
    font-weight: bold;
    color: black;
  }
  .Cafele-brand .main-contain .section1 .contain .text-top .text .desc {
    width: 100%;
    margin-top: 1.6rem;
    font-size: 0.41rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #333333;
    line-height: 0.77rem;
  }
  .Cafele-brand .main-contain .section1 .contain .text-top .s1-pic {
    width: 5.63rem;
    height: 2.66rem;
  }
  .Cafele-brand .main-contain .section1 .contain .s1-pic2 {
    margin-top: 1.06rem;
    width: 100%;
    height: 8.26rem;
  }
  .Cafele-brand .main-contain .section2 {
    margin-top: 2.28rem;
    display: block;
  }
  .Cafele-brand .main-contain .section2 .min-title {
    font-size: 0.46rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: #222222;
    line-height: 0.51rem;
  }
  .Cafele-brand .main-contain .section2 .contain {
    width: 100%;
  }
  .Cafele-brand .main-contain .section2 .contain h1.title {
    font-size: 1.23rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: black;
    line-height: 1.54rem;
    margin-top: 0.5rem;
  }
  .Cafele-brand .main-contain .section2 .contain h1.title .font1 {
    font-weight: bold;
  }
  .Cafele-brand .main-contain .section2 .contain h1.title .font2 {
    font-weight: 300;
  }
  .Cafele-brand .main-contain .section2 .contain .schdule {
    margin-top: 1.3rem;
    line-height: 0.41rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .Cafele-brand .main-contain .section2 .contain .schdule .time {
    font-size: 0.72rem;
    font-family: WorkSans;
    font-weight: bold;
    color: #d2d2d2;
    cursor: pointer;
  }
  .Cafele-brand .main-contain .section2 .contain .schdule .time:hover {
    color: rgba(0, 0, 0, 0.5);
  }
  .Cafele-brand .main-contain .section2 .contain .schdule .time.check {
    color: black;
  }
  .Cafele-brand .main-contain .section2 .contain .schdule img {
    display: none;
    width: 0.42rem;
    height: auto;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  .Cafele-brand .main-contain .section2 .contain .schdule img:hover {
    opacity: 1;
  }
  .Cafele-brand .main-contain .section2 .contain .desc {
    margin-top: 2.45rem;
  }
  .Cafele-brand .main-contain .section2 .contain .desc .text {
    font-size: 0.46rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #333333;
    line-height: 0.92rem;
    display: inline-block;
    vertical-align: middle;
  }
  .Cafele-brand .main-contain .section2 .contain .desc::before {
    content: "";
    display: inline-block;
    width: 0.15rem;
    background: #282829;
    margin-right: 0.75rem;
    vertical-align: middle;
    height: 2.8rem;
  }
  .Cafele-brand .main-contain .section2 .contain .datacard-list {
    margin-top: 2.85rem;
    display: block;
    justify-content: space-between;
  }
  .Cafele-brand .main-contain .section2 .contain .datacard-list .swiper-wrapper {
    width: 9rem;
    height: 12rem;
  }
  .Cafele-brand .main-contain .section2 .contain .datacard-list .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    margin-right: 2.94rem;
  }
  .Cafele-brand .main-contain .section2 .contain .datacard-list .swiper-wrapper .swiper-slide .datacard-item {
    width: 100%;
    height: 100%;
    background: #131313;
    padding: 1.66rem 0 1.54rem 1.4rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .Cafele-brand .main-contain .section2 .contain .datacard-list .swiper-wrapper .swiper-slide .datacard-item h1.title {
    font-size: 0.61rem;
    font-family: SourceHanSansCN;
    font-weight: 500;
    color: white;
    line-height: 0.84rem;
  }
  .Cafele-brand .main-contain .section2 .contain .datacard-list .swiper-wrapper .swiper-slide .datacard-item .num-box .num {
    font-size: 1.54rem;
    font-family: WorkSans;
    font-weight: 500;
    color: white;
    line-height: 1.54rem;
  }
  .Cafele-brand .main-contain .section2 .contain .datacard-list .swiper-wrapper .swiper-slide .datacard-item .num-box .unit {
    font-size: 1.12rem;
    font-family: WorkSans;
    font-weight: 600;
    color: white;
    line-height: 0.84rem;
    margin-top: 0.6rem;
  }
  .Cafele-brand .main-contain .section2 .contain .datacard-list .swiper-wrapper .swiper-slide .datacard-item.bottom {
    margin-top: 0;
  }
  .Cafele-brand .main-contain .section2 .contain .datacard-list .swiper-wrapper .swiper-slide .datacard-item.center {
    margin-top: 0;
  }
  .Cafele-brand .main-contain .section3 {
    margin-top: 3.23rem;
  }
  .Cafele-brand .main-contain .section3 .text-top {
    display: flex;
    justify-content: space-between;
  }
  .Cafele-brand .main-contain .section3 .text-top .left-contain {
    display: flex;
  }
  .Cafele-brand .main-contain .section3 .text-top .left-contain .min-title {
    font-size: 0.46rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: #222222;
    line-height: 0.23rem;
    margin-right: 0;
  }
  .Cafele-brand .main-contain .section3 .text-top .left-contain .main-text h1.title {
    margin-top: 1.2rem;
    font-size: 1.23rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: black;
    line-height: 1.74rem;
  }
  .Cafele-brand .main-contain .section3 .text-top .left-contain .main-text .text {
    margin-top: 1.5rem;
  }
  .Cafele-brand .main-contain .section3 .text-top .left-contain .main-text .text div {
    font-size: 0.37rem;
    font-family: SourceHanSansCN;
    font-weight: 500;
    color: black;
    line-height: 0.7rem;
  }
  .Cafele-brand .main-contain .section3 .text-top .left-contain .main-text .text div.bold {
    font-weight: 600;
    margin-bottom: 0.28rem;
  }
  .Cafele-brand .main-contain .section3 .text-top .left-contain .main-text .btn {
    display: block;
    padding: 0.61rem 0;
    width: 8.06rem;
    background: black;
    text-align: center;
    font-size: 0.41rem;
    font-family: SourceHanSansCN;
    font-weight: 500;
    color: white;
    line-height: 0.41rem;
    box-sizing: border-box;
    margin-top: 2.26rem;
  }
  .Cafele-brand .main-contain .section3 .text-top .left-contain .main-text .btn:hover {
    opacity: 0.75;
  }
  .Cafele-brand .main-contain .section3 .text-bottom {
    display: flex;
    width: 100%;
    height: 7.58rem;
    margin-top: 2.2rem;
    margin-left: 0;
  }
  .Cafele-brand .main-contain .section3 .text-bottom div {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .Cafele-brand .main-contain .section3 .text-third {
    margin-left: 0rem;
    margin-top: 2.4rem;
    display: flex;
  }
  .Cafele-brand .main-contain .section3 .text-third .text-item {
    font-size: 0.56rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: #222222;
    line-height: 0.89rem;
    padding-left: 0.75rem;
    padding-right: 2.8rem;
    border-left: 0.11rem solid #000;
  }
  .Cafele-brand .scale {
    overflow: hidden;
    position: relative;
  }
  .Cafele-brand .scale img {
    transition: transform 0.8s ease;
  }
  .Cafele-brand .scale img:hover {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@media screen and (max-width: 769px) {
  .Cafele-concat {
    background-color: #fcfcfc;
    min-width: 320px;
  }
  .Cafele-concat .pc {
    display: none !important;
  }
  .Cafele-concat .mb {
    display: block;
  }
  .Cafele-concat .banner-box {
    padding: 0;
    box-sizing: border-box;
  }
  .Cafele-concat .banner-box .banner {
    width: 100%;
    position: relative;
  }
  .Cafele-concat .banner-box .banner .prod-name {
    z-index: 2;
    position: absolute;
    bottom: 1.8rem;
    left: 1.56rem;
    font-size: 0.82rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: white;
    line-height: 1.02rem;
    width: 0.55rem;
  }
  .Cafele-concat .banner-box .banner .desc-box {
    z-index: 2;
    position: absolute;
    right: 0.72rem;
    bottom: 0.6rem;
    display: flex;
    align-items: center;
  }
  .Cafele-concat .banner-box .banner .desc-box h1.title {
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: white;
    line-height: 0.28rem;
    margin-right: 0.22rem;
  }
  .Cafele-concat .banner-box .banner .desc-box .customer-list .customer-item {
    margin: 0 0.08rem;
  }
  .Cafele-concat .banner-box .banner .desc-box .customer-list .customer-item:hover {
    opacity: 0.75;
  }
  .Cafele-concat .banner-box .banner .desc-box .customer-list .customer-item img {
    width: 0.13rem;
    height: 0.13rem;
  }
  .Cafele-concat .main-contain {
    margin: 0 auto;
    display: block;
    padding: 0 1.56rem;
    margin-top: 2rem;
    margin-bottom: 3.4rem;
  }
  .Cafele-concat .main-contain .text-box {
    width: 100%;
  }
  .Cafele-concat .main-contain .text-box .top-text {
    display: block;
  }
  .Cafele-concat .main-contain .text-box .top-text .address-box .address-icon {
    width: 2.05rem;
    height: 2.05rem;
    background: black;
    border-radius: 50%;
    position: relative;
  }
  .Cafele-concat .main-contain .text-box .top-text .address-box .address-icon img {
    width: 0.44rem;
    height: auto;
  }
  .Cafele-concat .main-contain .text-box .top-text .address-box .address-text {
    font-size: 0.56rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: #181818;
    line-height: 0.67rem;
    margin-top: 1.1rem;
  }
  .Cafele-concat .main-contain .text-box .top-text .qrcode {
    width: 3.1rem;
    margin-top: 1rem;
  }
  .Cafele-concat .main-contain .text-box .map-contain {
    width: 100%;
    height: 7.55rem;
    box-shadow: 0rem 0rem 1rem 0rem rgba(0, 0, 0, 0.15);
    margin-top: 1.59rem;
  }
  .Cafele-concat .main-contain .text-box .map-contain .map {
    width: 100%;
    height: 100%;
  }
  .Cafele-concat .main-contain .text-box .concat-box {
    display: flex;
    margin-top: 1.6rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .Cafele-concat .main-contain .text-box .concat-box .concat-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.48rem;
  }
  .Cafele-concat .main-contain .text-box .concat-box .concat-item.phone .iconfont {
    width: 2.05rem;
    height: 2.05rem;
    background: black;
    border-radius: 50%;
    position: relative;
  }
  .Cafele-concat .main-contain .text-box .concat-box .concat-item.phone .iconfont img {
    width: 0.51rem;
  }
  .Cafele-concat .main-contain .text-box .concat-box .concat-item.qq .iconfont {
    width: 2.05rem;
    height: 2.05rem;
    background: black;
    border-radius: 50%;
    position: relative;
  }
  .Cafele-concat .main-contain .text-box .concat-box .concat-item.qq .iconfont img {
    width: 0.56rem;
  }
  .Cafele-concat .main-contain .text-box .concat-box .concat-item.email {
    margin-bottom: 0;
  }
  .Cafele-concat .main-contain .text-box .concat-box .concat-item.email .iconfont {
    width: 2.05rem;
    height: 2.05rem;
    background: black;
    border-radius: 50%;
    position: relative;
  }
  .Cafele-concat .main-contain .text-box .concat-box .concat-item.email .iconfont img {
    width: 0.67rem;
  }
  .Cafele-concat .main-contain .text-box .concat-box .concat-item .concat-text {
    font-size: 0.56rem;
    font-family: Axis;
    font-weight: 600;
    color: #181818;
    line-height: 0.67rem;
    margin-left: 0.6rem;
  }
  .Cafele-concat .scale {
    overflow: hidden;
    position: relative;
  }
  .Cafele-concat .scale img {
    transition: transform 0.8s ease;
  }
  .Cafele-concat .scale img:hover {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@media screen and (max-width: 769px) {
  .Cafele {
    min-width: 320px;
  }
  .Cafele .pc {
    display: none !important;
  }
  .Cafele .mb {
    display: block;
  }
  .Cafele .section1 {
    position: relative;
  }
  .Cafele .section1 img.banner {
    width: 100%;
    height: auto;
  }
  .Cafele .section1 .top-text {
    position: absolute;
    top: 10.29rem;
    left: 1.54rem;
    z-index: 2;
  }
  .Cafele .section1 .top-text div.title {
    font-size: 1.46rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: white;
    line-height: 1.94rem;
  }
  .Cafele .section1 .top-text .desc {
    margin-top: 2.71rem;
    line-height: 0.77rem;
  }
  .Cafele .section1 .top-text .desc a {
    font-size: 0.41rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: white;
  }
  .Cafele .section1 .top-text .desc a:hover {
    color: rgba(255, 255, 255, 0.75);
  }
  .Cafele .section1 .main {
    position: relative;
    margin-top: -3.8rem;
    margin-bottom: 2.3rem;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  .Cafele .section1 .main .classify {
    padding: 0 1.6rem;
    position: relative;
  }
  .Cafele .section1 .main .classify .top-classify {
    display: flex;
    align-items: inherit;
    flex-direction: column-reverse;
  }
  .Cafele .section1 .main .classify .top-classify .classify-A {
    margin-top: 0.26rem;
    display: block;
    cursor: pointer;
    width: 16rem;
    height: 8rem;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-size 0.8s ease;
  }
  .Cafele .section1 .main .classify .top-classify .classify-A:hover {
    background-size: 130% !important;
  }
  .Cafele .section1 .main .classify .top-classify .classify-A .text-box {
    position: absolute;
    left: 1.95rem;
    top: 1.51rem;
  }
  .Cafele .section1 .main .classify .top-classify .classify-A .text-box .text {
    font-size: 0.56rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: white;
    line-height: 0.79rem;
  }
  .Cafele .section1 .main .classify .top-classify .classify-A .text-box .arrow {
    width: 1.42rem;
    height: auto;
    margin-top: 0.5rem;
    transition: width 0.8s ease;
  }
  .Cafele .section1 .main .classify .top-classify .classify-B {
    cursor: pointer;
    width: 16rem;
    height: 21rem;
    position: relative;
  }
  .Cafele .section1 .main .classify .top-classify .classify-B .swiper-wrapper .swiper-slide a {
    width: 100%;
    height: 100%;
    font-size: 0;
    display: block;
  }
  .Cafele .section1 .main .classify .top-classify .classify-B .swiper-wrapper .swiper-slide a img {
    width: 100%;
    height: 100%;
  }
  .Cafele .section1 .main .classify .top-classify .classify-B .swiper-pagination {
    bottom: 2.98rem;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .Cafele .section1 .main .classify .top-classify .classify-B .swiper-pagination .swiper-pagination-bullet {
    width: 0.28rem;
    height: 0.28rem;
  }
  .Cafele .section1 .main .classify .top-classify .classify-B .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #000;
  }
  .Cafele .section1 .main .classify .bottom-classify {
    background: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-top: -1px;
  }
  .Cafele .section1 .main .classify .bottom-classify .classify-div {
    margin-top: 0.24rem;
    display: block;
    cursor: pointer;
    width: 16rem;
    height: 8rem;
    transition: background-size 0.8s ease;
    position: relative;
  }
  .Cafele .section1 .main .classify .bottom-classify .classify-div:hover {
    background-size: 130% !important;
  }
  .Cafele .section1 .main .classify .bottom-classify .classify-div .text-box {
    position: absolute;
    left: 1.95rem;
    top: 1.51rem;
  }
  .Cafele .section1 .main .classify .bottom-classify .classify-div .text-box .text {
    font-size: 0.56rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: white;
    line-height: 0.79rem;
  }
  .Cafele .section1 .main .classify .bottom-classify .classify-div .text-box .arrow {
    width: 1.42rem;
    height: auto;
    margin-top: 0.5rem;
    transition: width 0.8s ease;
  }
  .Cafele .section1 .main .classify .bottom-classify .classify-C {
    background-size: 100% 100%;
  }
  .Cafele .section1 .main .classify .bottom-classify .classify-E {
    width: 6.4rem;
    background: url("../images/home/classifyE.jpg") no-repeat center;
    background-size: 100%;
  }
  .Cafele .section1 .main .classify .bottom-classify .classify-E .text-box {
    position: absolute;
    top: 1.1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .Cafele .section1 .main .classify .bottom-classify .classify-E .text-box .text {
    text-align: center;
    font-size: 0.22rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: white;
    line-height: 0.22rem;
  }
  .Cafele .section1 .main .classify .bottom-classify .classify-E .text-box .all {
    width: 0.22rem;
    height: auto;
    margin: 0 auto;
    margin-top: 0.2rem;
    text-align: center;
  }
  .Cafele .section1 .main .classify .bottom-classify .classify-E .text-box .all img {
    width: 100%;
    height: auto;
  }
  .Cafele .section1 .main .text-intro {
    width: 100%;
    height: 35.8rem;
    background: url("../images/home/mb/intro-pic.jpg");
    background-size: 100%;
    position: relative;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    padding-left: 1.51rem;
    padding-top: 3.84rem;
    box-sizing: border-box;
  }
  .Cafele .section1 .main .text-intro .text-name {
    font-size: 0.46rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: white;
    line-height: 0.46rem;
    margin-right: 0;
  }
  .Cafele .section1 .main .text-intro .text-title {
    margin-right: 0;
    margin-top: 1rem;
  }
  .Cafele .section1 .main .text-intro .text-title h1.title {
    font-size: 1.28rem;
    font-family: SourceHanSansCN;
    font-weight: 300;
    color: white;
    line-height: 1.69rem;
  }
  .Cafele .section1 .main .text-intro .text-title h1.title .text-bold {
    font-weight: bold;
  }
  .Cafele .section1 .main .text-intro .readmore {
    display: block;
    margin-top: 3.92rem;
    width: 4.02rem;
    height: 2.05rem;
    background: white;
    position: relative;
  }
  .Cafele .section1 .main .text-intro .readmore img {
    width: 1.2rem;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .Cafele .section1 .main .text-intro .text-desc {
    margin-top: 2.32rem;
    margin-right: 0rem;
    font-size: 0.46rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: white;
    line-height: 0.92rem;
  }
  .Cafele .section1 .main .text-intro .text-flagship {
    position: absolute;
    top: 11.1rem;
    right: 1.54rem;
    display: flex;
  }
  .Cafele .section1 .main .text-intro .text-flagship .stroe-item {
    display: block;
    margin-left: 1.23rem;
  }
  .Cafele .section1 .main .text-intro .text-flagship .stroe-item img {
    vertical-align: middle;
    width: 1.02rem;
    margin-right: 0rem;
  }
  .Cafele .section1 .main .text-intro .text-flagship .stroe-item span {
    vertical-align: middle;
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 0.45rem;
  }
  .Cafele .section1 .main .text-intro .text-flagship .stroe-item:hover span {
    color: rgba(51, 51, 51, 0.75);
  }
  .Cafele .section1 .main .text-partner-mb {
    padding: 2.8rem 0;
    position: relative;
  }
  .Cafele .section1 .main .text-partner-mb .text-title {
    padding-left: 1.54rem;
    font-size: 0.46rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: #222222;
    line-height: 1.23rem;
  }
  .Cafele .section1 .main .text-partner-mb .text-main {
    padding-left: 1.54rem;
    margin-top: 0.7rem;
  }
  .Cafele .section1 .main .text-partner-mb .text-main .box {
    border-bottom: 2px solid #d4d4d4;
    padding-bottom: 1.77rem;
  }
  .Cafele .section1 .main .text-partner-mb .text-main h1.title {
    font-size: 1.28rem;
    font-family: SourceHanSansCN;
    font-weight: 300;
    color: #111111;
    line-height: 1.69rem;
  }
  .Cafele .section1 .main .text-partner-mb .text-main h1.title .text-bold {
    font-weight: bold;
  }
  .Cafele .section1 .main .text-partner-mb .text-main .swiper-pagination {
    padding-left: 2px;
    margin-top: 1.05rem;
    position: relative;
    text-align: left;
  }
  .Cafele .section1 .main .text-partner-mb .text-main .swiper-pagination .swiper-pagination-bullet {
    width: 0.28rem;
    height: 0.28rem;
    margin-right: 0.2rem;
  }
  .Cafele .section1 .main .text-partner-mb .text-main .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #000;
  }
  .Cafele .section1 .main .text-partner-mb .swiper-wrapper .swiper-slide {
    padding-left: 1.59rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .Cafele .section1 .main .text-partner-mb .swiper-wrapper .swiper-slide .partner-item {
    padding: 1.52rem 0;
    width: 50%;
    border-bottom: 2px solid #d4d4d4;
  }
  .Cafele .section1 .main .text-partner-mb .swiper-wrapper .swiper-slide .partner-item img {
    width: 95%;
  }
}

@media screen and (max-width: 769px) {
  .Cafele-info {
    background-color: #fcfcfc;
    min-width: 320px;
  }
  .Cafele-info .pc {
    display: none !important;
  }
  .Cafele-info .mb {
    display: block;
  }
  .Cafele-info .container {
    padding: 1rem 1.6rem 0 1.6rem;
    margin-bottom: 2.87rem;
  }
  .Cafele-info .container .navlist {
    display: flex;
    justify-content: space-between;
  }
  .Cafele-info .container .navlist .nav-item {
    width: inherit;
    height: inherit;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.59rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #848484;
    line-height: 1;
    cursor: pointer;
  }
  .Cafele-info .container .navlist .nav-item:hover {
    opacity: 1;
  }
  .Cafele-info .container .navlist .nav-item.check {
    background: transparent;
    color: #1c1c1c;
    opacity: 1;
  }
  .Cafele-info .container .infolist {
    margin-top: 1rem;
  }
  .Cafele-info .container .infolist .info-item {
    margin-bottom: 0.4rem;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    padding: 0.6rem 0.54rem 0.6rem 0.6rem;
  }
  .Cafele-info .container .infolist .info-item img.info_pic {
    width: 4.2rem;
    margin-right: 0.8rem;
  }
  .Cafele-info .container .infolist .info-item .info-text {
    width: 10rem;
  }
  .Cafele-info .container .infolist .info-item .info-text .top-text {
    display: flex;
    justify-content: space-between;
  }
  .Cafele-info .container .infolist .info-item .info-text .top-text h1.title {
    font-size: 0.46rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: #222222;
    line-height: 0.72rem;
  }
  .Cafele-info .container .infolist .info-item .info-text .top-text span.time {
    font-size: 0.14rem;
    font-family: Arial;
    font-weight: 400;
    color: #999999;
    line-height: 0.28rem;
  }
  .Cafele-info .container .infolist .info-item .info-text .text {
    font-size: 0.36rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #666666;
    line-height: 0.46rem;
    margin-top: 0.36rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .Cafele-info .container .infolist .info-item .info-text .arrow {
    width: 0.69rem;
    margin-top: 0.62rem;
  }
  .Cafele-info .scale {
    overflow: hidden;
    position: relative;
  }
  .Cafele-info .scale img {
    transition: transform 0.8s ease;
  }
  .Cafele-info .scale img:hover {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@media screen and (max-width: 769px) {
  .Cafele-infodetail {
    background-color: #fcfcfc;
    min-width: 320px;
  }
  .Cafele-infodetail .pc {
    display: none !important;
  }
  .Cafele-infodetail .mb {
    display: block;
  }
  .Cafele-infodetail .container {
    padding: 1.74rem 1.56rem 0 1.56rem;
    margin-bottom: 2.23rem;
  }
  .Cafele-infodetail .container h1.title {
    font-size: 0.61rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: #222222;
    line-height: 0.6rem;
  }
  .Cafele-infodetail .container .time {
    font-size: 0.41rem;
    font-family: Arial;
    font-weight: 400;
    color: #999999;
    line-height: 1;
    margin-top: 0.51rem;
  }
  .Cafele-infodetail .container .detail_pic {
    margin-top: 1.07rem;
    width: 100%;
    height: auto;
  }
  .Cafele-infodetail .container .detail_text {
    margin-top: 1rem;
    font-size: 0.56rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #666666;
    line-height: 2.6;
  }
  .Cafele-infodetail .container .back {
    width: 6.14rem;
    height: inherit;
    text-align: center;
    padding: 1rem 0;
    background: black;
    cursor: pointer;
    font-size: 0.61rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: white;
    display: block;
    position: relative;
    line-height: 0.61rem;
    margin-top: 2.1rem;
  }
  .Cafele-infodetail .container .back::before {
    content: "";
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(-45deg) translateY(-50%);
    width: 0.24rem;
    height: 0.24rem;
    position: absolute;
    left: 1.64rem;
    margin-top: -1px;
    top: 50%;
  }
  .Cafele-infodetail .container .back:hover {
    opacity: 0.75;
  }
  .Cafele-infodetail .scale {
    overflow: hidden;
    position: relative;
  }
  .Cafele-infodetail .scale img {
    transition: transform 0.8s ease;
  }
  .Cafele-infodetail .scale img:hover {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@media screen and (max-width: 769px) {
  .Cafele-join {
    background-color: #fcfcfc;
    min-width: 320px;
  }
  .Cafele-join .pc {
    display: none !important;
  }
  .Cafele-join .mb {
    display: block;
  }
  .Cafele-join .banner-box {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .Cafele-join .banner-box .banner {
    width: 100%;
    position: relative;
  }
  .Cafele-join .banner-box .banner .prod-name {
    z-index: 2;
    position: absolute;
    bottom: 1.8rem;
    left: 1.5rem;
    font-size: 0.82rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: white;
    line-height: 1.02rem;
    width: 0.55rem;
  }
  .Cafele-join .banner-box .banner .desc-box {
    z-index: 2;
    position: absolute;
    right: 1.56rem;
    bottom: 1.8rem;
    display: flex;
    align-items: center;
  }
  .Cafele-join .banner-box .banner .desc-box p {
    font-size: 0.41rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: white;
    line-height: 0.41rem;
  }
  .Cafele-join .banner-box .banner .desc-box p:hover {
    color: rgba(255, 255, 255, 0.75);
  }
  .Cafele-join .banner-box .banner .desc-box a.check {
    display: flex;
    align-items: center;
  }
  .Cafele-join .banner-box .banner .desc-box a.check::before {
    content: "";
    width: 0.2rem;
    height: 0.2rem;
    background: rgba(204, 57, 54, 0);
    border: 0.05px solid white;
    border-radius: 50%;
    border: 1px solid white;
    box-sizing: border-box;
    border-radius: 50%;
    margin-right: 0.24rem;
  }
  .Cafele-join .banner-box .banner .desc-box .desc-story,
  .Cafele-join .banner-box .banner .desc-box .desc-dynamic {
    margin-right: 1.2rem;
  }
  .Cafele-join .main-contain {
    padding: 0 1.54rem;
    box-sizing: border-box;
    margin-top: 3.4rem;
    margin-bottom: 3.1rem;
    display: flex;
    justify-content: space-between;
  }
  .Cafele-join .main-contain .text {
    width: 100%;
  }
  .Cafele-join .main-contain .text .text-top h1.title {
    font-size: 1.23rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: black;
    line-height: 1.81rem;
  }
  .Cafele-join .main-contain .text .text-top h2.title {
    font-size: 0.61rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: black;
    line-height: 0.77rem;
    margin-top: 1.4rem;
  }
  .Cafele-join .main-contain .text .text-top .claim-list {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .Cafele-join .main-contain .text .text-top .claim-list .claim-item {
    width: 100%;
    height: 3.84rem;
    box-sizing: border-box;
    background-color: #e9e9e9;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
  }
  .Cafele-join .main-contain .text .text-top .claim-list .claim-item .index {
    font-size: 1.08rem;
    font-family: AvantiBold;
    font-weight: 400;
    color: #cccccc;
    line-height: 0.77rem;
    margin-right: 1.56rem;
  }
  .Cafele-join .main-contain .text .text-top .claim-list .claim-item .value {
    font-size: 0.41rem;
    font-family: SourceHanSansCN;
    font-weight: 500;
    color: #222222;
    line-height: 0.77rem;
  }
  .Cafele-join .main-contain .text .text-bottom {
    margin-top: 3rem;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .top-contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .top-contain h1.title {
    font-size: 1.23rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: black;
    line-height: 2.32rem;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box {
    position: relative;
    display: flex;
    align-items: center;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box div {
    cursor: pointer;
    width: 0.42rem;
    height: 0.17rem;
    background: url(../images/arrow-black.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    margin-top: 0;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box div:hover {
    opacity: 0.7;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box div.swiper-button-prev {
    transform: rotate(180deg);
    margin-right: 0.75rem;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box div.swiper-button-disabled {
    opacity: 0.2 !important;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .top-contain .swiper-button-box div::after {
    content: "";
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card a.btn {
    width: 5.63rem;
    height: 2.12rem;
    font-size: 0.51rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: white;
    line-height: 0.51rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.7rem;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card a.btn.advisory {
    background-color: #111111;
    margin-right: 0.38rem;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card a.btn.advisory:hover {
    opacity: 1;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .swiper-pagination {
    position: relative;
    text-align: left;
    margin-top: 2rem;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .swiper-pagination .swiper-pagination-bullet {
    width: 0.27rem;
    height: 0.27rem;
    margin: 0 0.14rem;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #000;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .swiper-wrapper {
    margin-top: 1.39rem;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .swiper-wrapper .swiper-slide {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    display: flex;
    align-items: inherit;
    flex-direction: column;
    padding-left: 0;
    background-color: transparent;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .swiper-wrapper .swiper-slide .slider-pic {
    width: 100%;
    margin-right: 0;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .swiper-wrapper .swiper-slide .slide-text {
    margin-top: 1.92rem;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .swiper-wrapper .swiper-slide .slide-text h1.title {
    font-size: 0.82rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: #1c1c1c;
    line-height: 0.82rem;
  }
  .Cafele-join .main-contain .text .text-bottom .ins-card .swiper-wrapper .swiper-slide .slide-text p {
    margin-top: 0.7rem;
    font-size: 0.41rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #1c1c1c;
    line-height: 0.87rem;
  }
  .Cafele-join .main-contain .text .text-bottom .botton-box {
    margin-top: 1.23rem;
    display: flex;
  }
  .Cafele-join .main-contain .text .text-bottom .botton-box a.btn {
    width: 2.8rem;
    height: 0.78rem;
    font-size: 0.22rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: white;
    line-height: 0.22rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .Cafele-join .main-contain .text .text-bottom .botton-box a.btn.advisory {
    background-color: #111111;
    margin-right: 0.38rem;
  }
  .Cafele-join .main-contain .text .text-bottom .botton-box a.btn.advisory:hover {
    opacity: 0.75;
  }
  .Cafele-join .main-contain .text .text-bottom .botton-box a.btn.concat {
    background-color: #e9e9e9;
    color: #111111;
  }
  .Cafele-join .main-contain .text .text-bottom .botton-box a.btn.concat:hover {
    opacity: 0.75;
  }
  .Cafele-join .scale {
    overflow: hidden;
    position: relative;
  }
  .Cafele-join .scale img {
    transition: transform 0.8s ease;
  }
  .Cafele-join .scale img:hover {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@media screen and (max-width: 769px) {
  .Cafele-product {
    background-color: #fcfcfc;
    min-width: 320px;
  }
  .Cafele-product .pc {
    display: none;
  }
  .Cafele-product .mb {
    display: block;
  }
  .Cafele-product .section1 .banner-box {
    padding: 0rem;
    box-sizing: border-box;
  }
  .Cafele-product .section1 .banner-box .banner {
    line-height: 1;
    width: 100%;
    position: relative;
  }
  .Cafele-product .section1 .banner-box .banner .prod-name {
    z-index: 2;
    position: absolute;
    bottom: 1.54rem;
    left: 1.54rem;
    font-size: 0.82rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: white;
    line-height: 1.02rem;
    width: 0.55rem;
  }
  .Cafele-product .section1 .banner-box .banner .desc-box {
    z-index: 2;
    position: absolute;
    right: 1.54rem;
    bottom: 1.34rem;
    display: flex;
  }
  .Cafele-product .section1 .banner-box .banner .desc-box .gang {
    margin-bottom: 0.5rem;
  }
  .Cafele-product .section1 .banner-box .banner .desc-box p {
    font-size: 0.41rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: white;
    line-height: 0.41rem;
    margin-bottom: 0.2rem;
  }
  .Cafele-product .section1 .banner-box .banner .desc-box .desc-comnum {
    margin-right: 2.2rem;
  }
  .Cafele-product .main-contain {
    margin-bottom: 2.3rem;
  }
  .Cafele-product .main-contain .newtop-contain {
    margin-top: 0;
    padding: 0 1rem;
  }
  .Cafele-product .main-contain .newtop-contain .title {
    text-align: center;
  }
  .Cafele-product .main-contain .newtop-contain .title h2 {
    font-size: 0.2rem;
    font-family: WorkSans;
    font-weight: 600;
    color: #000000;
    line-height: 1;
  }
  .Cafele-product .main-contain .newtop-contain .title p {
    font-size: 0.14rem;
    margin-top: 0.2rem;
    font-family: SourceHanSansCN;
    font-weight: 500;
    color: #999999;
    line-height: 1;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 0.2rem;
    padding: 0.6rem 0;
    padding-top: 1.2rem;
    font-weight: 600;
    border-bottom: none;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0.6rem;
    margin-bottom: 1.2rem;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item:nth-child(5n) {
    margin-right: 0;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item:nth-child(5n + 1) {
    margin-left: 0;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon {
    width: 2rem;
    height: 2rem;
    border: 1px solid #cccccc;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    margin-bottom: 0.6rem;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 0.9rem;
    width: auto;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon img.default {
    opacity: 1;
    z-index: 1;
    visibility: visible;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon10,
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon3 {
    height: 0.66rem;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon1,
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon5,
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon6 {
    height: 0.81rem;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon2 {
    height: 0.6rem;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon .icon4 {
    height: 1.05rem;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .icon:hover {
    border: 1px solid #1a1a1a;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item .name {
    font-size: 0.61rem;
    margin-top: 0rem;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item.checked .icon {
    border: 1px solid #1a1a1a;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item.checked .icon img.default {
    opacity: 0;
    z-index: -1;
    visibility: hidden;
  }
  .Cafele-product .main-contain .newtop-contain .level1_list .level1_item.checked .icon img.check {
    opacity: 1;
    z-index: 1;
    visibility: visible;
  }
  .Cafele-product .main-contain .level2_list_box {
    background-color: #f7f7f7;
    padding: 0;
    position: relative;
    height: 3rem;
  }
  .Cafele-product .main-contain .level2_list_box .level2_list {
    padding: 0;
    height: 100%;
    position: absolute;
    left: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    overflow-x: auto;
    align-items: center;
    display: flex;
    padding-right: 1rem;
  }
  .Cafele-product .main-contain .level2_list_box .level2_list span {
    padding: 0;
    flex-shrink: 0;
    font-size: 0.61rem;
    font-family: SourceHanSansCN;
    padding-right: 1.6rem;
    font-weight: 400;
    color: #9b9b9b;
    cursor: pointer;
  }
  .Cafele-product .main-contain .level2_list_box .level2_list span:hover {
    color: #1a1a1a;
  }
  .Cafele-product .main-contain .level2_list_box .level2_list span.checked {
    color: #1a1a1a;
    position: relative;
    border-bottom: none;
    padding-bottom: 0.08rem;
  }
  .Cafele-product .main-contain .prod-contain {
    padding: 1.6rem 1rem;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    background-color: #f7f7f7;
    justify-content: space-between;
  }
  .Cafele-product .main-contain .prod-contain .prod-item {
    width: 7.68rem;
    height: 9.22rem;
    box-sizing: border-box;
    padding-bottom: 1.46rem;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    box-shadow: 0rem 0rem 100px 0rem rgba(0, 0, 0, 0.05);
    background-color: #fff;
    margin-bottom: 0.77rem;
  }
  .Cafele-product .main-contain .prod-contain .prod-item img {
    width: auto;
    height: 4.69rem;
  }
  .Cafele-product .main-contain .prod-contain .prod-item p {
    font-size: 0.46rem;
    font-family: SourceHanSansCN;
    font-weight: 600;
    color: black;
    line-height: 0.46rem;
    margin-top: 1.15rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 769px) {
  .Cafele-productdetail {
    background-color: #fcfcfc;
    min-width: 320px;
  }
  .Cafele-productdetail .pc {
    display: none;
  }
  .Cafele-productdetail .mb {
    display: block;
  }
  .Cafele-productdetail .main-contain {
    background-color: #f6f6f6;
  }
  .Cafele-productdetail .main-contain .product-introbox {
    width: 100%;
    background: #fff;
    padding: 0 1.54rem;
    box-sizing: border-box;
    padding-bottom: 3.58rem;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro {
    padding-top: 0.8rem;
    margin: 0 auto;
    width: 100%;
    display: block;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-show {
    width: 100%;
    height: 16rem;
    padding: 2.05rem 0 2.2rem 0;
    margin-right: 0;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container {
    width: auto;
    height: 100%;
    position: relative;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-button-box {
    position: absolute;
    top: 50%;
    transform: translateY(-0.15rem);
    width: 100%;
    z-index: 2;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-button-box .swiper-button {
    background: url(../images/productdetail/prev.png) no-repeat;
    background-size: 100% 100%;
    width: 0.51rem;
    height: 0.87rem;
    cursor: pointer;
    position: absolute;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-button-box .swiper-button.swiper-button-disabled {
    opacity: 0.25;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-button-box .swiper-button-myprev {
    left: 10px;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-button-box .swiper-button-mynext {
    transform: rotate(180deg);
    right: 10px;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-wrapper .swiper-slide {
    text-align: center;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-show .swiper-container .swiper-wrapper .swiper-slide img {
    height: 100%;
    width: auto;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info {
    margin-top: 0.42rem;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info h1.proname {
    text-align: center;
    font-size: 0.82rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #333333;
    line-height: 1;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr {
    overflow: hidden;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox .subtitle {
    font-size: 0.41rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #333333;
    line-height: 0.41rem;
    margin-top: 1.1rem;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.colorbox {
    float: left;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.colorbox .attrvalue {
    display: flex;
    margin-top: 0.65rem;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.colorbox .attrvalue img {
    width: 1.05rem;
    height: 1.05rem;
    margin-right: 0.36rem;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.material {
    float: right;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.material .attrvalue {
    width: 7.04rem;
    padding: 0.41rem 0;
    background: #e7e7e7;
    text-align: center;
    margin-top: 0.49rem;
    color: #333333;
    font-size: 0.46rem;
    font-weight: bold;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.desc {
    clear: both;
    margin-top: 0;
    padding-top: 1.7rem;
    display: flex;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.desc::before {
    content: "";
    display: block;
    clear: both;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.desc .attrvalue {
    margin-left: 0.05rem;
    font-size: 0.46rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    display: inline;
    line-height: 1;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox.desc .subtitle {
    display: inline;
    font-size: 0.46rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    line-height: 1;
    margin-top: 0;
    margin-left: 0;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox .default {
    padding-top: 0.85rem;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info .productattr .attrbox .default span {
    font-size: 0.46rem;
  }
  .Cafele-productdetail .main-contain .product-introbox .product-intro .product-info a.buy {
    display: block;
    text-align: center;
    width: 100%;
    padding: 1.1rem 0;
    background: #171717;
    margin-bottom: 0;
    margin-top: 2.46rem;
    font-size: 0.61rem;
    color: #fff;
    border: none;
  }
  .Cafele-productdetail .main-contain .title-cardbox {
    width: 100%;
    display: flex;
    border-top: 1px solid #e7e7e7;
    height: 2.05rem;
  }
  .Cafele-productdetail .main-contain .title-cardbox .title-card {
    background-color: #e7e7e7;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.41rem;
    font-family: SourceHanSansCN;
    font-weight: 600;
    color: #171717;
    line-height: 1rem;
  }
  .Cafele-productdetail .main-contain .title-cardbox .title-card.checked {
    background-color: #fff;
  }
  .Cafele-productdetail .main-contain .product-desc {
    width: 100%;
    margin: 0 auto;
    margin-top: 0rem;
    padding: 0 1.54rem;
    box-sizing: border-box;
    background-color: #fff;
    margin-bottom: 3.44rem;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item {
    display: block;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item * {
    box-sizing: border-box;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item h1.title {
    font-size: 1.23rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #171717;
    line-height: 1;
    padding-top: 2.3rem;
    max-height: inherit;
    text-align: center;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item .text {
    margin-top: 1.1rem;
    width: 100%;
    font-size: 0.56rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #333333;
    line-height: 1.08rem;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item.overview {
    padding: 0;
    border: none;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item.parameter {
    padding-top: 0rem;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item.parameter .param-list {
    margin-top: 1.1rem;
    width: 100%;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item.parameter .param-list .param-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 0.65rem 0 0.65rem 0.2rem;
    display: flex;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item.parameter .param-list .param-item .param-name {
    font-size: 0.56rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #333333;
    line-height: 1.08rem;
    min-width: 4rem;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item.parameter .param-list .param-item .param-value {
    font-size: 0.56rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #333333;
    line-height: 1.08rem;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item.picture {
    margin-top: 1.97rem;
    padding-bottom: 1.16rem;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item.picture .picture-list {
    width: 100%;
  }
  .Cafele-productdetail .main-contain .product-desc .desc-item.picture .picture-list p {
    margin-bottom: 0.26rem;
  }
  .Cafele-productdetail .main-contain .recommend {
    width: 12.8rem;
    margin: 0 auto;
    margin-top: 0.95rem;
  }
  .Cafele-productdetail .main-contain .recommend h1.title {
    font-size: 0.32rem;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: black;
    line-height: 0.32rem;
    margin-bottom: 0.61rem;
    text-align: center;
  }
  .Cafele-productdetail .main-contain .recommend .swiper-container {
    padding-bottom: 2.25rem;
    width: 100%;
  }
  .Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper {
    width: 100%;
  }
  .Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list a.recommend-item {
    display: block;
    width: 4rem;
    height: 4.8rem;
    padding: 0.75rem 0 0.77rem 0;
    box-sizing: border-box;
    text-align: center;
    background-color: #fff;
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list a.recommend-item .rec-pic {
    height: 2.46rem;
    width: auto;
  }
  .Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list a.recommend-item .rec-pic img {
    height: 100%;
    width: auto;
  }
  .Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list a.recommend-item .rec-name {
    font-size: 0.22rem;
    font-family: SourceHanSansCN;
    font-weight: 500;
    color: black;
    line-height: 0.22rem;
    margin-top: 0.62rem;
  }
  .Cafele-productdetail .main-contain .recommend .swiper-container .swiper-wrapper .swiper-slide .recommend-list a.recommend-item.rec-transi {
    opacity: 0;
    transform: translateY(30px);
  }
  .Cafele-productdetail .main-contain .recommend .swiper-container .swiper-pagination {
    bottom: 1.55rem;
  }
  .Cafele-productdetail .main-contain .recommend .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 0.11rem;
    height: 0.11rem;
    margin: 0 0.1rem;
  }
  .Cafele-productdetail .main-contain .recommend .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #393939;
  }
}

@font-face {
  font-family: "bt";
  src: url("../font/BrandonText-Regular.ttf") format("truetype");
}

@media screen and (max-width: 769px) {
  .phonehomeheader {
    opacity: 1;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    height: 2.61rem;
  }
  .phonehomeheader .defaultbox {
    padding-left: 1.5rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
  }
  .phonehomeheader .defaultbox .logo {
    width: 3.8rem;
    height: auto;
  }
  .phonehomeheader .defaultbox .toollist {
    display: flex;
    align-items: center;
  }
  .phonehomeheader .defaultbox .toollist li.language {
    width: 0.56rem;
    margin-right: 1rem;
  }
  .phonehomeheader .defaultbox .toollist li.search {
    margin-right: 1rem;
  }
  .phonehomeheader .defaultbox .toollist li.search .iconfont {
    font-size: 0.55rem;
    color: #fff;
  }
  .phonehomeheader .defaultbox .toollist li.side {
    width: 2.61rem;
    height: 2.61rem;
    background-color: #fff;
    position: relative;
  }
  .phonehomeheader .defaultbox .toollist li.side img {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 40%;
    height: auto;
  }
  .phonehomeheader .searchbox {
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-sizing: border-box;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0.28rem 0.52rem;
    transition: opacity 0.3s ease;
  }
  .phonehomeheader .searchbox .contain {
    width: 7.6rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-sizing: border-box;
    padding: 0 0.3rem;
    position: relative;
  }
  .phonehomeheader .searchbox .contain .iconfont {
    vertical-align: middle;
    font-size: 0.6rem;
    display: inline-block;
  }
  .phonehomeheader .searchbox .contain input {
    font-size: 0.45rem;
    padding: 0 1rem 0 0.2rem;
    box-sizing: border-box;
    border: none;
    outline: none;
    width: 90%;
    height: 1.2rem;
    margin: 0;
  }
  .phonehomeheader .searchbox .contain .close {
    font-size: 0.5rem;
    cursor: pointer;
  }
  .phonehomeheader .hide {
    opacity: 0;
    z-index: 0;
  }
  .phone-header {
    opacity: 1;
    box-sizing: border-box;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    height: 2.61rem;
    background-color: #fff;
  }
  .phone-header .defaultbox {
    padding-left: 1.5rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
  }
  .phone-header .defaultbox a {
    line-height: 1;
  }
  .phone-header .defaultbox .logo {
    width: 3.8rem;
    height: auto;
  }
  .phone-header .defaultbox .toollist {
    display: flex;
    align-items: center;
  }
  .phone-header .defaultbox .toollist li.language {
    width: 0.56rem;
    margin-right: 1rem;
    line-height: 1;
  }
  .phone-header .defaultbox .toollist li.search {
    margin-right: 1rem;
    line-height: 1;
  }
  .phone-header .defaultbox .toollist li.search .iconfont {
    font-size: 0.55rem;
    color: #1c1c1c;
  }
  .phone-header .defaultbox .toollist li.side {
    width: 2.61rem;
    height: 2.61rem;
    background-color: #ececec;
    position: relative;
  }
  .phone-header .defaultbox .toollist li.side img {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 40%;
    height: auto;
  }
  .phone-header .searchbox {
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-sizing: border-box;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0.28rem 0.52rem;
    transition: opacity 0.3s ease;
  }
  .phone-header .searchbox .contain {
    width: 7.6rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-sizing: border-box;
    padding: 0 0.3rem;
    position: relative;
  }
  .phone-header .searchbox .contain .iconfont {
    vertical-align: middle;
    font-size: 0.6rem;
    display: inline-block;
  }
  .phone-header .searchbox .contain input {
    font-size: 0.45rem;
    padding: 0 1rem 0 0.2rem;
    box-sizing: border-box;
    border: none;
    outline: none;
    width: 90%;
    height: 1.2rem;
    margin: 0;
  }
  .phone-header .searchbox .contain .close {
    font-size: 0.5rem;
    cursor: pointer;
  }
  .phone-header .hide {
    opacity: 0;
    z-index: 0;
  }
  .site-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -100;
    visibility: hidden;
  }
  .site-wrapper .site-header {
    padding-top: 0.5rem;
    transform: translate3d(100%, 0, 0);
    z-index: 10000 !important;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #525151;
    width: 70%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
  }
  .site-wrapper .site-header .site-top {
    box-sizing: border-box;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-wrapper .site-header .site-top .logo {
    width: 5.5rem;
  }
  .site-wrapper .site-header .site-top .close {
    position: absolute;
    font-size: 1.2rem;
    color: #fff;
    left: 0.45rem;
  }
  .site-wrapper .site-header .site-item {
    padding-left: 0.45rem;
    padding-right: 0.8rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }
  .site-wrapper .site-header .site-item a {
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site-wrapper .site-header .site-item a span {
    font-size: 0.7rem;
    color: #fff;
  }
  .site-wrapper .site-header .site-item a::after {
    content: "";
    display: block;
    border-top: 1px solid;
    border-right: 1px solid;
    border-color: #fff;
    transform: rotate(45deg);
    width: 0.3rem;
    height: 0.3rem;
  }
  .site-wrapper .site-header .site-item::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0.45rem;
    height: 1px;
    content: "";
    transform: scaleY(0.5);
    background-color: #222;
  }
  .site-wrapper .site-header .site-item:active {
    background: #333;
  }
  .site-wrapper .backdrop {
    background: rgba(0, 0, 0, 0);
    box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
    transition: background 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    z-index: 998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .site-wrapper.siteacitve {
    z-index: 999;
    visibility: inherit;
  }
  .site-wrapper.siteacitve .site-header {
    transform: translate3d(0, 0, 0);
  }
  .site-wrapper.siteacitve .backdrop {
    background: rgba(0, 0, 0, 0.4);
  }
  .region-box {
    position: fixed;
    top: -5vh;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .region-box.hidden {
    display: none;
  }
  .region-box .dialog-foot {
    width: 80%;
    background: #fff;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
  }
  .region-box .dialog-foot h1.foot-title {
    font-size: 0.8rem;
    line-height: 2.8rem;
    text-align: center;
    border-bottom: 1px solid #f0f1f2;
    color: #6c7073;
    font-weight: 600;
  }
  .region-box .dialog-foot .country-body {
    margin-bottom: 1rem;
    padding: 1.5rem 0;
  }
  .region-box .dialog-foot .country-body .section .title {
    font-size: 0.8rem;
    line-height: 1.2rem;
    margin-bottom: 0.4rem;
  }
  .region-box .dialog-foot .country-body .section .itemlist {
    display: flex;
    justify-content: space-around;
    padding: 0 1rem;
  }
  .region-box .dialog-foot .country-body .section .itemlist .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 2.4rem;
    box-sizing: border-box;
    margin-bottom: 0.4rem;
    padding: 0 0.8rem;
    border-radius: 2px;
    cursor: pointer;
    background-color: #f7f9fa;
  }
  .region-box .dialog-foot .country-body .section .itemlist .item span.desc {
    font-size: 0.6rem;
    color: #3b3e40;
    font-weight: 400;
  }
  .region-box .dialog-foot .icon-guanbi {
    position: absolute;
    right: 16px;
    top: 18px;
    font-size: 16px;
    cursor: pointer;
  }
  .pc {
    display: none;
  }
  .mb {
    display: block;
  }
  .phone-my-footer {
    margin-top: 0rem;
    display: flex;
    padding: 2.61rem 1.54rem 3.8rem 1.54rem;
    margin-bottom: 3.33rem;
    box-sizing: border-box;
    justify-content: space-between;
    background-color: #000000;
  }
  .phone-my-footer .text-left {
    width: 3rem;
  }
  .phone-my-footer .text-left a {
    display: block;
  }
  .phone-my-footer .text-left a img:hover {
    opacity: 0.8;
  }
  .phone-my-footer .text-right {
    width: 100%;
    margin-top: 0.04rem;
  }
  .phone-my-footer .text-right h1.toptitle {
    font-size: 1.28rem;
    font-family: SourceHanSansCN;
    color: #f6f6f6;
    line-height: 1.28rem;
    margin-top: 0.6rem;
  }
  .phone-my-footer .text-right h1.toptitle span.text-bold {
    font-weight: bold;
    font-family: SourceHanSansCN;
  }
  .phone-my-footer .text-right .main {
    display: flex;
    justify-content: space-between;
    margin-top: 1.95rem;
  }
  .phone-my-footer .text-right .main .shop-link {
    width: 100%;
  }
  .phone-my-footer .text-right .main .shop-link .link-box {
    box-sizing: border-box;
    width: 100%;
  }
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox {
    padding: 0 1rem;
    box-sizing: border-box;
    display: block;
    position: relative;
    background-color: #f6f6f6;
  }
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox .link-item {
    display: flex;
    align-items: center;
    height: 2.3rem;
    border-bottom: 1px solid #c7c7c7;
  }
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox .link-item .tianmao,
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox .link-item .jd {
    width: 0.95rem;
    height: auto;
    margin-right: 1.23rem;
  }
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox .link-item .ebay {
    width: 1.2rem;
    margin-right: 0.98rem;
    height: auto;
  }
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox .link-item .amazon {
    width: 1.1rem;
    margin-right: 1.1rem;
    margin-top: 0.1rem;
    height: auto;
  }
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox .link-item .ail {
    width: 1.02rem;
    margin-right: 1.18rem;
    margin-top: 0.12rem;
    height: auto;
  }
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox .link-item .typename {
    margin-right: 0;
    font-size: 0.72rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #777777;
    line-height: 1.23rem;
  }
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox .link-item .down-arrow {
    width: 3rem;
    height: 100%;
    position: absolute;
    top: auto;
    display: flex;
    align-items: center;
    right: 0rem;
  }
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox .link-item .down-arrow img {
    margin-right: 1rem;
    width: 0.56rem;
    height: auto;
    transition: transform 0.5s ease;
    transform: rotate(180deg);
  }
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox:hover .link-item .typename {
    color: #222222;
  }
  .phone-my-footer .text-right .main .shop-link .link-box .link-itembox:last-child .link-item {
    border-bottom: none;
  }
  .phone-my-footer .text-right .main .shop-link .link-box .foldbox {
    display: block;
    transform: rotateX(0deg);
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
  }
  .phone-my-footer .text-right .main .shop-link .link-box.shop-active .link-itembox .link-item .down-arrow img {
    transform: rotate(270deg);
  }
  .phone-my-footer .text-right .main .shop-link .link-box.shop-active .foldbox {
    height: 9.2rem;
  }
  .phone-my-footer .text-right .version {
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    margin-top: 1.92rem;
  }
  .phone-my-footer .text-right .version .version-text {
    font-size: 0.41rem;
    font-family: bt;
    font-weight: 400;
    color: #464646;
    line-height: 0.92rem;
    margin-top: 2rem;
  }
  .phone-my-footer .text-right .version .link-list a {
    margin-right: 1.36rem;
    vertical-align: middle;
  }
  .phone-my-footer .text-right .version .link-list a .iconfont {
    color: #464646;
    font-size: 0.8rem;
  }
  .phone-my-footer .text-right .version .link-list a .iconfont:hover {
    color: #464646;
  }
  .phone-my-footer .text-right .version .link-list .qrcode {
    position: relative;
  }
  .phone-my-footer .text-right .version .link-list .qrcode .qrcodeimg {
    width: 5rem;
    height: 5rem;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -100%);
    top: -1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .phone-my-footer .text-right .version .link-list .qrcode .qrcodeimg::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #ededed;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 5.5px) rotate(45deg);
  }
  .phone-my-footer .text-right .version .link-list .qrcode.active .qrcodeimg {
    opacity: 1;
  }
  .tabbar {
    background-color: #fff;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    height: 3.33rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-sizing: border-box;
    z-index: 999;
  }
  .tabbar .tabbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.55;
  }
  .tabbar .tabbar-item img {
    height: 1.1rem;
    width: auto;
  }
  .tabbar .tabbar-item span {
    margin-top: 0.31rem;
    font-size: 0.46rem;
    font-family: SourceHanSansCN;
    font-weight: 500;
    color: black;
  }
  .tabbar .tabbar-item.checked {
    opacity: 1;
  }
}

@media screen and (max-width: 769px) {
  .Cafele-search {
    background-color: #fcfcfc;
    min-width: 320px;
  }
  .Cafele-search .pc {
    display: none;
  }
  .Cafele-search .mb {
    display: block;
  }
  .Cafele-search .search-contain {
    padding: 0.45rem 4rem;
    box-sizing: border-box;
    background-color: #000;
  }
  .Cafele-search .search-contain .search {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 0.4rem;
    height: 1.25rem;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 0;
    position: relative;
  }
  .Cafele-search .search-contain .search li {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .Cafele-search .search-contain .search i {
    font-size: 0.4rem;
    margin-right: 0.4rem;
    line-height: 0.4rem;
  }
  .Cafele-search .search-contain .search li.inputbox {
    width: 70%;
  }
  .Cafele-search .search-contain .search input {
    height: 100%;
    vertical-align: middle;
    border: none;
    font-size: 0.42rem;
  }
  .Cafele-search .search-contain .search input:focus {
    outline: none;
  }
  .Cafele-search .data-contain {
    height: auto;
    width: 100%;
    min-height: 75vh;
    margin: 0 auto;
    padding: 2rem 0;
    background-color: #fff;
    box-sizing: border-box;
  }
  .Cafele-search .data-contain .data-cate {
    display: flex;
    padding-left: 1.6rem;
  }
  .Cafele-search .data-contain .data-cate .data-cateitem {
    cursor: pointer;
    font-size: 0.52rem;
    font-family: "Microsoft YaHei";
    color: #666666;
    margin-right: 0.8rem;
  }
  .Cafele-search .data-contain .data-cate .data-cateitem:hover {
    opacity: 0.75;
  }
  .Cafele-search .data-contain .data-cate .data-cateitem .text {
    padding-bottom: 0.1rem;
  }
  .Cafele-search .data-contain .data-cate .data-cateitem.selected .text {
    border-bottom: 2px solid #f7a83f;
  }
  .Cafele-search .data-contain .data-value {
    padding-left: 0.65rem;
    margin-top: 1rem;
  }
  .Cafele-search .data-contain .data-value .data-valueitem {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  .Cafele-search .data-contain .data-value .data-valueitem .item-pic {
    width: 4.2rem;
    height: 3.9rem;
    text-align: center;
    display: block;
    font-family: "Microsoft YaHei";
    line-height: 3.9rem;
    font-size: 0;
  }
  .Cafele-search .data-contain .data-value .data-valueitem .item-pic img {
    max-width: 3.45rem;
    max-height: 3.2rem;
    height: auto;
    width: auto;
    vertical-align: middle;
  }
  .Cafele-search .data-contain .data-value .data-valueitem .item-text h1.item-title {
    font-size: 0.48rem;
    color: #000;
    font-weight: 500;
  }
  .Cafele-search .data-contain .data-value .data-valueitem .item-text .item-desc {
    width: 8.2rem;
    margin-top: 0.4rem;
    font-size: 0.36rem;
    color: #666666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .Cafele-search .data-contain .data-value .data-valueitem .item-text a.link-btn {
    display: block;
    color: #ef9926;
    font-size: 0.36rem;
    line-height: 1;
    margin-top: 0.25rem;
  }
  .Cafele-search .data-contain .data-value .data-valueitem .item-text a.link-btn:hover {
    opacity: 0.75;
  }
}
