body {
    width: 100%;
    margin: 99px auto 0;
    overflow-y: scroll;
    font-family: Microsoft YaHei;
}

[v-cloak] {
    display: none;
}

#menu.menutheme {
    background: #000;
    color: #fff;
    z-index: 20;
    position: fixed;
    width: 100%;
    top: 0;
}

#menu .mainmenu {
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 1px 1px 0px #A99F9F4D;
    padding: 14px 0;
}

#menu .menuleft {
    display: flex;
    align-items: center;
    gap: 48px;
    min-width: 1400px;
    margin: 0 auto;
}

#menu .menuleft .logo {
    cursor: pointer;
}

.menutheme .menutheme-nav {
    margin: 0 auto;
}

#menu .menuleft .search {
    position: relative;
    width: 300px;
}

#menu .menuleft .search-input {
    padding: 12px 40px 13px 40px;
    border: unset;
    border-radius: 5px;
    background: #212121;
    outline: none;
    color: #fff;
    min-width: 268px;
}

#menu .menuleft .search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

#menu .menuright {
    max-width: 1412px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

#menu .menuright .mitem {
    display: flex;
    flex-flow: nowrap;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    padding: 12px 12px;
}

#menu .menuright .mitem:hover {
    background: rgba(51, 51, 51, 1);
}

#menu .menuright .mitem:hover::after {
    transform: rotate(180deg);
}

#menu .menuright .mitem::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"%3E%3Cpath stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" d="m12 6-4 4-4-4"/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 5px;
}

#menu .mitem {
    position: relative;
}

#menu .submenu {
    position: absolute;
    background: #fff;
    display: flex;
    flex-direction: column;
    color: #000;
    top: 100%;
    left: 0%;
    padding: 10px 0;
    width: 224px;
    border: 1px solid rgba(122, 122, 122, 1);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

#menu .submenu .sitem {
    padding: 8px 16px;
}

#menu .submenu .sitem:hover {
    background: rgba(245, 245, 245, 1);
}

footer {
    border-top: 1px solid #E0E0E0;
    background: #F2F2F2;
    padding: 40px 0;
}

footer .top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 32px;
}

footer .top .logo {
    height: 100%;
    cursor: pointer;
}

footer .item {
    padding-top: 12px;
}

footer .item ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

footer .bottom {
    padding-top: 40px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

footer .bottom a {
    color: #333;
}

footer .item ul li a {
    color: #333;
}

footer .item ul li a:hover,
footer .bottom a:hover {
    color: #0056FF;
}

footer .item .title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

footer .item img {
    max-width: 120px;
    margin-top: 24px;
}

section .container,
footer .container {
    max-width: 1400px;
    margin: 0 auto;
}

.img-fiuld {
    width: 100%;
    height: 100%;
}

.link-hover-underline {
    position: relative;
    text-decoration: none
}

.link-hover-underline::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: auto;
    width: 0;
    content: "";
    border-bottom-color: inherit;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear
}

.link-hover-underline:hover {
    text-decoration: none
}

.link-hover-underline:hover::after {
    right: auto;
    left: 0;
    width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.btn {
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

#menu .menu-toggle {
    cursor: pointer;
    width: 30px;
    display: none;
}

.menu-toggle .bar {
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-toggle .bar.active:nth-child(1) {
    transform: rotate(44deg) translate(7px, 7px);
}

.menu-toggle .bar.active:nth-child(2) {
    opacity: 0;
}

.menu-toggle .bar.active:nth-child(3) {
    transform: rotate(-44deg) translate(5px, -5px);
}

@media screen and (max-width: 1366px) {

    section .container,
    footer .container {
        max-width: 1200px;
    }

    #menu .menuleft {
        min-width: 1200px;
    }

    #menu .menuright {
        max-width: 1200px;
    }
}

@media screen and (max-width: 996px) {
    body {
        margin: 0px auto 0;
    }

    #menu .submenu {
        z-index: 1;
    }

    #menu .menuleft {
        min-width: 92%;
        justify-content: space-between;
        margin: 0 auto;
    }

    #menu .mainmenu {
        padding: 15px 0;
    }

    section .container,
    footer .container {
        margin: 0 10px;
    }

    .menutheme .search {
        display: none;
    }

    #menu .menu-toggle {
        display: block;
    }

    #menu .menuright {
        display: none;
    }

    #menu .menuright.active {
        display: flex;
        flex-direction: column;
    }

    #menu .menuright .mitem {
        justify-content: space-between;
    }

    footer .top {
        flex-direction: column;
        padding: 0 10px 10px;
    }

    footer .item ul {
        display: none;
        margin: 10px 0;
    }

    footer .item ul li a {
        width: 90%;
        padding: 5px;
        display: inline-block;
        margin: 2px 0;
    }

    footer {
        padding: 20px 0;
    }

    footer .bottom {
        padding: 20px 0 0;
    }

    footer .item .title {
        justify-content: space-between;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #000;
        padding-bottom: 10px;
    }

    footer .item .title::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"%3E%3Cpath stroke="%23000" stroke-linecap="round" stroke-linejoin="round" d="m12 6-4 4-4-4"/%3E%3C/svg%3E');
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 5px;
    }

    footer .item:last-child .title,
    footer .item:last-child .title::after {
        border: none;
        content: unset;
        padding-bottom: 0;
    }

    footer .item img {
        margin-top: 15px;
    }

    footer .top .logo {
        margin-bottom: 15px;
    }

}