@charset "utf-8";

.container {
    width: 1200px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
}

.zj-title {
    width: 100%;
    height: 100px;
    line-height: 110px;
    text-align: center;
    background: url(./title-bg.png) no-repeat;
    background-size: 100% 100%;
}

.zj-title a {
    width: 155px;
    height: 80px;
    border-bottom: 3px solid #fff;
    border-radius: 2px;
}

.zj-title a img {
    width: 23px;
    height: 24px;
    position: relative;
    top: 3px;
}

.zj-title a h2 {
    display: inline;
    font-size: 24px;
    color: #fff;
    margin-left: 10px;
}

.zj-one {
    flex-direction: column;
}

.zj-one .content {
    border: solid 1px #115db2;
}

.zj-one .content .page {
    text-align: center;
    margin: 40px 0;
}

.normal-ul li {
    position: relative;
    line-height: 40px;
    padding: 15px 35px;
    border-bottom: dashed 1px #ddd;
    overflow: hidden;
}

.normal-ul li a {
    width: 100%;
}

.normal-ul li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #115db2;
    left: 22px;
    top: 32px;
}

.normal-ul li a h3 {
    width: 98%;
    color: #1157a5;
}

.normal-ul li a .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.normal-ul li a .bottom p {
    color: #666;
}

.normal-ul li a .bottom h5 {
    width: 80px;
    height: 30px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
}

.normal-ul li a .bottom .ongoing {
    background-color: #0484e2;
}

.normal-ul li a .bottom .ended {
    background-color: #ddd;
}

@media screen and (max-width: 1200px) {
    .container {
        width: 98%;
    }
}

@media screen and (max-width: 768px) {
    .normal-ul li a .bottom {
        flex-direction: column;
    }

    .normal-ul li a .bottom h5 {
        margin-top: 10px;
    }
}

@media screen and (max-width: 420px) {
    .normal-ul li {
        padding-right: 5px;
        padding-left: 20px;
    }

    .normal-ul li::before {
        left: 8px;
    }
}