.header {
    position: fixed;
    top: 0;
    width: 100vw;
    height: .9375rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0) 100%);

    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: 0 0 0 .1146rem;
    transition: background 0.3s ease;
}

/* .header:hover {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 100%);
} */
.header-logo {
    width: 3.8854rem;
    height: .651rem;
}

.header-logo img {
    width: 3.8854rem;
    height: .651rem;
    object-fit: contain !important;
}

.header-menu {
    display: flex;
    padding-right: .1458rem;
    padding-left: .2969rem;
    height: 100%;
    flex: 1;
    justify-content: space-between;
}

.header-menu li {
    margin-right: .0781rem;
    position: relative;
    height: 100%;
}

.header-menu li a,
.header-menu li .parent-a {
    font-size: .1458rem;
    line-height: 1;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-family: 'Source Han Sans CN';
}

.header-menu li:hover .parent-a span::before {
    width: 100%;
    content: "";
    position: absolute;
    top: 65%;
    height: 3px;
    background: #9B0D14;
}

.header-menu li .parent-a.active span::before {
    width: 100%;
    content: "";
    position: absolute;
    top: 65%;
    height: 3px;
    background: #9B0D14;
}

/* Underline animation effect for all header menu links */
.header-menu li a::after,
.header-menu li .parent-a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
    opacity: 0;
}

.header-menu li a:hover::after,
.header-menu li .parent-a:hover::after {
    width: 100%;
    opacity: 1;
}

/* Submenu Styles */
.header-menu .submenu {
    transform: translateX(-50%);
    position: absolute;
    top: 70%;
    left: 50%;
    background: rgba(255, 255, 255, 0.64);
    min-width: .8333rem;
    display: none;
    border-radius: .0573rem;
    padding: 0;
    z-index: 1000;
    overflow: hidden;
}

.header-menu .submenu li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(200, 200, 200, 0.3);
}

.header-menu .submenu li:last-child {
    border-bottom: none;
}

.header-menu .submenu li a {
    padding: .0781rem 0 .0781rem 0;
    font-size: .1rem;
    white-space: nowrap;
    transition: all 0.3s;
    color: #333333;
    text-align: center;
    display: block;
    position: relative;
    font-weight: 400
}

/* Submenu underline animation effect */
.header-menu .submenu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: #9B0D14;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
    opacity: 0;
}

.header-menu .submenu li.active a::after {
    width: 80%;
    opacity: 1;
}

.header-menu .submenu li a:hover::after {
    width: 80%;
    opacity: 1;
}

/* Don't show underline for active item since it already has highlight */
.header-menu .submenu li.active a::after {
    display: none;
}

.header-menu .submenu li a:hover {
    background-color: rgba(155, 13, 20, 0.1);
    color: #9B0D14;
}

.header-menu .submenu li.active {
    background-color: rgba(155, 13, 20, 0.1);
    position: relative;
}

.header-menu .submenu li.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #9B0D14;
    display: none;
}

.header-menu .submenu li.active a {
    /* color: #9B0D14;
    font-weight: bold; */
}

.header-menu .has-submenu:hover .submenu {
    display: block;
}

.header-menu .has-submenu>a::after,
.header-menu .has-submenu>.parent-a::after {
    content: '▼';
    font-size: .08rem;
    margin-left: .05rem;
    display: inline-block;
    vertical-align: middle;
    display: none;
}

.news-header {
    width: 100%;
    height: .4531rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    // padding: .0521rem 0;
    line-height: .3125rem;
    font-size: .2188rem;
    font-family: 'Microsoft YaHe';
}

.news-header-left {
    height: 100%;
    position: relative;
    padding-left: .099rem;
    position: relative;
}

.news-header-left p {
    margin: 0;
    padding: 0;
}

.news-header-left::after {
    position: absolute;
    height: 100%;
    width: .0208rem;
    // background: #9B0D14;
    content: '';
    left: 0;
    top: 0;
}

.news-header-left-title {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    line-height: 1;
    font-weight: bold;
}

.news-header-left-title span:first-child {
    font-size: .2188rem;
    color: #333333;
    margin-bottom: .0208rem;
}

.white .news-header-left-title span:first-child {
    color: #FFFFFF;
}

.news-header-left-title em {
    color: #9B0D14;
    font-style: normal;
}

.white .news-header-left-title em {
    color: #FFFFFF;
}

// .news-header-left-title span:last-child {
//     font-size: .0885rem;
//     color: #999999;
//     text-transform: uppercase;
//     font-weight: 400;
// }
// .white .news-header-left-title span:last-child{
//     color: #FFFFFF;
// }
.news-header-right {
    padding-right: .0521rem;
    display: flex;
    align-items: center;
}

.news-header-right-img {
    width: .25rem;
    height: .25rem;
    margin-right: .0625rem;
}

.news-header-right a {
    font-family: 'Source Han Sans CN' 'Source Han Sans CN';
    font-weight: 400;
    font-size: .0781rem;
    color: #9B0D14;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.white .news-header-right a {
    color: #FFFFFF;
}



.fixed-search {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-search.active {
    opacity: 1;
    visibility: visible;
}

.fixed-search-content {
    width: 2.4063rem;
    display: flex;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.fixed-search.active .fixed-search-content {
    transform: translateY(0);
}

.fixed-search input {
    height: .2604rem;
    width: 2.6042rem;
    border: none;
    padding-left: .1042rem;
    background: #FFFFFF;
    color: #9B0D14;
    font-size: .0833rem;
    outline: none;
    border-radius: .026rem 0 0 .026rem;
}

.fixed-search button {
    font-size: .0833rem;
    width: .5208rem;
    height: .2604rem;
    color: #FFFFFF;
    background: #9B0D14;
    border: none;
    cursor: pointer;
    border-radius: 0 .026rem .026rem 0;
}

.fixed-search-close {
    width: .2448rem;
    height: .2448rem;
    font-size: .1146rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    position: absolute;
    right: .1042rem;
    top: .1042rem;
}

.fixed-search-open {
    position: absolute;
    right: .2083rem;
    top: .1875rem;
    cursor: pointer;
    width: .1406rem !important;
    height: .1406rem !important;
}

.fixed-search-open img {
    width: .1406rem !important;
    height: .1406rem !important;
    object-fit: contain !important;
    position: absolute;
    top: 0;
}