@charset "utf-8";
/*
Theme ID: ecms143
Author: 懒鸟飞移植
Author QQ：1430826160
Author Email：1430826160@qq.com
Author URL: http://www.lanniaofei.com/
*/
/* 全局样式 - 与首页保持一致 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    max-width: 750px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

img.loaded {
    opacity: 1;
}

/* 顶部导航 - 暗色系 */
.header {
    background-color: #2c3e50;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo和搜索框布局 */
.top-bar {
    display: flex;
    align-items: center;

    width: 100%;
}

.logo-area {
    flex: 0 0 33%;
    max-width: 33%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
}

.logo-img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 4px;
}

.search-area {
    flex: 0 0 66%;
    max-width: 66%;
}





/* 搜索区域 - 修改部分 */
.search-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.search-container {
    display: flex;
    width: 100%;
    max-width: 500px; /* 可调整宽度 */
    align-items: stretch; /* 重要：拉伸子元素等高 */
    border-radius: 4px; /* 整体圆角 */
    overflow: hidden; /* 让内部元素不破坏圆角 */
    border: 1px solid #ddd; /* 添加整体边框 */
    background-color: white;
}

/* 统一所有元素的高度和盒模型 */
.search-select,
.search-input,
.search-button {
    height: 36px; /* 统一高度 */
    box-sizing: border-box; /* 确保内边距和边框包含在高度内 */
    line-height: 1; /* 重置行高 */
    vertical-align: top; /* 顶部对齐 */
    border: none; /* 移除所有边框 */
    outline: none;
    font-size: 14px;
}

/* 下拉框 */
.search-select {
    flex: 0 0 auto; /* 不伸缩，自适应宽度 */
    padding: 0 8px;
    background-color: #fff;
    border-right: 1px solid #eee; /* 添加分隔线 */
    min-width: 60px;
    appearance: none; /* 清除默认样式 */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 12px;
    padding-right: 25px; /* 为下拉箭头留空间 */
}

/* 输入框 */
.search-input {
    flex: 1;
    padding: 0 10px;
    min-width: 0;
    background-color: #fff;
}

/* 搜索按钮 */
.search-button {
    flex: 0 0 auto;
    padding: 0 15px;
    background-color: #ed673e;
    color: white;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 500;
    border-left: 1px solid rgba(255,255,255,0.2); /* 浅色分隔线 */
}

.search-button:hover {
    background-color: #d35400;
}

/* 移除表单的默认边距 */
.search-container form {
    display: flex;
    flex: 1;
    align-items: stretch;
}

/* 针对移动端优化 */
@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
    }
    
    .search-select {
        min-width: 50px;
        font-size: 12px;
    }
    .search-input{
        flex: 0.75;
    }
    
    .search-button {
        padding: 0 12px;
    }
}


/* 导航菜单 */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 8px;


    padding: 10px 10px;
    background-color: #fef3ef;
    color: #ff4d03;
}

.nav-menu a {
    font-size: 12px;
    font-weight: bold;
    color: #ed673e;
    padding: 5px 8px;
    border: 1px solid #ed673e;
    line-height: normal;
    border-radius: 5px;
}

.nav-menu a:hover, .nav-menu a.active {
    background: #ed673e;
    color: #fff;
}

.nav-menu a.active:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: #ed673e;
}

/* 当前位置导航 */
.breadcrumb {
    padding: 12px 15px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #ed673e;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 5px;
    color: #999;
}

/* 子栏目导航 */
.subnav-container {
    background-color: #fff;
    padding: 10px 15px;
    position: sticky;
    top: 60px;
    z-index: 99;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.subnav-menu {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    padding: 5px 0;
}

.subnav-menu::-webkit-scrollbar {
    display: none;
}

.subnav-menu a {
    display: inline-block;
    padding: 8px 15px;
    margin-right: 8px;
    background-color: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
}

.subnav-menu a:hover, .subnav-menu a.active {
    background-color: #ed673e;
    color: white;
}

/* 主要内容区域 */
.main-content {
    padding: 10px;
    min-height: calc(100vh - 220px);
}

/* 列表页头部 */
.list-header {
    background: linear-gradient(135deg, #ed673e, #d35400);
    color: white;
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.list-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.list-header p {
    opacity: 0.9;
    font-size: 15px;
}

/* 栏目标题 - 与首页一致 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #f5ece5;
    border-radius: 6px;
    margin: 20px 0 15px;
}

.section-title {
    font-size: 18px;
    color: #ff4d03;
    display: flex;
    align-items: center;
}
.section-title a{

}
.section-title .jrgx {
    background: linear-gradient(to right,#ff711f 0%,#e50914 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    transform: scale(.8);
    transform-origin: top right;
    font-weight: 400;
    padding: 0 6px;
    border-radius: 8px;
    height: 19px;
    line-height: 18px;
    font-size: 12px;
    display:inline-block;
}


.more-link {
    font-size: 14px;
    color: #ed673e;
    font-weight: bold;
}

/* 图片网格 - 与首页一致 */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.image-item {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.image-item .titpic{
height: 220px;
}

@media (max-width: 789px){
    
.image-item .titpic{
height: 120px;
}
    
    
}


.image-item .titpic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-info {
    padding: 12px;
}

.image-title {
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.image-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
}

/* 分页样式 */
.pagination {
    margin-top: 20px;
}

.pagination a,.pagination span {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px 10px 5px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    color: #333;
    transition: all 0.3s;
}

.pagination a:hover, .pagination .active {
    background-color: #ed673e;
    color: white;
}

/* 文章头部 */
.article-header {
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2px;
}

.article-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #333;
}

.article-meta {
    display: flex;
    font-size: 14px;
    color: #888;
    flex-wrap: wrap;
}

.article-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.article-meta span:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #ed673e;
    border-radius: 50%;
    margin-right: 8px;
}

/* 文章内容 */
.article-content {
    background-color: #fff;
    padding: 20px 15px 1px 15px;
    line-height: 1.8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.article-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.article-content img {
    margin: 15px auto;
    border-radius: 6px;
    max-height: 400px;
    object-fit: cover;
    height: auto !important;
}

.article-content h2 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 2px solid #ed673e;
}

.article-content h3 {
    font-size: 18px;
    margin: 20px 0 12px;
    color: #444;
}

.article-content ul, .article-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content blockquote {
    border-left: 4px solid #ed673e;
    background-color: #f9f9f9;
    padding: 12px 15px;
    margin: 15px 0;
    color: #555;
}

/* 文章底部 */
.article-footer {
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 0 0 8px 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tags {
    display: flex;
    flex-wrap: wrap;
}

.tags a{
    display: inline-block;
    padding: 5px 12px;
    background-color: #f0f7ff;
    color: #1a73e8;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* 翻页导航 */
.page-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.page-link {
    display: inline-block;
    padding: 12px 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.page-link:hover {
    background-color: #ed673e;
    color: white;
}

 /* 响应式调整 */
@media (max-width: 480px) {
    .article-title {
        font-size: 20px;
    }
    
    .article-meta {
        font-size: 13px;
    }
    
    .article-content img {
        max-height: 300px;
    }
    
    
}
 @media (max-width: 360px) {

    .article-title {
        font-size: 18px;
    }

 }

/* 友情链接 */
.friend-links {
background-color: #fff;
padding: 20px 15px;
margin-top: 20px;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.friend-links h3 {
font-size: 18px;
margin-bottom: 15px;
color: #ff4d03;
text-align: center;
}

.link-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
}

.link-item {
display: flex;
flex-direction: column;
align-items: center;
}

.link-icon {
width: 50px;
height: 50px;
border-radius: 12px;
background-color: #f0f7ff;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 5px;
overflow: hidden;
}

.link-icon img {
width: 40px;
height: 40px;
object-fit: contain;
}

.link-name {
font-size: 12px;
color: #555;
text-align: center;
}
/* 列表项样式 */
.list-container {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.list-item {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.list-item:hover {
    background-color: #f9f9f9;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.list-item-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
}

.list-item-image {
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}
@media (max-width: 480px) {
    .list-item-title {
        font-size: 16px;
    }
}

/* 关于我们页面样式 */
.about-header {
    background: linear-gradient(135deg, #ed673e, #d35400);
    color: white;
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.about-header p {
    opacity: 0.9;
    font-size: 15px;
}


/* 内容卡片 */
.about-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.about-card h2 {
    font-size: 20px;
    color: #ed673e;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.about-card p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.about-card li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.about-card li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #ed673e;
    border-radius: 50%;
}

/* 团队展示 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.member-info {
    padding: 15px;
}

.member-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-position {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

/* 联系方式 */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-icon {
    width: 30px;
    height: 30px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #ed673e;
    font-size: 16px;
}





/* 页脚 - 与首页一致 */
.footer {
    background-color: #ff711f;
    padding: 10px 15px;
    text-align: center;
    color: white;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 10px;
    padding: 5px 0;
    position: relative;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:not(:last-child):after {
    content: '|';
    position: absolute;
    right: -12px;
    color: rgba(255, 255, 255, 0.5);
}

.copyright {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }
    
    .search-select {
        padding: 8px 8px;
        margin-right: 2px; 
    }
    
    .search-button {
        padding: 8px 8px;
    }
    
    .subnav-menu a {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .breadcrumb {
        font-size: 13px;
        padding: 10px 15px;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 15px;
    }
    
    .logo-img {
        width: 20px;
        height: 20px;
    }
    
    .search-button {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .subnav-menu a {
        padding: 5px 10px;
        font-size: 12px;
    }
}
