@charset "utf-8";

/* 举报中心页面样式 - 统一PC和移动端布局 */

body, .report-center-page {
    background-color: #f5f7fa;
}

/* Banner区域 */
.banner {
    position: relative;
    height: 200px;
    background: url('/web/jinglisafe/assets/images/report-center/reportcenter-banner.jpg') no-repeat center center;
    background-size: auto 100%;
}

.banner-ani {
    position: relative;
    max-width: 1400px;
    width: 96%;
    height: 100%;
    margin: 0 auto;
}

.banner-info {
    position: absolute;
    top: 68px;
}

.banner-info h2 {
    font-size: 28px;
    font-weight: bold;
    color: #1c1d1f;
    margin: 0;
}

.banner-info p {
    font-size: 14px;
    color: #626266;
    margin-top: 15px;
    line-height: 1.8;
}

/* 主体内容 */
.report-content {
    max-width: 1400px;
    width: 96%;
    margin: 0 auto;
    padding: 30px 0 100px;
}

/* 顶部标签切换 - 统一PC和移动端 */
.tab-header {
    background-color: #fff;
    padding: 0 30px;
    margin-bottom: 20px;
}

.menu-tab {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f2f4f7;
}

.menu-tab li {
    flex: 1;
    text-align: center;
    max-width: 200px;
}

.menu-tab li a {
    display: block;
    padding: 20px 0;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
}

.menu-tab li.active a,
.menu-tab li:hover a {
    color: var(--jls-primary);
    font-weight: 500;
}

.menu-tab li.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--jls-primary);
}

/* 内容区域 */
.content-wrapper {
    background-color: #fff;
    padding: 30px;
}

.content-box {
    display: none;
}

.content-box.active {
    display: block;
}

/* 内容列表样式 */
.content-item {
    padding: 8px 30px;
    box-sizing: border-box;
    background-color: #fff;
}

.content-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-item li {
    padding: 25px 0;
}

.content-item li:not(:last-child) {
    border-bottom: 1px solid #f2f4f7;
}

.list-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 17px;
    align-items: center;
}

.list-title {
    font-size: 18px;
    color: #323235;
    text-decoration: none;
}

.list-title:hover {
    color: var(--jls-primary);
    transition: all .3s;
}

.list-date {
    color: #acacac;
    font-size: 14px;
}

.list-content {
    color: #626266;
    font-size: 14px;
    line-height: 1.6;
}

.p-1 {
    overflow: hidden;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pageItem {
    text-align: right;
    margin: 40px auto 0;
}

.pagination {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    display: block;
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.pagination li.active a,
.pagination li:hover a {
    background-color: var(--jls-primary);
    color: #fff;
    border-color: var(--jls-primary);
}

.pagination li.disabled a {
    color: #999;
    cursor: not-allowed;
}

/* 旧的样式兼容 - 保留但简化 */
.newslist-box,
.m-newlist-box {
    display: flex;
    gap: 20px;
}

.left-nav {
    display: block;
    width: 220px;
    flex-shrink: 0;
    background-color: #fff;
    padding: 20px 0;
}

.left-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.left-nav li {
    margin: 0;
}

.left-nav li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.left-nav li a:hover,
.left-nav li.active a {
    color: var(--jls-primary);
    background-color: #f0f7ff;
}

.left-nav li.active a {
    font-weight: 500;
}

.sidebar-icon-img {
    width: 22px;
    height: 20px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.left-nav li:first-child .sidebar-icon-img {
    background-image: url('/web/jinglisafe/assets/images/report-center/reportcenter-sidebar-01.png');
}

.left-nav li:nth-child(2) .sidebar-icon-img {
    background-image: url('/web/jinglisafe/assets/images/report-center/reportcenter-sidebar-02.png');
}

.right-content {
    display: block;
    flex: 1;
    background-color: #fff;
    padding: 30px;
    min-height: 500px;
}

/* 详情页标题样式 */
.content-item-title h1 {
    font-size: 24px;
    color: #323235;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.article-time {
    color: #acacac;
    font-size: 14px;
    margin-bottom: 20px;
}

/* 面包屑导航 */
.breadcrumbs {
    color: #93939a;
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: #93939a;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--jls-primary);
}

.breadcrumbs span:not(:last-child)::after {
    content: '>';
    margin: 0 8px;
    color: #ccc;
}

.right-content-item-title {
    color: #323235;
}

/* 响应式 - 移动端 */
@media screen and (max-width: 1023px) {
    .banner {
        background-image: url('/web/jinglisafe/assets/images/report-center/m-reportcenter-banner.png');
        background-size: cover;
        display: flex;
        width: 100%;
        margin-top: 0;
        height: 171px;
    }

    .banner-info {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        padding: 0 15px;
    }

    .banner-info h2 {
        font-size: 20px;
    }

    .banner-info p {
        font-size: 12px;
        margin-top: 10px;
    }

    .report-content {
        padding: 15px 0 50px;
        width: 92%;
    }

    .tab-header {
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .menu-tab li a {
        padding: 15px 0;
        font-size: 14px;
    }

    .content-wrapper {
        padding: 15px;
    }

    .content-item {
        padding: 0;
    }

    .content-item li {
        padding: 20px 0;
    }

    .list-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .list-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .list-date {
        font-size: 12px;
    }

    .list-content {
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .pageItem {
        margin-top: 20px;
    }

    .pagination {
        justify-content: center;
    }

    .pagination li a {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* 举报类型和邮箱区域 - 保留原有样式 */
.reportemail-top {
    display: flex;
    justify-content: space-between;
    min-height: 300px;
}

.reportemail-icons {
    display: flex;
    width: calc(100% - 740px);
}

.reportemail-icons ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

.reportemail-icons ul li {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(50% - 10px);
    height: calc(50% - 10px);
    background-color: #fcfeff;
    cursor: pointer;
    transition: all 0.3s;
}

.reportemail-icons ul li:hover {
    background-color: #f0f7ff;
}

.reportemail-icons ul li img {
    margin-bottom: 20px;
}

.reportemail-icons ul li .btn {
    font-size: 16px;
    color: #323235;
    font-weight: 500;
    margin: 0;
}

.reportemail-icons ul li:nth-child(n+3) {
    margin-top: 20px;
}

.reportemail-icons .tip {
    width: 100%;
    box-sizing: border-box;
    padding: 0 30px;
    font-size: 14px;
    margin-top: 10px;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

.reportemail-card {
    width: 720px;
    background-color: #fcfeff;
    padding: 19px;
    box-sizing: border-box;
}

.reportemail-card .card-top {
    display: flex;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 25px;
    padding-left: 15px;
    border-bottom: 1px dashed #c8ccd6;
    margin-bottom: 15px;
}

.reportemail-card .card-top img {
    margin-right: 16px;
}

.reportemail-card .card-top .card-header {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.reportemail-card .card-top a {
    color: var(--jls-primary);
    text-decoration: none;
}

.reportemail-card .card-body {
    line-height: 24px;
    color: #626266;
    padding: 0 15px;
    text-align: justify;
}

.reportemail-card .card-body p {
    margin: 0 0 8px 0;
}

/* 规则和法律卡片 */
.about-rules {
    position: relative;
    display: flex;
    background-color: #fcfeff;
    margin-top: 20px;
    background-image: url('/web/jinglisafe/assets/images/report-center/reportcenter-cardbg.jpg');
    background-position: right bottom;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(196, 206, 220, .2);
}

.about-rules::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 98%;
    box-shadow: 0 0px 30px 15px rgba(153, 170, 198, 0.23);
    transform: translate(-50%, -50%);
}

.about-rules::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    border-right: 1px dashed #d5dbe1;
}

.about-rules .card-item {
    position: relative;
    width: 50%;
    box-sizing: border-box;
    padding: 0 40px 0 24px;
}

.about-rules .card-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ebeef1;
    height: 72px;
    box-sizing: border-box;
    color: #93939a;
}

.icon-0 {
    display: inline-block;
    width: 22px;
    height: 20px;
    background: url('/web/jinglisafe/assets/images/report-center/reportcenter-sidebar-01.png') no-repeat;
    background-position: -22px 0;
}

.icon-1 {
    display: inline-block;
    width: 22px;
    height: 20px;
    background: url('/web/jinglisafe/assets/images/report-center/reportcenter-sidebar-02.png') no-repeat;
    background-position: -22px 0;
}

.about-rules .card-header h3 {
    font-size: 18px;
    font-weight: normal;
    margin: 0 10px;
}

.about-rules .card-header h3 a {
    color: #333;
    text-decoration: none;
}

.about-rules .card-header h3 a:hover {
    color: var(--jls-primary);
}

.about-rules .card-header p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.about-rules .card-body {
    overflow: hidden;
    padding-bottom: 47px;
}

.about-rules .lawList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-rules .lawList li {
    position: relative;
    padding-left: 35px;
    margin-top: 25px;
}

.about-rules .lawList li a {
    font-size: 14px;
    color: #323235;
    text-decoration: none;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.about-rules .lawList li a::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 6px;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background-color: #323235;
}

.about-rules .lawList li a:hover {
    color: var(--jls-primary);
}

.about-rules .lawList li a:hover::before {
    background-color: var(--jls-primary);
}

.more-btn {
    display: block;
    margin-left: 35px;
    margin-top: 25px;
    color: #2981FF;
    text-decoration: none;
    font-size: 14px;
}

.more-btn:hover {
    text-decoration: underline;
}

/* 详情页样式 */
.content-item-detail {
    margin-top: 30px;
    line-height: 30px;
    color: #626266;
    font-size: 14px;
}

.content-item-detail p {
    margin-bottom: 15px;
}

/* 旧的显示控制 - 保留兼容 */
.m-show {
    display: none;
}

.pc-show {
    display: block;
}

.product-r {
    display: none;
}

.m-date {
    display: none;
}

/* 响应式 - 平板 */
@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .reportemail-icons {
        width: calc(100% - 650px);
    }
    .reportemail-card {
        width: 630px;
    }
}

/* 响应式 - 移动端适配 report-center 页面 */
@media screen and (max-width: 1023px) {
    .reportemail-top {
        flex-direction: column;
        min-height: auto;
    }

    .reportemail-icons {
        width: 100%;
        margin-bottom: 15px;
    }

    .reportemail-icons ul {
        justify-content: flex-start;
        gap: 14px;
    }

    .reportemail-icons ul li {
        width: calc(50% - 7px);
        height: auto;
        padding: 20px 10px;
        box-sizing: border-box;
    }

    .reportemail-icons ul li img {
        margin-bottom: 10px;
        width: 40px;
        height: 40px;
    }

    .reportemail-icons ul li .btn {
        font-size: 14px;
    }

    .reportemail-icons .tip {
        font-size: 12px;
        padding: 0 10px;
        margin-top: 8px;
    }

    .reportemail-icons ul li:nth-child(n+3) {
        margin-top: 0;
    }

    .reportemail-card {
        width: 100%;
        padding: 15px;
    }

    .reportemail-card .card-top {
        padding: 10px 0 15px 0;
    }

    .reportemail-card .card-top img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .reportemail-card .card-top .card-header {
        font-size: 14px;
    }

    .reportemail-card .card-body {
        font-size: 13px;
        line-height: 1.8;
        padding: 0;
    }

    .reportemail-card .card-body p {
        margin-bottom: 10px;
    }

    /* 规则和法律卡片 - 移动端 */
    .about-rules {
        flex-direction: column;
        background-image: none;
        margin-top: 15px;
    }

    .about-rules::before,
    .about-rules::after {
        display: none;
    }

    .about-rules .card-item {
        width: 100%;
        padding: 0 15px;
    }

    .about-rules .card-item:first-child {
        margin-bottom: 15px;
    }

    .about-rules .card-header {
        height: 60px;
    }

    .about-rules .card-header h3 {
        font-size: 16px;
    }

    .about-rules .card-header p {
        font-size: 12px;
    }

    .about-rules .card-body {
        padding-bottom: 20px;
    }

    .about-rules .lawList li {
        margin-top: 15px;
        padding-left: 20px;
    }

    .about-rules .lawList li a {
        font-size: 13px;
    }

    .about-rules .lawList li a::before {
        left: 0;
    }

    .more-btn {
        margin-left: 20px;
        margin-top: 15px;
        font-size: 13px;
    }

    /* 显示控制 - 移动端 */
    .m-show {
        display: block;
    }

    .pc-show {
        display: none;
    }
}

/* 响应式 - 移动端适配 detail 页面 */
@media screen and (max-width: 1023px) {
    .newslist-box {
        flex-direction: column;
    }

    .left-nav {
        display: none;
    }

    .left-nav.detail-left-nav {
        display: none;
    }

    .right-content {
        padding: 20px;
        min-height: auto;
    }

    .content-item-title h1 {
        font-size: 18px;
    }

    .breadcrumbs {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .content-item-detail {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.8;
    }
}
