67 lines
1.2 KiB
CSS
67 lines
1.2 KiB
CSS
header {
|
|
background: #fff;
|
|
position: fixed;
|
|
z-index: 99;
|
|
left: 0;
|
|
right: 0;
|
|
height: 112px;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
box-shadow: 8px 8px 16px 4px rgba(133, 139, 146, 0.06);
|
|
}
|
|
header .container {
|
|
height: inherit;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0;
|
|
background: #fff;
|
|
}
|
|
header .container:after {
|
|
display: none;
|
|
}
|
|
header a {
|
|
text-decoration: none;
|
|
color: #000;
|
|
}
|
|
header a.logo {
|
|
transform: translateY(4px);
|
|
}
|
|
header .header_menu {
|
|
margin: 0 32px;
|
|
padding: 0 32px;
|
|
border-left: 1px solid #E7E9F0;
|
|
border-right: 1px solid #E7E9F0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 32px;
|
|
width: 100%;
|
|
}
|
|
header .header_menu:last-child {
|
|
border-right: 0;
|
|
padding-right: 0;
|
|
margin-right: 0;
|
|
}
|
|
header .header_menu nav ul {
|
|
display: flex;
|
|
}
|
|
header .header_menu nav ul li:not(:last-child) {
|
|
margin-right: 24px;
|
|
}
|
|
header .header_menu nav ul li:last-child {
|
|
margin-right: 63px;
|
|
}
|
|
header .header_menu nav ul li a.active {
|
|
color: var(--blue);
|
|
font-weight: 700;
|
|
}
|
|
header .lk {
|
|
display: block;
|
|
text-decoration: none;
|
|
min-width: 32px;
|
|
width: 32px;
|
|
height: 32px;
|
|
background: url("/assets/images/icons/icon-lk.svg") no-repeat center;
|
|
}
|