/*
    Created on : 2025/05/16, 10:52:22
    Author     : xianxm
    Description: 商务服务平台-登录页样式
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

body {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    min-width: 346px;
    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: #165DFF;
}

input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* 禁止 Chrome、Safari 和 Opera 浏览器自动填充时改变背景色 */
input[type="text"]:-webkit-autofill,
input[type="password"]:-webkit-autofill,
input[type="email"]:-webkit-autofill,
input[type="number"]:-webkit-autofill,
input[type="date"]:-webkit-autofill,
input[type="month"]:-webkit-autofill,
input[type="tel"]:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #F7F7F9 inset !important; /* 使用白色背景覆盖默认背景 */
    -webkit-text-fill-color: inherit; /* 保持文本颜色不变 */
    transition: background-color 5000s ease-in-out 0s; /* 延长背景色过渡时间 */
}

/* 处理 hover 状态 */
input[type="text"]:-webkit-autofill:hover,
input[type="password"]:-webkit-autofill:hover,
input[type="email"]:-webkit-autofill:hover,
input[type="number"]:-webkit-autofill:hover,
input[type="date"]:-webkit-autofill:hover,
input[type="month"]:-webkit-autofill:hover,
input[type="tel"]:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 1000px #F7F7F9 inset !important;
}

/* 处理 focus 状态 */
input[type="text"]:-webkit-autofill:focus,
input[type="password"]:-webkit-autofill:focus,
input[type="email"]:-webkit-autofill:focus,
input[type="number"]:-webkit-autofill:focus,
input[type="date"]:-webkit-autofill:focus,
input[type="month"]:-webkit-autofill:focus,
input[type="tel"]:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #F7F7F9 inset !important;
}

/* 处理 active 状态 */
input[type="text"]:-webkit-autofill:active,
input[type="password"]:-webkit-autofill:active,
input[type="email"]:-webkit-autofill:active,
input[type="number"]:-webkit-autofill:active,
input[type="date"]:-webkit-autofill:active,
input[type="month"]:-webkit-autofill:active,
input[type="tel"]:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #F7F7F9 inset !important;
}

/* 对于 Firefox 浏览器 */
input[type="text"]:-moz-autofill,
input[type="password"]:-moz-autofill,
input[type="email"]:-moz-autofill,
input[type="number"]:-moz-autofill,
input[type="date"]:-moz-autofill,
input[type="month"]:-moz-autofill,
input[type="tel"]:-moz-autofill {
    box-shadow: 0 0 0 1000px #F7F7F9 inset !important;
    color: inherit;
}

::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: 11px;
    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-color: #165DFF;
    border-color: #165DFF;
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #165DFF;
    border-color: #165DFF;
    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;
    background-color: #165DFF;
    border-color: #165DFF;
    box-shadow: none;
}

/* 新增加载中动画样式 */
.loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 加载中动画 */

.modal-loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* 透明遮罩层 */
    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 style */

.modal-open{
    padding-right: 17px !important;
}

.modal-open .modal{
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
}

.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: 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;
}

.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 .form-toptips{
    margin-bottom: 16px;
    line-height: 18px;
    font-size: 13px;
    color: #A6A6A6;
    text-align: left;
}

.modal .form-merinfo{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-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{
    max-width: 250px;
    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;
    }
}

/* alert */

.alert{
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    padding: 10px 1rem;
    border-radius: 2px;
    align-items: flex-start;
    -ms-align-items: flex-start;
    -webkit-align-items: flex-start;
}

.alert-title{
    width: 12px;
    height: 14px;
    font-size: 0;
    padding-top: 1.5px;
}

.alert-title img{
    width: 100%;
}

.alert-content{
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -o-flex: 1;
    padding-left: 5px;
    line-height: 14px;
    font-size: 11px;
    color: #333333;
    text-align: left;
}

.alert-info{
    background: #EFF8FF;
    border: 1px solid #ACD7FF;
}

.alert-warning{
    background: #FEF9F9;
    border: 1px solid #FFCDC8;
}

/* 顶部导航栏 */

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav.flex {
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
  }
  .navbar-collapse.show {
      position: static;
  }
}

@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(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/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);
}

.cusweb-brand {
    padding: 13px 2.75rem 14px 1.625rem;
    margin: 0;
    font-size: 0;
}

.cusweb-brand img {
    height: 35px;
}

.navbar-light .navbar-nav .nav-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    line-height: 22px;
    font-size: 16px;
    color: #333333;
    white-space: nowrap;
    cursor: pointer;
}

.navbar-light .navbar-nav .nav-link.active {
    font-weight: bold;
    color: #165dff;
}

.cusweb-navbar-right{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-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;
}

.nav-item label{
    max-width: 90px;   
    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;
}

.nav-item .dropdown-toggle::after {
    display: inline-block;
    width: 9px;
    height: 5px;
    margin-left: .5rem;
    content: "";
    border: none;
    vertical-align: middle;
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_arrow_down@2x.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.nav-item .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;
}

.nav-item .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;
}

.btn-onlineService{
    display: inline-flex;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    justify-content: center;
    height: 2.75rem;
    margin-right: 1.25rem;
    padding: .75rem .75rem;
    line-height: 1.25rem;
    font-size: 1rem;
}

.btn-onlineService i{
    display: inline-block;
    width: 1.6875rem;
    height: 1.6875rem;
    margin-right: .5rem;
    border-radius: 1.6875rem;
    background-color: #FFFFFF;
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_btn_online_service@2x.png);
    background-size: 1.25rem auto;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 576px) {
    .navbar-collapse.show, .navbar-collapse.collapsing {
        top: 60px;
    }
    .navbar-brand.cusweb-brand{
        width: 46.9%;
    }
    .navbar-brand.cusweb-brand img {
        width: 100%;
        height: auto; 
    }
    .btn-onlineService{
        font-size: 0;
    }
    .btn-onlineService i{
        margin-right: 0;
    }
}

/* 侧边栏 */

.sidebar-opr{
    text-align: right;
}

.btn-sidebar {
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 7px 0;
    margin-top: 5px;
    margin-right: 7px;
    vertical-align: middle;
    content: "";
    border: none;
    box-shadow: none;
    background: transparent;
    background-size: 90% auto;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-position: center;
}

.sidebar {
    position: absolute;
    left: 0;
    top: 65px;
    width: 155px;
    height: auto;
    min-height: calc(100vh - 68px);
    padding: 0px 10px 0px;
    transition: width 0.3s ease;
    background: #FFFFFF;
    box-shadow: 0px 2px 0px 0px rgba(233,233,233,0.5);
}

.sidebar.collapsed {
    width: 54px;
}

.sidebarMenu.collapsing,
.sidebarMenu .collapsing {
    position: relative;
    height: unset;
    transition: height 0s ease;
}

.sidebarMenu.collapse:not(.show) {
    display: block;
}

.sidebar .list-unstyled{
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EFEFEF;
}

.sidebar .list-unstyled:last-child{
    border-bottom: none;
}

.sidebar h3{
    width: auto;
    padding: 3px 0px 12px 7px;
    line-height: 13px;
    font-weight: normal;
    font-size: 12px;
    color: #999999;
    white-space: nowrap;
}

.sidebar .sidebar-link{
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    padding: 7px 0px 9px 7px;
    white-space: nowrap;
    border: 2px;
    cursor: pointer;
}

.sidebar .sidebar-link:hover{
    background-color: #F6F6F6;
    text-decoration: none;
}

.sidebar .sidebar-link img{
    width: 18px;  
    height: auto;
    margin-right: 7px;
}

.sidebar .sidebar-link span{
    line-height: 15px;
    font-weight: 400; 
    font-size: 13px;
    color: #333333;
}

.sidebar .sidebar-link.active span{
    color: #165DFF;
}

.sidebar .list-unstyled{
    width: 100%;
    transition: width 0.3s ease;
}

.sidebar.collapsed .list-unstyled {
    width: 1px;
    overflow: hidden;
}

.body-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 12px;
    background-color: transparent;
}

#sidebar ~ .body-content {
    width: calc(100% - 155px);
    max-width: unset;
    margin-left: 155px;
    transition: margin-left 0.3s ease;
}

#sidebar.collapsed ~ .body-content {
    width: calc(100% - 54px);
    margin-left: 54px;
}

.footer{
    max-width: 1200px;
    padding: 9px 0rem 27px;
    margin: 0 auto;
    margin-top: auto;
    line-height: 14px;
    font-size: 10px;
    color: #BABABA;
    text-align: center;
}

/* 有背景的提示、普通提示 */

.bgtips{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-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(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/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;
    height: auto;
    min-height: 400px;
    transition: min-height 0.3s ease, height 0.3s ease;
    background-color: #f6f6f6;
    will-change: height, min-height;
}

/* 轮播 */

.fade-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fade-carousel .carousel-item {
    opacity: 0;
    transition: opacity 1s ease;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: block !important;
}

.fade-carousel .carousel-item.active {
    opacity: 1;
    position: relative;
}

.fade-carousel img {
    width: 100%;
    height: auto;
    display: block;
}

.fade-indicators {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 0;
    padding-right: calc(280px + 10%);
    margin: 0;
    list-style: none;
    z-index: 15;
}

.fade-indicators li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 127px;
    height: 38px;
    padding: 9px 0 9px 0;
    margin: 0 5px;
    line-height: 15px;
    font-size: 14px;
    color: #596885;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: #F3F8FF;
    border: 1px solid #EEF1F4;
    cursor: pointer;
}

.fade-indicators li.active {
    position: relative;
    text-indent: 20px;
    background: #FFFFFF;
    color: #293E64;
}

.fade-indicators li.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 13px; 
    height: 15px;
    background-image: url('https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_login_indicators_active@2x.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
}

.fade-indicators li.active::after{
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: 0;
    height: 2px;
    background: linear-gradient( 270deg, #FFFFFF 0%, #165DFF 100%);
}

.fade-carousel .carousel-control-prev,
.fade-carousel .carousel-control-next {
    display: none;
}

/* 登录框 */

.login-box{
    position: absolute;
    right: 10%;
    top: 0%;
    z-index: 2;
}

.login-box .login-container {
    position: relative;
    max-width: 400px;
    padding: 4rem 2.5rem 2.25rem;
    border-radius: 1.25rem;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-box .qr-code {
    display: none;
    padding: 1.5rem 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;
    margin-top: 2.125rem;
    margin-bottom: 2.25rem;
    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 #165DFF;
    border-left: .25rem solid #165DFF;
    border-top-left-radius: .3125rem;
}

.login-box .qrcode-img__top::after{
    top: -0.125rem;
    left: unset;
    right: -0.125rem;
    border-top: .25rem solid #165DFF;
    border-right: .25rem solid #165DFF;
    border-top-right-radius:.3125rem;
}

.login-box .qrcode-img__bottom::before{
    top: 0.125rem;
    left: -0.125rem;
    right: unset;
    border-bottom: .25rem solid #165DFF;
    border-left: .25rem solid #165DFF;
    border-bottom-left-radius:.3125rem;
}

.login-box .qrcode-img__bottom::after{
    top: 0.125rem;
    left: unset;
    right: -0.125rem;
    border-bottom: .25rem solid #165DFF;
    border-right: .25rem solid #165DFF;
    border-bottom-right-radius:.3125rem;
}

.login-box .qr-code img {
    width: 200px;
    height: 200px;
}

.login-box .qrcode-desc{
    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(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/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: #165DFF;
    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(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/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;
    text-align: center;
    padding-bottom: 1px;
    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;
}

.login-box .nav-tabs .nav-link.active {
    color: #333;
    border: none;
    border-bottom: .1875rem solid #165DFF;
}

.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
    isolation: none;
    border-color: transparent;
}

.login-box .nav-tabs .nav-link.active:focus,
.login-box .nav-tabs .nav-link.active:hover { 
    border-bottom: .1875rem solid #165DFF;
}

.login-box .tab-pane{
    padding: 2.0625rem 0 .3125rem;
}

.login-box .form-group,
.modal .form-group {
    position: relative;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-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 #165DFF;
    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(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_login_username@2x.png);
}

.login-box .form-group label.label-psw,
.modal .form-group label.label-psw {
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_login_password@2x.png);
}

.login-box .form-group label.label-user,
.modal .form-group label.label-user {
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_login_user@2x.png);
}

.login-box .form-group label.label-vCode,
.modal .form-group label.label-vCode {
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_login_verifycode@2x.png);
}

.login-box .form-group label.label-phonenumber,
.modal .form-group label.label-phonenumber {
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/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;
    cursor: pointer;
}

.login-box button.btn-smsCode,
.modal button.btn-smsCode {
    position: relative;
    margin-top: 0;
    margin-left: 2px;
    color: #165DFF;
    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: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-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(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/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: #165DFF;
}

.tab-pane__bottom{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-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 (min-width:993px) and (max-width:1200px)  {
    .login-box{
        right: 5%;
    }

    .login-box .login-container {
        max-width: 350px;
        box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    }

    .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-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;
    }

    .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{
        right: 5%;
    }
    
    .login-box .login-container {
        max-width: 335px;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    }

    .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-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;
    }

    .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 .login-container {
        max-width: 320px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }

    .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-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;
    }

    .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 .login-container {
        max-width: 300px;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    }

    .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-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;
    }

    .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;
    }
}

@media (max-width:940px) {
     body {
        min-height: 100vh;
    }
    .modal-open{
        padding-right: 0px !important;
    }
    .carousel-outer{
        flex: 1;
        -ms-flex: 1;
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -ms-flex-pack: center;
        display: flex;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-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-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/bg_login_mobile@2x.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .login-box{
        position: relative;
        right: unset;
        top: unset;
        transform: none;
        -o-transform: none;
        -ms-transform: none;
        -moz-transform: none;
        -webkit-transform: none;
    }

    .fade-carousel,
    .login-productCont,
    .login-solutionsCont,
    .login-centerCont,
    .login-partnerCont,
    .login-footer{
        display: none;
    }
}

/* 弹窗：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: #165DFF;
}

.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: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    flex-direction: column;
    -moz-box-orient: vertical;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    padding: 0px 1.25rem;
}

.merList-modal .form-search{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-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(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/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;
}

.merList-modal .merchant-item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-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: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-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: #165DFF;
    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-maininfo__badge.badgetype4{
    color: #9882D8;
    border-color: #998CBD;
}

.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(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_arrow_right_lg@2x.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
}

/* 产品 */

.login-productCont {    
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0px;
    padding: 30px 1rem;
}

.login-productCont .header {
    margin-bottom: 17px;
    text-align: center;
}

.login-productCont .header h2 {
    margin: 0;
    line-height: 47px;
    font-weight: 800;
    font-size: 34px;
    color: #333333;
}

.login-productCont .title-section {
    margin-bottom: 30px;
    text-align: center;
}

.login-productCont .title-section p {
    display: inline-block;
    margin: 0;
    line-height: 18px;
    font-size: 15px;
    color: #596885;
}

.login-productCont .title-section a {
    position: relative;
    line-height: 21px;
    font-size: 14px;
    color: #165DFF;
    text-decoration: none;
    margin-left: .9375rem;
    white-space: nowrap;
}

.login-productCont .title-section a::before { 
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 5px;
    height: 9px;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_arrow_right_primary@2x.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
}

.login-productCont .tab-container {
    display: flex;
    border-radius: 3px 5px 5px 3px;
    border: 1px solid #DBDBDB;
}

.login-productCont .left-tabs {
    width: 200px;
    border-right: 1px solid #eee;
    padding-right: 0px;
}

.login-productCont .nav-tabs {
    height: 100%;
    border: none;
    flex-direction: column;
}

.login-productCont .nav-tabs .nav-item{
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-flex: 1;
}

.login-productCont .nav-tabs .nav-link {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -ms-align-items: center;
    -o-align-items: center;
    justify-content: center;
    height: 100%;
    border: none;
    line-height: 16px;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    text-align: left;
}

.login-productCont .nav-tabs .nav-link:hover,
.login-productCont .nav-tabs .nav-link:active,
.login-productCont .nav-tabs .nav-link.active {
    background-color: #F9F9F9;
}

.login-productCont .nav-tabs .nav-link i{
    display: inline-block;
    width: 20px;
    height: 22px;
    margin-right: .6875rem;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
}

.login-productCont .nav-tabs .nav-link i.icon-payproduct{
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_login_payproduct@2x.png);
}

.login-productCont .nav-tabs .nav-link i.icon-saleproduct{
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_login_saleproduct@2x.png);
}

.login-productCont .nav-tabs .nav-link i.icon-fqproduct{
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_login_fqproduct@2x.png);
}

.login-productCont .tab-content {
    flex: 1;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.login-productCont .tab-pane {
    display: none;
}

.login-productCont .tab-pane.active {
    display: block;
}

.login-productCont .row {
    margin-right: -1.75rem;
    margin-left: -1.75rem;
}

.login-productCont .product-card {
    border-radius: 8px;
    padding: 54px 1.75rem 40px;
    transition: all 0.3s;
    cursor: pointer;
}

.login-productCont .col-md-4 { 
    padding-right: 0px;
    padding-left: 0px;
}

.login-productCont .product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-productCont .product-card h4 {
    margin-bottom: 15px;
    line-height: 26px;
    font-size: 20px;
    color: #333333;
}


.login-productCont .product-card i{
    display: inline-block;
    width: 31px;
    height: 31px;
    margin-right: .6875rem;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.login-productCont .product-card i.icon-sybpos{
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_prod_02@2x.png);
}

.login-productCont .product-card i.icon-dmfpay{ 
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_prod_01@2x.png);
}

.login-productCont .product-card i.icon-onlinepay{
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_prod_04@2x.png);
}

.login-productCont .product-card i.icon-coupon{
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_prod_09@2x.png);
}

.login-productCont .product-card i.icon-reduce{
     background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_prod_10@2x.png);
}

.login-productCont .product-card i.icon-giftcard{
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_prod_11@2x.png); 
}

.login-productCont .product-card i.icon-jufq{ 
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_prod_16@2x.png);
}

.login-productCont .product-card i.icon-ylfq{
     background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_prod_14@2x.png);
}

.login-productCont .product-card i.icon-jdbtfq{
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_prod_12@2x.png);
}

.login-productCont .product-card p {
    height: 92px;
    margin-bottom: 0;
    line-height: 23px;
    font-size: 14px;
    color: #595F69;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.login-productCont .product-card a.product-detail {
    display: inline-block;
    margin-top: 30px;
    padding: 7px .75rem;
    line-height: 14px;
    font-size: 14px;
    color: #165DFF;
    text-decoration: none;
    background: #E8EFFF;
    border-radius: 3px;
}

.login-productCont .product-card:hover a.product-detail,
.login-productCont .product-card:active a.product-detail{
    background: #165DFF;
    color: #ffffff;
}

/* 行业解决方案 */

.login-solutionsCont {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 0px;
    padding: 30px 0;
}

.login-solutionsCont .row {
    margin-right: 0px;
    margin-left: 0px;
}

.login-solutionsCont .col-md-4 { 
    padding-right: 1rem;
    padding-left: 1rem;
}

.login-solutionsCont .section-title {
    margin-bottom: 17px;
    line-height: 47px;
    font-weight: 800;
    font-size: 34px;
    color: #333333;
    text-align: center;
}

.login-solutionsCont .section-desc{ 
    margin-bottom: 30px;
    line-height: 18px;
    font-size: 15px;
    color: #596885;
    text-align: center;
}

.login-solutionsCont .solution-card {
    padding-top: 116px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background-color: #FBFBFB;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top;
    cursor: pointer;
    border-radius: 18px 18px 0 0;
}

.login-solutionsCont .solution-card:hover,
.login-solutionsCont .solution-card:active{ 
    background-color: #FFFFFF;
}

.login-solutionsCont .solution-card1{
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/bg_solution_01@2x.png);
}

.login-solutionsCont .solution-card2{
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/bg_solution_02@2x.png);
}

.login-solutionsCont .solution-card3{
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/bg_solution_03@2x.png);
}

.login-solutionsCont .card-header {
    padding: 32px 0px 23px;
    line-height: 30px;
    font-weight: 600;
    font-size: 21px;
    color: #333333;
    text-align: center;
    background: linear-gradient( 180deg, rgba(255,255,255,0.8) 0%, #FBFBFB 18%, #FBFBFB 100%);
    border: 1px solid transparent;
    border-bottom: none;
    border-radius: 10px 10px 0 0 !important;
}

.login-solutionsCont .card-header:hover,
.login-solutionsCont .card-header:active,
.login-solutionsCont .solution-card:hover .card-header,
.login-solutionsCont .solution-card:active .card-header{
    background: linear-gradient( 180deg, rgba(255,255,255,0.8) 0%, #FFFFFF 18%, #FFFFFF 100%);
}

.login-solutionsCont .solution-card:hover .card-header,
.login-solutionsCont .solution-card:active .card-header{
    border: 1px solid #165DFF;
    border-bottom: none;
}

.login-solutionsCont .card-body {
    padding: 0 2.25rem 22px;
    background-color: #FBFBFB;
    border: 1px solid transparent;
    border-top: none;
}

.login-solutionsCont .card-header:hover + .card-body,
.login-solutionsCont .card-header:active + .card-body,
.login-solutionsCont .solution-card:hover .card-header + .card-body,
.login-solutionsCont .solution-card:active .card-header + .card-body{
    background-color: #FFFFFF;
}

.login-solutionsCont .solution-card:hover .card-header + .card-body,
.login-solutionsCont .solution-card:active .card-header + .card-body{
    border: 1px solid #165DFF;
    border-top: none;
}

.login-solutionsCont .feature-items {
   height: 110px;
}

.login-solutionsCont .feature-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.login-solutionsCont .feature-item i {
    display: inline-block;
    width: 19px;
    height: 23px;
    margin-right: .6875rem;
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_login_gou@2x.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
}

.login-solutionsCont .feature-item span{
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -o-flex: 1;
    line-height: 23px;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
}

.login-solutionsCont .view-solution {
    position: relative;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    justify-content: center;
    margin-top: 25px;
    padding: 17px 0 0px;
    line-height: 21px;
    font-size: 14px;
    color: #165DFF;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.login-solutionsCont .view-solution::before{
    content: '';
    position: absolute;
    top: 0%;
    left: -2.25rem;
    right: -2.25rem;
    height: 1px;
    background: #EFEFEF;
}

.login-solutionsCont .view-solution .icon-right{
    display: inline-block;
    width: 5px;
    height: 19px;
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_arrow_right_primary@2x.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-left:.35rem;
}

/* 文档、帮助中心 */

.login-centerCont{
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 0px;
    padding: 0px 0px 30px;
}

.login-centerCont .row {
    margin-right: 0px;
    margin-left: 0px;
}

.login-centerCont .col-md-6 { 
    position: relative;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-bottom: 30px;
}

.login-centerCont .center{
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 1;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    border: 1px solid transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.login-centerCont .center:hover {
    border: 1px solid #165DFF;
}

.login-centerCont .center-tit{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    margin-bottom: 1rem;
    line-height: 26px;
    font-size: 19px;
    color: #333333;
}

.login-centerCont .center-tit i{
    display: inline-block;
    width: 17px;
    height: 26px;
    margin-left: .75rem;
    background-image: url(https://cus.allinpay.com/statichtml/webpub/cusweb/images25/icon_arrow_right_circle@2x.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
}

.login-centerCont.center-desc{
    line-height: 22px;
    font-size: 13px;
    color: #596885;
}

.login-centerCont .bg-docCenter{
    position: relative;
    font-size: 0;
}

.login-centerCont .bg-docCenter img{
    width: 100%;
    height: auto;
}

/* 合作伙伴 */

.login-partnerCont{
    width: 100%;
    max-width: calc(1200px - 2rem);
    margin: 10px auto 0px;
    padding: 20px 0px 30px;
    text-align: center;
    background-color: #f6f6f6;
}

.login-partnerCont .section-title{
    margin-bottom: 17px;
    line-height: 47px;
    font-weight: 800;
    font-size: 34px;
    color: #333333;
}

.login-partnerCont .section-desc{
    padding: 0px 11rem;
    margin-bottom: 40px;
    line-height: 25px;
    font-style: normal;
    font-size: 15px;
    color: #596885;
}

.login-partnerCont .section-icons img{
    width: 100%;
    max-width: 1037px;
}

/* 底部 */

.login-footer{
    width: 100%;
    margin: 30px auto 0px;
    padding: 40px 0px 50px;
    text-align: center;
    font-size: 0;
    background-color: #2A2E35;
}

.login-footer img{
    width: 100%;
    max-width: 1037px;
}

/* 下载app公众号弹窗 */

.download-modal .modal-header .close {
    z-index: 1;
}

.download-modal .modal-body {
    padding: 0;
    font-size: 0;
}

.download-cont img.img-download{
    position: relative;
    width: 30rem;
    max-width: 574px;
    z-index: 0;
}

/* 产品详情style */

.prod-title {
    padding: 10px 0px 13px;
    margin-bottom: 0;
    line-height: 15px;
    font-weight: normal;
    font-size: 12px;
    color: #61656D;
    background-color: transparent;
}

.prod-title a,
.prod-title a:hover,
.prod-title a:active,
.prod-title a:visited,
.prod-title a:focus{
    color: #B0B0B0;
    text-decoration: none;
}

.prod-header{
    padding: 35px 4.25rem 32px;
    background-color: #ffffff;
    box-shadow: 0px 2px 0px 0px rgba(233,233,233,0.5);
    border-radius: 3px;
}

.prod-header h2{
    margin-bottom: 1.3125rem;
    line-height: 2.875rem;
    font-weight: 800;
    font-size: 2rem;
    color: #2B2B2B;
}

.prod-header p{
    margin-bottom: .15rem;
    line-height: 1.8125rem;
    font-weight: 400;
    font-size: 1.0625rem;
    color: #444444;
}

.prod-container{
    margin-top: 9px;
    padding: 53px 4.25rem 53px;
    background-color: #ffffff;
    box-shadow: 0px 2px 0px 0px rgba(233,233,233,0.5);
    border-radius: 3px;
}

.prod-container h3{
    padding: 0.5rem 0;
    margin-bottom: 1.8125rem;
    line-height: 2.25rem;
    font-weight: 800;
    font-size: 1.625rem;
    color: #333333;
}

.prod-container h4{
    margin-bottom: 1rem;
    line-height: 1.875rem;
    font-weight: 700;
    font-size: 1.34375rem;
    color: #333333;
}

.prod-header h5,
.prod-container h5{
    margin-bottom: .875rem;
    line-height: 1.4375rem;
    font-weight: 600;
    font-size: 1.0625rem;
    color: #333333;
}

.prod-header p.small,
.prod-container p.small{
    line-height: 1.3125rem;
    font-weight: 400;
    font-size: .75rem;
    color: #333333;
}

.prod-container .img-group{
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -o-box-align: center;
    margin-bottom: 2.25rem;
}

.prod-container .img-group img{
    width: auto;
    max-width: 100%;
}

.prod-container dl{
    margin-top: 2.375rem;
    margin-bottom: 2.375rem;
    text-align: center;
}

.prod-container dl dd{
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    align-items: flex-end;
    -moz-box-align: flex-end;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    height: 274px;
}

.prod-container .img-group dl dd img{
    width: 138px;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.prod-container dl dd img.img-208{
    width: 208px;
}

.prod-container img.img-stepArrow_right{
    width: 17px;
    height: auto;
    margin: 0 3.125rem;
    margin-bottom: calc(3.375rem + 15px);
}

.prod-container dl dt{
    display: inline-flex;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -o-inline-flex;
    width: auto;
    align-items: flex-start;
    -moz-box-align: flex-start;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    -o-box-align: flex-start;
    margin-top: 2.375rem;
}

.prod-container dl dt label{
    display: inline-block;
    min-width: 15px;
    height: 15px;
    margin-right: .5625rem;
    line-height: 15px;
    font-weight: 600;
    font-size: 10px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 23px;
    background-color: #165DFF;
}

.prod-container dl dt p{
    line-height: 15px;
    font-weight: normal;
    font-size: 12px;
    color: #333333;
}

.prod-container .line{
    width: 100%;
    height: .0625rem;
    border-radius: .0625rem;
    background-color: #E0E0E0;
}

.prod-container .list-group-item{
    padding: 0;
    margin-bottom: 11px;
    line-height: 21px;
    font-size: 12px;
    color: #333333;
    border: none;
}

.btn-group-orderNormal{
    display: inline-block;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 576px) {
    .prod-header h2{
        margin-bottom: 15px;
        line-height: 30px;
        font-size: 22px;
    }
    
    .prod-header p{
        line-height: 20px;
        font-size: 12px;
    }

    .prod-container h3{
        margin-bottom: 20px;
        line-height: 24px;
        font-size: 18px;
    }

    .prod-container h4{
        margin-bottom: 11px;
        line-height: 20px;
        font-size: 15px;
    }

    .prod-header h5,
    .prod-container h5{
        margin-bottom: 9px;
        line-height: 16px;
        font-size: 12px;
    }

    .prod-header p.small,
    .prod-container p.small{
        margin-bottom: 4px;
        line-height: 15px;
        font-size: 12px;
    }

    .prod-container dl dt p {
        font-size: 12px;
    }
    
    .prod-container dl dd{
        height: 200px;
    }
    
    .prod-container dl dd img{
        width: 100px;
    }
    
    .prod-container dl dd img.img-208{
        width: 150px;
    }
    
    .prod-container img.img-stepArrow_right{
        width: 12px;
    }
}

@media screen and (min-width: 577px) and (max-width: 768px)  {
    .prod-header h2{
        margin-bottom: 17px;
        line-height: 32px;
        font-size: 24px;
    }
    
    .prod-header p{
        line-height: 22px;
        font-size: 13px;
    }

    .prod-container h3{
        margin-bottom: 22px;
        line-height: 26px;
        font-size: 20px;
    }

    .prod-container h4{
        margin-bottom: 13px;
        line-height: 22px;
        font-size: 17px;
    }

    .prod-header h5,
    .prod-container h5{
        margin-bottom: 10px;
        line-height: 18px;
        font-size: 14px;
    }

    .prod-header p.small,
    .prod-container p.small{
        margin-bottom: 5px;
        line-height: 18px;
        font-size: 13px;
    }

    .prod-container dl dt p {
        font-size: 13px;
    }

    .prod-container dl dd{
        height: 220px;
    }
    
    .prod-container dl dd img{
        width: 110px;
    }
    
    .prod-container dl dd img.img-208{
        width: 180px;
    }
    
    .prod-container img.img-stepArrow_right{
        width: 14px;
    }
}

@media (min-width:769px) and (max-width:1401px) {
    .prod-header h2{
        margin-bottom: 19px;
        line-height: 34px;
        font-size: 26px;
    }
    
    .prod-header p{
        line-height: 24px;
        font-size: 14px;
    }

    .prod-container h3{
        margin-bottom: 24px;
        line-height: 28px;
        font-size: 22px;
    }

    .prod-container h4{
        margin-bottom: 14px;
        line-height: 24px;
        font-size: 19px;
    }

    .prod-header h5,
    .prod-container h5{
        margin-bottom: 12px;
        line-height: 20px;
        font-size: 16px;
    }

    .prod-header p.small,
    .prod-container p.small{
        margin-bottom: 6px;
        line-height: 19px;
        font-size: 14px;
    }

    .prod-container dl dt p {
        font-size: 14px;
    }

    .prod-container dl dd{
        height: 258px;
    }
    
    .prod-container dl dd img{
        width: 130px;
    }
    
    .prod-container dl dd img.img-208{
        width: 190px;
    }
    
    .prod-container img.img-stepArrow_right{
        width: 16px;
    }
}

@media (min-width:1401px){
    .prod-header h2{
        margin-bottom: 21px;
        line-height: 46px;
        font-size: 32px;
    }
    
    .prod-header p{
        line-height: 29px;
        font-size: 15px;
    }

    .prod-container h3{
        margin-bottom: 29px;
        line-height: 36px;
        font-size: 26px;
    }

    .prod-container h4{
        margin-bottom: 16px;
        line-height: 30px;
        font-size: 21.5px;
    }

    .prod-header h5,
    .prod-container h5{
        margin-bottom: 14px;
        line-height: 23px;
        font-size: 17px;
    }

    .prod-header p.small,
    .prod-container p.small{
        margin-bottom: 7px;
        line-height: 21px;
        font-size: 15px;
    }

    .prod-container dl dt p {
        font-size: 15px;
    }

    .prod-container dl dd{
        height: 274px;
    }
    
    .prod-container dl dd img{
        width: 138px;
    }
    
    .prod-container dl dd img.img-208{
        width: 208px;
    }
    
    .prod-container img.img-stepArrow_right{
        width: 17px;
    }
    
    .prod-container dl dt label{
        display: inline-block;
        min-width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 12px;
    }
    
    .prod-container dl dt p{
        line-height: 16px;
        font-size: 12px;
    }
    
}


/* 针对大屏幕的调整 */

@media (max-width:1400px){
    .navbar-light .navbar-nav .nav-link{
        line-height: 22px;
        font-size: 16px;
    }
    .btn{
        line-height: 14px;
        font-size: 14px;
    }
    .topbar__link .dropdown-menu label,
    .cusweb-nav-head label, .nav-item label{
        font-size: 14px;
    }
    .popover-body{
        font-size: 12px;
    }
}

@media (min-width:1401px) and (max-width:1500px){
    .navbar-light .navbar-nav .nav-link{
        line-height: 22px;
        font-size: 16px;
    }
    .btn{
        line-height: 14.5px;
        font-size: 14.5px;
    }
    .topbar__link .dropdown-menu label,
    .cusweb-nav-head label, .nav-item label{
        font-size: 14.5px;
    }
    .popover-body{
        font-size: 12px;
    }
}

@media (min-width:1501px) and (max-width:1600px){
    .navbar-light .navbar-nav .nav-link{
        line-height: 22px;
        font-size: 16px;
    }
    .btn{
        line-height: 15px;
        font-size: 15px;
    }
    .topbar__link .dropdown-menu label,
    .cusweb-nav-head label, .nav-item label{
        font-size: 15px;
    }
    .popover-body{
        font-size: 12px;
    }
}

@media (min-width:1601px) and (max-width:1700px){
    .navbar-light .navbar-nav .nav-link{
        line-height: 23px;
        font-size: 17px;
    }
    .btn{
        line-height: 15.5px;
        font-size: 15.5px;
    }
    .topbar__link .dropdown-menu label,
    .cusweb-nav-head label, .nav-item label{
        font-size: 15.5px;
    }
    .popover-body{
        font-size: 12.5px;
    }
}

@media (min-width:1701px) and (max-width:1800px){
    .navbar-light .navbar-nav .nav-link{
        line-height: 24px;
        font-size: 18px;
    }
    .btn{
        line-height: 16px;
        font-size: 16px;
    }
    .topbar__link .dropdown-menu label,
    .cusweb-nav-head label, .nav-item label{
        font-size: 16px;
    }
    .popover-body{
        font-size: 13px;
    }
}

@media (min-width:1801px) and (max-width:1900px){
    .navbar-light .navbar-nav .nav-link{
        line-height: 25px;
        font-size: 19px;
    }
    .btn{
        line-height: 16.5px;
        font-size: 16.5px;
    }
    .topbar__link .dropdown-menu label,
    .cusweb-nav-head label, .nav-item label{
        font-size: 16.5px;
    }
    .popover-body{
        font-size: 13.5px;
    }
}

@media (min-width:1901px) {
    .navbar-light .navbar-nav .nav-link{
        line-height: 26px;
        font-size: 20px;
    }
    .btn{
        line-height: 17px;
        font-size: 17px;
    }
    .topbar__link .dropdown-menu label,
    .cusweb-nav-head label, .nav-item label{
        font-size: 17px;
    }
    .popover-body{
        font-size: 14px;
    }
}


@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;}}