.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
}
/* header */
.container header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: #26b887;
}

.container header img {
    height: 50%;
}

/* main */
.container main {
    width: 100%;
    height: 100%;
}
main .vote-part {
    width: 100%;
    padding: 14px 18px;
}
main .head-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 13px;
    background-color: #f6f6f6;
    border-radius: 8px;
    margin-bottom: 15px;
}
main .head-card .text {
    display: flex;
    flex-direction: column;
}
main .head-card .text h4{
    display: flex;
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 10px;
}
main .head-card .text h4 span{
    display: inline-block;
    background-color: #FFE7D2;
    font-size: 12px;
    padding:  4px 5px;
    margin-left: 10px;
    border-radius: 3px;
    color: #7E7E7E;
}
main .head-card .text h4 span i {
    color: #EF7405;
    font-style: normal;
}
main .head-card .text .sub-school-name {
    font-size: 14px;
    color: #727272;
}

main .head-card .go-btn {
    display: block;
    padding: 10px 20px;
    color: #FFF;
    background-color: #26b887;
    font-size: 13px;
    border-radius: 20px;
}

/* img-card */
main .img-card {
    display: block;
    width: 100%;
    height: 85px;
    background: url(/img/archive/kzxz_bg.png) no-repeat center;
    background-size: 100% 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* menu-part */
.menu-part {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px;
    width: 100%;
}
.menu-part .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: #333;
    text-align: center;
    padding: 5px 0;
}
.menu-part .menu-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
}

/* tab-bar */
.container .tab-bar {
    display: flex;
    height: 50px;
    width: 100%;
}
.container .tab-bar .tab-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    font-size: 12px;
    color: #7d7e80;
    text-align: center;
    padding: 5px 0;
}
.container .tab-bar .tab-item img {
    width: 25px;
    height: 25px;
}
.container .tab-bar .active{
    color: #26b887;
}
