* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
   background: url(../image/ghbg.png) no-repeat center;
    background-size: cover;
}

a {
    color: inherit;
}
header {
    background: url('../image/bg-top.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}
header .logo{
    font-size: 0;
    margin-right: 20px;
}
header .logo img{
    width: 20vw;          
    height: 20vw;
    max-width: 160px;
    max-height: 160px;
}
header h1{
    font-size: 4vw;
    color: #f5dfa3;
    font-weight: 900;
    letter-spacing: 8px;
    text-align: center;
}
main{
    max-width: 1200px;
    margin: 15px auto;
    padding: 30px;
    background-color: #fff;
}
.main_title{
    margin-bottom: 20px;
}
.main_title>div{
    font-size: 20px !important;;
    font-weight: 700;
    color: #ae1303;
    line-height: 1;
    padding-left: 10px;
    border-radius: 4px 0 0 4px;
    position: relative;
}
.main_title>div::after{
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: #ae1303;
    border-radius: 2px;
    margin-top: 10px;  
    position: absolute;
    bottom: -14px;
    left: 0;
}
.main_title>div::before{
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: calc(100% - 4px);
    background-color: #ae1303;
    border-radius: 2px;
    top: 2px;
    left: 0;
}
.main_list{

}
.main_item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 2px solid #ae1303;
}
.main_item:hover .item_title{
color:#ae1303;
}

.main_item>img{
    width: 100px;
    height: 60px;
    border-radius: 6px;
    flex-shrink: 0;
}
.item_text{
    flex: 1;
    display: flex;
    margin-left: 20px;
}
.item_title{
    flex: 1;
    color: #000;
    font-size: 18px !important ;
}
.item_time{
    color: #666;
}
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../image/bg-bottom.png') no-repeat center center/cover;
    font-size: 20px;
    padding: 40px 0;
    font-weight: 700;
    color: #fff;
}
footer>div{
    margin-right: 20px;
}

.main_nav{
    color: #999;
    margin-bottom: 20px;
}
.main_nav a:hover{
    color: #ae1303;
    text-decoration: underline;
}

@media screen and (max-width: 768px){
    .item_text{
        flex-direction: column;
    }
    .item_time{
        text-align: end;
    }
    .item_title{
        font-size: 16px;
    }
    .item_time{
        font-size: 12px;
    }

}