* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}
#vsb_content_501_13031_u61{
  padding:10px 0;
}
.header {
    display: flex;
    width: 100%;
    height: 150px;
    justify-content: space-between;
    background: linear-gradient(to bottom, #1565c0, #ffffff);
    border-bottom: 1.5px solid #e3eaf2;
}

.header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.header .logo img {
    /* max-width: 100px; */
    height: auto;
    display: block;
    margin: 0 auto;
    /* border-radius: 12px; */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header .nav {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .nav img {
    /* max-width: 120px; */
    height: auto;
    display: block;
    margin: 0 auto 4px auto;
    /* border-radius: 10px; */
    /* box-shadow: 0 1px 6px rgba(0,0,0,0.06); */
}

.header .search {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.search-form {
    display: flex;
    width: 200px;
    height: 40px;
    position: relative;
    margin-right: 20px;
}

.search-input {
    width: 100%;
    height: 100%;
    border: 2px solid #3498db;
    border-radius: 20px;
    padding: 0 45px 0 15px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #2980b9;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.5);
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #3498db;
    border: none;
    border-radius: 0 20px 20px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #2980b9;
}

.search-btn.search-btn-icon {
    background: #3498db url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'16\' height=\'16\' fill=\'white\' class=\'bi bi-search\' viewBox=\'0 0 16 16\'><path d=\'M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.398a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z\'/></svg>') no-repeat center center;
    background-size: 20px 20px;
    border: none;
    border-radius: 0 20px 20px 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.search-btn.search-btn-icon:hover {
    background-color: #2980b9;
}

/* 导航样式 */
.nav-container {
    width: 100%;
    background: #5585E9;
    border-bottom: 3px solid #0056b3;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    list-style: none;
    width: 200px;
}

.nav-item a {
    display: block;
    padding: 15px 25px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.nav-item:hover>a {
    background-color: #0056b3;
    color: #fff;
}

/* 下拉菜单样式 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 12px 20px;
    color: #003366;
    text-align: left;
    font-size: 16px;
    text-align: center;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #0056b3;
}

/* 内容 */
.content {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    padding: 20px 0;
}

.content-index {
    width: 1200px;
    margin: 0 auto;
}

/* 申报区块 */
.apply-section {
    display: flex;
    justify-content: space-between;
    background-color: #e6f0ff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}

.apply-item {
    display: flex;
    align-items: center;
    width: 23%;
    background-color: #e6f0ff;
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.apply-item:hover {
    background-color: #d6e5ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.apply-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #2159b2;
}

.apply-text {
    font-size: 18px;
    color: #003366;
    font-weight: 500;
}

/* 功能区块 */
.features-section {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 5px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #5585E9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.feature-icon i {
    font-size: 32px;
    color: #fff;
}

.feature-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-align: center;
}

.feature-item:hover .feature-icon {
    box-shadow: 0 0 15px rgba(85, 133, 233, 0.5);
}

/* 新闻部分 */
.news-section {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    height: 450px;
}

.news-left {
    width: 45%;
    /* border-right: 1px solid #eee; */
    height: 100%;
    margin-left: 0.5%;
}

.news-left .news-header {
    padding: 0;
    border: none;
    height: 42px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 2px;
}

.news-left .news-tab {
    border-radius: 5px 5px 0 0;
}

.news-right .news-tabs {
    width: 95%;
    margin: 0 auto;
    padding: 0;
    height: 42px;
}

.news-right .news-tabs .tabs {
    height: 42px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
}

.news-right .news-tabs .tabs .tab-item {
    border-radius: 5px 5px 0 0;
}

.news-right {
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-header,
.news-tabs {
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.news-tab,
.tab-item {
    padding: 0 15px;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    height: 32px;
    line-height: 32px;
    margin-right: 10px;
}

.news-tab.active,
.tab-item.active {
    background-color: #5585E9;
    color: #fff;
    font-weight: bold;
}

.tab-item {
    color: #5585E9;
}

.tab-item:hover:not(.active) {
    background-color: #f0f0f0;
}

.tabs {
    display: flex;
}

.more-link {
    color: #5585E9;
    font-size: 14px;
    margin-left: auto;
}

.news-image-container {
    padding: 0;
    position: relative;
    height: calc(100% - 44px);
    /* 减去header的高度 */
}

.news-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.news-slide-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.news-section .swiper-pagination {
    bottom: 0;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
}

.news-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-list {
    padding: 10px 20px;
    overflow-y: auto;
    flex: 1;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px dashed #eee;
    text-decoration: none;
    color: inherit;
}

.news-item:hover .news-link {
    color: #5585E9;
    transition: all 0.3s;
    text-decoration: underline;
    font-weight: bold;
}

.news-item:hover .news-date {
    color: #5585E9;
    transition: all 0.3s;
    /* text-decoration: underline; */
    font-weight: bold;
}

.news-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #5585E9;
    margin-right: 10px;
    flex-shrink: 0;
}

.news-link {
    flex: 1;
    color: #333;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s;
}

.news-date {
    color: #999;
    font-size: 14px;
    margin-left: 15px;
}

/* 学术分类部分 */
.academic-section {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.academic-column {
    width: 32%;
}

.academic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 10px;
}

.academic-title {
    font-size: 15px;
    color: #fff;
    padding: 5px 10px;
    background-color: #5585E9;
    border-radius: 5px 5px 0 0;
}

.academic-list {
    display: flex;
    flex-direction: column;
}

.academic-item {
    display: flex;
    align-items: center;
    padding: 6px 0;
    text-decoration: none;
    color: inherit;
}

.academic-item:hover .academic-link {
    color: #5585E9;
    transition: all 0.3s;
    text-decoration: underline;
}

.academic-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #5585E9;
    margin-right: 8px;
    flex-shrink: 0;
}

.academic-link {
    flex: 1;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 更多链接 */
.academic-header .more-link {
    color: #5585E9;
    font-size: 14px;
}

/* 资源中心图标网格 */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    margin-top: 20px;
}

.resource-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Mini resource grid for academic column */
.resource-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 5px;
    height: 100%;
}

.mini-resource-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mini-resource-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mini-resource-item i {
    font-size: 24px;
    margin-bottom: 5px;
}

.bg-blue-dark {
    background-color: #003366;
}

.bg-yellow {
    background-color: #ffb800;
}

.bg-blue {
    background-color: #0088ff;
}

.bg-yellow-light {
    background-color: #ffcc66;
}

.bg-orange {
    background-color: #ff5500;
}

.bg-green {
    background-color: #66cc33;
}

.bg-teal {
    background-color: #004455;
}

/* 友情链接部分 */
.friendly-links-section {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 5px;
    padding: 0 0 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.friendly-links-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #5585E9;
    border-radius: 5px 5px 0 0;
}

.friendly-links-title {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.friendly-links-header .more-link {
    color: white;
}

.friendly-links-logos {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px 5px 20px;
    flex-wrap: wrap;
}

.logo-link {
    width: 140px;
    height: 40px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
    
}
.logo-link:nth-child(5){
    background: #0088ff;
}
.logo-link img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: all 0.3s;
}

.logo-link:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.second-row {
    padding-top: 0;
}

.member-management {
    width: 11.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    color: #5585E9;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s;
}

.member-management:hover {
    background-color: #e8e8e8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.text-links {
    padding: 10px 20px;
}

.text-links-group {
    margin-bottom: 10px;
    line-height: 1.6;
}

.text-links-label {
    color: #666;
    font-weight: bold;
    margin-right: 5px;
}

.text-link {
    color: #5585E9;
    margin: 0 5px;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* 联系我们 */
.contact-section {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.slogan-container {
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slogan-container img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.contact-info {
    width: 48%;
    padding-left: 20px;
    /* border-left: 1px solid #eaeaea; */
    text-align: center;
}

.contact-title {
    color: #2a6bc7;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1;
    text-align: center;
}

.contact-item {
    margin-bottom: 15px;
    color: #333;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.contact-icon {
    color: #2a6bc7;
    margin-right: 10px;
    font-size: 16px;
    text-align: center;
}

.contact-item a {
    color: #2a6bc7;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* 页脚 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    /* margin-top: 30px; */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav {

    margin-bottom: 20px;
    text-align: center;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
    font-size: 14px;
    position: relative;
}

.footer-nav a:not(:last-child):after {
    content: '|';
    position: absolute;
    right: -2px;
    color: #fff;
}

.footer-nav a:hover {
    color: #5585E9;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-qrcode {
    display: flex;
    gap: 30px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 8px;
}

.qrcode-item p {
    font-size: 14px;
    margin: 0;
}

.footer-contact {
    text-align: left;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 14px;
}

.footer-contact a {
    color: #5585E9;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* General styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #333;
}

.flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
    width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Left navigation styles */
.sidebar {
    width: 230px;
    /* padding-right: 30px; */
}

.sidebar-title {
    width: 230px;
    font-size: 22px;
    font-weight: bold;
    padding: 28px 0;
    margin-bottom: 10px;
    text-align: left;
    color: #333;
    border-bottom: 1px solid #eaeaea;
    padding-left: 15px;
}

.menu-container {
    text-align: left;
    background-color: #f5f5f5;
}

.menu-item-wrapper {
    margin-bottom: 1px;
    /* background-color: #fff; */
    transition: all 0.3s ease;
}
.menu-item-wrapper a{
    color: black;
}
.menu-item {
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-item-wrapper:hover .menu-item {
    color: #4d83ff;
}

.menu-item-wrapper.active {
    background-color: #4d83ff;
}

.menu-item-wrapper.active .menu-item {
    color: #fff;
}

.icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Right content area styles */
.main-content {
    flex: 1;
    min-width: 800px;
    max-width: 900px;
    margin: 0 auto;
    /* background-color: #fff; */
    /* box-shadow: 0 0 10px rgba(0,0,0,0.05); */
}

.content-header {
    height: 85px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.page-title {
    font-size: 24px;
    font-weight: 500;
    font-family: sans-serif;
margin-bottom:10px;
}

/* Updated breadcrumb styles to match the image */
.breadcrumb {
    color: #999;
    font-size: 14px;
    display: flex;
    align-items: center;
    text-align: right;
}

.breadcrumb .icon {
    margin-right: 5px;
    color: #666;
    font-size: 16px;
}

.breadcrumb span,
.breadcrumb b {
    margin: 0 3px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    margin: 0 3px;
}

.breadcrumb a:hover {
    color: #4d83ff;
    text-decoration: underline;
}

.breadcrumb a.active-breadcrumb {
    color: #333;
}

.content-body {
    
}

/* Content meta info styles */
.article-title {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    margin: 20px 0;
}

.article-meta {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 15px 0 15px;
    color: #999;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.article-meta li {
    margin: 0 10px;
    position: relative;
}

.article-meta li:not(:last-child):after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #ddd;
}

.article-content {
    padding: 0 20px;
    line-height: 1.8;
    font-size: 16px;
}



.contact-info {
    margin-left: 42px;
    text-indent: 29px;
}

.leaders-section {
    margin-top: 40px;
    text-align: center;
}

.leader-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.leader-photo.main {
    width: 200px;
    height: 270px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #eee;
}

.leader-caption.main {
    background: #cfc6b7;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 8px;
    padding: 6px 0;
    width: 200px;
    border-radius: 0 0 4px 4px;
    margin-left: auto;
    margin-right: auto;
}

.leaders-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 32px 32px;
    margin-top: 30px;
}

.leader-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 180px; */
}

.leader-photo {
    width: 200px;
    height: 270px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #eee;
}

.leader-caption {
    background: #f5f5f5;
    color: #333;
    font-size: 15px;
    margin-top: 6px;
    padding: 4px 0;
    width: 200px;
    border-radius: 0 0 4px 4px;
    margin-left: auto;
    margin-right: auto;
}

.news-list-page {
    margin-top: 15px;
    background: #fff;
    border-radius: 4px;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.news-list-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-list-li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding: 8px 0;
    font-size: 16px;
}

.news-list-li:last-child {
    border-bottom: none;
}

.news-list-link {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background: none;
    transition: background 0.2s;
    padding: 0 4px;
}

.news-list-link:hover {
    background: #f5f8fd;
    text-decoration: none;
    cursor: pointer;
}

.news-list-title {
    flex: 1;
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list-link:hover .news-list-title {
    color: #1565c0;
    text-decoration: underline;
}

.news-list-date {
    color: #999;
    font-size: 15px;
    margin-left: 24px;
    flex-shrink: 0;
    width: 110px;
    text-align: right;
}

.icon {
    display: none;
}

.active .icon {
    display: block;
}

/* 默认隐藏汉堡菜单按钮 */
.nav-toggle,
.nav-close {
    display: none;
}


/* 添加视图切换按钮样式 */
.view-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: #5585E9;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: none;
}

.view-toggle:hover {
    background: #4d83ff;
    transform: translateY(-2px);
}

.view-toggle i {
    margin-right: 5px;
}

/* PC缩放模式样式 */


 .header,
 .nav-container,
 .content,
 .footer,
 .wrap {
    min-width: 1200px !important;
    transform-origin: top left !important;
    transform: scale(calc(100vw / 1200)) !important;
}

 .content-index,
 .main-nav,
 .footer-container {
    width: 1200px !important;
}

 .content {
    height: auto !important;
    min-height: calc(100vh / (100vw / 1200)) !important;
    width: 100% !important;
    margin: 0 !important;
    background-color: #f5f5f5 !important;
}

.dropdown-arrow{
    display: none;
}