* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1500px) {
    .container {
        max-width: 1200px;
    }
}

/* 头部导航 */
.header {
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.header-date {
    background-image: url(../images/topbg.png);
    background-position: center top;
    background-repeat:repeat-y;
    color: white;
    padding: 0px;
    text-align: left;
    font-size: 16px;
    height: 36px;
    line-height: 36px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: #0056b3;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    margin-right: 15px;
    font-style: italic;
}

.logo-subtitle {
    color: #999;
    border-left: 2px solid #ddd;
    padding-left: 10px;
    margin-left: 10px;
}

.logo-domain {
    font-size: 10px;
    letter-spacing: 1px;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    border: 1px solid #29a8e2;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.search-box input {
    border: none;
    padding: 8px 10px;
    outline: none;
    width: 200px;
}

.search-box button {
    background: #29a8e2;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
}

.header-links {
    font-size: 14px;
    color: #666;
    display: flex;
    gap: 15px;
}

.header-links a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-links a:hover {
    color: #0066cc;
}

/* 会员登录信息 */
.member-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.member-link {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.member-link:hover {
    color: #0066cc;
}

.member-link i {
    font-size: 16px;
}

.nav {
    background: linear-gradient(to right, #f2f2f2, #e4e4e4);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    justify-content: center;
    border: none;
    outline: none;
}

.nav li {
    flex: 1;
    text-align: center;
    border: none !important;
    outline: none !important;
    background-color: transparent;
    box-shadow: none !important;
}

.nav li + li {
    border-left: none !important;
}

/* 确保所有状态下都没有边框 */
.nav li:hover {
    border: none !important;
}

.nav li:active {
    border: none !important;
}

.nav li:focus {
    border: none !important;
    outline: none !important;
}

.nav a {
    display: block;
    padding: 20px 0;
    font-size: 18px;
    color: #333;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    outline: none;
}

.nav a:focus {
    outline: none;
    border: none;
}

.nav li:hover a {
    background: #0066cc;
    color: #fff;
    box-shadow: none;
}

.nav a.nav-active {
    background: #0066cc;
    color: #fff;
    box-shadow: none;
}

/* 特殊处理最后一个按钮样式 */
.nav li:last-child a {
    background: none;
    color: #333;
}

.nav li:last-child:hover a {
    background: none;
    color: #0066cc;
}

/* 英雄区域 */
.hero {
    height: 660px;
    position: relative;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Swiper 幻灯片样式 */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background: linear-gradient(135deg, #0061cc 0%, #0099ff 100%);
    position: relative;
    background-position: center center;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('images/banner.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.9;
    z-index: 0;
}

/* Swiper 导航按钮样式 */
.swiper-button-prev,
.swiper-button-next {
    color: white !important;
}

/* Swiper 分页器样式 */
.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* 平台优势 */
.advantages {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #ff9900;
    margin: 10px auto 0;
}

.advantages-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.advantage-item {
    flex: 1;
    height: 300px;
    background: #007bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.advantage-item .bg{
    position: static;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.advantage-item .bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.advantage-item .info{
    position: absolute;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
/* 使用实际图片作为背景 */
.advantage-item:nth-child(2) { 
    background: url('images/jd.jpg') no-repeat center center;
    background-size: cover;
}
.advantage-item:nth-child(3) { 
    background: url('images/ys.jpg') no-repeat center center;
    background-size: cover;
}
.advantage-item:nth-child(4) { 
    background: #0056b3;
}

/* 第一个卡片特殊样式（带图） */
.advantage-item {
    flex: 1.2;
    flex-direction: column;
    text-align: center;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.advantage-item span {
    padding: 5px 10px;
    border-radius: 4px;
}

.advantage-item span.t1{
    font-size: 28px;
}
.advantage-item span.t2{
    font-size: 14px;
}

/* 投诉指南 */
.guide {
    padding: 40px 0;
    background: #fff;
    margin-top: 20px;
}

.guide-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.guide-title {
    font-size: 24px;
    color: #333;
    position: relative;
}
.guide-title::after { 
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #e89f0c;
    margin: 10px auto 0;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.guide-more {
    font-size: 16px;
    color: #999;
    cursor: pointer;
}

.guide-tabs {
    display: flex;
    margin-bottom: 30px;
    background-color: #f8f9fa;
}

.guide-tab {
    padding: 10px 40px;
    background: #f8f9fa;
    border: 1px solid #eee;
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

.guide-tab.active {
    background: #fff;
    color: #0072c6;
    font-weight: bold;
    border-bottom: 2px solid #064d8d;
    margin-bottom: -1px;
    z-index: 2;
}

.guide-content {
    display: flex;
    gap: 100px;
}

.guide-panel {
    display: none;
    width: 100%;
}

.guide-panel.active {
    display: flex;
    gap: 100px;
}

.guide-list {
    flex: 1;
    list-style: none;
}

.guide-list li {
    background: #f8fbff;
    margin-bottom: 10px;
    padding: 10px 15px;
    font-size: 16px;
    color: #555;
    list-style: none;
}

.guide-img {
    flex: 1;
    width: 35%;
    overflow: hidden;

}
.guide-img img{
    width: 100%;
    height: auto;
}

/* 进度查询 */
.progress {
    padding: 40px 0 60px;
    background: #fff;
}

.progress-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.progress-main {
    flex: 1;
}

.progress-sidebar {
    width: 300px;
}

.my-complaints-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.mc-tab {
    padding: 10px 20px;
    border: 1px solid #eee;
    border-bottom: none;
    background: #f9f9f9;
    font-size: 12px;
    color: #666;
    cursor: pointer;
}

.mc-tab:first-child {
    border-top-left-radius: 4px;
}

.mc-tab.active {
    background: #fff;
    color: #ff9900;
    border-color: #eee;
    position: relative;
    top: 1px;
}

.odr-box {
    background: #f0f4f8;
    padding: 20px;
    font-size: 12px;
    color: #555;
    line-height: 2;
    border-radius: 4px;
    background-image: linear-gradient(to bottom right, #fff 0%, transparent 100%);
}

/* 进度查询样式 */
.progress-title {
    font-size: 24px;
    margin-bottom: 10px;
    position: relative;
}

.progress-title-underline {
    width: 80px;
    height: 3px;
    background: #ff9900;
    margin-bottom: 20px;
}

.complaint-title {
    font-size: 18px;
    margin-bottom: 15px;
    border-left: 4px solid #ff9900;
    padding-left: 10px;
    text-align: left;
}

.complaint-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.complaint-tab {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    background: #f0f0f0;
    color: #333;
    cursor: pointer;
}

.complaint-tab.active {
    background: #ff9900;
    color: #fff;
}

.complaint-list-wrapper {
    margin-bottom: 20px;
}

.complaint-list {
    display: none;
}

.complaint-list.active {
    display: block;
}

.complaint-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #d8d8d8;
}

.complaint-date {
    color: #999;
    font-size: 14px;
}

.view-more {
    margin-top: 15px;
}

.view-more a {
    color: #ff9900;
    font-size: 14px;
    text-decoration: none;
}

.sidebar-card {
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.sidebar-img {
    height: 160px;
    background: url('images/zn.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    line-height: 160px;
    font-size: 24px;
    font-weight: bold;
}

.sidebar-stats {
    padding: 15px;
}

.stat-item {
    font-size: 12px;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
    padding-bottom: 5px;
}

.stat-item:last-child {
    border: none;
}

/* 页脚 */
.footer {
    background: #004080;
    color: #fff;
    padding-top: 0px;
}

.footer-nav {
    height: 73px;
    text-align: center;
    background-image: url(../images/topbg.png);
    background-position: center top;
    background-repeat: repeat-y;
    color: white;
    padding: 0px;
}
.footer-nav .container{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}
.footer-nav a {
    margin: 0 20px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #29a8e2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    padding-top: 50px;
    font-size: 12px;
    color: #fff;
    height: 320px;
    font-size: 16px;
}

.footer-info p {
    margin-bottom: 8px;
}

.footer-logos {
        display: flex;
        gap: 20px;
        align-items: center;
        padding-bottom: 30px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 20px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-content {
        flex-direction: column;
    }

    .progress-content {
        flex-direction: column;
    }

    .progress-sidebar {
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .guide-tabs,
    .progress-tabs {
        flex-wrap: wrap;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* 登录页面样式 */
.login-container {
    min-height: 70vh;
    background: url('../images/login.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}



.login-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.login-form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0px;
    width: 100%;
    max-width: 620px;
    z-index: 1;
    padding-bottom: 80px;
}

.login-form h2 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    border-bottom: 1px solid #cacaca;
    padding: 0 50px;
}

.login-form h2 .register-link {
    font-size: 16px;
    font-weight: normal;
}

.login-form h2 .register-link a {
    color: #0066cc;
    text-decoration: none;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    padding: 0 50px;
}

.form-group label {
    display: inline-block;
    width: 90px;
    text-align: right;
    margin-right: 15px;
    font-size: 14px;
    color: #333;
}

.required {
    color: #ff0000;
}

.form-group input {
    width: 250px;
    padding: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border: 1px solid #ff0000;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-group label {
    flex-shrink: 0;
    width: 80px;
    text-align: right;
    margin-right: 15px;
}

.form-group.captcha-group {
    padding: 0 50px;
}

.captcha-group input {
    width: 150px;
    box-sizing: border-box;
}

.captcha-code {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 38px;
    border: 1px solid #ddd;
    cursor: pointer;
    overflow: hidden;
}

.captcha-code img {
    display: block;
    height: 100%;
    width: auto;
}

.error-message {
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
    margin-left: 95px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message::before {
   
}

.login-btn {
    width: 200px;
    padding: 10px;
    background: #0066cc;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
    margin-left: 145px;
}

.login-btn:hover {
    background: #0052a3;
}

.register-link a:hover {
    text-decoration: underline;
}

/* 右侧3D形象 */
.login-illustration {
    flex: 1;
    text-align: center;
    position: relative;
}

.illustration-content {
    position: relative;
    z-index: 1;
}

.illustration-bg {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.illustration-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNMzAgMzBMMCAwTDYwIDBMMzAgMzBaIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiLz48L3N2Zz4=');
    opacity: 0.3;
}

.service-icon {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: 60px;
    color: #fff;
}

.service-text {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

/* 底部信息 - 登录注册页面专用 */
.login-page .footer-info,
.register-page .footer-info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    text-align: center;
    color: #000007;
    font-size: 12px;
}

/* 首页底部信息 */
.footer-info {
    background: #004080;
    padding: 20px;
    text-align: left;
    color: #fff;
    font-size: 16px;
}

/* 注册页面样式 */
.sms-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sms-group label {
    flex-shrink: 0;
    width: 80px;
    text-align: right;
    margin-right: 15px;
}

.sms-group input {
    width: 150px;
    box-sizing: border-box;
}

.sms-btn {
    padding: 8px 15px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    font-size: 14px;
    cursor: pointer;
    height: 32px;
}

.sms-btn:hover {
    background: #e0e0e0;
}

.agree-group {
    display: flex;
    align-items: center;
}

.agree-group label {
    width: 80px;
    margin-right: 15px;
}

.agree-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.agree-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #ff6600;
    cursor: pointer;
}

.agree-link {
    color: #0066cc;
    text-decoration: none;
}

.agree-link:hover {
    text-decoration: underline;
}

.form-group.sms-group {
    padding: 0 50px;
}

.form-group.agree-group {
    padding: 0 50px;
}

/* 登录页面响应式设计 */
@media (max-width: 768px) {
    .login-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .login-form {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .login-illustration {
        order: -1;
    }
    
    .illustration-bg {
        max-width: 300px;
        height: 200px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 40px;
    }
}

/* 投诉表单页面样式 */
.complaint-banner {
    background: url('../images/tsbanner.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    color: #fff;
}

.complaint-banner h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.complaint-section {
    padding: 40px 0;
    background: #f5f5f5;
}

.complaint-title {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.complaint-form {
    background: #fff;
    padding: 40px 100px 40px 60px;
    width: 1050px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-label {
    width: 150px;
    text-align: right;
    margin-right: 20px;
    padding-top: 8px;
    font-size: 14px;
    color: #333;
}

.form-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 300px;
}

.form-textarea {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 550px;
    resize: vertical;
}

/* 投诉类别标签 */
.category-tags {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 550px;
}

.category-tag {
    padding: 6px 0;
    border: 1px solid #ddd;
    font-size: 14px;
    cursor: pointer;
    background: #fff;
    color: #666;
    flex: 0 0 calc((100% - 40px) / 5);
    text-align: center;
    box-sizing: border-box;
}

.category-tag.active {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

.category-tag:hover {
    border-color: #0066cc;
}

/* 文件上传 */
.file-upload {
    flex: 1;
    display: flex;
    gap: 10px;
    width: 300px;
}

.file-input {
    flex: 1;
}

.file-btn {
    padding: 8px 20px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 14px;
}

.file-btn:hover {
    background: #e0e0e0;
}

/* 验证码 */
.captcha-wrapper {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 300px;
}

.captcha-input {
    width: 150px;
}

.captcha-img {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
}

/* 短信验证码 */
.sms-wrapper {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 300px;
}

.sms-input {
    width: 150px;
}

.sms-get-btn {
    padding: 8px 15px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 14px;
}

.sms-get-btn:hover {
    background: #e0e0e0;
}

/* 协议勾选 */
.agree-row {
    align-items: center;
}

.agree-row .form-label {
    padding-top: 0;
}

/* 提交按钮 */
.btn-row {
    margin-top: 30px;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.submit-btn,
.query-btn {
    padding: 10px 40px;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.submit-btn {
    background: #0066cc;
    color: #fff;
}

.submit-btn:hover {
    background: #0052a3;
}

.query-btn {
    background: #0066cc;
    color: #fff;
}

.query-btn:hover {
    background: #0052a3;
}

/* 投诉列表页样式 */
.complaint-list-section {
    padding: 40px 0;
}

.list-layout {
    display: flex;
    gap: 30px;
}

.list-main {
    flex: 1;
}

.list-sidebar {
    width: 280px;
}

/* 今日热点 */
.hot-news {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

.list-section-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #d6d6d6;
}

.list-title-line {
    width: 4px;
    height: 20px;
    background: #e89f0c;
    border-bottom: 1px solid #d6d6d6;
}

.hot-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.hot-img {
    width: 120px;
    height: 80px;
    background: #f0f0f0;
    flex-shrink: 0;
}

.hot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-content h4 {
    font-size: 18px;
    color: #4f4f4f;
    margin-bottom: 8px;
    font-weight: normal;
}

.hot-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.hot-date {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hot-date::before {
    content: '\f073';
    font-family: 'FontAwesome';
    font-size: 12px;
}

.hot-text-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #eee;
}

.hot-text-item:last-child {
    border-bottom: none;
}

.hot-text-item h4 {
    font-size: 18px;
    color: #4f4f4f;
    margin-bottom: 8px;
    font-weight: normal;
}

.hot-text-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 5px;
}

/* 投诉列表 */
.complaint-list {
    background: #fff;
    padding: 20px;
}

.list-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.tab-item {
    font-size: 16px;
    color: #666;
    cursor: pointer;
    padding: 5px 0;
    position: relative;
}

.tab-item.active {
    color: #ff9900;
    font-weight: bold;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff9900;
}

.complaint-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.complaint-item:last-child {
    border-bottom: none;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-header h4 {
    font-size: 16px;
    color: #4f4f4f;
    flex: 1;
    font-weight: normal;
    position: relative;
    padding-left: 20px;
}

.item-header h4::before {
    content: '>>';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff9900;
    font-weight: bold;
}

.status-tag {
    padding: 6px 40px;
    font-size: 14px;
    border-radius: 2px;
    font-weight: bold;
}

.status-processing {
    background: #ff9900;
    color: #fff;
}

.status-replied {
    background: #999;
    color: #fff;
}

.status-completed {
    background: #0066cc;
    color: #fff;
}

.item-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.item-date::before {
    content: '\f073';
    font-family: 'FontAwesome';
    font-size: 12px;
}

.item-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.item-stats {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.item-stats i {
    margin-right: 5px;
    color: #666;
}

.item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.item-info-content {
    display: flex;
    gap: 40px;
}

.item-detail {
    color: #ff9900;
    text-decoration: none;
    font-weight: bold;
}

.more-btn-wrapper {
    text-align: center;
    padding: 20px 0;
}

.more-btn {
    padding: 10px 40px;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #0080e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

/* 侧边栏 */
.sidebar-box {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-title {
    background: #0067b3;
    color: #fff;
    padding: 15px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 12px 20px;
    border-bottom: 1px dotted #d8d8d8;
    position: relative;
    background-color: #f6f6f6;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding-left: 15px;
    position: relative;
}

.category-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: url('../images/i1.png') no-repeat center center;
    background-size: contain;
}

.category-list li.active a,
.category-list li a:hover {
    color: #ff9900;
}

.sidebar-btn {
    padding: 18px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.complain-btn {
    background: #ff9900;
    color: #fff;
    display: block;
}

.complain-btn:hover {
    background: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,153,0,0.3);
}

.my-complaint-btn {
    background: #e8a33d;
    color: #fff;
    display: block;
}

.my-complaint-btn:hover {
    background: #d99436;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232,163,61,0.3);
}

.sidebar-banner {
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-stats {
    background: #0067b3;
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.sidebar-stats .stat-item {
    display: flex;
    justify-content: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
    font-size: 16px;
}

.sidebar-stats .stat-item:last-child {
    border-bottom: none;
}

.sidebar-stats .stat-label {
    font-weight: normal;
    color: #fff;
}

.sidebar-stats .stat-num {
    font-weight: bold;
    font-size: 18px;
    margin-left: 10px;
     color: #fff;
}

.content-body-title {
    text-align: center;
}