.banxin {
    width: 1410px;
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}
ul li {
    list-style: none;
}
.flex-tb {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.flex-sbac {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/*pc头部样式*/
.h-head-warp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.navbar {
}

.nav {
    display: flex;
    justify-content: center; /* 将内容居中 */
}

.nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav li {
    margin: 0 15px;
    color: white; /* 为li元素设置文本颜色 */
    transition: all 0.3s;
}

.nav a {
    position: relative;
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 0 48px;
    transition: all 0.3s;
    height: 90px;
    line-height: 90px;
    font-size: 18px;
}
.nav a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background-color: #ebd6c0;
    transition: all .3s;
}
.nav li .h-active {
    position: relative;
}
.nav li .h-active::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background-color: #ebd6c0;
}

.nav li:hover a::after {
    width: 60%;
}


.nav .logo {
    font-size: 24px;
    font-weight: bold;
}
.nav .logo img {
    width: 66px;
}
.nav .logo a {
    padding: 0;
    display: flex;
    align-items: center;
}
.nav .logo a img {
    width: 66px;
}
.nav .logo a::after {
    display: none;
}

.nav .icon {
    display: flex;
    align-items: center;
}

.nav .icon a::after {
    display: none;
}
.nav .icon .ditu {
    display: flex;
    align-items: center;
}
.nav .icon .ditu img {
    width: 20px;
    height: 20px;
    margin-right: 10px;

}
.nav .icon .ditu p {
    line-height: 20px;
}
.nav .icon .search {
    display: flex;
    align-items: center;
}

/*公共头部*/
.common-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

.common-top .l h1 {
    font-size: 50px;
    color: #e8e8e8;
}

.common-top .l h2 {
    position: relative;
    font-size: 40px;
}
.common-top .l h2::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    width: 80px;
    height: 3px;
    background-color: #dbc6af;
}

.common-top .r {

}
.common-top .r a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    padding-bottom: 20px;
    border-bottom: 1px solid #e3d3c2;
}

.common-top .r a::after {
    position: absolute;
    content: '';
    bottom: -1px;
    right: 0;
    width: 50%;
    height: 2px;
    background-color: #232323;
    transition: all .3s;
}

.common-top .r a:hover::after {
    width: 100%;
}

.common-top .r p {
    margin-right: 40px;
}

.ny-banner img {
    width: 100%;
    height: 581px;
    object-fit: cover;
}

@font-face {
    font-family: muli;
    src: url('../font/muli-2.ttf');
}

@font-face {
    font-family: hyqh;
    src: url('../font/hyqh-50.ttf');
}

.font-muli {
    font-family: muli;
}

.font-hyqh {
    font-family: hyqh;
}