/* 新闻详情页样式 */
body {
    margin: 0;
}

/* 页面容器 */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 面包屑导航 */
.breadcrumb {
    background: #f2f7fb;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb span {
    color: #666;
    font-size: 14px;
}

.breadcrumb span:first-child {
    color: #67a8c8;
}

.breadcrumb span:not(:first-child)::before {
    content: '>';
    margin: 0 10px;
    color: #ccc;
}

/* 主要内容区域 */
.main-content {
    background: #f2f7fb;
    padding: 20px 0;
    min-height: 600px;
}

.content-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* 左侧文章容器 */
.article-container {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 文章元信息 */
.article-meta {
    background: #fff;
    padding: 20px 25px 0 10px;
    display: flex;
    flex-direction: row;
}

.meta-info {
    width: 17%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    flex-direction: column;
    align-content: flex-start;
}

.date-time {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.year {
    font-size: 18px;
    color: #666;
}

.month-day {
    font-size: 28px;
    color: #67a8c8;
    font-weight: bold;
}

.time {
    font-size: 18px;
    color: #666;
}

.source-editor {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    align-items: center;
}

.source,
.editor {
    font-size: 16px;
    color: #666;
}

/* 文章标题 */
.article-title {
    padding: 25px 20px;
    width: 77%;
    text-align: center;
}

.article-title .title {
    margin: 0;
    font-size: 34px;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
    text-align: center;
}

/* 文章工具栏 */
.article-tools {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 100px;
    gap: 40px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.font-size {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.font-btn {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.font-btn:hover,
.font-btn.active {
    background: #67a8c8;
    color: #fff;
    border-color: #67a8c8;
}

/* 分享按钮 */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-size: 14px;
    color: #666;
}

.share-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.share-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
}

.wechat-icon {
    background-image: url('../../image/logo/weixin.gif');
}

.link-icon {
    background-image: url('../../image/logo/phone.png');
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* 文章正文 */
.article-content {
    padding: 25px 50px;
    line-height: 1.8;
    font-size: 18px;
    color: #333;
}

.article-content p {
    margin: 0 0 10px 0;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.com_text img {
    max-width: 100%;
    margin: 0 auto;
}

/* 责任编辑 */
.article-editor {
    padding: 20px 25px;
    text-align: right;
}

.article-editor p {
    margin: 0;
    font-size: 18px;
    color: #666;
}

/* 更多链接 */
.more-link {
    padding: 15px 25px;
    text-align: right;
}

.more-link a {
    color: #67a8c8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.more-link a:hover {
    color: #2c5aa0;
}

/* 右侧侧边栏 */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* 生态甘肃横幅 */
.eco-banner {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.banner-logo {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* 右侧侧边栏 */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-section {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.sidebar-title {
    color: #67a8c8;
    margin: 0;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-list li {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
    position: relative;
    padding-left: 25px;
}

.sidebar-list li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #67a8c8;
    border-radius: 50%;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li:hover {
    background: #f9f9f9;
}

.sidebar-list a {
    display: -webkit-box;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    letter-spacing: 1px;
    -webkit-box-orient: vertical;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
}

.sidebar-list a:hover {
    color: #67a8c8;
}

/* 相关推荐 */
.related-recommendations {
    position: relative;
    width: 100%;
    background: #f2f7fb;
    border-top: 1px solid #f0f0f0;
    padding-bottom: 80px;
}

.recommend-warp {
    position: relative;
    left: 14%;
    width: 1080px;
}

.recommendations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-title {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #67a8c8;
}

.more-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: #67a8c8;
}

.recommendations-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.recommendation-image {
    flex-shrink: 0;
    width: 385px;
    height: 210px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.recommendation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recommendation-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.overlay-text {
    font-size: 14px;
    line-height: 1.4;
    display: block;
}

.recommendation-links {
    flex: 1;
}

.recommendation-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recommendation-links li {
    margin-bottom: 18px;
    position: relative;
    padding-left: 25px;
}

.recommendation-links li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #67a8c8;
    font-weight: bold;
    font-size: 18px;
    top: -2px;
}

.recommendation-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s ease;
    display: block;
}

.recommendation-links a:hover {
    color: #67a8c8;
}

/* 友情链接 */
.friendship-links {
    background: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #f0f0f0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.link-item {
    display: block;
    padding: 10px 15px;
    background: #fff;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.link-item:hover {
    background: #67a8c8;
    color: white;
    border-color: #67a8c8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(103, 168, 200, 0.3);
}

/* 关于我们 */
.about-us {
    background: #fff;
    padding: 30px 0;
    border-top: 1px solid #f0f0f0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-links {
    display: flex;
    gap: 30px;
}

.about-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.about-links a:hover {
    color: #67a8c8;
}

.qr-code {
    text-align: center;
}

.qr-code-image {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 5px;
    margin: 0 auto 10px;
    border: 1px solid #ddd;
}

.qr-code span {
    display: block;
    font-size: 12px;
    color: #999;
}


/*组图内部样式*/
.main_img{
    box-sizing: border-box;
    width: 100%;
    padding: 30px 90px 30px 90px;
}
.lunbo_one{
    width: 100%;
    height: 500px;
}
.lunbo_one_box {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
}
.lunbo_one_img img{
    width:100%;
    height: 100%;
}
.lunbo_one_img > div {
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0;
    background-color: rgba(103,96,98,0.5);
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 0 35px;
    color: #f0f0f0;
    font-size: 20px;
    text-align: left;
    line-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.lunbo_one_box .layui-carousel-ind {
    position: relative;
    top: -40px;
    width: 180%;
    line-height: 0 !important;
    text-align: center;
    font-size: 0;
}

.lunbo_one_box .layui-carousel-ind li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 7px;
    font-size: 14px;
    background-color: #e2e2e2;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}
.lunbo_one_box .layui-carousel-ind li.layui-this {
    background-color: #0056a3;
    width: 25px;
    height: 10px;
    margin: 0 7px;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}