/* 头部导航样式 */
.header{
    padding: 0px 3vw; background: #001e28; height: 70px; color: rgba(255,255,255,0.8); position: sticky; top: 0px;
    border-bottom: rgba(255,255,255,0.1) solid 1px;
}
.header-logo{
    height: 36px;
}
.header-menu{
    margin-right: auto; margin-left: 50px;
}
.header-menu a{
    color: rgba(255,255,255,0.8); font-size: 14px; display: flex; margin-right: 30px; padding: 6px 15px; border-radius: 4px;
    transition: all 0.2s ease-in-out;
}
.header-menu a.active{
    background: #ff0147; color: #ffffff;
}
.header-menu a:hover{
    background: #ff0147; color: #ffffff;
}
.header-user-btn{
    margin-left: 20px; display: flex; justify-content: center; align-items: center; cursor: pointer; cursor: pointer;
}
.header-user .header-user-btn:hover{
    color: #ff0147;
}
.header-user .header-user-btn:last-child::before{
    content: ''; width: 2px; height: 12px; background: rgba(255,255,255,0.5); margin-right: 20px;
}
/* 比赛盘口列表 */
.matchs{
    background: #001e28; width: 94vw; margin: auto; margin-top: 20px; border-radius: 6px;
}
.matchs-top{
    height: 70px; padding: 0px 20px; color: #ffffff;
}
.matchs-top-title{
    margin-right: auto; color: #ffffff; font-weight: bold;
}
.matchs-top-title::before{
    content: ''; width: 3px; height: 16px; background: #ffffff; border-radius: 2px; margin-right: 10px;
}
.matchs-top-btn{
    padding: 0px 20px; display: flex; justify-content: center; align-items: center;
    background: rgba(255, 255, 255, 0.8); border: 0px; margin-left: 10px; height: 36px;
    border-radius: 18px; cursor: pointer; transition: all 0.2s ease-in-out;
}
.matchs-top-btn:hover{
    background: #ff0147; color: #ffffff;
}
.matchs-tabs{
    border-bottom:  rgba(255,255,255,0.2) solid 1px; padding: 0px 20px; height: 60px; display: flex; justify-content: space-between;
    align-items: center; color: #ffffff;
}
.matchs-tabs-legal{
    margin-right: auto;
}
.matchs-tabs-odds{
    width: 150px; margin-left: 80px;
}
.matchs-tabs-odds-data{
    width: 150px; display: flex; justify-content: space-between; align-items: center;
}
.matchs-item{
    padding: 20px; font-size: 12px; color: #ffffff; border-bottom:  rgba(255,255,255,0.2) solid 1px; cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.matchs-item-teams{
    margin-right: auto; display: flex; justify-content: flex-start; align-items: center;
}
.matchs-item-teams-league{
    width: 110px;
}
.matchs-item-teams-league-val{
    height: 20px;
}
.matchs-item-teams-league .matchs-item-teams-league-val:last-child{
    margin-top: 10px;
}
.matchs-item-teams-detail{
    display: flex; justify-content: flex-start; align-items: center;
}
.matchs-item-teams-detail-logo{
    width: 25px; height: 25px; background:#f2f2f2 no-repeat center center; background-size: cover; margin-right: 10px;
    border-radius: 50%;
}
.matchs-item-teams .matchs-item-teams-detail:last-child{
    margin-top: 10px;
}
.matchs-item-odds-data{
    display: flex; justify-content: space-between; align-items: center; width: 150px; margin-left: 80px;
}
.matchs-item-odds .matchs-item-odds-data:last-child{
    margin-top: 10px;
}
.matchs-item:last-child{
    border-bottom: 0px;
}
.matchs-item:hover{
    background: #ff0147;
}
.inews{
    margin: auto; width: 94vw; margin-top: 20px; flex-wrap: wrap; display: grid; grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
}
.inews-item{
    background: #001e28; border-radius: 6px; overflow: hidden; padding: 10px; color: #ffffff;
}
.inews-item-pic{
    width: 100%; aspect-ratio: 5/3; background: #ffffff no-repeat center center; background-size: cover; border-radius: 6px;
}
.inews-item-title{
    margin-top: 10px;
}
.inews-item-date{
    margin-top: 20px; color: rgba(255,255,255,0.5);
}

/* 比赛的详细页面 */
.dmatch{
    padding: 3vw 3vw 0px;
}
.dmatch-detail{
     width: 70vw;
}
.dmatch-detail-top{
    justify-content: space-around;
}
.dmatch-detail-top-team{
    display: flex; justify-content: center; align-items: center; flex-direction: column;
    width: 150px;
}
.dmatch-detail-top-team-logo{
    width: 80px; height: 80px; border-radius: 50%;
}
.dmatch-detail-top-team-name{
    margin-top: 10px;
}
.dmatch-detail-top-date{
    display: flex; justify-content: center; align-items: center; flex-direction: column;
}
.dmatch-detail-top-date-val{
    margin-top: 10px;
}
.dmatch-detail-content{
    margin-top: 20px; border-radius: 6px; color: rgba(255,255,255,0.8); overflow: hidden;
}
.dmatch-detail-content-tabs{
    height: 60px; display: flex; width: 100%; align-items: center; justify-content: center; border-bottom: rgba(255,255,255,0.2) solid 1px;
}
.dmatch-detail-content-tabs-item{
    width: 150px; display: flex; justify-content: center; align-items: center; flex-direction: column; cursor: pointer;
}
.dmatch-detail-content-tabs .active{
    color: #ff0147; font-weight: bold;
}
.dmatch-detail-content-tabs .active::after{
    content: ''; width: 25px; height: 4px; background: #ff0147; position: absolute; margin-top: 56px; border-radius: 2px;
}
.dmatch-detail-content-tabs-item:hover{
    color: #ff0147; font-weight: bold;
}
.dmatch-detail-content-tabs-item:hover::after{
    content: ''; width: 25px; height: 4px; background: #ff0147; position: absolute; margin-top: 56px; border-radius: 2px;
}
.dmatch-detail-content-cent{
    width: 100%; padding: 20px;
}
.dmatch-detail-content-cent{
    width: 100%; padding: 20px;
}
.dmatch-detail-channel{
    height: 30px; color: #000000; margin-bottom: 20px;
}
.odds-tabs-item{
    height: 30px; padding: 0px 20px; margin-right: 10px; line-height: 30px; border-radius: 15px;
    cursor: pointer; background: #f2f2f2;
}
.odds-tabs-item:hover{
    background: #ff0147; color: #FFFFFF;
}
.dmatch-detail-channel .active{
    background: #ff0147; color: #FFFFFF;
}
.odds-contents-left-item{
    height: 30px; padding: 0px 20px; margin-right: 10px; line-height: 30px; border-radius: 15px;
    cursor: pointer; background: #f2f2f2;
}
.odds-contents-left-item:hover{
    background: #ff0147; color: #FFFFFF;
}
/* 网站所有在路径 */
.position{
    display: flex; justify-content: flex-start; align-items: center; padding: 0px 3vw; height:70px;
}
/* 新闻列表 */
.newslist{
    padding: 0vw 3vw 0px; display: grid; grid-gap: 10px; grid-template-columns: repeat(6, 1fr);
}
.newslist-item{
    background: #001e28; border-radius: 6px; overflow: hidden; padding: 10px; color: #ffffff;
}
.newslist-item-pic{
    width: 100%; aspect-ratio: 5/3; background: #ffffff no-repeat center center; background-size: cover; border-radius: 6px;
}
.newslist-item-title{
    margin-top: 10px;
}
.newslist-item-date{
    margin-top: 20px; color: rgba(255,255,255,0.5);
}
.newsdetail{
    padding: 20px 3vw; align-items: flex-start;
}
.newsdetail-val{
    width: 70vw; background: #FFFFFF; padding: 20px; border: #e7e7e7 solid 1px; border-radius: 8px;
}
.newsdetail-val-title{
    font-weight: bold; font-size: 30px; margin-bottom: 6px;
}
.newsdetail-val-date{
    margin-bottom: 20px;
}
.newsdetail-val-content{
    line-height: 25px;
}
.newsdetail-recomd{
    width: 24vw; margin-left: 20px; background: #FFFFFF; padding: 15px; border: #e7e7e7 solid 1px; border-radius: 8px;
}
.newsdetail-recomd-title{
    font-weight: bold; font-size: 18px; margin-bottom: 20px;
}
.newsdetail-recomd-item{
    display: flex; justify-content: flex-start; align-items: flex-start; border-top: #f2f2f2 solid 1px;
    padding: 10px 0px;
}
.newsdetail-recomd-item-pic{
    width: 150px; aspect-ratio: 5 / 4; background: no-repeat center center; background-size: cover;
    border-radius: 8px;
}
.newsdetail-recomd-item-right{
    margin-left: 10px;
}
.newsdetail-recomd-item-title{
    font-weight: bold; margin-bottom: 20px;
}
/* 方案样式 */
.schemelist{
    display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 20px; padding: 0px 3vw;
}
.schemelist-item{
    background: #FFFFFF; border: #e7e7e7 solid 1px; border-radius: 8px; padding: 20px; cursor: pointer;
}
.schemelist-item-teams-view{
    display: flex; justify-content: flex-start; align-items: center;font-weight: bold;
}
.schemelist-item-teams-view img{
    border: #f2f2f2 solid 1px; width: 20px; height: 20px; border-radius: 50%; margin: 0px 10px;
}
.schemelist-item-title{
    color: #000000; font-weight: bold; margin-top: 10px;
}
.schemelist-item-content{
    margin-top: 5px; overflow: hidden !important; text-overflow: ellipsis; lines: 4; -webkit-line-clamp:4;
    display:-webkit-box; -webkit-box-orient:vertical;
}
.schemelist-item-date{
    margin-top: 10px;
}
.schemelist-item:hover{
    border-color: #0a001f;
}
.scheme-popup-content{
    padding: 20px; line-height: 30px;
}
/* 底部版权所有 */
.footer{
    padding: 3vw 3vw 0px; margin-top: 50px; font-size: 12px;
}
.footer-content{
    padding-bottom: 20px; color: #ffffff;
}
.footer-content-item-title{
    font-weight: bold; display: flex; align-items: center; justify-content: flex-start;
    margin-bottom: 10px;
}
.footer-content-item-title::before{
    content: ''; width: 3px; height: 15px; background: #ffffff; margin-right: 10px; border-radius: 2px;
}
.footer-content-item-content{
    color: rgba(255,255,255,0.8);
}
.footer-copy{
    color: rgba(255,255,255,0.5); height: 60px; border-top: rgba(255,255,255,0.2) solid 1px;
}