html, body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}
#app{
    background: #f3f3f3;
}

.content-section-list {
    width: 1200px;
    background: #fff;
    margin: 0 auto;
    margin-bottom: 160px;
    padding: 40px;
    position: relative;
}

/* 返回首页链接 */
.back-link {
    margin-bottom: 30px;
}

.back-home {
    font-size: 14px;
    color: #002768;
    text-decoration: none;
    display: inline-block;
}

.back-home:hover {
    text-decoration: underline;
}

/* 主标题 */
.main-title {
    text-align: center;
    margin-bottom: 50px;
}

.main-title h1 {
    font-size: 22px;
    font-weight: bold;
    color: #002768;
    margin: 0;
}

/* 表单区域 */
.form-section {
    max-width: 800px;
    margin: 0 auto 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 16px;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-select {
    width: 600px;
    height: 49px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
}

.form-select:focus {
    outline: none;
    border-color: #002768;
}

/* 办事处选择框特殊样式 */
.form-group:nth-child(3) .form-label {
    font-size: 14px;
    color: #bbbbbb;
}

.form-group:nth-child(3) .form-select {
    height: 70px;
}

/* 查询按钮 */
.query-btn {
    width: 145px;
    height: 45px;
    border-radius: 3px;
    background-color: #002768;
    font-size: 16px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.query-btn:hover {
    background-color: #001a4d;
}

/* 结果显示区域 */
.result-section {
    margin-top: 80px;
    margin-bottom: 50px;
}

.result-container {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.result-left {
    width: 410px;
    height: 128px;
    background-color: #002768;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px 0 0 4px;
}

.result-text {
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
}

.result-right {
    width: 190px;
    height: 128px;
    background-color: #be133d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 4px 4px 0;
}

.time-display {
    color: #ffffff;
    font-size: 36px;
    font-weight: bold;
}

/* 底部容器 */
.bottom-container {
    width: 1200px;
    height: 810px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    background-color: #ffffff;
    margin: 0 auto;
}
















