/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* 顶部Banner */
.top-banner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 80px;  /* 原24px改为80px */
    width: 100%;
    background: #e8f5e9 url('https://site1740542223.obs.cn-north-4.myhuaweicloud.com/site/219/images/banner.png') repeat-x;
    background-size: auto 80px;
   }

.logo-group {
  display: flex;
  align-items: center;
  gap: 15px; /* 控制logo与文字间距 */
}

.site-logo {
  height: 64px; /* 根据需求调整logo高度 */
  width: auto; /* 保持原始宽高比 */
}

.site-name {
  font-size: 28px;
  font-weight: 600;
  color: #666; /* 根据品牌色调整 */
  font-family: Arial, sans-serif;
}

/* 导航栏 */
.main-nav {
    height: 32px;
    width: 100%;
    background: #2e7d32;
    display: flex;
    justify-content: center; /* 新增水平居中 */
    align-items: center;     /* 保持垂直居中 */
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;          /* 恢复合理间距 */
    margin: 0;          /* 清除自动外边距 */
    padding: 0;         /* 清除默认内边距 */
    height: 100%;       /* 继承父容器高度 */
}

.nav-menu li {
    padding: 0;
    display: flex;
    align-items: center; /* 垂直居中菜单项内容 */
}

/* 悬停状态 */
.nav-menu li:hover {
    background: #FFA500;
    transform: none; /* 移除可能影响对齐的变换 */
}

.nav-menu li:hover a {
    color: #333;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    padding: 8px 12px; /* 更可控的内边距 */
    display: block;
    white-space: nowrap; /* 防止文字换行 */
}

/* 内容布局 */
.content-wrapper {
    display: flex;
    min-height: calc(100vh - 80px - 32px - 100px); /* 24px改为60px */
    grid-template-columns:
        minmax(200px, 0.5fr)  /* 左侧自适应 */
        minmax(auto, 1200px)  /* 主内容最大宽度 */
        minmax(200px, 0.5fr); /* 右侧自适应 */
    justify-content: center; /* 整体水平居中 */
    gap: 40px;               /* 列间距 */
    max-width: 1600px;       /* 布局最大宽度 */
    margin: 0 auto;          /* 自动居中 */
    padding: 20px;
    flex-wrap: wrap;
}

/* 侧边栏统一规则 */
.left-sidebar,
.right-sidebar {
    width: 100%;
    flex: 0 1 20%;
    min-width: 200px;
    max-width: 300px;        /* 侧边栏最大宽度 */
    justify-self: center;    /* 侧边栏内容居中 */
    padding-right: 20px;
    border-right: 1px solid #eee;
}

.recommendations {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 20px;
}

.recommend-title {
    font: 500 18px/1.5 'Microsoft YaHei', sans-serif;
    color: #333;
    margin: 0 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #2e7d32;
}

.recommend-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recommend-item {
    margin: 12px 0;
    position: relative;
    padding-left: 15px;
}

.recommend-item::before {
    content: "•";
    color: #2e7d32;
    position: absolute;
    left: 0;
    top: 1px;
}

.recommend-link {
    color: #444;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.recommend-link:hover {
    color: #FFA500;
    transform: translateX(5px);
}

/* 主内容区优化 */
.main-content {
    flex: 1 0 60%;
    width: 100%;
    max-width: 1200px;      /* 匹配grid设置 */
    min-width: 300px;
    margin: 0 auto;          /* 二次居中保障 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 30px;
}

/* 新增列表样式（带page前缀）列表页 */
.page-news-list {
    display: grid;
    gap: 30px;
}

.page-news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.page-news-image {
    flex: 0 0 240px;
    height: 160px;
    border-radius: 4px;
    overflow: hidden;
}

.page-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-news-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.page-news-title {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.3;
}

.page-news-title a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.page-news-intro {
    flex: 1;
    margin: 0 0 12px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 3.2em;
}

.page-news-meta {
    display: flex;
    justify-content: flex-end;
}

.page-news-date {
    color: #999;
    font-size: 14px;
}

/* 悬停效果 */
.page-news-item:hover {
    transform: translateY(-3px);
}

.page-news-item:hover img {
    transform: scale(1.05);
}

.page-news-title a:hover {
    color: #2e7d32;
}

/* 响应式处理 */
@media (max-width: 768px) {
    .page-news-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .page-news-image {
        flex: none;
        height: 180px;
    }

    .page-news-title {
        font-size: 18px;
    }

    .page-news-intro {
        -webkit-line-clamp: 3;
        min-height: 4.8em;
    }
}


/* 响应式布局 */
@media (max-width: 1280px) {
    .content-wrapper {
        grid-template-columns:
            1fr
            minmax(auto, 800px)
            1fr;
        gap: 20px;
    }
}

@supports (display: grid) {
    .content-wrapper {
        display: grid;
        /* 覆盖原有flex设置 */
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr; /* 移动端单列布局 */
    }
    .left-sidebar,
    .right-sidebar {
        max-width: 100%;    /* 侧边栏全宽显示 */
        order: 2;           /* 侧边栏下移 */
    }
}

/* 顶部双栏布局 */
.content-top {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.slideshow-column,
.right-column {
    flex: 1; /* 等宽分栏 */
    min-width: 0; /* 防止内容溢出 */
}

/* 幻灯片容器 */
.slideshow-container {
    position: relative;
    padding-top: 0;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    isolation: isolate;
}

.slide-wrapper {
    position:  relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1; /* 默认层级 */
}

.slide-wrapper img.active {
    opacity: 1;
    z-index: 3; /* 激活时层级更高 */
}

.slide-wrapper a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: auto; /* 避免继承异常 */
}

/* 标题样式 */
.title-overlay {
    position: absolute;
    bottom: 36px; /* 调整此值以改变标题的位置 */
    left: 0;
    right: 0;
    z-index: 3; /* 确保在图片上方 */
    padding: 12px 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(2px);
    transition: background 0.3s ease;
}

.slide-title {
    color: #fff;
    margin: 0;
    font-size: 1.4em;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    /* 渐显动画 */
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.slide-title.active {
    opacity: 1;
    transform: translateY(0);
}

.slideshow-column a,
.slideshow-column a:visited,
.slideshow-column a:hover,
.slideshow-column a:active {
    text-decoration: none !important;
}

/* 控制按钮 */
.slide-controls {
    position: absolute;
    bottom: 12px;
    left: 50%; /* 水平居中 */
    transform: translateX(-50%); /* 水平居中 */
    display: flex; /* 使用Flexbox布局 */
    justify-content: center; /* 子元素横向居中 */
    z-index: 3; /* 最高层级 */
}

.control-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px; /* 添加间距使小圆点不紧贴 */
    z-index: 10; /* 确保按钮在最上层 */
}

.control-dot.active {
    background: #2e7d32;
    transform: scale(1.2);
}

.control-dot:hover {
    background: #60ad5e;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .content-top {
        flex-direction: column;
    }

    .slideshow-container {
        padding-top: 75%; /* 改为4:3比例 */
    }

    .slide-title {
        font-size: 1.1em;
        padding: 8px 15px;
    }
}

/* 新增样式 */
.content-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.news-sidebar {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 24px;
}

.news-title {
  font: 500 20px/1.5 'Microsoft YaHei', sans-serif;
  color: #333;
  margin: 0 0 16px;
  position: relative;
 display: table; /* 保持块级特性 */
  padding-bottom: 12px;
}

.news-title::after {
  content: '';
  position: absolute;
  left: 0.1em;
  bottom: 0;
  width: calc(100% - 0.2em); /* 微调消除字体空隙 */
  height: 3px;
  background: #c62f2f;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-item {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  color: #444;
  transition: all 0.2s ease;
  padding: 8px 0;
}

.news-item:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.news-category {
  color: #c62f2f;
  font-size: 14px;
  flex: 0 0 60px;
  letter-spacing: 0.5px;
}

.news-headline {
  flex: 1;
  font: 16px/1.4 'Microsoft YaHei', sans-serif;
  margin: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-date {
  color: #999;
  font-size: 14px;
  flex: 0 0 80px;
  text-align: right;
}

.content-bottom {
    display: flex;
    gap: 30px; /* 两栏之间的间距 */
    margin-top: 40px; /* 与上方内容的间距 */
}

.left-column, .right-column-b {
    flex: 1; /* 等宽分栏 */
    min-width: 0; /* 防止内容溢出 */
    background: #fff; /* 背景颜色 */
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 阴影 */
    padding: 24px; /* 内边距 */
}

.left-column h3, .right-column-b h3 {
    font: 500 20px/1.5 'Microsoft YaHei', sans-serif;
    color: #333;
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 12px;
}

.left-column a, .right-column-b a {
    text-decoration: none;
}

.left-column h3::after, .right-column-b h3::after {
    content: '';
    position: absolute;
    left: 0.1em;
    bottom: 0;
    width: calc(100% - 0.2em);
    height: 3px;
    background: #c62f2f; /* 红色下划线 */
}

.left-column p, .right-column-b p {
    font: 16px/1.4 'Microsoft YaHei', sans-serif;
    color: #444;
    margin: 0;
}

.left-column .news-list {
    list-style: none; /* 去掉默认的列表符号 */
    padding: 0;
    margin: 0;
}

.left-column .news-list li {
    display: flex !important; /* 使用 flex 布局 */
    align-items: center; /* 垂直居中 */
    justify-content: space-between; /* 标题和日期分别靠左和靠右 */
    font: 14px/1.3 'Microsoft YaHei', sans-serif; /* 调小行间距 */
    color: #444;
    padding: 6px 0; /* 调小行间距 */
}

.left-column .news-list li.first-item {
    font-weight: bold; /* 首行加粗 */
    font-size: 16px; /* 首行字体稍大 */
}

.left-column .news-list li:not(.first-item) {
    font-size: 14px; /* 其余行字体稍小 */
}

.left-column .news-list .news-date {
    color: #999; /* 日期颜色 */
    flex: 0 0 80px; /* 日期部分固定宽度 */
    text-align: right; /* 日期右对齐 */
}

.left-column .news-list a {
    text-decoration: none; /* 去掉下划线 */
    color: #444; /* 链接颜色 */
    transition: color 0.2s ease; /* 添加颜色过渡效果 */
    flex: 1; /* 标题占据剩余空间 */
    white-space: nowrap; /* 禁止换行 */
    overflow: hidden; /* 超出部分隐藏 */
    text-overflow: ellipsis; /* 超出部分显示为省略号 */
    margin-right: 10px; /* 标题和日期之间的间距 */
    max-width: calc(100% - 90px); /* 限制标题的最大宽度 */
}

.left-column .news-list a:hover {
    color: #c62f2f; /* 鼠标悬停时链接颜色变为红色 */
}

/* 右侧图片新闻区 */
.right-column-b .image-news {
    display: flex;
    flex-direction: column;
    gap: 20px; /* 图片之间的间距 */
}

.right-column-b .image-news .large-image {
    width: 100%; /* 大图片宽度 */
    height: 100%; /* 固定高度 */
    border-radius: 8px; /* 圆角 */
    overflow: hidden; /* 防止图片溢出 */
    position: relative; /* 为标题定位做准备 */
}

.right-column-b .image-news .large-image img {
    width: 100%; /* 图片宽度填满容器 */
    height: 240px; /* 图片高度填满容器 */
    object-fit: cover; /* 图片居中裁剪 */
    display: block; /* 去掉图片下方的空白间隙 */
    transition: transform 0.3s ease; /* 添加图片缩放动画 */
}

.right-column-b .image-news .small-images {
    display: flex;
    gap: 20px; /* 小图片之间的间距 */
}

.right-column-b .image-news .small-image {
    width: calc(50% - 10px); /* 小图片宽度，减去间距的一半 */
    height: 100%; /* 固定高度 */
    border-radius: 8px; /* 圆角 */
    overflow: hidden; /* 防止图片溢出 */
    flex-direction: column; /* 垂直排列图片和标题 */
    position: relative; /* 为标题定位做准备 */
}

.right-column-b .image-news .small-image img {
    width: 100%; /* 图片宽度填满容器 */
    height: 120px; /* 图片高度填满容器 */
    object-fit: cover; /* 图片居中裁剪 */
    display: block; /* 去掉图片下方的空白间隙 */
    transition: transform 0.3s ease; /* 添加图片缩放动画 */
}

.right-column-b .image-news img {
    width: 100%; /* 图片宽度填满容器 */
    height: 100%; /* 图片高度填满容器 */
    object-fit: cover; /* 图片居中裁剪 */
    display: block; /* 去掉图片下方的空白间隙 */
    transition: transform 0.3s ease; /* 添加图片缩放动画 */
}

.right-column-b .image-news a {
    text-decoration: none; /* 去掉下划线 */
    color: inherit; /* 继承父元素颜色 */
    display: block;
    flex-direction: column; /* 垂直排列图片和标题 */
    flex: 1; /* 使链接填满容器 */
    position: relative; /* 为标题定位做准备 */
}

.right-column-b .image-news a:hover img {
    transform: scale(1.05); /* 鼠标悬停时图片放大 */
}

.right-column-b .image-news .imgnews-title {
    font: 14px/1.4 'Microsoft YaHei', sans-serif;
    color: #000; /* 文字颜色改为白色 */
    background-color: rgba(0, 0, 0, 0.1); /* 背景色为半透明黑色 */
    margin: 0; /* 去掉默认的外边距 */
    padding: 8px 12px; /* 内边距 */
    white-space: nowrap; /* 禁止换行 */
    overflow: hidden; /* 超出部分隐藏 */
    text-overflow: ellipsis; /* 超出部分显示为省略号 */
    text-align: center; /* 标题居中 */
    border-radius: 4px; /* 圆角 */
    position: relative; /* 相对定位 */
    z-index: 1; /* 确保标题在图片上方 */
    transition: background-color 0.3s ease, color 0.3s ease; /* 添加背景色和文字颜色过渡效果 */
}

.right-column-b .image-news a:hover .imgnews-title {
    background-color: rgba(198, 47, 47, 0.9); /* 鼠标悬停时背景色变为红色 */
    color: #fff; /* 鼠标悬停时文字颜色保持白色 */
}

.fullsec {
    height: 80px;
    width: 100%;
    margin-top: 40px; /* 与上方内容的间距 */
    background: #fff; /* 背景颜色 */
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 阴影 */
    padding: 1px; /* 内边距 */
}

.sec {
    width: 100%;
    height: 100%; /* 固定高度 */
    border-radius: 8px; /* 圆角 */
    overflow: hidden; /* 防止图片溢出 */
}

.fullsec .sec img {
    width: 100%; /* 图片宽度填满容器 */
    height: 100%; /* 图片高度填满容器 */
    object-fit: cover; /* 图片居中裁剪 */
    display: block; /* 去掉图片下方的空白间隙 */
    transition: transform 0.3s ease; /* 添加图片缩放动画 */
}

/* 面包屑导航 */
.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.breadcrumb a {
    color: #2e7d32;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* 新闻标题 */
.news-title-show {
    font: 600 30px/1.8 'Microsoft YaHei', sans-serif;
    text-align: center;
    color: #333;
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid #c62f2f;
}

/* 新闻元信息 */
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
    position: relative; /* 新增定位上下文 */
}

/* 字体切换控件 */
.font-size-controls {
    display: flex;
    gap: 8px;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.font-btn {
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.font-btn.active {
    background: #c62f2f;
    color: white;
}

.font-btn:hover {
    background: #e53935;
    color: white;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .news-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .font-size-controls {
        order: 1; /* 控件换行后显示在下层 */
        width: 100%;
        justify-content: flex-end;
    }
}

/* 新闻正文样式 */
.news-content {
    font: 18px/1.9 'Microsoft YaHei', sans-serif;
    color: #444;
    margin: 20px;
}
.news-content p {
    margin: 1em 0;
    text-indent: 2em;
}
.news-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .news-title {
        font-size: 22px;
        line-height: 1.4;
    }
    .news-content {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* 优化后的CSS */
.news-navigation {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.prev-news, .next-news {
    flex: 1;
    min-width: 0;
}

.news-title a {
    display: block;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #444;
    text-decoration: none;
}

.nav-label {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

/* 标题控制 */
.news-title a {
    font-size: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 2.8em;
}

/* 悬停效果 */
.news-title a:hover {
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    color: #2e7d32;
}

/* 响应式处理 */
@media (max-width: 768px) {
    .news-navigation {
        flex-direction: column;
    }

    .news-title a {
        font-size: 14px;
        -webkit-line-clamp: 1;
        max-height: 1.4em;
    }
}

/* 长标题保护 */
.news-title a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 769px) {
    .news-title a {
        white-space: normal;
    }
}



/* 页脚 */
.main-footer {
  background: #2e7d32; /* 调整为导航栏同色系 */
  padding: 30px 20px;
  color: rgba(255,255,255,0.8);
}

.friend-links {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: flex; /* 使用flex布局 */
  flex-wrap: wrap; /* 允许换行 */
  gap: 40px; /* 增加间距 */
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.links-section {
  flex: 1 1 200px; /* 每个链接块至少200px宽，允许增长 */
  text-align: left;
}

.links-title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  position: relative;
}

.links-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #FFA500; /* 与导航栏hover色一致 */
}

.links-list {
  display: flex; /* 使用 flexbox 布局 */
  flex-wrap: wrap; /* 允许自动换行 */
  list-style: none; /* 移除默认的列表样式 */
  padding: 0; /* 移除默认的内边距 */
  margin: 0; /* 移除默认的外边距 */
}

.links-list li {
  margin: 8px; /* 添加间距 */
  padding: 4px 8px; /* 内边距 */
  background-color: #f0f0f0; /* 可选：添加背景色以区分每个 li */
  border-radius: 4px; /* 可选：圆角效果 */
}

.links-list a {
  color: #333; /* 链接颜色 */
  text-decoration: none; /* 移除下划线 */
  font-size: 14px;
  transition: all 0.3s; /* 平滑过渡效果 */
}

.links-list a:hover {
  color: #FFA500;
  transform: translateX(8px);
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .friend-links {
    flex-direction: column; /* 小屏幕时恢复为竖向排列 */
    gap: 30px;
  }

  .links-section {
    text-align: center;
  }

  .links-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .links-list a:hover {
    transform: none;
  }
}


@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .right-sidebar {
        order: 3;
        flex: none;
        width: 100%;
        padding: 20px 0 0;
        margin-top: 30px;
        border-top: 1px solid #eee;
    }

    .recommendations {
        box-shadow: none;
        padding: 15px;
    }

    .recommend-link {
        white-space: normal;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        max-height: 2.8em;
    }
}