@font-face {
    font-family: "";
    src: url("");
}

.min-w {
    min-width: 1100px;
}

.header .w {
    padding: 0.25rem 0px;
}

.header .w, .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo1 {
    padding-right: 0.25rem;
    margin-right: 0.25rem;
    position: relative;
}

.logo1::after {
    content: "";
    height: 90%;
    width: 1px;
    background: rgb(210, 210, 210);
    position: absolute;
    right: 0px;
    top: 5%;
}

.search > .search-text {
    width: 2.1rem;
    height: 0.36rem;
    font-size: 0.13rem;
    padding-left: 0.15rem;
    padding-right: 0.13rem;
    background: rgb(238, 238, 238);
    border-top-left-radius: 0.15rem;
    border-bottom-left-radius: 0.15rem;
}

.search > .search-btn {
    vertical-align: top;
    width: 0.28rem;
    height: 0.36rem;
    background: url("../img/search.png") center center no-repeat rgb(238, 238, 238);
    box-sizing: content-box;
    cursor: pointer;
    padding-right: 0.15rem;
    border-top-right-radius: 0.15rem;
    border-bottom-right-radius: 0.15rem;
}

.nav {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 9.5px 0.5px;
    background: rgb(219, 38, 29);
}

.nav > div > ul {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.nav > div > ul > li {
    display: table-cell;
    transition: all 0.3s ease 0s;
    position: relative;
    background-color: rgb(219, 38, 29);
}

.nav > div > ul > li > a {
    display: block;
    font-family: FZLTZCHK;
    font-size: 0.2rem;
    line-height: 0.6rem;
    letter-spacing: 1px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.nav > div > ul > li:hover {
    background-color: rgb(219, 38, 29);
}

.nav > div > ul > li:hover > a {
    color: rgb(255, 255, 255);
}

.nav > div > ul > li > ul {
    position: absolute;
    min-width: 100%;
    left: 50%;
    top: 100%;
    background: rgb(219, 38, 29);
    padding: 0.1rem 0px;
    transform: translate(-50%, 12px);
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}

.nav > div > ul > li:hover > ul {
    transform: translate(-50%, 0px);
    visibility: visible;
    opacity: 1;
}

.nav > div > ul > li > ul > li {
    padding: 0px 0.14rem;
}

.nav > div > ul > li > ul > li:hover {
    background: rgba(255, 60, 1, 0.5);
}

.nav > div > ul > li > ul > li > a {
    font-size: 0.15rem;
    color: rgb(255, 255, 255);
    font-family: arial;
    line-height: 0.35rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.footer {
    padding: 0.4rem 0px;
    background: rgb(67, 67, 67);
    color: rgb(255, 255, 255);
}

.footer a {
    color: rgb(255, 255, 255);
}

.footer .w {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_logo {
}

.footer_logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.3rem;
}

.footer_logo a img {
    max-height: 100%;
    display: block;
}

.footer_logo p {
    font-size: 0.15rem;
}

.footer_link {
    width: 50%;
    margin: 0px 6%;
    padding: 0.2rem 6%;
    border-left: 1px solid rgb(161, 161, 161);
    border-right: 1px solid rgb(161, 161, 161);
}

.footer_link div {
    font-size: 0.18rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 0.3rem;
}

.footer_link div::after {
    content: "";
    width: 7px;
    height: 13px;
    background: rgb(207, 169, 114);
    position: absolute;
    right: -0.1rem;
    bottom: 0px;
}

.footer_link ul {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.footer_link ul li {
    width: 50%;
}

.footer_link ul li a {
    font-size: 0.15rem;
    line-height: 30px;
}

.footer_code {
}

.footer_code img {
    display: block;
    max-width: 0.91rem;
    margin: 0px auto 0.15rem;
}

.footer_code p {
    font-size: 0.14rem;
}

.copyright {
    font-size: 0.15rem;
    background: rgb(49, 49, 49);
    line-height: 0.37rem;
    color: rgb(255, 255, 255);
    text-align: center;
}