/* 模板 */
.page-container {
    width: 100%;
    font-size: 18px;
    background-color: #ccdde9;
    /* padding: 0 12px; */
    /* background: url('') no-repeat; */
    /* background-size: cover;  */
}

/* 头部背景 */
.header {
    width: 100%;
}

.header .img-box img {
    display: block;
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    /* max-height: 80vh; */
}

/* 主要内容 */
.main {
    width: 100%;
}

/* tab栏 */
.tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs .tab-links {
    margin-bottom: 40px;
    width: 100%;
    padding: 0 15%;
    display: flex;
    justify-content: space-between;
}

.tabs .tab-links a {
    font-size: 34px;
    font-weight: bold;
    padding: 8px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: #1069a5;
    display: inline-block;
}

.tabs .tab-links a.active {
    color: #fff;
    background: #4488b5;
}

.tabs .tab-content>div {
    display: none;
    /* 默认隐藏所有内容 */
}

.tabs .tab-content>div.active-content {
    display: block;
    /* 显示当前激活的内容 */
}

/* 提问征集 */
.one-list {
    width: 100%;
}

.one-item {
    margin: 20px 0;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
}

.one-item .left {
    width: 30%;
}

.one-item .left .img-box {
    width: 100%;
}

.one-item .left .img-box img {
    transition: 0.3s all;
    /* overflow: hidden;
    width: 100%;
    height: 240px;
    object-fit: cover; */
    border-radius: 10px;
}

.one-item .left .img-box img:hover {
    transform: scale(1.05);
}

.one-item .right {
    flex: 1;
    height: 200px;
    padding: 0 20px 0 50px;
}

.one-item .right .title a {
    color: #1069a5;
    font-size: 24px;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.one-item .right .title a:hover {
    text-decoration: underline;
    color: #b10000;
}

.one-item .right p {
    text-indent: 2em;
    margin-top: 8px;
    line-height: 1.6;
    font-size: 20px;
    letter-spacing: 1px;
    /* color: #999; */
}

.one-item .right p a {
    color: #000;

}

.one-item .right p a:hover {
    color: #b10000;
}

.one-item .right p .chakanXQ {
    text-indent: 0;
    display: inline-block;
    color: #1069a5;
    text-decoration: underline;
}


/* 提问征集 */
.two-item .left {
    position: relative;
}

.two-item .left .palyer-img-box {
    position: absolute;
    width: 19%;
    bottom: 10px;
    right: 10px;
}

.two-item .left .palyer-img-box img {
    width: 100%;
}


/* 问政回音 */
.three-list {
    width: 100%;
}

.three-item {
    margin: 20px 0;
    width: 100%;
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
}

.three-item .title a {
    color: #1069a5;
    font-size: 24px;
    line-height: 2;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.three-item .title a:hover {
    text-decoration: underline;
    color: #b10000;
}

.three-item p {
    text-indent: 2em;
    margin-top: 8px;
    line-height: 1.6;
    font-size: 20px;
    letter-spacing: 1px;
    /* color: #999; */
}

.three-item p a {
    color: #000;

}

.three-item p a:hover {
    color: #b10000;
}

.three-item p .chakanXQ {
    text-indent: 0;
    display: inline-block;
    color: #1069a5;
    text-decoration: underline;
}

/* 查看更多按钮 */
.btn-box {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.chakanMore {
    background-color: #1069a5;
    /* 背景颜色 */
    border: none;
    /* 无边框 */
    color: white;
    /* 文字颜色 */
    padding: 10px 40px;
    /* 内边距 */
    text-align: center;
    /* 文字居中 */
    text-decoration: none;
    /* 无下划线 */
    display: inline-block;
    /* 内联块级元素 */
    font-size: 20px;
    /* 字体大小 */
    margin: 4px 2px;
    /* 外边距 */
    cursor: pointer;
    /* 鼠标悬停时显示手指图标 */
    border-radius: 50px;
    /* 边框圆角 */
    transition: background-color 0.3s ease;
    /* 背景颜色过渡效果 */
}

.chakanMore:hover {
    background-color: #0056b3;
    /* 鼠标悬停时的背景颜色 */
}

.chakanMore:active {
    background-color: #004085;
    /* 点击时的背景颜色 */
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #eee;
}
.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}
.modal-open {
    overflow: hidden;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition:      -o-transform .3s ease-out;
    transition:         transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-dialog {
    position: relative;
    width: 700px;
    margin: 140px auto 35px;
}
.modal-content {
    position: relative;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 6px;
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}
.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}
.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}
.modal-header {
    position: absolute;
    top:9.5%;
    right:5%;
    min-height: 16.42857143px;
}
.modal-header .close {
    margin-top: -2px;
}
.modal-title {
    margin: 0;
    line-height: 1.42857143;
}
.modal-body {
    position: relative;
    padding: 15px;
}
.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
@media (min-width: 1400px) {
    .modal-dialog {
        width: 50%;
    }

}
