﻿/* 基础样式 */
input[type=range] {
    padding: 0
}

input::-moz-placeholder {
    color: #999;
    opacity: 1
}

input::-ms-input-placeholder {
    color: #999
}

input::-webkit-input-placeholder {
    color: #999
}

/* 输入框样式 */
.px {
    margin: 0;
    padding: 6px;
    padding-left: 8px;
    width: 420px;
    line-height: 15px;
    border: none;
    box-sizing: border-box;
    color: #FFFFFF;
    background: #2B2B2B;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    outline: none;
    font-size: 14px;
}

    .px[disabled] {
        border: 1px solid #d5d5d5;
        background: #626269;
        color: #9f9f9f;
        cursor: not-allowed
    }

/*.px:focus {
        border: 1px solid #afc2ec;
        color: #4b4b4b
    }*/

/* 下拉框样式 */
.ps {
    border-radius: 5px;
    margin: 0;
    padding: 6px;
    padding-left: 8px;
    width: 100%;
    line-height: 15px;
    border: 1px solid #d5d5d5;
    box-sizing: border-box;
    color: #4b4b4b;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    font-size: 14px;
    cursor: pointer;
}

/* 按钮样式 */
.pn {
    display: inline-block;
    padding: 0 40px;
    border: none;
    color: #fff;
    border-radius: 8px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-image: linear-gradient(to right, #565085, #101010);
}

    .pn[disabled] {
        border: none;
        background: #626269;
        color: #FFFFFF;
        cursor: default
    }

        .pn[disabled]:active {
            box-shadow: none
        }

    .pn:active {
        box-shadow: inset 0 2px 3px rgba(0,0,0,.1)
    }

    .pn.pn_simple {
        border: 1px solid #eeecec;
        background: #fff;
        color: #4b4b4b
    }

        .pn.pn_simple:hover {
            border: 1px solid #008ed2;
            color: #fff;
            background: #008ed2
        }

        .pn.pn_simple i.wechat {
            color: #2faf5a !important;
            margin-right: 5px;
        }

        .pn.pn_simple.pn_simple_other:hover {
            border: 1px solid #eeecec;
            background: #fff;
            color: #4b4b4b
        }

            .pn.pn_simple.pn_simple_other:hover i.wechat {
                color: #2faf5a
            }

a.pn.pn_info i {
    font-size: 14px;
    top: 0;
    margin-right: 5px;
    float: none
}

a.pn.pn_disable:hover, a.pn.pn_normal:hover {
    color: #9f9f9f !important
}

/* 全局字体与重置 */
body, button, input, select, textarea {
    font-size: 12px;
    font-family: "思源黑体", "阿里妈妈数黑体", sans-serif;
    color: #4b4b4b;
    position: relative;
}

body, dd, dl, form, h1, h2, h3, h4, h5, h6, li, ol, p, ul {
    margin: 0;
    padding: 0
}

a {
    color: #4b4b4b;
    text-decoration: none;
    outline: none
}

    a img {
        border: none
    }

    a:hover {
        color: #3b65a7 !important
    }

    a:active {
        star: expression(this.onFocus=this.blur())
    }

:focus {
    outline: 0
}

textarea {
    resize: none
}

/* 浮动与背景 */
.z {
    float: left
}

.y {
    float: right
}

body {
    background: #f3f3f3
}

button, input {
    outline: none
}

/* 提示信息样式 */
.login_tips {
    text-indent: 3px;
    margin-bottom: 16px;
    height: 30px;
    line-height: 33px;
    border: none;
    color: red;
    background-color: none;
    border-radius: 5px
}

    .login_tips i {
        position: relative;
        top: 1px;
        font-size: 14px;
        padding-right: 5px;
    }

.login_tips-succeed {
    text-indent: 3px;
    margin-bottom: 16px;
    height: 30px;
    line-height: 33px;
    border: 1px solid #5e8800;
    color: #fff;
    background-color: #62b600;
    border-radius: 5px
}

    .login_tips-succeed i {
        position: relative;
        top: 1px;
        font-size: 14px;
        padding-right: 5px;
    }

/* 容器样式 */
.wrap {
    margin: 0 !important;
    width: 38.2%;
    min-height: 360px;
    -webkit-text-size-adjust: 100%;
    height: 100vh;
    background: linear-gradient(to right, rgb(22 29 43), #080808);
}

        .wrap h1 img {
            margin: 0 auto;
            height: 40px;
            display: block
        }

.content {
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,.1);
    border-radius: 5px;
    display: none;
    background: transparent;
    height: 100vh;
}

.content.active {
    display: grid;
    align-items: center;
    justify-content: center;
}

.container {
    display: none;
}

    .container.active {
        display: block;
/*        margin-top: 10px;*/
    }

    .container .back {
        text-align: center;
    }

/* 表单字段集样式 */
fieldset.box {
    margin: 0;
    padding: 0;
    border: none;
    width: 420px;
}

    fieldset.box legend {
        margin: 0;
        font-size: 14px;
        color: #9f9f9f;
        text-align: center
    }

    fieldset.box .pn {
        line-height: 36px;
        width: 100%
    }

    fieldset.box .pn, fieldset.box .px {
        height: 36px;
        -webkit-appearance: none
    }

    fieldset.box .px {
        line-height: 20px;
        border-radius: 5px;
    }

    fieldset.box dl.form {
        margin: 0;
        padding: 20px 0 0
    }

            fieldset.box dl.form dd a {
                color: #3b65a7;
                cursor: pointer;
            }

            fieldset.box dl.form dd.ft, fieldset.box dl.form dd.tos {
                text-align: center
            }

            fieldset.box dl.form dd.btn {
                padding-top: 8px;
                height: 50px;
            }

                fieldset.box dl.form dd.btn .pn {
                    margin-bottom: 15px;
                    margin-top: 10px;
                }

            fieldset.box dl.form dd .info {
                display: block;
                line-height: 14px;
                font-size: 12px;
                color: #999;
                padding-top: 8px;
                padding-left: 2px;
            }

            fieldset.box dl.form dd .passlevel {
                display: block;
                font-size: 12px;
                color: #999;
                padding-left: 1px;
            }

                fieldset.box dl.form dd .passlevel em {
                    display: inline-block;
                    width: 60px;
                    height: 6px;
                    background: #dee1e8;
                    margin-right: 2px;
                }

                    fieldset.box dl.form dd .passlevel em.bar {
                        background: #449d44;
                    }

        fieldset.box dl.form button.active {
            background-image: url(../images/loading1.gif);
            background-repeat: no-repeat;
            background-position: center 10px;
        }

/* 验证码按钮 */
.pn_getcode {
    width: 100px;
    height: 36px;
    padding-right: 0;
    padding-left: 0;
    border: 1px solid #d5d5d5;
    font-size: 14px;
    color: #727272;
    background: #fafafa;
    cursor: pointer;
    margin-left: -4px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.get-code-btn {
    background-color: white;
    float: right;
    color: #4CAF50;
    font-size: 12px;
    cursor: pointer;
    height: 35px;
    /*    width: 85px;*/
    text-align: right;
    margin-left: -65px;
    padding-right: 5px;
    border: none;
    text-decoration: underline;
}

    .get-code-btn:hover {
        color: #45a049;
    }


/* 链接与注册相关 */
.a_register {
    color: #3b65a7
}

button[disabled], button[disabled] button {
    color: #ccc;
    opacity: 1;
    cursor: default
}

.switch-form {
    color: #3b65a7
}

/* 页脚与客服 */
.copyright {
    text-align: center;
    color: #4b4b4b;
    position: absolute;
    top: 100%;
    margin-top: -60px;
    width: 97%;
    font-family: "思源黑体", "阿里妈妈数黑体", sans-serif;
    line-height: 25px;
}

.rides-cs {
    font-size: 12px;
    position: fixed;
    top: 40%;
    right: 0px;
    _position: absolute;
    z-index: 1500;
    border-radius: 6px 0px 0 6px;
}

    .rides-cs a {
        color: #00A0E9;
    }

        .rides-cs a:hover {
            color: #ff8100;
            text-decoration: none;
        }

    .rides-cs .floatL {
        width: 60px;
        height: 65px;
        position: relative;
        z-index: 1;
        margin-top: 0px;
    }

        .rides-cs .floatL a {
            display: block;
        }

        .rides-cs .floatL .fa-qq {
            color: #fff;
            font-size: 30px;
            margin-top: 5px;
        }

        .rides-cs .floatL .fa-phone-square {
            color: #fff;
            font-size: 33px;
            margin-top: 5px;
        }

        .rides-cs .floatL .fa-wechat {
            color: #fff;
            font-size: 30px;
            margin-top: 5px;
        }

    .rides-cs .floatR {
        width: 130px;
        float: left;
        padding: 5px;
        overflow: hidden;
    }

        .rides-cs .floatR .cn {
            border-radius: 6px;
            margin-top: 4px;
        }

    .rides-cs .cn .titZx {
        font-size: 15px;
        color: #333;
        font-weight: 600;
        line-height: 24px;
        padding: 5px;
        text-align: center;
    }

    .rides-cs .cn ul {
        padding: 0px;
    }

        .rides-cs .cn ul li {
            line-height: 45px;
            height: 45px;
            border-bottom: solid 1px #E6E4E4;
            text-align: center;
            overflow: hidden;
            font-size: 12px;
        }

    .rides-cs .btnOpen, .rides-cs .btnCtn {
        text-align: center;
        position: relative;
        z-index: 9;
        top: 25px;
        left: 0;
        display: block;
        height: 40px;
        padding: 8px;
        border-radius: 6px;
    }

    .rides-cs .btnCtn {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .rides-cs ul li.top {
        border-bottom: solid #ACE5F9 1px;
    }

    .rides-cs ul li.bot {
        border-bottom: none;
    }

/* IE8提示 */
.co-ltIE8 {
    text-align: center;
    height: 35px;
    line-height: 35px;
    background-color: rgb(241, 215, 78);
}

/* 微信图标 */
.weixin {
    position: fixed;
    bottom: 10px;
    right: 10px;
    text-align: center;
    border: solid 1px #e6e6e6;
    padding: 10px;
    padding-bottom: 3px;
    background-color: #fff;
    border-radius: 0px;
}

/* 错误提示 */
p.error-tip {
    min-height: 25px; /* 设置最小高度保持占位 */
    padding-left: 6px;
}

/* 密码规则提示框 */
.password-tip-CN {
    position: absolute;
    left: 410px; /* 相对于输入框右侧显示 */
    top: 50%;
    transform: translateY(-90%);
    background: #333;
    color: #fff;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.4;
    display: none; /* 默认隐藏 */
    z-index: 999;
    min-width: 230px;
    white-space: normal;
}

    .password-tip-CN::before {
        content: '';
        position: absolute;
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-right-color: #333;
    }

.password-tip-EN {
    position: absolute;
    left: 410px; /* 相对于输入框右侧显示 */
    top: 50%;
    transform: translateY(-82%);
    background: #333;
    color: #fff;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.4;
    display: none; /* 默认隐藏 */
    z-index: 999;
    min-width: 230px;
    white-space: normal;
}

    .password-tip-EN::before {
        content: '';
        position: absolute;
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-right-color: #333;
    }

.custom-checkbox {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #888;
    border-radius: 3px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}

#useragreement:checked + .custom-checkbox {
    background-color: #555;
}

    #useragreement:checked + .custom-checkbox::after {
        content: "✓";
        color: #fff;
        font-size: 14px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

#autologin:checked + .custom-checkbox {
    background-color: #555;
}

    #autologin:checked + .custom-checkbox::after {
        content: "✓";
        color: #fff;
        font-size: 14px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

#useragreementRegister:checked + .custom-checkbox {
    background-color: #555;
}

    #useragreementRegister:checked + .custom-checkbox::after {
        content: "✓";
        color: #fff;
        font-size: 14px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #FFFFFF !important;
}

.label_color {
    color: #CCCCCC;
}
/* 响应式样式 */
@media only screen and (max-device-width:640px), only screen and (max-device-width:667px) {
    .login_tips {
        height: 44px;
        line-height: 44px;
        font-size: 14px;
        box-shadow: none;
        background: #f7f5ee
    }


    p.error-tip {
        min-height: 20px; /* 设置最小高度保持占位 */
    }

    .switch-form {
        color: #3b65a7
    }
}
.sel1 {
    background: #1b1b1b;
    border: none;
    border-radius: 5px;
    color: #CCCCCC;
    padding: 5px;
    margin-right: 10px;
    height: 30px;
    width: 85px;
}
.login-with-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .login-with-divider span {
        padding: 0 15px;
        font-size: 14px;
        color: #ccc;
    }

    .login-with-divider::before,
    .login-with-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background-color: #555;
    }

.g_id_signin {
    border-radius: 20px !important;
}

.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    color: white;
    font-size: 18px;
}

    .loading-indicator.active {
        display: flex;
    }

.zoom-image {
    width: 300px;
    height: auto;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

    .zoom-image:hover {
        transform: scale(1.02);
    }

.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .image-overlay.show {
        display: flex;
        opacity: 1;
    }

.overlay-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    cursor: zoom-out;
}

.image-overlay.show .overlay-image {
    transform: scale(1);
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .close-btn:hover {
        color: #ccc;
    }

.image-container {
    margin-top: 20px;
    display: none;
    gap: 30px;
    padding: 15px;
    background: linear-gradient(to bottom, rgb(22 29 43), #080808);
    border-radius: 8px;
    max-width: 800px;
    position: absolute;
    z-index: 999;
    right: 80px;
    top: 40px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .app-item span {
        margin-bottom: 8px;
        font-size: 14px;
        color: #FFF;
    }

.image-container img {
    width: 100%;
    max-width: 80px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-container.show {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.divider {
    width: 1px;
    background-color: #ddd;
}

.right-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.right-img {
    height: 100%;
    object-fit: cover;
}

.right-container {
    width: 61.8%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.righttop-buttongroup {
    position: absolute;
    right: 28px;
    top: 15px;
    height: 32px;
    z-index: 999;
}

.nav-container {
    display: flex;
    gap: 20px;
}

.nav-item {
    color: #999999;
    text-decoration: none;
    padding: 0 5px;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}

    .nav-item.active {
        color: #FFFFFF;
    }

    .nav-item::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 3px;
        background-color: #41bd5d;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-item.active::after {
        opacity: 1;
    }

.title-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .title-bar .title-text {
        position: relative;
        left: 45%;
        transform: translateX(-50%);
        font-size: 16px;
        font-weight: 500;
        color: #FFFFFF;
    }

    .title-bar a.mainContain {
        color: #3b65a7;
        text-decoration: none;
    }

        .title-bar a.mainContain:hover {
            text-decoration: underline;
        }

.code-input {
    flex: 1;
    background: #2B2B2B;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
    padding-left: 8px;
    box-sizing: border-box;
}

/* 按钮样式 */
.get-code-btn {
    background-color: #2B2B2B;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.code-container {
    display: flex;
    align-items: center;
    background-color: #1D1D1D; /* 深色背景 */
    border-radius: 8px;
    box-sizing: border-box;
/*    width:420px;*/
}


.font_linear {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    background-image: linear-gradient(to bottom, #FFF, #CCC);
    font-size: 20px;
}

.right-container {
    width: 61.8%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.top-button {
    margin-left: 10px;
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    width: 60px;
    height: 30px;
    background-color: transparent;
    background-image: url('../../Content/images/btn_success.png');
    background-size: 60px 30px;
}

.righttop-buttongroup {
    position: absolute;
    right: 28px;
    top: 15px;
    height: 32px;
    color: #fff;
    z-index: 999;
}