html, body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: #f5f5f5;
}
#app{
    background: #f3f3f3;
}

/* 面包屑导航样式 */
.breadcrumb-nav {
    width: 1200px;
    margin: 0 auto;
    height: 70px;
    padding-top: 35px;
 }
 
 .breadcrumb-nav .list-inline {
     margin: 0;
     padding: 0;
 }
 
 .breadcrumb-nav .list-inline-item {
     font-size: 14px;
     color: #6c757d;
 }
 
 .breadcrumb-nav .list-inline-item a {
     color: #002768;
     text-decoration: none;
     transition: color 0.3s ease;
 }
 
 .breadcrumb-nav .list-inline-item a:hover {
     color: #002768;
     text-decoration: none;
 }
 
 .breadcrumb-nav .list-inline-item:not(:last-child) {
     margin-right: 8px;
 }
 
 .breadcrumb-nav .list-inline-item::before {
     content: "<";
     margin-right: 8px;
     color: #002768;
     font-weight: bold;
 }
 
/* Content Section Styles */
.content-section-list {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
    margin-bottom: 160px;
    padding: 40px;
    background: #f3f3f3;
    box-shadow: none;
}

/* 页面标题样式 */
.page-title {
    text-align: center;
    margin-bottom: 40px;
    color: #002768;
    font-size: 22px;
}



/* 查询区域样式 */
.query-section {
    margin-bottom: 40px;
}

.query-form {
   display: flex;
   align-items: center;
   justify-content: center;
}

.query-form .caseNumber {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    margin-right: 10px;
}

.input-groups {
    display: flex;
    align-items: center;
    gap: 15px;
    width: auto;
}

.input-groups input {
   width: 292px;
   height: 30px;
   border: 1px solid #e0e0e0;
   border-radius: 3px;
   background-color: #ffffff;
   padding: 0 10px;
   font-size: 14px;
}

.input-groups input:focus {
    outline: none;
    border-color: #e0e0e0;
}

.button-group {
    display: flex;
    gap: 15px;
}

.btn-query {
    width: 68px;
    height: 30px;
    border: 1px solid #002768;
    border-radius: 5px;
    background-color: #002768;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-query:hover {
    background: #002768;
}

.btn-reset {
    width: 68px;
    height: 30px;
    border: 1px solid #002768;
    border-radius: 5px;
    background-color: #ffffff;
    color: #002768;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: #ffffff;
}

/* 结果区域样式 */
.result-section {
    margin-top: 40px;
}

/* 无结果提示样式 */
.no-result {
    text-align: center;
    padding: 60px 20px;
}

.no-result-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-result-content p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* 状态跟踪时间线样式 */
.status-timeline {
    margin-top: 110px;
}

.status-title {
    font-size: 16px;
    color: #333333;
    margin-bottom: 52px;
}

.timeline {
    /* position: relative; */
    padding-left: 30px;
}

/* .timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #bdbdbd;
} */

.timeline-item {
    position: relative;
    /* margin-bottom: 48px; */
    display: flex;
    align-items: flex-start;
    height: 61px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 13px;
    /* bottom: -48px; */
    width: 1px;
    height: 48px;
    background: #bdbdbd;
    border-left: 1px dashed #bdbdbd;
}
.timeline-item:last-child::after {
    background: none;
}

.timeline-point {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #002768;
    z-index: 2;
    
}

.timeline-item.active .timeline-point {
    background-color: #002768;
    width: 13px;
    height: 13px;
    margin-left: 2px;
}

.timeline-item.current .timeline-point {
    background-color: #ffffff;
    border: 2px solid #be133d;
    width: 18px;
    height: 18px;
    left: -27px;
    top: -2px;
}

.timeline-content {
    flex: 1;
    padding-left: 20px;
    display: flex;
    align-items: center;
    margin-top: -5px;
}

.status-text {
    font-size: 14px;
    color: #333333;
}

.status-date {
    font-size: 14px;
    color: #333333;
}

.timeline-point-last{
    width: 13px;
    height: 13px;
    background: #e0e0e0;
    border-radius: 50%;
    margin-left: 32px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-section-list {
        margin: 0 20px;
        padding: 20px;
    }
    
    .input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-point {
        left: -14px;
    }
    
    .timeline-item.current .timeline-point {
        left: -17px;
    }
}

