.header_EN1 {
	.header-row1 {
		display: flex;
		justify-content: flex-end;
		width: 1200px;
		margin: 0 auto;
		padding: 6px 0;
		.select {
			display: flex;
		}
		.item {
			display: flex;
			align-items: center;
			margin-right: 20px;
			cursor: pointer;
			.icon {
				width: 16px;
				height: 16px;
				margin-right: 2px;
			}
			.label {
				font-size: 12px;
				color: #4D525D;
				text-shadow: 0px 8px 8px rgba(0,0,0,0.04);
			}
		}
		.header-input {
			width: 176px;
			.el-input__inner {
				height: 27px;
				border-color: #eee;
				border-radius: 14px;
				background-color: #eee;
				box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.04);
			}
			.el-input__inner:focus {
				border-color: #3064EE;
			}
			.el-input__suffix {
				.el-input__suffix-inner {
					line-height: 27px;
					img {
						width: 16px;
						height: 16px;
						margin-right: 11px;
					}
				}
			}
		}
	}
	
	.header-row2-container {
		position: relative;
		width: 100%;
		height: 80px;
		background-color: #fff;
		box-shadow: 0px 0 8px 0px rgba(0,0,0,0.08);
	}
	.header-row2 {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		justify-content: center;
		align-items: center;
		height: 80px;
		
		.header-logo {
			width: 367px;
			height: 32px;
			margin-right: 36px;
		}
		.header-links {
			display: flex;
			.header-link {
				font-size: 16px;
				font-weight: bold;
				line-height: 24px;
				white-space: nowrap;
				color: #252525;
				text-shadow: 0px 8px 8px rgba(0,0,0,0.04);
				cursor: pointer;
			}
			.header-link + .header-link {
				margin-left: 16px;
			}
		}
	}
}