﻿/* pc端主容器的宽度 */
.main-container {
    margin: 0 auto;
}
.header-mask {
    width: 100%;
    position: relative;
    background-color: #FAC2D2;
    text-align: center;
}
.header-mask p {
    font-size: 14px;
    color: #EE2A7B;
    margin: 0;
    padding: 10px 0;
}
.header-mask p a {
    font-size: 14px;
    color: #fff;
}
.header-mask .close {
    width: 20px;
    padding: 8px;
    display: block;
    position: absolute;
    top: 1px;
    right: 10px;
    cursor: pointer;
}

.header {
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    
}
.header .logo {
    
}
.header .logo .img {
    width: auto;
    height: 60px;
    display: block;
}
.header .nav-list {
    display: flex;
    justify-content: center;
    width:80%;
}
.header .nav-list .nav-item {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}
.header .nav-list .nav-item .text {
    font-size: 14px;
    font-weight:300;
    color: #fff;
    white-space: nowrap;
}
.header .nav-list .nav-item-active .text {
    font-weight: 700;
    color: #FAC2D2;
}
/* 添加下拉菜单样式 */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 12px 8px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 14px;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* 保持原有导航项悬停效果 */
.nav-item:hover .text:not(.dropdown-content a) {
    opacity: 0.8;
}

.container{
    cursor: default;
}
.footer {
    background: #dde9f7;
    padding: 130px 143px 100px 143px;
}
.footer .container {
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px;
    border-bottom:  1px solid rgb(38, 121, 177);
}
.footer .container .container-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer .container .container-item img,.footer .container .container-item .title,.footer .container .container-item .text{
    margin-bottom:10px;
}
.footer .container .container-item img {
    display: block;
    width: 130px;
}
.footer .container .container-item .title {
    font-size: 18px;
    color: rgb(38, 121, 177);
}
.footer .container .container-item .text {
    font-size: 14px;
    font-weight: 300;
    color: #000;
}
.footer .container .container-item .link-text:hover {
    color: #444;
}
.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
    color: rgb(89, 85, 85);
}

@font-face {
    font-family: 'Regular';
    src: url(../lib/font/MFLangSong_Noncommercial-Regular.otf);
}
