* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

.journalSearch{
    width: 100vw;
    height: 100vh;
    background: #FFF url('../images/journalSearchBg.png') no-repeat top center / 100% 100%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background-color: #163A61;
    height: 64px;
    width: 100%;
    box-shadow: 0px 4px 12px 0px rgba(129, 125, 117, 0.04), 0px 4px 8px 0px rgba(129, 125, 117, 0.08), 0px 4px 4px 0px rgba(129, 125, 117, 0.08);
}

.nav {
    font-size: 16px;
    /* font-weight: bold; */
    display: flex;
    /* min-width: 1200px;
    margin: 0 auto; */
    width: 80%;
}

.nav a {
    margin-right: 20px;
    color: #FFF;
    text-decoration: none;
}

.nav a.active{
    color: #F09708;
}

.search-container {
    /* background-color: white; */
    /* border-radius: 8px; */
    /* padding: 30px; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    margin-top: 20px;
    width: 900px;
    margin: 10% auto 0;
}

.search-title {
    color: #000;
    text-align: center;
    font-family: YouSheBiaoTiHei;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 50px;
    font-style: italic;
}

.search-box {
    display: flex;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.search-input:focus {
    border-color: #1890ff;
}

.search-button {
    background-color: #1890ff;
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button img{
    width: 16px;
    display: block;
    margin-right: 8px;
}

.search-button:hover {
    background-color: #40a9ff;
}

.category-container {
    display: flex;
    flex-wrap: wrap;
}

.category-item {
    /* background-color: #f5f5f5; */
    color: #333;
    padding: 13px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-item:hover {
    /* background-color: #e6f7ff; */
    color: #007AFF;
}

.container{
    min-width: 1200px;
    margin: 0 auto;
}


