/* layout   模块头部样式 */
.layout-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1000;
    width: 100%;
    height: 120px;
    background: #0859C0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}
.layout-header > div {
    height: 100%;
}
/* logo */
.layout-header .logo {
    width: 129px;
    height: auto;
}

/* 导航 */
.layout-header .navs {
    min-width: 400px;
    max-width: 720px;
    width: 48%;
    height: 100%;
    padding-left: 7%;
}
.layout-header .nav-lis {
    height: 100%;
    white-space: nowrap;
    border-bottom: 4px solid transparent;
}
.layout-header .nav-lis:nth-child(1) {
    margin-left: 0;
}
.layout-header .nav-lis > a {
    height: 100%;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 24px;
}
.layout-header .nav-lis:hover,
.layout-header .nav-lis.active {
    border-color: #00DEFF;
}
.layout-header .nav-lis:hover > a,
.layout-header .nav-lis.active > a {
    color: #00DEFF;
}
.layout-header a {
    color: #333333;
}

/* 搜索框 */
.layout-header .search {
    position: relative;
    width: 328px;
    height: 48px;
    margin: 0 10px;
    max-width: 21%;
    min-width: 100px;
    padding: 0 19px;
    background: #FFFFFF;
    border-radius: 24px;
}
.layout-header .search img {
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 21px;
    height: 21px;
    float: left;
}
.layout-header .search input {
    width: 100%;
    margin-left: 30px;
    border: 0;
}
.layout-header .search input:focus, 
    .layout-header .search input:hover {
    outline: none;
    border: none;
    caret-color: #333333;
}

/* 联系方式 */
.layout-header .link {
    width: 180px;
    margin-left: 10px;
    white-space: nowrap;
}
.layout-header .round {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 50%;
    overflow: hidden;
}
.layout-header .round img {
    width: 25px;
    height: 25px;
}
.layout-header .content {
    line-height: 26px;
    margin-left: 10px;
}
.layout-header .content p:nth-child(1) {
    font-size: 14px;
    color: #FFFFFF;
}
.layout-header .content p:nth-child(2) {
    font-size: 18px;
    color: #FFFFFF;
}

/* 子菜单导航 */
.layout-header .nav-lis:hover .nav-drop {
    z-index: 1;
    height: auto;
    opacity: 1;
    filter: alpha(opacity=100);
}
.layout-header .nav-drop {
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .15);
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all .5s;
}
.drop-content::after {
    content: '';
    display: block;
    clear: both;
}

.left-navs {
    float: left;
    width: 340px;
    padding: 55px 105px 121px 0;
    border-right: 1px solid #E6E6E6;
}
.drop-navs {
    height: 160px;
    padding-right: 150px;
}
.drop-navs .child-lis {
    width: fit-content;
    margin-bottom: 0;
}
.child-lis {
    position: relative;
    width: 100%;
    height: 30px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 30px;
    white-space: nowrap;
    color: #333333;
    cursor: pointer;
}
.child-lis:nth-last-child(1) {
    margin-bottom: 0;
}
.left-navs .child-lis::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -20px;
    width: 20px;
    height: 14px;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-image: url('../../image/layout/arrow.png');
}
.child-lis.active, .child-lis:hover, .child-lis.active a, .child-lis:hover a{
    color: #0859C0;
}
.left-navs .child-lis.active::after, .child-lis:hover::after {
    background-image: url('../../image/layout/arrow-fill.png');
}

.right-con {
    display: none;
    float: left;
    padding: 55px 85px;
}
.right-con.active {
    display: block;
}
.right-con .child-lis.active a, 
.right-con .child-lis:hover a,
.drop-navs .child-lis:hover a {
    color: #0859C0;
}
