@charset "UTF-8";

@font-face {
    font-style: normal;
    font-family: 'Harmony_Regular';
    /*引入HarmonyOS_Sans_SC，目录别搞错*/
    src: url('../plug/HarmonyOS_Sans_SC_Regular.woff2') format('woff2');
}

html {
    width: 100%;
    height: 100%;
    background-color: silver;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

body::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: transparent;
}

/* 滚动条轨道 */
body::-webkit-scrollbar-track {
    border-radius: 0;
    background: transparent;
}

/* hover时显色 */
body:hover::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

body:hover::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

/* index.css是用来美化首页的 */
* {
    margin: 0;
    padding: 0;
    /* 內减模式 */
    box-sizing: border-box;
    /*font-family: cursive;*/
    font-family: 'Harmony_Regular';
}

a {
    text-decoration: none;
    /* 去除默认的下划线 */
    outline: none;
    /* 去除旧版浏览器的点击后的外虚线框 */
    /* 去除默认的颜色和点击后变化的颜色 */
}

img {
    display: block;
}

html {
    /*background: silver;*/
}

body {
    background-color: #ffffff;
    max-width: 1920px;
    margin: 0 auto;
}

.header {
    position: relative;
}

.header-top {
    background: rgba(50, 92, 140, 0.36);
    height: 111px;
    width: 100%;
    position: absolute;

}

.header-logo {
    position: absolute;
    top: 29px;
    left: 361px;
}

.header-logo > img{
    height: 52px;
}

.header-nav {
    position: absolute;
    top: 51px;
    left: 856px;
    height: 18px;
    width: 705px;
    display: flex;
    justify-content: space-between;
}

.header-nav a {
    font-size: 18px;
    color: #ffffff;
    position: relative;
}

.header-search {
    position: absolute;
    top: 42px;
    left: 1671px;

}

.header-search input {
    width: 173px;
    height: 36px;
    position: relative;
    background: rgba(235, 235, 235, 0.15);
    border: none;
    border-radius: 20px;
}

.header-search img {
    position: absolute;
    top: 8px;
    right: 14px;
}

.active::after {
    content: '';
    display: block;
    width: 7px;
    height: 6px;
    background: #04ccfe;
    border-radius: 40%;
    position: absolute;
    top: -5px;
    right: -10px;

}


.footer {
    width: 1920px;
    height: 495px;
    position: relative;
}

.footer-content {
    position: absolute;
}

.footer_item {
    color: #fefdfd;
    display: block;
    color: #e0dddd;
    font-size: 16px;
    margin-bottom: 10px;

}