.container {
    /*width: 80%;*/
    margin: 0 auto;
}


.notice {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /*margin: 50px 0;*/
}

.noticebox {
    width: 49%;
    display: flex;
    flex-direction: column;
    margin: 10px auto;
}

.noticetitlebox {
    display: flex;
    align-items: center;
}

.span {
    width: 10px;
    height: 100%;
    background: linear-gradient(to right, #7ba0e1, #8eb8ff);
}

.noticetitleright {
    width: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #bdd5fc, #f0f3f9);
    padding: 5px 0;
}

.noticeimg {
    width: 20px;
    /* height: 4vh; */
    margin: 0 5px;
}

.noticetitle {
    font-size: 0.9vw;
    /* font-size: 17px; */
    color: #3d71c8;
    font-weight: 600;
}

.noticevontent {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.noticelist {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.noticetxtbox {
    width: 90%;
    margin: 10px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.span1 {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #e83a0c;
    position: absolute;
    left: -10px;
}

.text {
    /* font-size: 15px; */
    font-size: 0.8vw;
    width: auto;
    max-width: 82%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.time {
    width: 15%;
    text-align: center;
    /* font-size: 15px; */
    font-size: 0.8vw;
    color: #c8c8c8;
    white-space: nowrap;
}


.more {
    /* font-size: 14px; */
    font-size: 0.7vw;
    margin-top: 10px;
    padding-bottom:10px;
}
.footerH{
    background: white;
}
@media only screen and (orientation: portrait){
    .container{
        margin-left: 0px;
    }
    .noticeimg{
        width:50px;
    }
    .time,.more,.text,.noticetitle{
        font-size:30px;
    }
    .noticebox{
        width:100%;
    }
}