
body,html{
   padding: 0;
   margin: 0;
}
.todayBg{
    background: #d0e1ff;
    min-width: 1200px;
    position: relative;
    min-height: 100vh;
}
.todayHead{
    min-height: 92vh;
}
.todayTitle .name{
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 40px;
    position: absolute;
    left: 47%;
    top: 40px;
}

.todayTitle{
    text-align: center;
}
.listBox{
    width: 1200px;
    margin: 0px auto 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.listCard {
    width: 49%;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    color: #616161;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 13px;
    cursor: pointer;
}
.listCard:hover{
    box-shadow: 0 0 10px rgba(27,102,255,0.2);
}
.listImg {
    width: 180px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 6px;
    background-size: cover;
    background: #f7f8f9;
    overflow: hidden;
}
.listImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.listCon {
    display: flex;
    flex-direction: column;
    margin-left: 14px;
    width: 100%;
    overflow: hidden;
}
.listTitle:hover{
    color: #2467f6;
}
.listTitle{
    display: block;
    width: 100%;
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: lighter;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: bold;
}
.listNum b{
    font-weight: normal;
    font-size: 18px;
}
.color1{
    color: #ff8007;
}
.color2{
    color: #2467f6;
}
.listBut{
    display: block;
    width: 100px;
    height: 36px;
    background: #3c7cff;
    border-radius: 4px;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
    margin-left: 15px;
    cursor: pointer;
}
.listBut:hover{
    background: #6094ff!important;
}
.footer{
    text-align: center;
    font-size: 14px;
    color: #5f5f5f;
    padding: 30px 0 15px;
}
a{
    text-decoration: none;
}