﻿* {
    margin: 0;
    padding: 0
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

.header {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 140px;
    background-color: rgb(157, 41, 51);
}

.header-top {
    height: 90px;
}

.header-info {
    width: 1220px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bottom {
    height: 50px;
    background-color: rgb(112, 23, 16);
}

.nav {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
}

.search-wrapper {
    display: flex;
    align-items: center;
}

.search-wrapper input {
    width: 205px;
    height: 34px;
    border: none;
    outline: none;
    border-radius: 2px;
    padding: 5px 10px;
    box-sizing: border-box;
    margin-right: 8px;
}

.search-wrapper button {
    width: 54px;
    height: 34px;
    border: none;
    background-color: rgb(214, 62, 46);
    color: #fff;
    border-radius: 2px;
}

.nav>ul {
    display: flex;
    width: 100%;
    height: 100%;
    font-family: "黑体";
}

.nav>ul>li {
    position: relative;
    line-height: 50px;
    width: 130px;
    text-align: center;
}

.nav>ul>li>a {
    display: block;
    color: #fff;
    letter-spacing: 2px;
    font-size: 17px;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.nav>ul>li>a::after {
    content: "";
    display: inline-block;
    margin-left: -2px;
}

.nav>ul>li:hover>a {
    background-color: rgb(158, 41, 51);
}

.nav>ul>li:hover {
    box-shadow: 0 0 10px #333;
}

.nav>ul>li:first-child>a {
    letter-spacing: 12px;
}

.nav>ul>li:first-child>a::after {
    content: "";
    display: inline-block;
    margin-left: -12px;
}

.nav>ul>li.active {
    background-color: rgb(158, 41, 51);
    box-shadow: 0 0 10px #333;
}

.nav>ul>li:hover>.sub-menu {
    height: auto;
}

.sub-menu {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: #f3f5f7;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 10px 10px #333;
}

.sub-menu>li {
    height: 40px;
    line-height: 40px;

}

.sub-menu>li>a {
    color: #444;
}

.sub-menu>li:hover {
    background-color: #9d2933;
}

.sub-menu>li:hover>a {
    color: #fff;
}

.main {
    background-color: rgb(243, 245, 246)
}

.header-bg {
    height: 140px;
}

.main-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 26px;
}

.footer {
    background-color: rgb(157, 41, 51);
}

.footer-top {
    height: 272px;
}

.footer-bottom {
    height: 65px;
    background-color: rgb(112, 23, 16);
    text-align: center;
    padding-top: 3px;
}

.footer-top-content {
    width: 1220px;
    height: 100%;
    margin: 0 auto;
}

.bar-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 27px 0;
}

.bar {
    width: 100px;
    height: 10px;
    background-color: rgb(112, 23, 16);
}

.public-list {
    display: flex;
    justify-content: center;
}

.public-list-item {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.public-img {
    margin-right: 10px;
}

.public-text-wrapper {
    color: #fff;
    letter-spacing: 2px;
    font-family: "黑体";
}

.public-text {
    font-size: 14px;
}

.public-type {
    font-size: 16px;
    margin-top: 5px;
    padding-left: 20px;
}

.public-declaration {
    padding-left: 40px;
    font-size: 15px;
    color: #fff;
    font-family: "黑体";
    margin-top: 20px;
    letter-spacing: 1px;
}

.rights {
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ddd;
    font-family: "黑体";
    font-size: 15px;

}

.rights span {
    margin: 0 10px;
}