/*
    Created on : 2025/05/30, 11:52:22
    Author     : xianxm
    Description: AI智能平台-登录页样式
*/

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 346px;
    min-height: -webkit-fill-available; /* Safari特定 */
    min-height: 100vh;
    padding: 0!important;
    font-family: PingFangSC, PingFang SC, Microsoft YaHei, sans-serif;
    background-color: #ffffff;
}

ul,
li {
    list-style: none;
    margin-bottom: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}

a,
a:hover,
a:focus,
a:active,
a:visited{
    text-decoration: none;
    color: #4D6BFE;
}

input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

form {
    display: contents;
}

img {
    border: 0;
    border-style: none;
    vertical-align: middle;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-width: 100%;
    height: auto;
    box-shadow: none;
}

::placeholder,
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
    color: #C0C0C0;
    opacity: 1; /* 确保 Firefox 下不降低透明度 */
}

.btn{
    line-height: 12px;
    font-size: 12px;
    padding: 9.5px 1.4375rem;
    border-radius: 5px;
    white-space: nowrap;
}

.btn.focus, 
.btn:focus {
    box-shadow: none;
}

.btn-sm{
    line-height: 11px;
    font-size: 12px;
    padding: 7px 0.75rem;
    border-radius: 4px;
}

.btn-md{
    line-height: 13px;
    font-size: 13px;
    padding: 12px 2.15rem;
}

.btn-lg{
    line-height: 14px;
    font-size: 14px;
    padding: 14.5px 2.75rem;
}

.btn-group>.btn-group:not(:first-child)>.btn, 
.btn-group>.btn:not(:first-child) {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.btn-group>.btn-group:not(:last-child)>.btn, 
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.btn-primary {
    background: linear-gradient( 144deg, #584AFF 0%, #24A7FD 100%);
    border-color: transparent;
    transition: background 0.3s ease;
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    border-color: transparent;
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, 
.btn-primary:not(:disabled):not(.disabled):active:focus, 
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    border-color: transparent;
    box-shadow: none;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.focus, 
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle{
    background: #3B3AEA;
    background: linear-gradient( 144deg, #3B3AEA 0%, #3B3AEA 100%);
    transition: background 0.3s ease;
}

.text-link{
    color: #6080FF;
}

/* modal style */

.modal-header{
    position: relative;
}

.modal-header .modal-title {
    margin-left: 0px;
    padding-left: 63px;
    padding-right: 63px;
}

.modal-header .close{
    position: absolute;
    top: 0;
    right: 0;
}

.modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    /* 使用 transform 实现居中 */
    transform: translate(-50%, -50%);
    margin: 0; /* 去除默认外边距 */
}

.modal.show .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.modal.fade .modal-dialog{
    transform: translate(-50%, -50%);
}

@media (min-width: 768px) and (max-width: 991px){
    .modal-dialog {
        max-width: 600px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .modal-dialog {
        max-width: 700px;
    }
}
@media (min-width: 1200px){
   .modal-dialog {
        max-width: 800px;
    }
}

.modal-content{
    width: auto;
    min-width: 260px;
    max-height: -webkit-fill-available;
    max-height: calc(100vh - 3.5rem);
    border-radius: 12px;
}

.modal-header{
    padding: 0;
    border-bottom: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.modal-title {
    flex: 1;
    padding: 19px 0px 19px 0px;
    margin-left: 62px;
    line-height: 16px;
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    text-align: center;
}

.modal-header .close{
    padding: 20.5px 25px;
    margin: 0;
    font-size: 0;
}

.modal-header .close img{
    width: 13px;
    height: 13px;
}

.modal-body{
    padding: 20px 1.5625rem 20px 1.875rem;
    font-size: 14px;
    text-align: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-footer{
    display: block;
    padding: 20px .625rem 20px;
    text-align: center;
    border-top: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.modal-footer>* {
    margin: 0.25rem 0.75rem;
}

.modal-footer .btn{
    padding: 12px 3rem;
}

.modal-footer .btn-secondary,
.modal-footer .btn-secondary:hover,
.modal-footer .btn-secondary:active,
.modal-footer .btn-secondary:focus,
.modal-footer .btn-secondary:not(:disabled):not(.disabled).active, 
.modal-footer .btn-secondary:not(:disabled):not(.disabled):active
{
    color: #333333;
    background-color: #FFFFFF;
    border-color: #DFDFDF;
    box-shadow: none;
}

/* 加载中动画 */

.modal-loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* 透明遮罩层 */
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1050; /* 确保在其他元素之上 */
}

@-moz-keyframes dots-loader {
	0% {-moz-box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	8.33% {-moz-box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	16.67% {-moz-box-shadow:#f86 14px 14px 0 7px,#fc6 14px 14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 14px 14px 0 7px,#fc6 14px 14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	25% {-moz-box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	33.33% {-moz-box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae -14px -14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae -14px -14px 0 7px;}
	41.67% {-moz-box-shadow:#f86 14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	50% {-moz-box-shadow:#f86 14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	58.33% {-moz-box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	66.67% {-moz-box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px -14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px -14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	75% {-moz-box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	83.33% {-moz-box-shadow:#f86 14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae 14px 14px 0 7px;box-shadow:#f86 14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae 14px 14px 0 7px;}
	91.67% {-moz-box-shadow:#f86 -14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	100% {-moz-box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
}
@-webkit-keyframes dots-loader {
	0% {-webkit-box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	8.33% {-webkit-box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	16.67% {-webkit-box-shadow:#f86 14px 14px 0 7px,#fc6 14px 14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 14px 14px 0 7px,#fc6 14px 14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	25% {-webkit-box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	33.33% {-webkit-box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae -14px -14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae -14px -14px 0 7px;}
	41.67% {-webkit-box-shadow:#f86 14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	50% {-webkit-box-shadow:#f86 14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	58.33% {-webkit-box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	66.67% {-webkit-box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px -14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px -14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	75% {-webkit-box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	83.33% {-webkit-box-shadow:#f86 14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae 14px 14px 0 7px;box-shadow:#f86 14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae 14px 14px 0 7px;}
	91.67% {-webkit-box-shadow:#f86 -14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	100% {-webkit-box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
}
@keyframes dots-loader {
	0% {-moz-box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;-webkit-box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	8.33% {-moz-box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;-webkit-box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	16.67% {-moz-box-shadow:#f86 14px 14px 0 7px,#fc6 14px 14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;-webkit-box-shadow:#f86 14px 14px 0 7px,#fc6 14px 14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 14px 14px 0 7px,#fc6 14px 14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	25% {-moz-box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px 14px 0 7px,#4ae -14px 14px 0 7px;-webkit-box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	33.33% {-moz-box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae -14px -14px 0 7px;-webkit-box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae -14px -14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae -14px -14px 0 7px;}
	41.67% {-moz-box-shadow:#f86 14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;-webkit-box-shadow:#f86 14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 14px -14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	50% {-moz-box-shadow:#f86 14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;-webkit-box-shadow:#f86 14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	58.33% {-moz-box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;-webkit-box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 -14px 14px 0 7px,#fc6 -14px 14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	66.67% {-moz-box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px -14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;-webkit-box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px -14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 -14px -14px 0 7px,#6d7 -14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	75% {-moz-box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px -14px 0 7px,#4ae 14px -14px 0 7px;-webkit-box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px -14px 0 7px,#4ae 14px -14px 0 7px;box-shadow:#f86 14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px -14px 0 7px,#4ae 14px -14px 0 7px;}
	83.33% {-moz-box-shadow:#f86 14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae 14px 14px 0 7px;-webkit-box-shadow:#f86 14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae 14px 14px 0 7px;box-shadow:#f86 14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae 14px 14px 0 7px;}
	91.67% {-moz-box-shadow:#f86 -14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;-webkit-box-shadow:#f86 -14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px 14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
	100% {-moz-box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;-webkit-box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;box-shadow:#f86 -14px -14px 0 7px,#fc6 14px -14px 0 7px,#6d7 14px 14px 0 7px,#4ae -14px 14px 0 7px;}
}
/*:not(:required) hides this rule from IE9 and below */
.dots-loader:not(:required) {
    overflow: hidden;
    position: relative;
    text-indent: -9999px;
    display: inline-block;
    width: 7px;
    height: 7px;
    background: transparent;
    border-radius: 100%;
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -moz-animation: dots-loader 5s infinite ease-in-out;
    -webkit-animation: dots-loader 5s infinite ease-in-out;
    animation: dots-loader 5s infinite ease-in-out;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.modal .form-toptips{
    margin-bottom: 16px;
    line-height: 18px;
    font-size: 13px;
    color: #A6A6A6;
    text-align: left;
}

.modal .form-merinfo{
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    margin-bottom: 18px;
    text-align: left;
}

.modal .form-merinfo__hd{
    width: 40px;
    height: 40px;
    margin-right: .625rem;
    border-radius: 50%;
}

.modal .form-merinfo__hd img{
    width: 100%;
}

.modal .form-merinfo__bd{
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1; 
    min-width: 0;
    font-size: 0;
}

.modal .form-merinfo__bd p{
    margin-bottom: 5px;
    line-height: 15px;
    font-weight: 600;
    font-size: 15px;
    color: #333333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.modal .form-merinfo__bd span{
    line-height: 14px;
    font-size: 10px;
    color: #86909C;
}

/* 弹窗：通知 */

.modal-msg{
    z-index: 1052;
}

.modal-msg + .modal-backdrop{
    z-index: 1051;
}

.modal-msg .modal-body{
    padding-bottom: 0;
}

.modal-msg .msgModal-content{
    padding-top: 10px;
    padding-bottom: 5px;
}

.modal-msg .msgModal-icon{
    text-align: center;
}

.modal-msg .msgModal-icon img{
    width: 47px;
}

.modal-msg .msgModal-title h4{
    margin-top: 22px;
    margin-bottom: 0;
    line-height: 23px;
    font-weight: 500;
    font-size: 17px;
    color: #333333;
}

@media screen and (max-width: 576px) {
    .modal-msg .msgModal-icon img{
        width: 4.75rem;
    }
    .modal-msg .msgModal-title h4{
        margin-top: 2.75rem;
        line-height: 2rem;
        font-size: 1.8rem;
    }
}

/* 顶部导航栏 */

@media (max-width: 1199px) {
.navbar-collapse.show, 
.navbar-collapse.collapsing {
    position: absolute;
    top: 62px;
    width: 100%;
    padding: 24px 1rem 5px;
    background-color: #f6f6f6;
    z-index: 9999;
}

.navbar-collapse.show .nav-item,
.navbar-collapse.collapsing .nav-item{
    position: relative;
    padding: 10px 1.25rem 10px 2.5rem;
    margin-bottom: 8px;
    line-height: 19px;
    font-size: 14px;
    color: #373737;
    border-radius: 7px;
    background-color: #ffffff;
}

.navbar-collapse.show .nav-item::after,
.navbar-collapse.collapsing .nav-item::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 1.875rem;
    translate: 0 -50%;
    width: 8px;
    height: 14px;
    background-image: url(../images/icon_arrow_right@2x.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.navbar-light .navbar-collapse.show .navbar-nav .nav-link,
.navbar-light .navbar-collapse.collapsing .navbar-nav .nav-link{
    padding-left: 0;
    padding-right: 0;
}
}


.navbar {
    padding: 0;
    background-color: #ffffff;
    box-shadow: 0px 2px 0px 0px rgba(233,233,233,0.5);
}

.navbar.navbar-login{
    margin-left: 0;
}

.cusweb-brand {
    padding: 13px 2.75rem 14px 1.625rem;
    margin: 0;
    font-size: 0;
}

.cusweb-brand img {
    height: 27px;
}

.navbar-light .navbar-nav .nav-link {
    padding: 1.45rem 1.875rem 1.425rem;
    line-height: 23px;
    font-weight: 400;
    font-size: 17px;
    color: #333333;
    white-space: nowrap;
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:active,
.navbar-light .navbar-nav .nav-link.active {
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar-light .cusweb-navbar-right .navbar-nav .nav-link{
    font-size: 13px;
    cursor: pointer;
}

.navbar-light .navbar-nav .nav-link.active {
    font-weight: bold;
    color: #4D6BFE;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:active{
    color: #4D6BFE;
}

.cusweb-navbar-right{
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}

.navbar-light .navbar-toggler{
    border: none;
    margin-right: 0.875rem;
    vertical-align: -4px;
}

.navbar-light .chatweb-nav-head .nav-link{
    font-size: 0;
}

.chatweb-nav-head img{
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: .3125rem;
    border-radius: 19px;
    vertical-align: middle;
}

.chatweb-nav-head label{
    max-width: 86px;
    display: inline-block;
    margin-bottom: 0;
    line-height: 18px;
    font-size: 13px;
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: middle;
    cursor: pointer;
}

.chatweb-nav-head .nav-link:hover label{
    color: #4D6BFE;
}

.chatweb-nav-head .dropdown-toggle::after {
    display: inline-block;
    width: 9px;
    height: 5px;
    margin-left: .5rem;
    content: "";
    border: none;
    vertical-align: middle;
    background-image: url(../images/icon_navbar_arrow_down@2x.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.chatweb-nav-head .dropdown-menu {
    position: absolute;
    min-width: 100px;
    padding: 5px .5625rem;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    box-shadow: 3px 6 15px 0px rgba(230,230,230,0.5);
    border-radius: 5px;
    border: 1px solid #F8F8F8;
}

.chatweb-nav-head .dropdown-item{
    padding: 6px .5625rem 6px .6875rem;
    font-size: 0;
    text-align: center;
    cursor: pointer;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #F8F8F8;
}


@media (max-width: 576px) {
    .navbar-collapse.show, .navbar-collapse.collapsing {
        top: 60px;
    }
    .navbar-brand.cusweb-brand{
        width: 46.9%;
    }
    .btn-onlineService{
        font-size: 0;
    }
    .btn-onlineService i{
        margin-right: 0;
    }
}

/* 有背景的提示、普通提示 */

.bgtips{
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    -moz-box-align: flex-start;
    -webkit-box-align: flex-start;
    justify-content: center;
    padding: 10px .625rem 10px 1rem;
    background-color: #F8FAFF;
    border-radius: 4px;
    text-align: left;
}

.bgtips-title{
    width: 15px;
    height: 21px;
    padding-top: 2px;
    margin-right: .5rem;
    background-image: url(../images/icon_modal_info_primary@2x.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
}

.bgtips-cont{
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    line-height: 21px;
    font-weight: 500;
    font-size: 13px;
    color: #666666;
}

.normaltips{
    line-height: 21px;
    font-size: 15px;
    color: #A6A6A6;
    text-align: left;
}

/* 轮播和登录框外部div */

.carousel-outer{
    position: relative;
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex-pack: center;
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -ms-align-items: center;
    -o-align-items: center;
    justify-content: center;
    -moz-box-pack: center;
    background-color: #070915;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.carousel-inner{
    position: absolute;
    padding-left: 5%;
    top: 35%;
    font-size: 0;
    z-index: 1;
}

.carousel-inner img{
    width: 31.5rem;
}

.carousel-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.carousel-bg video{
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    min-height: 100% !important;
    object-fit: cover !important;
}

.carousel-bg img{
    width: 100vw;
    height: auto;
    min-height: 100% !important;
}

/* 首页外部div */

.index-outer{
    position: relative;
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex-pack: center;
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -ms-align-items: center;
    -o-align-items: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #F4F4F8;
    background-image: url(../images/bg_index@2x.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.index-title{
    margin-bottom: 1.75rem;
}

.index-title img{
    width: 23rem;
}

.index-desc{
    margin-bottom: 3.375rem;
}

.index-desc img{
    width: 21rem;
}

.index-cont .form-group{
    width: 43.3125rem;
    min-width: 346px;
}

.index-cont .input-group{
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -ms-align-items: center;
    -o-align-items: center;
}

.index-cont .form-control{
    height: 100%;
    padding: 1.25rem 2.5rem 1.2188rem 2.5rem;
    line-height: 25px;
    font-size: 18px;
    color: #333333;
    background-color: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0rem .5rem .9375rem 0rem rgba(229,227,243,0.32);
    border-radius: 5rem;
}

.index-cont .btn{
    margin-left: -2rem;
    padding: 1.25rem 2.25rem 1.2188rem 2.25rem;
    line-height: 25px;
    font-size: 18px;
    color: #FFFFFF;
    border-radius: 5rem;
    z-index: 3;
}

/* 登录框 */

.login-box{
    position: relative;
    margin-left: 38%;
    z-index: 2;
}

.login-box .login-container {
    position: relative;
    max-width: 400px;
    padding: 2rem 2.5rem .25rem;
    border-radius: 1.25rem;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-box .qrcode {
    padding: 1rem 0 0;
    text-align: center;
}

.login-box .qrcode-title{
    margin-bottom: 0;
    line-height: 37px;
    font-weight: normal;
    font-size: 27px;
    color: #333333;
}

.login-box .qrcode-img{
    position: relative;
    display: inline-block;
    width: 172px;
    height: 172px;
    margin-bottom: 1.673rem;
    padding: 1.25rem;
    border: .0625rem solid rgba(22, 93, 255, 0.25);
    border-radius: .3125rem;
}

.login-box .qrcode-img__top,
.login-box .qrcode-img__bottom{
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 1.25rem;
}

.login-box .qrcode-img__top{
    top: 0;
}

.login-box .qrcode-img__bottom{
    bottom: 0;
}

.login-box .qrcode-img__top::before,
.login-box .qrcode-img__top::after,
.login-box .qrcode-img__bottom::before,
.login-box .qrcode-img__bottom::after{
    content: '';
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
}

.login-box .qrcode-img__top::before{
    top: -0.125rem;
    left: -0.125rem;
    right: unset;
    border-top: .25rem solid #4D6BFE;
    border-left: .25rem solid #4D6BFE;
    border-top-left-radius: .3125rem;
}

.login-box .qrcode-img__top::after{
    top: -0.125rem;
    left: unset;
    right: -0.125rem;
    border-top: .25rem solid #4D6BFE;
    border-right: .25rem solid #4D6BFE;
    border-top-right-radius:.3125rem;
}

.login-box .qrcode-img__bottom::before{
    top: 0.125rem;
    left: -0.125rem;
    right: unset;
    border-bottom: .25rem solid #4D6BFE;
    border-left: .25rem solid #4D6BFE;
    border-bottom-left-radius:.3125rem;
}

.login-box .qrcode-img__bottom::after{
    top: 0.125rem;
    left: unset;
    right: -0.125rem;
    border-bottom: .25rem solid #4D6BFE;
    border-right: .25rem solid #4D6BFE;
    border-bottom-right-radius:.3125rem;
}

.login-box .qrcode-img__middle{
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -ms-align-items: center;
    -o-align-items: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.login-box .qrcode-img .qrcode-img__middle.unusable {
    position: absolute;
    left: 0.25rem;
    right: 0.25rem;
    top: 0.25rem;
    bottom: 0.25rem;
    z-index: 1;
    width: calc(100% - 0.5rem);
    height: calc(100% - 0.5rem);
    background: rgba(133,137,144,0.8);
    border-radius: 2px;
    backdrop-filter: blur(1px);
    cursor: pointer;
}

.login-box .qrcode-img .qrcode-img__middle img {
    width: calc(100% - 2.5rem);
    height: calc(100% - 2.5rem);
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 0;
}

.login-box .qrcode-img .loading img.icon-qrcode-loading {
    position: relative;
    width: 35px;
    height: 36px;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    animation: loadingrotate 3s linear infinite;
}

@keyframes loadingrotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.login-box .qrcode-img .unusable img{
    opacity: 0.15;
}


.login-box .qrcode-img .unusable img.icon-qrcode-unusable {
    position: relative;
    width: 28px;
    height: 28px;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    z-index: 1;
    opacity: 1;
}

.login-box .loading p{
    line-height: 21px;
    font-size: 15px;
    color: #999999;
    margin-top: 15px;
    margin-bottom: 0;
}

.login-box .unusable p{
    line-height: 21px;
    font-size: 15px;
    color: #FFFFFF;
    margin-top: 12px;
    margin-bottom: 0;
    z-index: 1;
}

.login-box .qrcode-desc{
    margin-bottom: 0;
    line-height: 27px;
    font-size: 20px;
    color: #666666;
}

.login-box .app-scan {
    position: absolute;
    top: 0rem;
    right: 0rem;
    width: 4rem;
    height: 4rem;
    cursor: pointer;
    color: #1890ff;
    background-image: url(../images/icon_login_qrcode@2x.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
}

.login-box .login-popover{
    position: absolute;
    top: 1rem;
    left: -140px;
    padding: .4375rem 1.125rem;
    line-height: 22px;
    font-size: 16px;
    color: #4D6BFE;
    background: #EAF1FF;
    border-radius: .3125rem;
}

.login-box .login-popover::after{
   content: '';
   position: absolute;
   top: 50%;
   right: -.45rem;
   translate: 0 -50%;
   width: 0;
   height: 0;
   border-top: .5rem solid transparent;
   border-bottom: .5rem solid transparent;
   border-left:.5rem solid #EAF1FF;
   border-right: 0;
   z-index: 1;
}

.login-box .back-to-login {
    display: none;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    line-height: 25px;
    font-size: 18px;
    color: #999999;
    cursor: pointer;
}

.login-box .icon-loginBack{
    display: inline-block;
    width: 10px;
    height: 16px;
    margin-right: .5625rem;
    background-image: url(../images/icon_login_back@2x.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: -2.5px;
}

.login-box .nav-tabs{
    position: relative;
    border-bottom: none;
}

.login-box .nav-tabs::before{
    content: '';
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%;
    height: .0625rem;
    background-color: #DEDEDE;
}

.login-box .nav-item{
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    padding-bottom: 1px;
    text-align: center;
    cursor: pointer;
}

.login-box .nav-tabs .nav-link{
    display: inline-block;
    width: auto;
    padding: .85rem .4375rem;
    line-height: 24px;
    font-size: 20px;
    color: #999999;
    white-space: nowrap;
    border-bottom: .1875rem solid transparent;
}

.login-box .nav-tabs .nav-link.active {
    font-weight: 600;
    color: #4D6BFE;
    border: none;
    border-bottom: .1875rem solid #4D6BFE;
}

.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
    color: #4D6BFE;
    isolation: none;
    border-color: transparent;
}

.login-box .nav-tabs .nav-link.active,
.login-box .nav-tabs .nav-link.active:focus,
.login-box .nav-tabs .nav-link.active:hover { 
    border-bottom: .1875rem solid #4D6BFE;
}

.login-box .tab-pane{
    position: relative;
    padding: 2.0625rem 0 1rem;
    width: calc(400px - 5rem);
    min-height: 19rem;
}

.login-box .form-group,
.modal .form-group {
    position: relative;
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    margin-bottom: 1.5625rem;
}

.iphoneBind-modal .form-group,
.forgetPsw-modal .form-group,
.resetPsw-modal .form-group,
.firstLogin-modal .form-group,
.newAccount-modal .form-group {
    width: 25rem;
}

.login-box .input-group,
.modal .input-group {
    background: #F7F7F9;
}

.login-box .form-group .form-control,
.login-box .form-group:focus-within .form-control,
.login-box .form-group:valid .form-control,
.login-box .form-group:invalid .form-control,
.modal .form-group .form-control,
.modal .form-group:focus-within .form-control,
.modal .form-group:valid .form-control,
.modal .form-group:invalid .form-control{
    height: auto;
    padding: 0.75rem 1.1875rem .7rem calc(1.1875rem + 18px + .8125rem);
    line-height: 22px;
    font-size: 16px;
    color: #333333;
    background: #F7F7F9;
    border: 1px solid #F7F7F9;
    border-radius: 5px;
}


.login-box .form-group .form-control#smsCode,
.login-box .form-group:focus-within .form-control#smsCode,
.login-box .form-group:valid .form-control#smsCode,
.login-box .form-group:invalid .form-control#smsCode,
.modal .form-group .form-control#phoneBindCode,
.modal .form-group:focus-within .form-control#phoneBindCode,
.modal .form-group:valid .form-control#phoneBindCode,
.modal .form-group:invalid .form-control#phoneBindCode{
    margin-right: .125rem;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    z-index: 3;
}

.login-box .form-group:focus .form-control,
.login-box .form-group .form-control:focus,
.login-box .form-group:hover .form-control,
.login-box .form-group .form-control:hover,
.login-box .form-group:active .form-control,
.login-box .form-group .form-control:active,
.login-box .form-group:target .form-control,
.login-box .form-group .form-control:target,
.modal .form-group:focus .form-control,
.modal .form-group .form-control:focus,
.modal .form-group:hover .form-control,
.modal .form-group .form-control:hover,
.modal .form-group:active .form-control,
.modal .form-group .form-control:active,
.modal .form-group:target .form-control,
.modal .form-group .form-control:target{
    background: #FFFFFF;
    border: 1px solid #4D6BFE;
    box-shadow: 0 0 0 1px rgba(0,123,255,.25);
}

.login-box .form-group.error .form-control,
.modal .form-group.error .form-control{
    background: #FFF6F6;
    border: 1px solid #FF9A97;
}

.login-box .form-group label,
.modal .form-group label{
    position: absolute;
    display: inline-block;
    left: 1.1875rem;
    top: 50%;
    width: 18px;
    height: 20px;
    margin-bottom: 0;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 4;
}

.login-box .form-group label.label-username,
.modal .form-group label.label-username {
    background-image: url(../images/icon_login_username@2x.png);
}

.login-box .form-group label.label-psw,
.modal .form-group label.label-psw {
    background-image: url(../images/icon_login_password@2x.png);
}

.login-box .form-group label.label-user,
.modal .form-group label.label-user {
    background-image: url(../images/icon_login_user@2x.png);
}

.login-box .form-group label.label-vCode,
.modal .form-group label.label-vCode {
    background-image: url(../images/icon_login_verifycode@2x.png);
}

.login-box .form-group label.label-phonenumber,
.modal .form-group label.label-phonenumber {
    background-image: url(../images/icon_login_phonenumber@2x.png);
}

.login-box .invalid-feedback,
.modal .invalid-feedback{
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    text-align: left;
    display: block;
}

.login-box .input-group-append img,
.modal .input-group-append img {
    width: 122px;
    max-height: calc(1.45rem + 22px);
    cursor: pointer;
}

.login-box button.btn-smsCode,
.modal button.btn-smsCode {
    position: relative;
    margin-top: 0;
    margin-left: 2px;
    color: #4D6BFE;
    background: #F7F7F9;
    border: 1px solid #F7F7F9;
}

.login-box button.btn-smsCode:disabled,
.modal button.btn-smsCode:disabled {
    color: #999999; 
}

.login-box button.btn-smsCode::before,
.modal button.btn-smsCode::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: .0625rem;
    height: 16px;
    background: #DEDEDE;
    border-radius: 2px;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.login-box .btn{
    margin-top: .3125rem;
}

.login-box .tab-pane__tips{
    white-space: nowrap;
    margin-top: 1.5rem;
}

.tab-pane__tips{
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -ms-align-items: center;
    -o-align-items: center;
}

.tab-pane__tips .icon-warning{
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: .4375rem;
    background: url(../images/icon_info_orange@2x.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
}

.tab-pane__tips p{
    margin-bottom: 0;
    line-height: 21px;
    font-size: 15px;
    color: #A6A6A6;
}

.tab-pane__tips a{
    margin-left: .6875rem;
    line-height: 21px;
    font-size: 15px;
    color: #4D6BFE;
}

.tab-pane__bottom{
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -ms-align-items: center;
    -o-align-items: center;
    margin-top: 1.75rem;
}

.tab-pane__bottom a{
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    line-height: 22px;
    font-size: 16px;
    color: #999999;
    text-align: center;
    cursor: pointer;
}

@media (max-width:1600px){
    .login-box .tab-pane{
        min-height: 20rem;
    }
}

@media (min-width:1301px) and (max-width:1600px){
    .login-box .login-container {
        padding-bottom: 1rem;
    }
}

@media (min-width:1201px) and (max-width:1300px){
    .login-box .login-container {
        padding-bottom: 1.25rem;
    }
}

@media (min-width:993px) and (max-width:1200px)  {
    .login-box{
        margin-left: 45%;
    }

    .login-box .login-container {
        max-width: 350px;
        box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
        padding-bottom: 1.5rem;
    }

    .login-box .tab-pane{
        width: calc(350px - 5rem);
    }

    .login-box .login-popover{
        left: -130px;
        line-height: 20px;
        font-size: 15px;
    }

    .login-box .qrcode-title{
        line-height: 34px;
        font-size: 24px;
    }

    .login-box .qrcode-img{
        width: 165px;
        height: 165px;
    }

    .login-box .qrcode-desc{
        line-height: 24px;
        font-size: 17px;
    }

    .login-box .qr-code img {
        width: 180px;
        height: 180px;
    }

    .login-box .back-to-login {
        line-height: 22px;
        font-size: 16px;
    }

    .login-box .icon-loginBack{
        width: 9px;
        height: 16px;
    }

    .login-box .nav-tabs .nav-link{
        line-height: 23px;
        font-size: 19px;
    }

    .login-box .form-group .form-control,
    .login-box .form-group:focus-within .form-control,
    .login-box .form-group:valid .form-control,
    .login-box .form-group:invalid .form-control{
        padding: 0.75rem 1.1875rem .7rem calc(1.1875rem + 17px + .8125rem);
        line-height: 20px;
        font-size: 15px;
        border-radius: 4px;
    }

    .login-box .form-group label{
        width: 17px;
        height: 20px;
    }

    .login-box .input-group-append img{
        width: 100px;
    }

    .login-box .input-group-append img,
    .modal .input-group-append img {
        max-height: calc(1.45rem + 20px);
    }

    .tab-pane__tips .icon-warning{
        width: 16px;
        height: 16px;
    }

    .tab-pane__tips p,
    .tab-pane__tips a{
        line-height: 19px;
        font-size: 14px;
    }

    .tab-pane__bottom a{
        line-height: 20px;
        font-size: 15px;
    }

    .login-box button[type="submit"]{
        padding: 13.25px 2.75rem;
    }
}

@media (min-width:769px) and (max-width:992px)  {
    .login-box{
        margin-left: 40%;
    }
    
    .login-box .login-container {
        max-width: 335px;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
        padding-bottom: 2rem;
    }

    .login-box .tab-pane{
        width: calc(335px - 5rem);
    }

    .login-box .login-popover{
        left: -120px;
        line-height: 19px;
        font-size: 14px;
    }

    .login-box .qrcode-title{
        line-height: 31px;
        font-size: 23px;
    }

    .login-box .qrcode-img{
        width: 158px;
        height: 158px;
    }

    .login-box .qrcode-desc{
        line-height: 22px;
        font-size: 16px;
    }

    .login-box .qr-code img {
        width: 165px;
        height: 165px;
    }

    .login-box .back-to-login {
        line-height: 20px;
        font-size: 15px;
    }

    .login-box .icon-loginBack{
        width: 8px;
        height: 16px;
    }

    .login-box .nav-tabs .nav-link{
        line-height: 22px;
        font-size: 18px;
    }

    .login-box .form-group .form-control,
    .login-box .form-group:focus-within .form-control,
    .login-box .form-group:valid .form-control,
    .login-box .form-group:invalid .form-control{
        padding: 0.75rem 1.1875rem .7rem calc(1.1875rem + 16px + .8125rem);
        line-height: 19px;
        font-size: 14px;
        border-radius: 3px;
    }

    .login-box .form-group label{
        width: 16px;
        height: 19px;
    }

    .login-box .input-group-append img{
        width: 85px;
    }

    .login-box .input-group-append img,
    .modal .input-group-append img {
        max-height: calc(1.45rem + 19px);
    }

    .tab-pane__tips .icon-warning{
        width: 15px;
        height: 15px;
    }

    .tab-pane__tips p,
    .tab-pane__tips a{
        line-height: 18px;
        font-size: 13px;
    }

    .tab-pane__bottom a{
        line-height: 19px;
        font-size: 14px;
    }

    .login-box button[type="submit"]{
        padding: 12.25px 2.75rem;
    }
}

@media (min-width:576px) and (max-width:768px) {
    .login-box{
        margin-left: 35%;
    }
    .login-box .login-container {
        max-width: 320px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        padding-bottom: 2rem;
    }

    .login-box .tab-pane{
        width: calc(320px - 5rem);
    }

    .login-box .login-popover{
        left: -120px;
        line-height: 18px;
        font-size: 14px;
    }

    .login-box .qrcode-title{
        line-height: 31px;
        font-size: 21px;
    }

    .login-box .qrcode-img{
        width: 148px;
        height: 148px;
    }

    .login-box .qrcode-desc{
        line-height: 22px;
        font-size: 15px;
    }

    .login-box .qr-code img {
        width: 150px;
        height: 150px;
    }

    .login-box .back-to-login {
        line-height: 20px;
        font-size: 15px;
    }

    .login-box .icon-loginBack{
        width: 8px;
        height: 16px;
    }

    .login-box .nav-tabs .nav-link{
        line-height: 21px;
        font-size: 17px;
    }

    .login-box .form-group .form-control,
    .login-box .form-group:focus-within .form-control,
    .login-box .form-group:valid .form-control,
    .login-box .form-group:invalid .form-control{
        padding: 0.75rem 1.1875rem .7rem calc(1.1875rem + 16px + .8125rem);
        line-height: 19px;
        font-size: 14px;
        border-radius: 3px;
    }

    .login-box .form-group label{
        width: 16px;
        height: 19px;
    }

    .login-box .input-group-append img{
        width: 80px;
    }

    .login-box .input-group-append img,
    .modal .input-group-append img {
        max-height: calc(1.45rem + 19px);
    }

    .tab-pane__tips .icon-warning{
        width: 15px;
        height: 15px;
    }

    .tab-pane__tips p,
    .tab-pane__tips a{
        line-height: 18px;
        font-size: 13px;
    }

    .tab-pane__bottom a{
        line-height: 19px;
        font-size: 14px;
    }

    .login-box button[type="submit"]{
        padding: 12px 2.75rem;
    }
}

@media (max-width:575px) {
    .login-box{
        margin-left: 0;
    }
    .login-box .login-container {
        max-width: 300px;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
        padding-bottom: 2rem;
    }

    .login-box .tab-pane{
        width: calc(300px - 5rem);
    }

    .login-box .login-popover{
        left: -110px;
        line-height: 17px;
        font-size: 13px;
    }

    .login-box .qrcode-title{
        line-height: 28px;
        font-size: 19px;
    }

    .login-box .qrcode-img{
        width: 140px;
        height: 140px;
    }

    .login-box .qrcode-desc{
        line-height: 20px;
        font-size: 14px;
    }

    .login-box .qr-code img {
        width: 130px;
        height: 130px;
    }

    .login-box .back-to-login {
        line-height: 18px;
        font-size: 13px;
    }

    .login-box .icon-loginBack{
        width: 7px;
        height: 16px;
    }

    .login-box .nav-tabs .nav-link{
        line-height: 20px;
        font-size: 15px;
    }

    .login-box .form-group .form-control,
    .login-box .form-group:focus-within .form-control,
    .login-box .form-group:valid .form-control,
    .login-box .form-group:invalid .form-control{
        padding: 0.75rem 1.1875rem .7rem calc(1.1875rem + 15px + .8125rem);
        line-height: 18px;
        font-size: 13px;
        border-radius: 2px;
    }

    .login-box .form-group label{
        width: 15px;
        height: 18px;
    }

    .login-box .input-group-append img{
        width: 65px;
    }

    .login-box .input-group-append img,
    .modal .input-group-append img {
        max-height: calc(1.45rem + 18px);
    }

    .tab-pane__tips .icon-warning{
        width: 14px;
        height: 14px;
    }

    .tab-pane__tips p,
    .tab-pane__tips a{
        line-height: 17px;
        font-size: 12px;
    }

    .tab-pane__bottom a{
        line-height: 18px;
        font-size: 13px;
    }

    .login-box button[type="submit"]{
        padding: 11px 2.75rem;
    }
}

/* 弹窗：ip登录切换 */

.ipChange-modal .ipChange-cont{
    min-width: 267px;
    max-width: 350px;
}

.ipChange-modal .modal-body {
    padding: 10px 1.5625rem 0px 1.875rem;
}

.ipChange-modal .normaltips{
    margin-top: 16px;
}

.ipChange-modal .form-group{
    display: inline-flex;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    justify-content: center;
    -moz-box-pack: center;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 20px;
}

.ipChange-modal label.form-control-modallabel{
    position: relative;
    left: unset;
    top: unset;
    width: auto;
    margin-bottom: 0;
    padding: 7.5px 0rem;
    line-height: 20px;
    font-weight: 500;
    font-size: 14px;
    color: #333333;
}

.ipChange-modal .form-group .input-group{
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    min-width: 182.18px;
    max-width: 264.88px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #DFDFDF;
}

.ipChange-modal .form-group .form-control {
    display: block;
    height: 33px;
    background-clip: border-box;
    padding: 5.5px 0.75rem 5px;
    line-height: 15px;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    border: transparent;
    box-shadow: none;
    border-radius: 3px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.ipChange-modal .form-group:focus-within .form-control,
.ipChange-modal .form-group:valid .form-control,
.ipChange-modal .form-group:invalid .form-control,
.ipChange-modal .input-group .form-control:focus{
    height: 33px;
    padding: 5.5px 0.75rem 5px;
}

.ipChange-modal .input-group .btn-smsCode{
    position: relative;
    color: #4D6BFE;
}

.ipChange-modal .input-group .btn-smsCode::before{
    content: '';
    position: absolute;
    top: 50%;
    left: -.0625rem;
    width: .0625rem;
    height: 19px;
    background: #DEDEDE;
    border-radius: 2px;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.ipChange-modal .input-group .btn-smsCode:disabled {
    color: #999999; 
}

/* 弹窗：绑定手机号、忘记密码、首次登录 */

.iphoneBind-modal .iphoneBind-cont,
.forgetPsw-modal .iphoneBind-cont,
.firstLogin-modal .iphoneBind-cont{
    padding: 0px 1.25rem;
}

.resetPsw-modal .resetPsw-cont{
    max-width: 30rem;
}

.iphoneBind-modal .modal-body,
.forgetPsw-modal .modal-body,
.firstLogin-modal .modal-body,
.newAccount-modal .modal-body {
    padding-bottom: 0;
}

.resetPsw-modal .form-group {
    width: 30rem;
}

.iphoneBind-modal .input-group,
.forgetPsw-modal .input-group,
.resetPsw-modal  .input-group,
.firstLogin-modal .input-group,
.newAccount-modal .input-group {
    max-width: unset;
}

/* 弹窗：创建账号 */

.newAccount-modal .form-merinfo {
   width: 25rem; 
}

.addQrcode dt{
    margin-top: 30px;
}

.addQrcode dt img{
    width: 161px;
}

.addQrcode dd{
    margin-top: 13px;
    line-height: 21px;
    font-size: 15px;
    color: #A6A6A6;
}

/* 弹窗：选择商户列表 */

.merList-modal .modal-content{
    max-width: 90vw;
}

.merList-modal .merList-cont{
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0px 1.25rem;
}

.merList-modal .form-search{
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -moz-box-pack: center;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    border-radius: .375rem;
    border: 1px solid #DFDFDF;
}

.merList-modal .form-search input[type="search"]{
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    padding: 0.78rem 1.6875rem .75rem;
    line-height: 21px;
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    border: none;
    box-shadow: none;
    outline: none;
    border-radius: .375rem;
}

.merList-modal .form-search .btn-search{
    position: relative;
    padding: 9.5px 1.75rem;
    background-image: url(../images/icon_login_search@2x.png);
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position: center;
}

.merList-modal .form-search .btn-search::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: .0625rem;
    height: 16px;
    background: #DEDEDE;
    border-radius: 2px;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.merList-modal .merchant-items{ 
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -moz-box-flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.merList-modal .merchant-item {
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -ms-align-items: center;
    -o-align-items: center;
    margin-top: 1.25rem;
    padding: 1.125rem 1rem 1.125rem 1.5rem;
    text-align: left;
    background: #FBFBFB;
    border-radius: .5rem;
    border: 1px solid #EBEDF0;
}

.merList-modal .merchant-logo {
    width: 40px;
    height: 40px; 
    margin-right: 1rem;
    border-radius: 50%;
}

.merList-modal .merchant-logo img{
    width: 100%;
}

.merList-modal .merchant-info{
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -o-flex: 1;
    min-width: 0;
    font-size: 0;
}

.merList-modal .merchant-info__main{
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -ms-align-items: center;
    -o-align-items: center;
    margin-bottom: 0px;
}

.merList-modal .merchant-maininfo__title{
    display: inline-block;
    max-width: 300px;
    line-height: 21px;
    font-size: 15px;
    color: #333333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.merList-modal .merchant-maininfo__badge{
    display: inline-block;
    padding: 3px .5625rem;
    margin-left: .5625rem;
    line-height: 15px;
    font-weight: 500;
    font-size: 12px;
    color: #999999;
    white-space: nowrap;
    border-radius: 65px 65px 65px 2px;
    border: 1px solid #90A3CD;
}

.merList-modal .merchant-maininfo__badge.badgetype1{
    color: #4D6BFE;
    border-color: #90A3CD;
}

.merList-modal .merchant-maininfo__badge.badgetype2{
    color: #F7B169;
    border-color: #FBAA63;
}

.merList-modal .merchant-maininfo__badge.badgetype3{
    color: #5AC496;
    border-color: #96D1B7;
}

.merList-modal .merchant-info__mernumber{
    margin-bottom: 0px;
    line-height: 18px;
    font-size: 13px;
    color: #999999;
}

.merList-modal .arrow-icon{
    position: relative;
    margin-left: .5rem;
    width: 1rem;
    height: 1rem;
    background-image: url(../images/icon_arrow_right_lg@2x.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
}

.login-footer{
    position: absolute;
    bottom: 0;
    padding-bottom: 1rem;
    line-height: 21px;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 12px;
    color: #c0c0c075;
}

@media (max-width:50px) {html {font-size:5.625px;}}
@media (min-width:51px) and (max-width:100px) {html {font-size:6px;}}
@media (min-width:101px) and (max-width:150px) {html {font-size:6.375px;}}
@media (min-width:151px) and (max-width:200px) {html {font-size:6.75px;}}
@media (min-width:201px) and (max-width:250px) {html {font-size:7.125px;}}
@media (min-width:251px) and (max-width:300px) {html {font-size:7.5px;}}
@media (min-width:301px) and (max-width:350px) {html {font-size:7.875px;}}
@media (min-width:351px) and (max-width:400px) {html {font-size:8.25px;}}
@media (min-width:401px) and (max-width:450px) {html {font-size:8.625px;}}
@media (min-width:451px) and (max-width:500px) {html {font-size:9px;}}
@media (min-width:501px) and (max-width:550px) {html {font-size:9.375px;}}
@media (min-width:551px) and (max-width:600px) {html {font-size:9.75px;}}
@media (min-width:601px) and (max-width:650px) {html {font-size:10.125px;}}
@media (min-width:651px) and (max-width:700px) {html {font-size:10.5px;}}
@media (min-width:701px) and (max-width:750px) {html {font-size:10.875px;}}
@media (min-width:751px) and (max-width:800px) {html {font-size:11.25px;}}
@media (min-width:801px) and (max-width:850px) {html {font-size:11.625px;}}
@media (min-width:851px) and (max-width:900px) {html {font-size:12px;}}
@media (min-width:901px) and (max-width:950px) {html {font-size:12.375px;}}
@media (min-width:951px) and (max-width:1000px) {html {font-size:12.75px;}}
@media (min-width:1001px) and (max-width:1050px) {html {font-size:13.125px;}}
@media (min-width:1051px) and (max-width:1100px) {html {font-size:13.5px;}}
@media (min-width:1101px) and (max-width:1150px) {html {font-size:13.875px;}}
@media (min-width:1151px) and (max-width:1200px) {html {font-size:14.25px;}}
@media (min-width:1201px) and (max-width:1250px) {html {font-size:14.625px;}}
@media (min-width:1251px) and (max-width:1300px) {html {font-size:15px;}}
@media (min-width:1301px) and (max-width:1350px) {html {font-size:15.375px;}}
@media (min-width:1351px) and (max-width:1400px) {html {font-size:15.75px;}}
@media (min-width:1401px) and (max-width:1450px) {html {font-size:16px;}}
@media (min-width:1451px) and (max-width:1500px) {html {font-size:16.375px;}}
@media (min-width:1501px) and (max-width:1550px) {html {font-size:16.75px;}}
@media (min-width:1551px) and (max-width:1600px) {html {font-size:17.125px;}}
@media (min-width:1601px) and (max-width:1650px) {html {font-size:17.5px;}}
@media (min-width:1651px) and (max-width:1700px) {html {font-size:17.875px;}}
@media (min-width:1701px) and (max-width:1750px) {html {font-size:18.25px;}}
@media (min-width:1751px) and (max-width:1800px) {html {font-size:18.625px;}}
@media (min-width:1801px) and (max-width:1850px) {html {font-size:19px;}}
@media (min-width:1851px) and (max-width:1900px) {html {font-size:19.375px;}}
@media (min-width:1901px) and (max-width:1950px) {html {font-size:19.75px;}}
@media (min-width:1951px) and (max-width:2000px) {html {font-size:20.125px;}}
@media (min-width:2001px) and (max-width:2050px) {html {font-size:20.5px;}}
@media (min-width:2051px) and (max-width:2100px) {html {font-size:20.875px;}}
@media (min-width:2101px) and (max-width:2150px) {html {font-size:21.25px;}}
@media (min-width:2151px) and (max-width:2200px) {html {font-size:21.625px;}}
@media (min-width:2201px) and (max-width:2250px) {html {font-size:22px;}}
@media (min-width:2251px) and (max-width:2300px) {html {font-size:22.375px;}}
@media (min-width:2301px) and (max-width:2350px) {html {font-size:22.75px;}}
@media (min-width:2351px) and (max-width:2400px) {html {font-size:23.125px;}}
@media (min-width:2401px) {html {font-size:23.5px;}}