* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f1f1f1;
    font-family: "Roboto", Arial, sans-serif;
}

.header {
    width: 100%;
    height: 60px;
    background-color: #005178;
}

.headerlist {
    padding: 0 10px;
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerlogo {
    width: 100px;
    background-color: #005178;
    color: #fff;
}

.headerlogo a {
    color: #fff;
    text-decoration: none;
}

.search {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 40px;
}

.search input {
    padding: 10px;
    border: none;
    background-color: transparent;
    outline: none;
    color: #0a94e4;
    font-weight: 600;
}

.search button {
    padding: 5px;
    border: none;
    background-color: #ff9012;
    color: #fff;
    cursor: pointer;
    border-radius: 0 40px 40px 0;
    box-sizing: border-box;
}

.search input::placeholder {
    color: #0a94e4;
    font-weight: 600;
}

.search input:focus {
    box-shadow: 4px 4px 20px 0 #28dbff;
    border-radius: 40px 0 0 40px;
}

.navmenu {
    z-index: 9;
    list-style: none;
    display: flex;
    align-items: center;
}

.navmenu li {
    margin: 0 10px;
    background-color: #005a86;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navmenu li a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-family: Nunito, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial, ui-sans-serif, sans-serif;
    justify-content: center;
    padding: calc(10px - 3px) 1.75em;
    text-align: center;
    white-space: nowrap;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.navmenu li a:hover {
    background-color: #ff9012;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caidan {
    display: none;
}

@media (max-width:768px) {
    .logo-text text {
        display: none;
    }

    .search input {
        width: 160px;
    }

    .caidan {
        display: block;
    }

    .navmenu {
        position: fixed;
        top: 60px;
        width: 100%;
        flex-direction: column;
        height: 100%;
        background-color: #005178;
        left: 0;
        display: none;
    }

    .navmenu li {
        margin: 10px 0;
        width: 90%;
        padding: 10px 0;
        box-sizing: border-box;
        background-color: #fff;
        border-radius: 30px;
    }

    .navmenu li a {
        color: #5392e5;
    }
}

.taglist-div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    flex-wrap: wrap;
}

.taglist-div a {
    color: #333;
    text-decoration: none;
    cursor: pointer;
    padding: 10px;
    margin: 10px;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.taglist {
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-wrap: wrap;
    max-width: 100%;
}

.taglist-div img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s;
}

.taglist a {
    margin-left: 5px;
}

.modtag {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modtag:hover img {
    transform: scale(1.2);
}