




























































































































































































































/* 动画时间 */
.collapse-transition[data-v-7aae606a] {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
}
/* 右到左动画 */
.collapse-transition-right-left[data-v-7aae606a] {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    right: 0;
    position: absolute;
}

@font-face {
    font-family: 'Din';
    src: url(../fonts/din.799221d7.otf);
}
* {
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    /* touch-action: none; */
    /* user-select: none; 禁止用户选中 */
}

/* 字体 */
html,
body {
    width: 100%;
    background: #fff;
    /* 解决苹果safari 不支持字体的显示 */
    font-family: "PT Sans", "Century Gothic", Verdana, Helvetica, "PingFangSC-Regular", "Microsoft YaHei", "微软雅黑", sans-serif;
}
img {
    display: block;
    font-size: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    cursor: default;
    color: #000;
}
input,
textarea {
    font-family: "PingFangSC-Regular", "Microsoft YaHei", "微软雅黑", sans-serif;
    outline: none;
    border: none;
    display: block;
}
iframe {
    display: block;
}
.el-message {
    font-size: 20px;
}
@-webkit-keyframes Fade-IN {
from {
        opacity: 0;
}
to {
        opacity: 1;
}
}
@keyframes Fade-IN {
from {
        opacity: 0;
}
to {
        opacity: 1;
}
}
@-webkit-keyframes Fade-IN-bt {
from {
        opacity: 0;
        transform: translateY(30%);
}
to {
        opacity: 1;
        transform: translateY(0);
}
}
@keyframes Fade-IN-bt {
from {
        opacity: 0;
        transform: translateY(30%);
}
to {
        opacity: 1;
        transform: translateY(0);
}
}
.Fade-IN {
    -webkit-animation: Fade-IN 1s;
            animation: Fade-IN 1s;
}
.Fade-IN-bt {
    -webkit-animation: Fade-IN-bt 1s;
            animation: Fade-IN-bt 1s;
}

