/* 浏览器默认样式清除 */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-family: "微软雅黑", "宋体", "华文细黑", arial, sans-serif;
    vertical-align: baseline;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
strong,
q,
blockquote,
hr,
address,
code,
pre,
b,
i,
sub,
span,
sup,
em {
    font-style: normal;
    line-height: 1;
}

body {
    line-height: 1;
    color: #333;
    font-size: 0.14rem;
    background: rgb(255, 255, 255);
    text-decoration: none;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

:focus {
    outline: 1;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
    display: block;
}

nav ul {
    list-style: none;
}

li {
    list-style: none;
}

ul {
    margin-bottom: 0;
    list-style-type: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

a:hover,
a:visited,
a:active,
a:link {
    text-decoration: none
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 0.01rem dotted #000;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 0.01rem;
    border: 0;
    border-top: 0.01rem solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

img {
    vertical-align: middle;
    image-rendering: -webkit-optimize-contrast;
    object-fit: cover;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

.clearfix {
    zoom: 1
}

a {
    color: #333;
}

button:focus,
input:focus {
    outline: none;
}


/*  */


/*  */


/*  */


/* 全局 */

.fl {
    float: left
}

.fr {
    float: right
}

.disp {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.align {
    align-items: center;
}

.cl {
    clear: both;
}


/*
.left {
    float: left;
}

.right {
    float: right;
} */

.center {
    text-align: center;
}

.wid1 {
    width: 10%;
}

.wid2 {
    width: 20%;
}

.wid3 {
    width: 30%;
}

.wid4 {
    width: 40%;
}

.wid5 {
    width: 50% !important;
}

.wid6 {
    width: 60%;
}

.wid7 {
    width: 70%;
}

.wid8 {
    width: 80%;
}

.wid9 {
    width: 90%;
}

.wid10 {
    width: 100%;
}

iframe {
    width: 480px;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    box-shadow: 0 0 2px 0px #b9b9b9;
}

::-webkit-scrollbar {
    display: none
}

.login-wrapper {
    display: flex;
    justify-content: center;
    min-height: 100% !important;
    background: linear-gradient(138deg, #4e51eb, #06194c);
    overflow: hidden;
    width: 100%;
    height: 100px;
    position: fixed;
}

.login-wrapper .circle-wrapper {
}

.login-wrapper .circle-wrapper img {
    position: absolute;
    z-index: 1;
}

.login-wrapper .circle-wrapper img.circle-01 {
    left: 0;
    top: 50%;
    margin-top: -181px;
    -webkit-animation: circle01 2.5s ease-in-out infinite;
    animation: circle01 2.5s ease-in-out infinite;
}

.login-wrapper .circle-wrapper img.circle-02 {
    left: 50%;
    top: 45px;
    margin-left: -734px;
}

.login-wrapper .circle-wrapper img.circle-03 {
    right: 0;
    bottom: -5px;
    -webkit-animation: circle03 2.5s ease-in-out infinite;
    animation: circle03 2.5s ease-in-out infinite;
}

@-webkit-keyframes circle01 {
    0% {
        left: 0
    }
    50% {
        left: -10px
    }
    to {
        left: 0
    }
}

@keyframes circle01 {
    0% {
        left: 0
    }
    50% {
        left: -10px
    }
    to {
        left: 0
    }
}

@-webkit-keyframes circle03 {
    0% {
        right: 0;
        bottom: -5px;
        transform: scale(1)
    }
    50% {
        right: -20px;
        bottom: -20px;
        transform: scale(1.1)
    }
    to {
        right: 0;
        bottom: -5px;
        transform: scale(1)
    }
}

@keyframes circle03 {
    0% {
        right: 0;
        bottom: -5px;
        transform: scale(1)
    }
    50% {
        right: -20px;
        bottom: -20px;
        transform: scale(1.1)
    }
    to {
        right: 0;
        bottom: -5px;
        transform: scale(1)
    }
}
