@font-face {
  font-family: 'OFL Sorts Mill Goudy TT';
  src: url('../Fonts/OFL Sorts Mill Goudy TT') format('woff2'),
       url('../Fonts/OFL Sorts Mill Goudy TT') format('woff'),
       url('../Fonts/OFL Sorts Mill Goudy TT') format('TrueType');
  font-weight: normal;
  font-style: italic;
}
body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family:  'OFL Sorts Mill Goudy TT', "Goudy St MTT Italic", cursive;
    color:#333;
}

/*---------------------------------------*/
.horizontal-menu {
    display: flex;
    justify-content: space-around;
    /*background-color: #f8f9fa;*/
    padding: 10px;
    z-index: 1000;
    width: 65%;
    /*width: auto;*/
    color:#333;
    font-size: 16px;

}

.horizontal-menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
}

.horizontal-menu a:hover {
    background-color: #ddd;
    color:#333;
}

/* 添加下拉菜单样式 */
.dropdown {
    position: relative;
    display: inline-block;
    color:#333;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    /*min-width: auto;*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    color:#333;
}

.dropdown-content a {
    /*color: black;*/
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color:#333;

}

.dropdown:hover .dropdown-content {
    display: block;
    /*color:#333;*/
    color: #007BFF;
}