@charset 'UTF-8';
 /* header */
#header {
    display: flex;
    justify-content: center;
    width: 100%;
    min-width: 1180px;
    height: 200px;
    background: url(../images/eii_bg_01.png) center no-repeat;
    background-color: rgba(0,22,112,0.73);
}

#header .main-content {
    width: 1180px;
}

#header .main-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#header .main-content .topInfo {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
}

#header .main-content .topInfo span {
    font-size: 12px;
    color: #ffffff;
}

#header .main-content .center-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .center-content .logoWrap {
    display: flex;
    align-items: center;
    height: 70px;
}
#header .center-content .logoWrap img {
    max-height: 70px;
}
#header .logoWrap .textWrap {
	border-left: 1px solid #ffffff;
	height: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
   	margin-left: 12px;
	padding-left: 15px;
	color: #ffffff;
	flex: 1;
    overflow: hidden;
}
#header .center-content .searchWrap {
    display: flex;
}

#header .searchWrap .inputWrap {
    display: flex;
    align-items: center;
    width: 257px;
    height: 42px;
    background-color: #ffffff;
}

#header .searchWrap .inputWrap input {
    border: none;
    display: block;
    height: 100%;
    outline-style: none;
}

#header .inputWrap .icon {
    margin: 0 12px;
}

#header .searchWrap .search-btn {
    width: 114px;
    height: 42px;
    line-height: 42px;
    background: rgba(65, 108, 255, 1);
    text-align: center;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

#header .navWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 59px;
    background-color: #ffffff;
    margin-top: 28px;
}

#header .navWrap .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 1;
    cursor: pointer;
}
#header .navWrap .nav-item a{
	color: #333333;
}
#header .navWrap .line {
    opacity: 0;
    width: 22px;
    height: 3px;
    background: rgb(11, 43, 154);
}

#header .navWrap .active a{
    font-weight: bold;
    color: rgb(11, 43, 154);
}

#header .navWrap .active .line {
    opacity: 1;
}