﻿@charset "utf-8";



/* 外层 */
.middle {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    overflow: hidden;
}

/* 主体内容 */
.mid-main {
    padding: 80px 0 40px;
    overflow: hidden;
}
.mid-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mid-title img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 12px;
}

/* 问答列表 */
.news-list {
    width: 100%;
}
.news-item {
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px dashed #e2e8f0;
}
.news-item:first-child {
    padding-top: 0;
}
.news-item:last-child {
    border-bottom: none;
}
.item-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.item-img-wrap + .item-info {
  margin-left: 16px;
}
.item-img-wrap {
  max-width: 200px;
height:120px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.item-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-item:hover .item-img {
  transform: scale(1.1);
}
.item-title {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #1E3A5F;
    line-height: 28px;
    margin-bottom: 14px;

}

.item-desc {
    font-size: 14px;
    color: #6884A3;
    line-height: 20px;
    padding-left: 55px;
}

/* 分页 */
.mid-mj-page {
    width: 100%;
    color: #5f5f5f;
    font-size: 16px;
    text-align: center;
    margin: 40px 0;
}
.mid-mj-page a {
    min-width: 20px;
    display: inline-block;
    border: 1px solid #B8B8B8;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 0 5px;
    cursor: pointer;
	background: #F2FBF8;
}
.prev, .next {
    padding: 10px 20px !important;
}
.mid-mj-page a:hover {
    background: #30B090;
    color: #fff;
}
a.currentPage {
    background: #30B090;
    color: #fff;
}
.page-input {
    width: 40px;
    padding: 10px;
    display: inline-block;
    border: 1px solid #B8B8B8;
    border-radius: 5px;
    text-align: center;
    margin: 0 5px;
    color: #5f5f5f;
    font-size: 16px;
    position: relative;
    bottom: 1px;
}


@media screen and (max-width: 1000px) {

    .mid-main { padding: 50px 0 20px; }
    .mid-title {
        font-size: 22px;
        line-height: 31px;
        margin-bottom: 24px;
    }
    .mid-title img {
        width: 25px;
        height: 25px;
    }
    .news-item {
        padding: 22px 0;
    }
  .item-img-wrap {
  max-width: 25%;
	height:auto;}
    .item-title {
        padding-left: 0px;
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 22px;
    }
    .item-title::before {
        left: 0;
        top: 10%;
        transform: none;
        width: 16px;
        height: 16px;
    }
    .item-desc {
        padding: 0;
        font-size: 12px;
        line-height: 20px;
    }
    .mid-mj-page a, .page-tip { display: none; }
    .prev, .next { display: inline-block !important; }
    .hide1000 { display: none; }
}