@font-face {
    font-family: 'iconfont';
    src: url('/hnyky/font/iconfont.woff2?t=1717658721956') format('woff2'),
        url('/hnyky/font/iconfont.woff?t=1717658721956') format('woff'),
        url('/hnyky/font/iconfont.ttf?t=1717658721956') format('truetype');
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body{
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, "Helvetica Neue", Arial, "Open Sans", "Hiragino Sans GB", sans-serif
}


.headerdiv{
    margin: 0;
    padding: 0 5%;
    width: 100%;
    height: 150px;
    position: relative;
    background-image: url('/hnyky/images/head_illustration.png');
    background-size: 100% calc(100% + 50px);
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
}
.headerdiv .logodiv{
    height: 100%;
    width: 100%;
    /* padding: 0 4%; */
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
}
.headerdiv .logodiv .logoimg{
    display: block;
    width: 70%;
    align-self: baseline;
    max-width: 1200px;
}
.headerdiv .logodiv .mottoimg{
    display: block;
    width: 25%;
    align-self: baseline;
    max-width: 415px;
    position: relative;
    top: -40px;
}
/* ËÑË÷¿ò */
.headerdiv .searchDiv{
    display: block;
    position: absolute;
    right: 6%;
    bottom: 30px;
    display: flex;
}
.headerdiv .searchDiv button{
    width: 70px;
    height: 40px;
    color: white;
    background: linear-gradient(to right, #4b5f96, #354c7c);
    border: 0;
}
.headerdiv .searchDiv button:hover{
    cursor: pointer;
}
.headerdiv .searchDiv button span{
    font-size: 22px;
}
.headerdiv .searchDiv input{
    width: 260px;
    height: 40px;
    padding-left: 10px;
    border: 2px solid #4b5f96;
    box-sizing: border-box;
}









/* ²Ëµ¥À¸ */
.menuBar{
    display: flex;
    justify-content: center;
    background: linear-gradient(to top, #00325b, #076cbc);
}
.menuBar .firstUl{
    display: flex;
    width: 90%;
    justify-content: space-between;
    font-weight: 600;
}
.menuBar .firstUl a{
    color: white;
}
.menuBar .firstUl .firstLi{
    list-style: none;
    padding: 15px 20px;
    /* font-family: 'Ë¼Ô´ËÎÌå-bold', sans-serif; */
    font-size: 20px;
    position: relative;
    text-wrap: nowrap;
    transition: 0.3s;
}
@media (max-width: 1350px) {
    .menuBar .firstUl .firstLi{
        padding: 15px 15px;
    }
}
@media (min-width: 1150px) and (max-width: 1350px) {
    .menuBar .firstUl .firstLi{
        padding: 15px 10px;
    }
}
@media (min-width: 1000px) and (max-width: 1150px) {
    .menuBar .firstUl .firstLi{
        padding: 15px 5px;
    }
}
@media (max-width: 1000px) {
    .menuBar .firstUl .firstLi{
        padding: 15px 3px;
    }
}
.menuBar .firstUl .firstLi:hover{
    cursor: pointer;
    background-color: #00325b;
    transition: 0.3s;
}
.menuBar .firstUl .news:hover .secondUl{
    display: flex;
}
.menuBar .firstUl .firstLi .secondUl{
    display: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 300;
}
.menuBar .firstUl .firstLi .secondUl .secondLi{
    list-style: none;
    padding: 15px 45px;
    font-size: 20px;
    white-space: nowrap;
    background: rgba(2, 74, 132, 0.86);
    transition: 0.3s;
}
.menuBar .firstUl .firstLi .secondUl .secondLi:hover{
    background: rgba(2, 74, 132, 1) !important;
    transition: 0.3s;
}