/*
    公用样式
*/
* {
    outline: none;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*::before,
*::after {
    box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: disc;
}

html,
body {
    height: 100%;
}

/* 防止滚动条突然消失造成的抖动 */
body {
    overflow-y: scroll;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f0f7ff;
}

html,
button,
input,
select,
textarea {
    -webkit-font-smoothing: antialiased;
}

ul,
li {
    list-style: none;
}

em {
    font-style: normal;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

input::-ms-clear,
input::-ms-reveal {
    display: none;
}

a {
    color: #333;
    background: transparent;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: color .1s ease;
}

a:hover {
    text-decoration: none;
    color: #ff733e;
}

a:active {
    opacity: 1;
    color: #ff733e;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

.base-wrap {
    position: relative;
    min-width: 1200px;
    min-height: 100%;
    overflow-y: auto;
    padding-top: 100px;
}

.base-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 68px;
    box-shadow: 0 3px 20px 0 rgba(28, 91, 255, .12);
    z-index: 99;
    background: linear-gradient(180deg, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, .9) 100%);
    border-radius: 1px;
    backdrop-filter: blur(10px);
}

.base-header .header-content {
    width: 1184px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.base-header .logo {
    position: absolute;
    left: -106px;
    top: 50%;
    width: 108px;
    transform: translate(0, -50%);
    cursor: pointer;
}

.footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 104px;
    background: #141a25;
    text-align: center;
    padding: 32px 0;
    box-sizing: border-box;
}

.footer .text {
    width: 100%;
    font-size: 14px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
    line-height: 14px;
    margin-bottom: 15px;
}

.content-wrapper {
    width: 1200px;
    min-height: calc(-95%);
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 127px;
}

.body-right {
    height: auto;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 3px 20px 0 rgba(28, 91, 255, .06);
}
