/* 引入字体样式（必须放在文件最前面） */
@import url('./fonts/fonts.css');
body {
    width: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

body::-webkit-scrollbar {
    display: none;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 60px;
}

.header {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    color: #FF6300;
    font-size: 24px;
    font-weight: bold;
}

.nav-menu {
    list-style: none;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
    font-family: 'normal';
}

.nav-menu a {
    text-decoration: none;
    color: #272727;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 0;
    font-family: 'normal';
}

.nav-menu a:hover,
.dropdown-content a:hover {
    color: #227CFC;
    font-family: 'normal';
    /* border-bottom: 1px solid #227CFC; */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 10px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: 'normal';
}

.dropdown:hover .dropdown-content {
    display: block;
    font-family: 'normal';
}