@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* html body {
    overflow: visible;
}

* html iframe,
* html frame {
    overflow: auto;
}

* html frameset {
    overflow: hidden;
}

html,
body {
    overflow-x: hidden;
}

body {
    color: #333;
    font-family: '微软雅黑';
    font-size: 14px;
    background-color: #fff;
}

body,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
table,
td,
img,
div,
tr {
    margin: 0;
    padding: 0;
}

button {
    all: unset;
    display: block;
}

input,
select {
    font-size: 12px;
    vertical-align: middle;
    outline: none;
}

textarea,
input {
    word-wrap: break-word;
    word-break: break-all;
    padding: 0px;
    outline: none;
}

li {
    list-style-type: none;
}

img {
    width: 100%;
    border: 0 none;
    vertical-align: bottom;
}

a {
    color: #4f4f4f;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
}

a, a:hover, a:active, a:visited, a:link, a:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: none;
    text-decoration: none;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

div:focus {
    outline: none;
}

.pointer {
    cursor: pointer;
}

.cf-noborder {
    border: 0 none;
}

.cf-nopadding {
    padding: 0;
}

.t-l {
    text-align: left;
}

.t-c {
    text-align: center;
}

.t-r {
    text-align: right;
}

.cf-break {
    word-break: break-all;
    word-wrap: break-word;
}

.cf-nobreak {
    word-break: keep-all;
    word-wrap: normal;
}

.col-left {
    float: left;
}

.col-right {
    float: right;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.wrapper {
    clear: both;
    overflow: hidden;
}

.o-hidden {
    overflow: hidden;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
}

.inlineb {
    display: inline-block;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}

.clearfix:after {
    clear: both;
}

.wrap {
    width: 100%;
    min-width: 1200px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: 540px
    }
}

@media (min-width: 768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media (min-width: 992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1230px;
    }
}

@media (min-width: 1500px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1400px;
    }
}

.alert-modal {
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.alert-modal.active {
    opacity: 1;
    visibility: initial;
}

.alert-modal .box {
    width: 70%;
    transform: scale(0);
    transition: all .3s;
    position: relative;
}

.alert-modal.active .box {
    transform: scale(1);
}

.alert-modal .box .box-content {
    position: relative;
}

.alert-modal .box .content-body {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 26px;
    font-size: 16px;
    padding-top: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: #6a5f9e;
}


.alert-modal .box .box-close {
    position: absolute;
    top: -15px;
    right: 0;
}

.alert-modal .box .box-close img {
    width: 30px;
}

.fadeInUp {
    -webkit-animation: fadeInUp .4s;
    animation: fadeInUp .4s;
}

.fallIn {
    -webkit-animation: fallIn 1s;
    animation: fallIn 1s;
}

@keyframes fadeInUp {
    0% {
        -webkit-transform: translate3d(0, 300%, 0);
        -webkit-transform: translate3d(0, 300%, 0);
        transform: translate3d(0, 300%, 0);
        transform: translate3d(0, 300%, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        -webkit-transform: translate3d(0, 300%, 0);
    }

    100% {
        -webkit-transform: none;
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fallIn {
    0% {
        top: 20%;
        opacity: 1;
    }

    100% {
        top: 30%;
        opacity: 0;
    }
}

@-webkit-keyframes fallIn {
    0% {
        top: 20%;
        opacity: 1;
    }

    100% {
        top: 30%;
        opacity: 0;
    }
}