.logo-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 搜索 */
.logo-container .search-container{
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
    position: relative;
}

.logo-container .search-container input{
    display: block;
    height: 34px;
    outline: none;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 0 10px;
}

.logo-container .search-container .btn-search img{
    display: block;
    width: 34px;
    height: 34px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
    cursor: pointer;
}

/* 登录 */
.logo-container .btn-login{
    color: #ffffff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-container .btn-login img{
    display: block;
    width: 16px !important;
    height: 16px !important;
}

/* 
 * 登录弹框
 */
 .modal{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0005;
	z-index: 99;
	display: none;
}
.modal-dialog{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal-dialog .modal-content{
	width: 420px;
	background: #fff;
	border-radius: 6px;
	transform: translateY(-20px);
	transition: transform 0.2s;
	padding: 30px 20px;
	box-sizing: border-box;
	position: relative;
}
.modal.fade .modal-dialog .modal-content{
	transform: translateY(0);
}
.login-title{
	color: #333;
	font-weight: bold;
	font-size: 20px;
	user-select: none;
	font-family: "pingFang SC";
	margin-bottom: 10px;
}
.modal.fade .modal-dialog .btn-close{
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	cursor: pointer;
}
.modal.fade .modal-dialog form{
	padding: 20px 0;
}
.modal.fade .modal-dialog form .form-group{
	margin-bottom: 10px;
}
.modal.fade .modal-dialog form .form-group input{
	width: 100%;
	height: 46px;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
	padding: 0 10px;
	box-sizing: border-box;
	font-size: 16px;
}
.modal.fade .modal-dialog form .form-group .help{
	color: #d00000;
	font-size: 14px;
	padding: 0 10px;
	height: 20px;
	margin-top: 10px;
	visibility: hidden;
}
.modal.fade .modal-dialog form .form-group input[type=submit]{
	background-color: #d00000;
	border-color: #d00000;
	color: #ffffff;
	cursor: pointer;
}
.modal.fade .modal-dialog form .form-group:last-child{
	margin-bottom: 0;
}






