/*法定主动公开-组织机构*/
.zz-head-title-new{
    display: flex;
    flex-direction: row;
}
.zz-head-title-new span{
    display: block;
    margin-right: 16px;
    font-size: 28px;
    font-weight: 700;
    color: #2f72da;
}
.zz-head-title-new .line{
    flex: 1;
    position: relative;
    margin-top: 18px;
    height:2px;
    border-radius: 2px;
    background-color: #d9e8fd;
}
.zz-head-title-new .line i{
    display: block;
    position: absolute;
    left: -2px;
    top: -2px;
    width: 6px;
    height: 6px;
    background-color: #d9e8fd;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.zz-head-title{
    position: relative;
    /*background: #f0f0f0;*/
    margin-top: 25px;
    height: 60px;
    line-height: 60px;
    padding-left: 20px;
    color: #FFF;
    background-color: #2c6294;
    margin-left: 20px;
    font-size: 18px;
    margin-right: 20px;
    font-weight: bold;
    box-shadow: 0 5px 16px 3px rgb(0 0 0 / 6%);
}


.zz-list{
    padding: 20px 10px;
   display: flex;
    align-items: center;
   justify-content: flex-start; /* 左对齐 */
    flex-wrap: wrap;
    
}
.zz-item{
    width: 28%;
    margin-right: 30px;
    text-align: center;
    float: left;
    padding-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0 5px 16px 3px rgb(0 0 0 / 6%);
    padding: 12px 4px;
    transition: .4s all;
    display: block;
    text-align: center;
    font-size: 16px;
    /* border: 1px #0069d3 solid; */
    margin-bottom: 16px;
}

.zz-item:hover{
     width: 28%;
    text-align: center;
    float: left;
    padding-bottom: 20px;
	background-color: #0069d3;
    box-shadow: 0 5px 16px 3px rgb(0 0 0 / 6%);
    padding: 12px 4px;
    transition: .4s all;
	color: #fff;
    display: block;
	text-align: center;
	font-size: 16px;
	/* border: 1px #0069d3 solid; */
	transform: translateY(-10px);
}

/* 移动端导航悬浮样式 */
@media (max-width: 992px) {

    /* 导航栏默认隐藏，点击按钮时显示 */
    .dl_nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        z-index: 1001;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: 2px 0 15px rgba(0,0,0,0.15);
    }
    
    /* 导航栏打开时的样式 */
    .dl_nav.mobile-nav-open {
        left: 0;
    }
    
    /* 内容区域默认不偏移，导航栏打开时偏移 */
    .bc1.detail-right {
        transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-left: 0;
    }
    
    /* 导航栏打开时内容区域偏移 */
    .bc1.detail-right.mobile-content-open {
        margin-left: 80%;
    }
    
    /* 遮罩层样式 */
    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    /* 遮罩层激活样式 */
    .mobile-nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* 移动端导航切换按钮样式优化 */
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 15px;
        background-color: #0066cc;
        color: white;
        cursor: pointer;
        margin-bottom: 15px;
        border-radius: 4px;
        font-size: 14px;
        transition: all 0.2s ease;
    }
    
    .mobile-nav-toggle:hover {
        background-color: #0055aa;
        transform: translateY(-1px);
    }
    
    .mobile-nav-toggle .toggle-icon {
        font-size: 18px;
        margin-right: 5px;
    }
    
    /* 为移动设备添加触摸反馈 */
    .mobile-nav-toggle:active {
        transform: scale(0.98);
    }
    .detail-right {
        width: 100%;
    }
    .zz-item {
        margin-right: auto;
    }
    .gknb-list ul li {
        display: contents;
    }
}
/* PC端样式保持不变 */
@media (min-width: 993px) {
    .mobile-nav-toggle {
        display: none;
    }
    .mobile-nav-overlay {
        display: none !important;
    }
    .dl_nav {
        position: static !important;
        left: 0 !important;
        width: min-content !important;
        max-width: none !important;
        height: auto !important;
        box-shadow: none !important;
    }
    .bc1.detail-right {
        margin-left: 0 !important;
    }
}