.container {
    max-width: 1920px !important;
}
a{text-decoration: none;color: #000;}
.navbar {
    padding: 40px 0;
    background-color: #fff;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 100px;
}

.logo-text {
    font-size: 24px;
    margin-left: 15px;
    color: #000;
    text-decoration: none;
    font-weight: 200;
}

.search-box {
    position: relative;
    width: 20%;
    margin-left: auto;
    margin-top: 10px;
    margin-right: 30px;
}

.search-language-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.search-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #000;
    padding: 0px 40px 10px 0px;
    outline: none;
    font-size: 22px;
    font-weight: 200;
    line-height: 1;
    display: block;
}

.search-input::placeholder {
    color: #000;
    opacity: 1;
}

.search-icon {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 1;
    transform: none;
}

.language-login {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 0;
    font-size: 20px;
    text-align: right;
    line-height: 1;
    color: #000;
}

.language {
    font-weight: 200;
    font-size: 20px;
    vertical-align: middle;
    color: #000;
}

/* 找回密码页面样式 */
.login-page {
    min-height: 73vh;
    position: relative;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
}

.login-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/bg1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 1;
}

.login-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.login-form-container {
    position: relative;
    z-index: 3;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    margin: auto;
}

.login-logo {
    height: 80px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group-text {
    background-color: transparent;
    border-right: none;
    color: #666;
}

.form-control {
    border-left: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.verify-code-btn {
    border-radius: 0 4px 4px 0;
    padding: 0.375rem 1rem;
    white-space: nowrap;
}

.password-strength {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.strength-label {
    font-size: 14px;
    color: #666;
    margin-right: 10px;
}

.strength-bars {
    display: flex;
    gap: 4px;
}

.strength-bar {
    width: 30px;
    height: 4px;
    background-color: #eee;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.strength-weak .strength-bar:nth-child(1) {
    background-color: #ff4d4f;
}

.strength-medium .strength-bar:nth-child(1),
.strength-medium .strength-bar:nth-child(2) {
    background-color: #faad14;
}

.strength-strong .strength-bar {
    background-color: #52c41a;
}

/* 页脚样式 */
.footer {
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-ads {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-ads img {
    max-width: 150px;
    height: auto;
}

.footer-text-section {
    color: #666;
    font-size: 14px;
    text-align: center;
}

.footer-text-section p {
    margin: 5px 0;
}

/* 移动端样式 */
@media (max-width: 992px) {
    .search-box {
        width: 80%;
        margin: 30px auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 10px;
    }

    .navbar > .container {
        padding: 0;
    }

    .row {
        margin: 0;
        flex-wrap: nowrap;
    }

    .col-12 {
        width: auto;
        padding: 0;
        flex: none;
    }

    .logo-container {
        display: flex;
        align-items: center;
    }

    .logo-container img {
        height: 45px;
    }

    .logo-text {
        font-size: 12px;
        margin-left: 8px;
    }

    .search-box {
        width: 85px;
        margin: 0;
        margin-right: 10px;
        display: flex;
        align-items: center;
        margin-left: 70px;
    }

    .search-input {
        font-size: 12px;
        padding-right: 20px;
        padding-bottom: 5px;
        margin-top: 0;
    }

    .search-icon {
        width: 16px;
        height: 16px;
        right: 0;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .language-login {
        margin: 0;
        white-space: nowrap;
        display: flex;
        align-items: center;
    }

    .language-selector {
        display: none;
    }

    .login-form-container {
        margin: 20px;
        width: calc(100% - 40px);
        padding: 20px;
    }

    .navbar {
        display: none !important;
    }

    .login-bg {
        display: block !important;
        opacity: 1 !important;
    }
}
