@charset "UTF-8";
body {
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "PingFang SC", "Microsoft YaHei", sans-serif;    
}
.main-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}
/* 导航样式 - 通栏设计并固定顶部 */
.navbar {
    background-color: #ab0b00;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(110, 0, 0, 0.2);
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 15px;
}
.logo {
    flex: 0 0 33.333%;
    display: flex;
    align-items: center;
}
.logo img {
    height: 40px;
}
.logo-text {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
}
.navbar-nav-wrapper {
    flex: 0 0 66.666%;
}
.navbar .layui-nav {
    background: transparent;
    padding: 0;
}
.navbar .layui-nav-item a {
    font-size: 16px;
}
/* 主内容区域需要添加顶部边距，避免被固定导航栏遮挡 */
.content-wrapper {
    margin-top: 60px;
}
/* 移动端菜单按钮 - 右上角定位 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin: 0;
}
/* 轮播图样式 - 通栏设计 */
.carousel-container {
    margin-bottom: 30px;
    width: 100%;
}
.layui-carousel {
    height: 400px !important;
}
.layui-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 标题样式 */
.section-title {
    text-align: center;
    padding: 20px 0;
    font-size: 24px;
    color: #333;
    position: relative;
    margin: 30px 0 20px;
}
.section-title:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #ab0b00;
}
/* 乡村旅游样式 */
.countryside-items {
    padding: 0 15px 30px;
}
.countryside-item {
    text-align: left;
    margin-bottom: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.countryside-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}
.countryside-item a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}
.countryside-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}
.countryside-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}
.countryside-item h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}
.countryside-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}
@media (max-width:768px) {
    .countryside-item p {
    font-size: 16px;
}
}
.learn-more {
    display: inline-block;
    color: #009688;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-right: 15px;
    align-self: flex-end;
}
.learn-more:after {
    content: ">";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.learn-more:hover {
    text-decoration: underline;
}
/* 印象磁窑样式 - 通栏背景 */
.impression-section {
    background-color: #f5f5f5;
    padding: 10px 0 60px 0;
    width: 100%;
}
.impression-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}
.impression-container {
    overflow: hidden;
    padding: 0 40px;
}
.impression-items {
    display: flex;
    transition: transform 0.5s ease;
}
.impression-item {
    flex: 0 0 calc(25% - 30px);
    margin: 0 15px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.impression-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}
.impression-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}
.impression-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.impression-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 30px 15px 15px;
}
.impression-title h3 {
    margin: 0;
    font-size: 18px;
}
.impression-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.impression-item:hover .impression-hover-info {
    opacity: 1;
}
.impression-hover-info .author {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}
.impression-hover-info .date {
    font-size: 14px;
    color: #ccc;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: white;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    font-size: 18px;
}
.carousel-btn:hover {
    background: rgba(0,0,0,0.7);
}
.prev-btn {
    left: 15px;
}
.next-btn {
    right: 15px;
}
/* 媒体报道样式 */
.media-reports {
    padding: 0 15px 30px;
}
.media-report-title {
    text-align: center;
    padding: 20px 0;
    font-size: 24px;
    color: #333;
    position: relative;
    margin: 30px 0 20px;
}
.media-report-title:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #ab0b00;
}
.media-report-row {
    margin-bottom: 15px;
}
.media-report-item {
    display: flex;
    align-items: center;
    height: 90px;
    padding: 10px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.media-report-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.media-report-item a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.media-report-img {
    flex: 0 0 80px;
    height: 100%;
    margin-right: 15px;
}
.media-report-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.media-report-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.media-report-title-text {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px;
    color: #333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.media-report-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}
@media (max-width:768px) {
    .media-report-title-text {
    font-size: 18px;
    }
    .media-report-desc {
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;    
    }
}
/* 底部样式 */
.footer {
    background-color: #3a5a98;
    color: #fff;
    width: 100%;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}
.footer-row {
    display: flex;
    align-items: center;
}
.footer-col {
    padding: 0 15px;
}
.footer-logo-col {
    flex: 0 0 25%;
    text-align: left;
}
.footer-content-col {
    flex: 0 0 50%;
    text-align: center;
}
.footer-qrcode-col {
    flex: 0 0 15%;
    text-align: right;
}
.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.footer-slogan {
    font-size: 14px;
    color: #ccc;
}
.footer-content h3 {
    margin-top: 0;
}
.footer-qrcode {
    width: 100px;
    height: 100px;
}
.footer-qrcode-label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}
.footer a {
    color: #1E9FFF;
}
/* 响应式设计 */
@media screen and (max-width: 768px) {
    .layui-carousel {
        height: 250px !important;
    }
    .countryside-item img {
        height: 150px;
    }
    .impression-item img {
        height: 200px;
    }
    .navbar .layui-nav-item a {
        font-size: 14px;
    }
    .impression-item {
        flex: 0 0 calc(50% - 30px);
    }
    .footer span {
        display: block;
    }
}
@media screen and (max-width: 480px) {
    .layui-carousel {
        height: 200px !important;
    }
    .countryside-item img {
        height: 120px;
    }
    .impression-item img {
        height: 150px;
    }
    .section-title {
        font-size: 20px;
    }
    .impression-item {
        flex: 0 0 calc(100% - 30px);
    }
    .media-report-item {
        height: 80px;
    }
}

/* 小屏幕导航优化 */
@media screen and (max-width: 992px) {
    .navbar-container {
        padding: 0 10px;
    }
    .logo {
        flex: 0 0 auto;
    }
    .logo-text {
        font-size: 18px;
    }
    .navbar-nav-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    .navbar .layui-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: #ab0b00;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 0 30px;
        transition: all 0.3s ease-in-out;
        z-index: 1000;
    }
    .navbar .layui-nav.active {
        left: 0;
    }
    .navbar .layui-nav-item {
        width: 100%;
        margin: 0;
    }
    .navbar .layui-nav-item a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }
    .navbar .layui-nav-child {
        position: static;
        display: none;
        background: #90e2b2;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
    .navbar .layui-nav-itemed .layui-nav-child {
        display: block;
    }
    .navbar .layui-nav-child dd {
        line-height: normal;
    }
    .navbar .layui-nav-child a {
        padding: 12px 20px 12px 40px;
        font-size: 14px;
    }
    .navbar .layui-nav-more {
        right: 20px;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(1, 117, 73, 0.5);
        z-index: 999;
        display: none;
    }
    .overlay.active {
        display: block;
    }
    
    /* 小屏幕底部优化 */
    .footer-logo-col,
    .footer-qrcode-col {
        display: none;
    }
    .footer-content-col {
        flex: 0 0 100%;
    }
    .footer-row {
        justify-content: center;
    }
}

/* 内页banner样式 */
.banner-container {
    background: linear-gradient(to right, 
        #6ab187, /* 从左边开始的颜色 */
        #dca56f 50%, /* 中间颜色，在50%的位置 */
        #6ab187), /* 回到右边的颜色 */
        url('') no-repeat center center; /* 默认为空，将在HTML或JS中动态设置 */
    background-size: 200% 100%; /* 让渐变宽度是容器的两倍，以实现中间颜色在正中央的效果 */
    background-position: center; /* 确保渐变的中心点位于容器的中心 */
    background-size: cover;
    width: 100%;
    height: 350px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;     /* 子元素垂直排列 */
    justify-content: center;    /* 主轴（垂直方向）居中 */
    align-items: center;        /* 交叉轴（水平方向）居中 */
    text-align: center;         /* 确保文本内容也居中对齐 */
}
/* 小屏幕设备 */
@media (max-width: 768px) {
    .banner-container {
        height: 200px; /* 调整高度以适应较小的屏幕 */
    }
}

/* 更小的屏幕设备 */
@media (max-width: 480px) {
    .banner-container {
        height: 150px; /* 进一步调整 */
    }
}
.banner-container h2,
.banner-container p {
    color: #fff;
    margin: 4px 0;              /* 控制行间距，避免太挤 */
}

.banner-container h2 {
    margin: 0;
    font-size: 1.8rem;          /* 可选：调整标题大小 */
}
.bread-nav {
    padding-left: 32px;
    padding-bottom: 10px;
    border-bottom: #dca56f 1px solid;
}

/* 详情页样式 */
.show-container {
    margin: 0 auto;
    max-width: 677px;
    clear: both;
}
.show-title {
    display: flexbox;
    flex-direction: column;     /* 子元素垂直排列 */
    justify-content: center;    /* 主轴（垂直方向）居中 */
    align-items: center;        /* 交叉轴（水平方向）居中 */
    text-align: center;         /* 确保文本内容也居中对齐 */
    margin-bottom: 30px;
}
.show-date {
    background-color: #f5f5f5;
    line-height: 35px;
}
.show-page {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #6ab187;
    color: #fff;
    height: 100%;
    line-height: 40px;
    text-indent: 1em;
    margin-top: 50px;
    border-radius: 8px;
}
.show-page .pn {
    width: 80%;
}
.show-page .per{
    border-bottom: 1px solid #91cfad;
}
.show-page .per, .show-page .next{
    height: 40px;
    overflow: hidden;
}
.show-page .back {
    width: 20%;
    height: 100%;
    background-color: #dca56f;
    text-align: center;
}
.show-page a {
    display: block;
    color: #fff;
}
.show-page a:hover {
    display: block;
    line-height: 40px;
    color: #fff;
    background: linear-gradient(135deg, #3b5b98, #8a2be2);
}
@media (max-width:768px) {
.show-page {
    align-content: flex-start;
    flex-direction: column;
}    
    .show-page .pn {
    width: 100%;
}

    .show-page .back {
        width: 100%;
    }
    
}

.show-content img {  /* 详情页图片样式 */
        width: 100%;
    height: auto;
}
@media (max-width: 768px) { /* 详情页移动端图片样式 */
    .show-content img {
        width: 100%;
    }
}

/* #列表页样式 */
.list-container { 
    margin-top: 50px;
}
/* ##按钮基础样式 */
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 4px 2px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #6ab187; 
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px #d3d3d3;
}

.btn:hover {background: linear-gradient(135deg, #3b5b98, #8a2be2)}

.btn:active {
    background-color: #3e8e41;
    box-shadow: 0 2px #666;
    transform: translateY(2px);
}

/* ##使用 Flexbox 居中 */
.loadmore-nodata,
.tc {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center;     /* 垂直居中 */
    /* min-height: 100vh;       视口高度 */
    margin: 0 0 50px 0;
    padding: 0;
}

/* #图片模型样式 */
.picture-list {
    /* padding: 0 15px; */
    margin-top: 50px;
    margin-bottom: 50px;
}
.picture-list h3 {
    display: flex;
    justify-content: center;
    padding: 5px 0;
    margin-bottom: 10px;
    background-color: #6ab187;
    color: #fff;
}
.picture-list p {
    margin: 0 5px;
    padding: 0 0 5px 0;
}
.picture-list span {
    float: right;
}
.picture-list img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
/* 单页样式 */ 
.page-content {
    margin: 0 auto;
    max-width: 677px;
}
.page-content img {
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .page-content img {
        width: 100%;
    }
}