/* --- 全局样式重置 --- */
body, html, input { 
    font-family: "微软雅黑", "Microsoft YaHei", Arial, sans-serif; 
    margin: 0; 
    padding: 0;
}

body {
    background: url(../../images/bg.png) repeat;
    overflow-x: hidden;
}

/* --- 顶部Header区域 --- */
.wing-header {
    width: 1300px;
    height: 160px;
    margin: 0 auto;
    background: linear-gradient(to right, #0bb051, #ffc303);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wing-header .header-logo {
    width: 770px;
    height: 100%;
    float: left;
    margin-left: 110px;
}

.wing-header .header-logo .logo-container {
    width: 700px;
    margin: 0px auto;
}

.wing-header .header-logo .logo-container .logo-jd {
    min-height: 100%;
}

.wing-header .header-motto {
    height: 100%;
    float: left;
    margin: 0;
}

.wing-header .header-motto .logo-container {
    height: 100%;
}

.wing-header .header-motto .logo-container .logo-jidian {
    max-height: 100%;
    float: left;
    height: 86%;
    margin-top: 4%;
}

/* --- 导航栏样式 --- */
.wing-header-banner {
    width: 1300px;
    position: relative;
    margin: 0 auto;
}

.wing-header-banner .banner-menu {
    height: 50px;
    background: #207f4c;
    box-shadow: 0 5px 5px rgba(63, 59, 59, 0.5);
    width: 100%;
    position: relative;
    z-index: 1000;
}

.wing-header-banner .banner-menu .banner-menu-container {
    width: 100%;
    margin: 0 auto;
    height: 50px;
}

.wing-header-banner .banner-menu .banner-menu-container ul {
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.wing-header-banner .banner-menu .banner-menu-container ul li {
    font-size: 18px;
    list-style: none;
    float: left;
    min-width: 9.5%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    transition: all 0.2s linear;
    position: relative;
}

.wing-header-banner .banner-menu .banner-menu-container ul li:hover {
    background: #009f4a;
}

.wing-header-banner .banner-menu .banner-menu-container ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

/* 下拉菜单样式 */
.wing-header-banner .banner-menu .banner-menu-container ul li .banner-menu-first {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #207f4c;
    box-shadow: 5px 5px 10px rgba(63, 59, 59, 0.5);
    animation: showMenu 0.5s ease;
}

.wing-header-banner .banner-menu .banner-menu-container ul li:hover .banner-menu-first {
    display: block;
}

.wing-header-banner .banner-menu .banner-menu-container ul li .banner-menu-first .banner-menu-option a {
    font-size: 15px;
    line-height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wing-header-banner .banner-menu .banner-menu-container ul li .banner-menu-first .banner-menu-option a:hover {
    background: #009f4a;
}

/* --- 主要内容区域 --- */
.content {
    width: 100%;
    padding-top: 0px !important;
    bottom: 0px !important;
    display: inline-block;
}

.wing-content {
    width: 100%;
    overflow: auto;
}

/* 左侧菜单样式 */
.wing-body {
    font-size: 14pt;
    min-height: 390px;
    background: white;
    width: 1300px;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    display: flex; /* 添加这行 */
    justify-content: space-between; /* 添加这行 */
}

.float-menu {
    /* float: left; 移除浮动 */
    margin: 0 0 0 30px; /* 简化边距 */
    width: 22%; /* 调整宽度 */
    min-height: 300px;
    padding: 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 5px;
    flex-shrink: 0; /* 防止收缩 */
}

.float-menu .float-menu-head {
    width: 100%;
    height: 50px;
    margin: 0;
    line-height: 50px;
    background: #207f4c;
    color: #fff;
    text-align: center;
    font-size: 20px;
}

.float-menu .float-menu-lists {
    width: 100%;
    height: auto;
    margin: 0;
    line-height: 50px;
    color: #000;
    text-align: center;
    font-size: 18px;
}

/* 左侧菜单列表样式 - 新增 */
.float-menu .float-menu-lists ul {
    padding-left: 0;
    list-style-type: none;
    text-align: left; /* 左侧对齐 */
    margin: 0;
}

.float-menu .float-menu-lists ul .float-menu-list {
    border-bottom: 1px solid #207f4c;
    line-height: 50px;
    padding: 0;
    margin: 0;
    text-align: left; /* 左侧对齐 */
    position: relative;
}

.float-menu .float-menu-lists ul .float-menu-list a {
    text-decoration: none;
    color: #494949;
    display: block;
    padding: 0 15px;
    font-weight: bold; /* 一级菜单加粗 */
}

.float-menu .float-menu-lists ul .float-menu-list a:hover {
    color: #207f4c;
    background-color: #f5f5f5;
}

/* 二级菜单样式 - 新增 */
.float-menu .float-menu-lists ul .float-menu-list section {
    display: block;
    padding: 0;
    margin: 0;
}

.float-menu .float-menu-lists ul .float-menu-list {
    border-bottom: 1px solid #207f4c;
    line-height: normal;
    padding: 0;
    margin: 0;
    text-align: left;
}

/* 一级菜单项 - 修复对齐 */
.float-menu .float-menu-lists ul .float-menu-list a {
    text-decoration: none;
    color: #494949;
    display: block;
    padding: 0 15px;
    font-weight: bold;
    line-height: 50px;
    height: 50px;
    position: relative;
}
/* 一级菜单文字 */
.float-menu .float-menu-lists ul .float-menu-list a span {
    display: inline; /* 确保是行内元素 */
    vertical-align: middle; /* 垂直居中 */
}

/* 二级菜单样式 */
.float-menu .float-menu-lists ul .float-menu-list section {
    display: block;
    padding: 0;
    margin: 0;
}

.float-menu .float-menu-lists ul .float-menu-list section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.float-menu .float-menu-lists ul .float-menu-list section ul li {
    padding: 0;
    margin: 0;
    line-height: 40px;
    height: 40px;
    border-bottom: none;
}

/* 二级菜单项 - 修复对齐 */
.float-menu .float-menu-lists ul .float-menu-list section ul li a {
    padding-left: 30px;
    font-weight: normal;
    color: #555;
    line-height: 40px;
    height: 40px;
    display: block;
    position: relative;
}

/* 二级菜单绿色三角形样式 */
.float-menu .float-menu-lists ul .float-menu-list section ul li .leaderfont208146 {
    color: #28a745;
    margin-right: 8px;
    font-size: 14px;
    position: absolute; /* 使用绝对定位 */
    left: 15px; /* 相对于父元素定位 */
    top: 0;
    line-height: 40px;
    height: 40px;
    display: flex;
    align-items: center;
}

/* 鼠标悬停效果 */
.float-menu .float-menu-lists ul .float-menu-list a:hover,
.float-menu .float-menu-lists ul .float-menu-list section ul li a:hover {
    color: #207f4c;
    background-color: #f5f5f5;
}

/* 右侧内容区域 */
.float-content {
    width: 72%; /* 调整宽度 */
    min-height: 500px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-top: 4px solid #207f4c;
    margin: 0 30px 0 0; /* 调整边距 */
    border-radius: 5px;
}

.float-content .body-location {
    height: 25px;
    border-bottom: 1px solid #207f4c;
    padding: 10px 30px 5px 30px;
}

.float-content .body-location .location-list {
    display: inline-block;
}

.float-content .body-location a {
    color: #000;
    text-decoration: none;
}

.float-content .content-main-body {
    min-height: 300px;
    padding: 15px 25px;
}

.float-content .content-main-body .section1 {
    line-height: 180%;
    text-indent: 2em;
    font-size: 14pt;
}

/* --- 底部Footer --- */
.wing-footer {
    margin-top: 20px;
    background: #555;
    color: #aaa;
    padding: 20px 0;
}

.wing-footer .container {
    width: 1300px;
    margin: 0 auto;
}

.wing-footer .container .row {
    margin: 0;
}

.wing-footer .container .row p {
    text-align: center;
    letter-spacing: 1px;
    color: #aaa;
    font-size: 13px;
    margin: 0;
}

/* --- 动画效果 --- */
@keyframes showMenu {
    0% {
        opacity: 0;
        transform: scale3d(0.5, 0.5, 0.5);
    }
    50% {
        opacity: 1;
        transform: scale3d(1.05, 1.05, 1.05);
    }
    75% {
        opacity: 1;
        transform: scale3d(0.95, 0.95, 0.95);
    }
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/* --- 响应式设计 --- */
@media (max-width: 1300px) {
    .wing-header,
    .wing-header-banner,
    .wing-body,
    .wing-footer .container {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .wing-header .header-logo {
        margin-left: 20px;
        width: auto;
    }
    
    .float-menu {
        width: 25%;
        margin: 0 2%;
    }
    
    .float-content {
        width: 68%;
    }
}

@media (max-width: 768px) {
    .wing-header {
        height: auto;
        flex-direction: column;
        padding: 10px 0;
    }
    
    .wing-header .header-logo,
    .wing-header .header-motto {
        float: none;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
    
    .wing-header-banner .banner-menu .banner-menu-container ul li {
        min-width: 50%;
        font-size: 16px;
    }
    
    .float-menu,
    .float-content {
        float: none;
        width: 96%;
        margin: 2%;
    }
    
    .wing-body {
        padding: 10px;
    }
}
/* 在您的CSS中添加以下样式 */

/* 一级菜单绿色三角形样式 - 添加这个 */
.float-menu .float-menu-lists ul .float-menu-list .leaderfont208146 {
    color: #28a745;
    margin-right: 8px;
    font-size: 16px;
    position: absolute; /* 使用绝对定位 */
    left: 10px; /* 相对于父元素定位 */
    top: 0;
    line-height: 50px;
    height: 50px;
    display: flex;
    align-items: center;
}

/* 使用CSS创建三角形箭头 - 添加这个 */
.leaderfont208146::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #28a745; /* 绿色三角形 */
    margin-right: 8px;
    vertical-align: middle;
}

/* 一级菜单使用稍大的三角形 - 添加这个 */
.float-menu .float-menu-lists ul .float-menu-list .leaderfont208146::before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #1e7e34; /* 更深的绿色 */
}

/* 修改您现有的二级菜单三角形样式 */
.float-menu .float-menu-lists ul .float-menu-list section ul li .leaderfont208146 {
    color: #28a745;
    margin-right: 8px;
    font-size: 14px;
    position: absolute; /* 使用绝对定位 */
    left: 15px; /* 相对于父元素定位 */
    top: 0;
    line-height: 40px;
    height: 40px;
    display: flex;
    align-items: center;
}

/* 二级菜单使用标准的三角形 - 添加这个 */
.float-menu .float-menu-lists ul .float-menu-list section ul li .leaderfont208146::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #28a745; /* 绿色三角形 */
}

/* 鼠标悬停效果 - 添加这个 */
.float-menu .float-menu-lists ul .float-menu-list a:hover .leaderfont208146::before,
.float-menu .float-menu-lists ul .float-menu-list section ul li a:hover .leaderfont208146::before {
    border-left-color: #207f4c; /* 悬停时改变颜色 */
}

/* 修改一级菜单文字位置 - 在您的现有CSS中找到并修改 */
.float-menu .float-menu-lists ul .float-menu-list a {
    text-decoration: none;
    color: #494949;
    display: block;
    padding: 0 15px 0 40px; /* 增加左边距为40px，给三角形留空间 */
    font-weight: bold;
    line-height: 50px;
    height: 50px;
    position: relative;
}
/* 修改二级菜单项位置 - 在您的现有CSS中找到并修改 */
.float-menu .float-menu-lists ul .float-menu-list section ul li a {
    padding-left: 50px; /* 增加左边距为50px，给三角形留更多空间 */
    font-weight: normal;
    color: #555;
    line-height: 40px;
    height: 40px;
    display: block;
    position: relative;
}

/* 调整二级菜单三角形位置 */
.float-menu .float-menu-lists ul .float-menu-list section ul li .leaderfont208146 {
    left: 25px; /* 调整位置，从15px改为25px */
}