* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "思源黑体",Arial;
        }
		body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
/* 纯图片Banner */
        .banner-section {
            width: 100%;
            height: 50vh;
            min-height: 400px;
            max-height: 600px;
            overflow: hidden;
        }
        
        .banner-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        
        /* 联系信息区域 */
        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #4db560;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .contact-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-top: 4px solid #4db560;
        }
        
        .card-icon {
            color: #4db560;
            margin-bottom: 1rem;
        }
        
        .card-title {
            font-size: 1.3rem;
            margin-top: 1rem;
            color: #333;
        }
        
        .contact-info {
            margin-top: 0.5rem;
        }
        
        .contact-item {
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        
        .contact-item:last-child {
            border-bottom: none;
        }
        
        .contact-icon {
            color: #4db560;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .contact-label {
            font-weight: 600;
            color: #555;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 0.2rem;
        }
        
        .contact-value {
            color: #333;
        }
        
        .phone-list {
            list-style: none;
        }
        
        .phone-list li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #eee;
        }
        
        .phone-list li:last-child {
            border-bottom: none;
        }
        
        .phone-title {
            font-weight: 600;
            color: #555;
            display: inline-block;
            min-width: 80px;
        }
        
        .bank-info {
            background-color: #f0f7ff;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        
        .bank-info h4 {
            margin-bottom: 0.8rem;
        }
		.branch-list {
            list-style: none;
            margin-top: 1rem;
        }
        
        .branch-item {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: flex-start;
        }
        
        .branch-item:last-child {
            border-bottom: none;
        }
        
        .branch-icon {
            color: #4db560;
            margin-right: 10px;
            margin-top: 3px;
        }
        
        /* 响应式 */
        @media (max-width: 768px) {
            .banner-section {
                height: 40vh;
                min-height: 300px;
            }
            
            .section-title {
                font-size: 1.7rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .banner-section {
                height: 35vh;
                min-height: 250px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .contact-card {
                padding: 1.2rem;
            }
        }
		/* 导航菜单样式 */
        .nav-menu {
            background-color: white;
            padding: 0;
            margin: 0 auto 3rem;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 100;
			overflow-x: auto; /* 添加横向滚动，防止内容溢出 */
    -webkit-overflow-scrolling: touch; /* 移动端平滑滚动 */
        }
        
        .nav-menu .nav-container {
            display: flex;
            justify-content: center;
            padding: 0;
        }
        
        .nav-menu ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            width: 100%;
            max-width: 1100px;
        }
        
        .nav-menu li {
            flex: 1;
            text-align: center;
        }
        
        .nav-menu a {
            display: block;
            padding: 1.2rem 1rem;
            color: #555;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }
        
        /* 悬停效果 - 绿色 */
.nav-menu a:hover {
    color: #28a745; /* 中等绿色 */
    background-color: #f0f9f2; /* 淡绿色背景 */
}

/* 激活状态 - 绿色系 */
.nav-menu a.active {
    color: #28a745; /* 主绿色 */
    border-bottom-color: #28a745; /* 绿色边框 */
    background-color: #f0f9f2; /* 淡绿色背景 */
}
        
        .nav-menu a i {
            margin-right: 8px;
            font-size: 1.1rem;
        }
        
        /* 响应式调整 - 保持横向但调整细节 */
@media (max-width: 1024px) {
    .nav-menu a {
        padding: 0.9rem 0.6rem;
        font-size: 0.95rem;
    }
    
    .nav-menu a i {
        margin-right: 5px;
        font-size: 0.95rem;
    }
    
    .nav-menu li {
        min-width: 120px; /* 更小的最小宽度 */
    }
}

@media (max-width: 768px) {
    .nav-menu{
        margin-bottom: 2rem; /* 减少下边距 */
        border-radius: 0; /* 移除圆角，最大化空间 */
    }
    
    .nav-menu a {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .nav-menu a i {
        margin-right: 4px;
        font-size: 0.9rem;
    }
    
    .nav-menu li {
        min-width: 110px; /* 进一步减小最小宽度 */
    }
}

/* 超小屏幕处理 */
@media (max-width: 480px) {
    .nav-menu a {
        padding: 0.7rem 0.4rem;
        font-size: 0.85rem;
    }
    
    .nav-menu a i {
        display: inline-block; /* 保持图标和文字同行 */
        margin-right: 1px;
        font-size: 0.85rem;
    }
    
    .nav-menu li {
        min-width: 97px; /* 超小屏幕的最小宽度 */
    }
}

/* 极窄屏幕（如iPhone 5/SE） */
@media (max-width: 320px) {
    .nav-menu a {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
    }
    
    .nav-menu a i {
        margin-right: 2px;
        font-size: 0.8rem;
    }
    
    .nav-menu li {
        min-width: 90px;
    }
}

.province_list {
    width: 98% ;
    margin: 0 auto;
}.province {
    float: left;
    width: 60% ;
}.province ul {
    padding: 0;
    margin-left: 0;
}.province ul li {
    width: 30%;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
    list-style-type: none;
    text-align: center;
    margin-bottom: 10px;
    box-shadow: 0px 2px 6px 0px#aaa;
    cursor: pointer;
    margin-left: 15px;
    float: left;
	border: 1px solid #dee2e6;
        border-radius: 8px;
        transition: all 0.3s ease;
}.bsc_detail {
    float: right;
    width: 40%;
}.detaile {
    margin-left: 20px;
}
.bsc_title h3 { line-height: 28px; margin-bottom: 10px; font-size:16px; margin-top: 15px; } 
.detaile p { text-indent: 2em; } 
.current { background-color: #3ecd59; color: #fff; }

.detailwidth-lxwm{
	max-width:1200px;
	margin:auto;
	margin-bottom:2rem;
	padding:0 15px;
}

/* 手机版：垂直布局 */
@media screen and (max-width: 768px) {
    .province {
        width: 100% !important;
        float: none !important;
        margin-bottom: 20px;
    }
    
    .bsc_detail {
        width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
    }
    
    /* 省份列表样式 */
    .province ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 手机端3列 */
        gap: 8px;
    }
    
    .province ul li {
        padding: 12px 8px;
        
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px; /* 触摸友好的最小高度 */
		width:100%;
        word-break: break-all; /* 长文本自动换行 */
        overflow: hidden;
		margin-left: 0;
    }
    
    /* 超小屏幕（如iPhone SE）的适配 */
    @media screen and (max-width: 375px) {
        .province ul {
            grid-template-columns: repeat(2, 1fr); /* 超小屏幕改为2列 */
        }
        
        .province ul li {
            font-size: 13px;
            padding: 10px 6px;
        }
    }
    
    /* 平板及以上屏幕 */
    @media screen and (min-width: 769px) {
        .province ul {
            display: block; /* 恢复原始布局 */
        }
        
        .province ul li {
            display: block;
            text-align: left;
            padding: 8px 12px;
            border-radius: 0;
            border: none;
            border-bottom: 1px solid #eee;
            min-height: auto;
        }
        
        .province {
            width: 30% !important;
            float: left !important;
        }
        
        .bsc_detail {
            width: 65% !important;
            float: left !important;
            margin-left: 5% !important;
        }
    }
	/* 图片响应式 */
    .province_list img {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        border-radius: 8px;
        margin-top: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    /* 清除浮动 */
    .province_list:after {
        content: "";
        display: table;
        clear: both;
    }
    
    /* 滚动优化 */
    .province ul {
        max-height: 400px;
        overflow-y: auto;
    }
    
    /* 触摸设备优化 */
    @media (hover: none) and (pointer: coarse) {
        .province ul li:hover {
            transform: none;
            box-shadow: none;
        }
        
        .province ul li:active {
            background-color: #007bff;
            color: white;
        }
    }
    
    /* 深色模式支持 */
    @media (prefers-color-scheme: dark) {
        .province ul li {
            background-color: #2d3748;
            border-color: #4a5568;
            color: #e2e8f0;
        }
        
        .province ul li:hover {
            background-color: #4a5568;
        }
        
        .province ul li.active {
            background-color: #007bff;
        }
        
        .detaile {
            background-color: #2d3748;
            border-color: #4a5568;
        }
        
        .detaile p {
            color: #e2e8f0;
        }
        
        .bsc_title h3, .bsc_title p {
            color: #63b3ed;
        }
    }
}

/* 平板端优化 */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .province ul {
        grid-template-columns: repeat(4, 1fr); /* 平板端4列 */
    }
    
    .province ul li {
        font-size: 15px;
        padding: 14px 10px;
    }
}

/*招聘*/
#downcontul{
	padding-bottom:2rem;
}
#downcontul table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

#downcontul th, td {
  border: 1px solid #ddd;
  padding: 12px 8px;
}

#downcontul th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.detailbutton a {
  display: inline-block;
  padding: 6px 12px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.detailbutton a:hover {
  background-color: #45a049;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
#downcontul table {
    display: block;
    overflow-x: auto;
  }
  
  #downcontul th, td {
    padding: 8px 6px;
    font-size: 14px;
  }
  
  .detailbutton a {
    padding: 4px 8px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  #downcontul th, td {
    padding: 6px 4px;
    font-size: 12px;
  }
  
  .detailbutton a {
    padding: 3px 6px;
    font-size: 12px;
  }
}