body{
	background: #ddd
}
.loginwarrp{
	margin: 250px auto;
	width: 400px;
	padding: 30px 50px;
	background: #FFFFFF;
	overflow: hidden;
	font-size: 14px;
	font-family: '微软雅黑','文泉驿正黑','黑体';
}
.loginwarrp .logo{
	width:100%;
	height:44px;
	line-height: 44px;
	font-size: 20px;
	text-align: center;
	border-bottom:1px solid #ddd;
}
.loginwarrp .login_form{
	margin-top: 15px;
}
.loginwarrp .login_form .login-item{
	padding: 2px 8px;
	border:1px solid #dedede;
	border-radius: 8px;
	margin-top: 10px;
}
.loginwarrp .login_form .login_input{
	height: 35px;
	border: none;
	line-height: 35px;
	width: 200px;
	font-size: 14px;
	outline: none;
}
.loginwarrp .login_form .verify{
	float: left;
}
.loginwarrp .verify .verify_input{
	width: 160px;
}
.loginwarrp .verifyimg{
	height: 30px;
	margin: 20px 0 0 20px;
}
.loginwarrp .login-sub{
	text-align: center;
}
.loginwarrp .login-sub input{
	margin-top:15px;
	background: #45B549;
	line-height: 35px;
	width: 150px;
	color: #FFFFFF;
	font-size: 16px;
	font-family: '微软雅黑','文泉驿正黑','黑体';
	border: none;
	border-radius: 5px;
}
.loginwarrp .login_form .login-item .error{
	color: #F00;
	font-family: '微软雅黑','文泉驿正黑','黑体';
}
.lang-selector-item {
    padding: 2px 8px;
    cursor: pointer;
    text-align: center;
}

/* Element UI Dropdown */
.el-dropdown {
    display: block;
    width: 100%;
    position: relative;
}

/* 触发区域（透明背景，无边框） */
.el-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
    font-size: 14px;
    color: #606266;
    transition: all 0.3s;
    box-sizing: border-box;
}

.el-dropdown-trigger:hover {
    color: #409eff;
}

.el-dropdown.active .el-dropdown-trigger {
    color: #409eff;
}

/* 下拉菜单（宽度与 login-item 一致） */
.el-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -9px;
    right: -9px;
    margin-top: 5px;
    padding: 5px 0;
    background: #ffffff;
    border: 1px solid #ebeef5;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
    z-index: 2000;
    animation: dropdown-slide 0.3s ease;
}

.el-dropdown.active .el-dropdown-menu {
    display: block;
}

@keyframes dropdown-slide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 下拉菜单项 */
.el-dropdown-item {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #606266;
    transition: all 0.2s;
    line-height: 1.5;
    text-align: center;
}

.el-dropdown-item:hover {
    background-color: #ecf5ff;
    color: #409eff;
}

/* 禁用的菜单项（当前选中的语言） */
.el-dropdown-item.is-disabled {
    color: #c0c4cc;
    cursor: not-allowed;
    background-color: transparent;
    pointer-events: none;
}

.el-dropdown-item.is-disabled:hover {
    background-color: transparent;
    color: #c0c4cc;
}
.icon-globe:before {
    content: "\1F310";
}
