/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
    font-family: 'iconfont';  /* Project id 5119382 */
    src: url('fonts/font_w21ye1rgovr.woff2?t=1769681450974') format('woff2'),
    url('fonts/font_w21ye1rgovr.woff?t=1769681450974') format('woff'),
    url('fonts/font_w21ye1rgovr.ttf?t=1769681450974') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    moz-box-sizing: border-box; /*Firefox3.5+*/
    -webkit-box-sizing: border-box; /*Safari3.2+*/
    -o-box-sizing: border-box; /*Opera9.6*/
    -ms-box-sizing: border-box; /*IE8*/
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
body {
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body, html {
    /* 禁止长按选中文本 (输入框除外) */
    -webkit-user-select: none;
    user-select: none;

    /* 移除点击时的半透明遮罩/高亮 */
    -webkit-tap-highlight-color: transparent;

    /* 针对 iOS/新版 Android，禁止手动缩放 */
    -webkit-text-size-adjust: 100%;

    /* 使用系统默认字体，这会让字看起来更像原生 */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
div,p,a,span,section{
    moz-box-sizing: border-box; /*Firefox3.5+*/
    -webkit-box-sizing: border-box; /*Safari3.2+*/
    -o-box-sizing: border-box; /*Opera9.6*/
    -ms-box-sizing: border-box; /*IE8*/
    box-sizing: border-box;
}

.hui-header {
    background: #FFF;
    line-height: 44px;
    text-align: center;
    position: fixed;
    margin-bottom: 3px;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
}
.hui-header img {
    margin: auto;
    height: 38px;
    border: none;
}

.hui-header .header-right {
    position: relative;
    right: 15px;
    top: 0;
    display: block;
    font-size: 14px !important;
    color: #333 !important;
}
.hui-header #hui-back {
    display: flex;
    flex-wrap: initial;
    flex-direction: initial;
    justify-content: center;
    align-items: center;
    height: 32px;
    width: 32px;
    background: rgba(26, 27, 36, .3);
    color: #CCC !important;
    position: absolute;
    top:25px;
    left:15px;
    border-radius: 4px;
    padding: 0;
}
.hui-header #hui-back i {
    margin: auto;
    line-height: 1;
    display: block;
    font-size: 20px;
    color: #FFF;
}
.hui-header h1 {
    color: #333;
}
.clear {
    clear: both;
}
.btn{
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
    background: #00F0FF;
    border: none;
    border-radius: 100px;
    color: #000;
    cursor: pointer;
    transition: opacity 0.3s;
}
/*鼠标放上按钮效果*/
.btn:hover{

}
/*按钮失效样式*/
.btn-invalid {
    background-color: #00E5FF;
    opacity: 0.3;              /* 整体 30% 透明度 */
    color: rgba(0, 0, 0, 0.5); /* 文字也半透明 */
    cursor: not-allowed;
}


.security-info {
    width: 100%;
    margin: auto;
    background: #FFF;
}
.security-info a {
    display: block;
    width: 33%;
    float: left;
    padding-top: 15px;
    padding-bottom: 15px;
}
.security-info a p {
    float: left;
    height: 40px;
}
.security-info a p:first-child {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-right: 5px;
}
.security-info a p:first-child img {
    width: 27px;
    height: 27px;
}
.security-info a p:last-child {
    width: 60%;
    font-size: 13px;
    line-height: 20px;
    color: #bcc0c3;
}
