@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: #f5f7fa;
	/*font: 12px/20px "Hiragino Sans GB", "Microsoft Yahei", arial, 宋体, "Helvetica Neue", Helvetica, STHeiTi, sans-serif;*/
	color: #666;
	min-width: 1200px;
}

.dialog_buttons_bar,.dialog_title_icon{
	font: 12px/20px "Hiragino Sans GB", "Microsoft Yahei", arial, 宋体, "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
}

/* 左侧Banner区域 */
.banner-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 60px;
}

.banner-slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

/* Logo样式 */
.banner-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.banner-logo img {
    height: 36px;
    margin-right: 10px;
}

.banner-logo-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.banner-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-desc {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.banner-stat {
    text-align: center;
}

.banner-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-label {
    font-size: 14px;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 版权信息 */
.banner-copyright {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,1);
    font-size: 12px;
    z-index: 2;
}

.banner-copyright a{
    color:#FFFFFF;
	text-decoration:none;
}

/* 右侧登录区域 */
.login-container {
    width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
}

.login-header {
    margin-bottom: 30px;
}

/* 新增登录LOGO样式 */
.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.login-logo img:hover {
    transform: scale(1.05);
}

.login-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.login-subtitle {
    color: #999;
    font-size: 14px;
    text-align: center;
}

/* 选项卡样式 */
.tab-container {
    margin-bottom: 30px;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    cursor: pointer;
    color: #666;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
}

.tab a{
    text-decoration:none;
	color:#666;	
}

.tab.active {
    color: #722ed1;
    font-weight: 600;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #722ed1;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.form-control {
    width: 100%;
    height: 42px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #722ed1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(86, 178, 130, 0.2);
}

.captcha-group {
    display: flex;
    gap: 10px;
}

.captcha-group .form-control {
    flex: 1;
}

.captcha-img {
    width: 100px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
}

.btn-login {
    width: 100%;
    height: 42px;
    background-color: #722ed1;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-login:hover {
    background-color: #854eca;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 8px;
}

.forgot-password a {
    color: #722ed1;
    text-decoration: none;
}

.login-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.login-footer a {
    color: #722ed1;
    text-decoration: none;
    margin: 0 5px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    body {
        flex-direction: column;
    }
    
    .banner-container {
        height: 300px;
        flex: none;
    }
    
    .banner-slide {
        padding: 40px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .login-container {
        width: 100%;
        padding: 40px;
        box-shadow: none;
    }
    
    .banner-stats {
        gap: 20px;
    }

    .banner-logo {
        top: 20px;
        left: 20px;
    }
}