.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ece8e8;
}

.ct {
    display: flex;
    align-items: center;
    justify-content: center;
}

.select_no {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.preFace {
    box-sizing: border-box;
    padding: 100px 0 40px 0;
}

.preFace .txtBx {
    width: 700px;
    flex-direction: row;
    border: 8px;
    border-radius: 12px;
    border: 2px solid #f1f1f1;
    box-shadow: var(--chakra-shadows-xl);
    background: #ffffffaa;
}

.preFace .txtBx .theme {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 32px 0;
    flex-direction: column;
    background-color: #db2b36;
    color: white;
    font-size: 28px;
    letter-spacing: 4px;
}

.preFace .txtBx .theme .title {
    font-size: 52px;
    margin-top: 26px;
    font-weight: bold;
    letter-spacing: 6px;
}

.preFace .txtBx .txt {
    color: #666666;
    font-size: 16px;
    background-color: white;
    padding: 36px;
    letter-spacing: 3px;
    line-height: 28px;
    text-align: justify;
    text-indent: 36px;
    text-justify: inter-ideograph;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.preFace .txtBx .txt p {
    margin-top: 12px;
}

.list {
    flex-direction: column;
}

.list .item {
    width: 700px;
    border-radius: 6px;
    border: 1px solid #f1f1f1;
    background: white;
    box-shadow: var(--chakra-shadows-xl);
    margin-bottom: 30px;
}

.list .item .img {
    width: 100%;
    height: 297px;
}

.list .item .img img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.list .item .bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

.list .item .bar .city {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #333333;
    font-weight: bold;
}

.list .item .bar .time {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #333333;
    font-weight: bold;
}

.list .item .bar .status {
    display: inline-block;
    width: 160px;
    height: 46px;
    line-height: 46px;
    color: #ffffff;
    font-size: 18px;
    border-radius: 27px;
    text-align: center;
    background-image: linear-gradient(to right, #ff3300 0%, #eb4402 25%, #ffc404 50%, #eb4402 75%, #ff3300 100%);
    background-size: 200%;
    letter-spacing: 1.4px;
    animation: colorGradient 2.6s infinite;
}

.list .item .bar .status:hover {
    border: 2px solid #ccb2b2;
}


@keyframes colorGradient {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.list .item .bar .icon {
    margin-right: 10px;
}

.foward {
    width: 700px;
    height: 200px;
    margin-bottom: 2px;
    background: white;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-size: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: black;
}

.footer_bar {
    width: 700px;
    background: white;
    font-size: 12px;
    color: black;
    text-align: center;
    padding: 20px 0;
}