/* PC端样式 - 正式版本 */
body {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

/* 头部导航 - PC版本 */
.front-namespace .header {
    background-color: #2C8CDB !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 60px;
}

.front-namespace .header .content-inner {
    position: relative;
    height: 100%;
}

.front-namespace .header .layui-logo {
    float: left;
    color: #fff;
    font-size: 20px;
    line-height: 60px;
    font-weight: bold;
    margin-left: 15px;
}

.front-namespace .header .layui-logo i {
    margin-right: 8px;
}

.front-namespace .header .layui-nav {
    position: absolute;
    right: 15px;
    top: 0;
    padding: 0;
    background: none;
}

.front-namespace .header .layui-nav .layui-nav-item {
    line-height: 60px;
}

.front-namespace .header .layui-nav .layui-nav-item a {
    color: #eee;
    padding: 0 20px;
    font-size: 16px;
}

/* 子菜单样式修复 */
.front-namespace .header .layui-nav .layui-nav-child {
    background-color: #fff;
}

.front-namespace .header .layui-nav .layui-nav-child a {
    color: #333 !important;
    padding: 0 20px;
    line-height: 36px;
    height: 36px;
}

.front-namespace .header .layui-nav .layui-nav-child a:hover {
    color: #2C8CDB !important;
    background-color: #f5f8fa;
}

.front-namespace .header .layui-nav .layui-nav-item a:hover {
    color: #fff;
}

.front-namespace .header .layui-nav .layui-this:after {
    background-color: #fff;
}

.front-namespace .header .layui-nav .layui-this a {
    color: #fff;
}

/* 内容区域 */
.main-container {
    margin-top: 60px;
    padding: 30px 0;
}

.main-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

/* 全宽内容区域 */
.fullwidth-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* 页面标题 */
.page-title {
    font-size: 28px;
    font-weight: 500;
    color: #2C8CDB;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* 设置标准文字大小层级 */
h1, .h1 { font-size: 32px; }
h2, .h2 { font-size: 28px; }
h3, .h3 { font-size: 24px; }
h4, .h4 { font-size: 20px; }
h5, .h5 { font-size: 18px; }
h6, .h6 { font-size: 16px; }
p { font-size: 16px; }
.small-text { font-size: 14px; }
.xsmall-text { font-size: 12px; }

/* Banner区域 */
.banner-simple {
    background-color: #f8f8f8;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    margin-top: 60px;
}

.banner-text h2 {
    font-size: 28px;
    color: #2C8CDB;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 16px;
    color: #3A9CD9;
}

/* 页脚 */
.footer {
    background-color: #2C8CDB;
    color: #eee;
    padding: 30px 0;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .contact-info li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.footer .contact-info i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #3A9CD9;
}

.footer .quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .quick-links li {
    margin-bottom: 10px;
}

.footer .quick-links a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .quick-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.copyright {
    background-color: #1A7BC7;
    color: #ccc;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

/* 卡片样式 */
.card {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: #fafafa;
    border-radius: 4px 4px 0 0;
}

.card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #2C8CDB;
}

.card-body {
    padding: 20px;
}

/* 容器 */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 响应式表格 */
.responsive-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th,
.responsive-table td {
    padding: 12px 15px;
    border: 1px solid #eee;
    text-align: left;
}

.responsive-table th {
    background-color: #f8f8f8;
    font-weight: 500;
    color: #2C8CDB;
}

/* 按钮和链接颜色 */
.layui-btn, 
.layui-btn-normal {
    background-color: #2C8CDB;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: #2C8CDB;
}

a {
    color: #2C8CDB;
}

a:hover {
    color: #1A7BC7;
}

/* 地图容器 */
.map-container {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

/* 前端头部样式 */
.front-namespace .layui-header.header {
    background-color: #2C8CDB !important;
}

.front-namespace .layui-header.header.front-header {
    background-color: #2C8CDB !important;
    height: 60px !important;
}

html.front-namespace body .layui-header.header.front-header {
    background-color: #2C8CDB !important;
    height: 60px !important;
}

/* 新闻列表样式 */
.news-list .news-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.news-list .news-item:last-child {
    border-bottom: none;
}

.news-list .news-item h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
}

.news-list .news-item h3 a {
    color: #2C8CDB;
    text-decoration: none;
}

.news-list .news-item h3 a:hover {
    color: #1A7BC7;
}

.news-list .news-item .news-date {
    color: #999;
    font-size: 12px;
    margin-bottom: 5px;
}

.news-list .news-item .news-desc {
    color: #3A9CD9;
    font-size: 14px;
    line-height: 1.6;
}

/* 首页样式 */
.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #2C8CDB;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.section-title:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -40px;
    width: 80px;
    height: 3px;
    background-color: #2C8CDB;
}

.home-section {
    margin-bottom: 30px;
}

/* 这是一个测试样式，用于验证CSS是否正确加载 */
.test-style-indicator {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #ff00ff;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    z-index: 9999;
}

/* 版本切换按钮 */
.version-switch a {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 0 15px !important;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.version-switch a:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.version-switch i {
    margin-right: 5px;
    font-size: 18px;
}

/* 悬浮切换按钮 */
.floating-switch-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none; /* 默认隐藏，通过JS根据屏幕宽度控制显示 */
}

.floating-switch-btn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2C8CDB;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-switch-btn a:hover {
    background-color: #0069b7;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-switch-btn i {
    font-size: 24px;
    margin-bottom: 2px;
}

.floating-switch-btn span {
    font-size: 12px;
    font-weight: bold;
}

/* 分页控件样式 */
.pagination-container {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pagination-info {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 2px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination li a:hover {
    background-color: #f2f2f2;
    color: #2C8CDB;
}

.pagination li.active a {
    background-color: #2C8CDB;
    color: #fff;
    border-color: #2C8CDB;
}

.pagination li.disabled a {
    background-color: #f9f9f9;
    color: #c9c9c9;
    cursor: not-allowed;
}

/* 表格下方"每页显示"样式 */
.page-size-selector {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-size-selector label {
    margin-right: 10px;
    color: #666;
}

.page-size-selector select {
    padding: 5px 10px;
    border: 1px solid #e2e2e2;
    border-radius: 2px;
}

/* 跳转到排名的样式 */
.jump-to-rank {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jump-to-rank input {
    width: 80px;
    padding: 5px 10px;
    border: 1px solid #e2e2e2;
    border-radius: 2px;
    margin: 0 10px;
}

.jump-to-rank button {
    padding: 5px 15px;
    background-color: #2C8CDB;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

.jump-to-rank button:hover {
    background-color: #2273b3;
}

/* 分组下拉框样式 */
.layui-select {
    height: 38px;
    line-height: 38px;
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    padding: 0 10px;
    width: 100%;
    background-color: #fff;
    color: #666;
}

.layui-select:focus {
    border-color: #2C8CDB;
}

/* 当前筛选提示的样式 */
.current-filter {
    display: inline-block;
    margin-right: 10px;
    background-color: #f0f7ff;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid #d0e5ff;
}

.current-filter-label {
    color: #1E9FFF;
    font-weight: bold;
    margin-right: 5px;
}

.current-filter-value {
    color: #666;
}

/* 搜索面板样式 */
.search-panel {
    margin-bottom: 20px;
}

.search-panel .layui-card-header {
    font-weight: bold;
    color: #2b4b6b;
}

.search-panel .layui-form-label {
    width: 90px;
}

.search-panel .layui-input-block {
    margin-left: 120px;
}

.search-panel .layui-btn-normal {
    background-color: #2C8CDB;
    color: #fff;
}

.search-result-info {
    margin: 15px 0;
} 