.container {
    width: 100%;
    height: 100%;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container .title{
    width: 100%;
    height: 105px;
    line-height: 105px;
    text-align: center;
    font-size: 20px;
    background: url(/img/h2-banner.jpg) no-repeat 0 0/100% 100%;
}

/* main */
main{
    padding: 5px 20px;
}

main .code-part {
    display: flex;
    color: #2a3839;
    font-size: 15px;
    padding: 20px 0;
}
main .code-part span {
    margin-right: 20px;
}
main .code-part input {
    flex: 1;
    border: 0;
    outline: none;
}

main .query {
    width: 100%;
    height: 45px;
    color: #fff;
    background-color: #00bac7;
    border: 0;
    margin-bottom: 10px;
}

main .text {
    color: #889098;
    font-size: 13px;
    margin-bottom: 5px;
}

main .text-title {
    font-size: 14px;
    color: #2a3839;
    margin: 15px 0 5px;
    font-weight: 700;
}

main .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
    margin: 30px 0 20px;
}
main .grid .item {
    padding: 8px 0;
    background-color: #eff8f9;
    border-radius: 5px;
    font-size: 12px;
}

main .sqjh {
    display: block;
    width: 100%;
    height: 45px;
    background: url(/img/wzy_entry.png) no-repeat 0 0/100% 100%;
    margin-bottom: 30px;
    text-align: center;
    line-height: 45px;
    font-size: 14px;
    color: #2a3839;
}

/* footer */
footer {
    width: 100%;
    padding: 12px;
    background-color: #282828;
}
footer p{
    font-size: 12px;
    color: #969696;
    text-align: center;
    margin-bottom: 5px;
}
footer a {
    color: #969696;
}