
html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    color: #333;
}
body{
    font-size: 16px;
    font-family: "Helvetica Neue","Microsoft YaHei",Helvetica,Tahoma,sans-serif;
}
a,a:hover{
    color: inherit;
    text-decoration: none;
}
a:hover .mdidfortynine-item-title , .mdidfortynine-item-title a:hover,a:hover .title-icon{
    color: #2E7D68!important;
}
h1, h2, h3, h4, h5, h6{
    margin-bottom: 0;
}
.mdidfortynine-live-date-heading {
    height: 30px;
    line-height: 30px;
    border-radius: 0px;
    margin: 0px 0%;
    padding-left: 15px;
    background-color: #E8F6E1;
    color: #2E7D68;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}
/* 顶部导航栏 */
header {
    /* background: linear-gradient(110deg, #81D4BA, #DCE775); */
    background: linear-gradient(110deg, #81D4BA, #DCE775);
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mdidfortynine-header-mainbar {
    display: flex;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px;
    justify-content: space-between;
}
.mdidfortynine-header-nav-list a.active {
    background-color: #fff;
    color: #2E7D68;
}
.mdidfortynine-header-brand {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.mdidfortynine-header-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mdidfortynine-header-nav-list li {
    position: relative;
    margin-left: 25px;
}

.mdidfortynine-header-nav-list a {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s, background-color 0.3s;
    padding: 10px 15px;
    display: block;
    border-radius: 4px;
}

.mdidfortynine-header-nav-list a:hover {
    background-color: rgba(245, 240, 240, 0.1);
    color: #fff;
}

/* 二级导航 */
.mdidfortynine-header-subnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(110deg, #81D4BA, #DCE775); 
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 100;
}

.mdidfortynine-header-subnav li {
    margin: 0;
}

.mdidfortynine-header-subnav a {
    padding: 10px 15px;
    font-size: 14px;
}

.mdidfortynine-header-nav-list li:hover .mdidfortynine-header-subnav {
    display: block;
}

.mdidfortynine-header-menu-button {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

#hot_league {
    margin: 5px;
}
.header_newnav {
    width: 1200px;
    display: flex;
    align-items: center;
    background: #ffffff;
    margin: 0 auto;
}
.headline {
    display: flex;
    align-items: center;
    margin-right: 50px;
}
/* 添加向下箭头 */
.mdidfortynine-header-dropdown > a::after {
    content: "▼"; /* 向下箭头符号 */
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* 鼠标悬停时旋转箭头 */
.mdidfortynine-header-dropdown:hover > a::after {
    transform: rotate(180deg);
}
#newNav {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 10px;
}
.teamslists{padding-right: 15px;}
.mdidfortynine-header-league-strip {
    color: #fff;
    background-color: rgba(129, 212, 186, 0.24);
    display: flex;
    align-items: center;
    overflow-x: auto;
}
.mdidfortynine-header-league-entry {
    display: flex;
    justify-content: center;
    min-width: 80px;
    margin: 6px 5px;
    color: #fff;
    padding: 2.5px;
    border-radius: 5px;
    background: linear-gradient(110deg, #81D4BA, #DCE775);
}
.mdidfortynine-header-league-entry a {
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .mdidfortynine-header-league-entry {
        min-width: 90px;
    }
    .nav_reg, .header_newnav, .focus {
        width: 100%;
    }
    .headline {
        margin-right: 0;
        overflow: auto;
        padding: 4px;
    }
    #newNav {
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: auto;
    }

    .mdidfortynine-header-nav-list {
        display: none;
        flex-direction: column;
        background: linear-gradient(110deg, #81D4BA, #DCE775);
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        padding: 20px;
    }

    .mdidfortynine-header-nav-list.active {
        display: flex;
        z-index: 1000;
    }

    .mdidfortynine-header-nav-list li {
        margin: 10px 0;
    }

    .mdidfortynine-header-menu-button {
        display: block;
    }

    .container {
        flex-direction: column;
    }

    .mdidfortynine-header-subnav {
        position: static;
        display: none;
        background-color: rgba(0, 0, 0, 0.1);
        padding-left: 20px;
    }

    .mdidfortynine-header-nav-list li:hover .mdidfortynine-header-subnav {
        display: none;
    }

    .mdidfortynine-header-nav-list li.active .mdidfortynine-header-subnav {
        display: block;
    }
    .mdidfortynine-header-dropdown > a::after {
        content: "▶"; /* 移动端改为向右箭头 */
    }

    .mdidfortynine-header-dropdown.active > a::after {
        content: "▼"; /* 展开时改为向下箭头 */
    }
}
.text-small{
    font-size: 14px;
}
.text-sm{
    font-size: 13px;
}
.text-xs{
    font-size: 12px;
}
.mdidfortynine-text-singleline{
    display: -webkit-box !important;
    display: -moz-box !important;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
}
.desc{
	color: #666;
	font-size: 14px;
}
.mdidfortynine-text-multiline{
    display: -webkit-box !important;
    display: -moz-box !important;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}
.flex-1{
    flex:1;
}
.full-height{
     height: 100%;
 }
.mdidfortynine-live-signal-area a{
    background: linear-gradient(110deg, #81D4BA, #DCE775);
	border-radius:2px;
	color:#fff;
    margin: .25rem !important;
    padding: 6px;
        display: inline-block;
}
.btn-link{
    color: inherit;
}
.btn-link:hover,.btn-link:focus{
    box-shadow: none;
}

.d-flex-col-1{
    width: 8.33333% !important;
}
.d-flex-col-2{
    width: 16.66667% !important;
}
.d-flex-col-3{
    width: 25% !important;
}
.d-flex-col-4{
    width: 33.33333% !important;
}
.d-flex-col-6{
    width: 50% !important;
}

.table-responsive-xl{
    white-space: nowrap;
}

.table td, .table th {
    border-top: 1px solid #f4f4f4;
}
.table-sm td, .table-sm th{
    padding: 10px 0;
}

.table .tr{
    display: flex;
    flex-flow: row nowrap;
    padding: 0 15px;
}
.table .td,.table .th{
    border-top: 1px solid #f4f4f4;
    padding: 10px 0;
    flex-grow: 1;
    width: 1%;
}

.tr.table-sub{
    padding: 15px 0 0 0;
}
.tr.table-sub .td,.tr.table-sub .th{
    padding: 0;
    border-top:none;
}
.table-sub .table-sub-title{
    width: 100%;
}

.bg-primary-light{
    background-color: #F2FAEF;
}

.solid-bottom{
    border-bottom: 1px solid #f4f4f4;
}

.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-container .swiper-slide{
    height: auto;
}


.header-content{
    background: linear-gradient(110deg, #81D4BA, #DCE775);
    color: #FFFFFF;
}
.header-content .navbar{
    padding: 0 1rem;
}
.header-content .mdidfortynine-header-brand{
	align-items: center;
    display: flex;
    font-size: 20px;
    height: 50px;
    line-height: 1;
    margin: 0;
    padding: 0;
}
.header-content .mdidfortynine-header-brand img{
	max-height: 60px;
}
.header-content .nav-item.active{
    background: linear-gradient(110deg, #81D4BA, #DCE775);
}
.header-content .nav-link{
    font-size: 16px;
    padding: 20px .5rem;
    text-align: center;
}
.header-content .nav-item:nth-child(5n+1) .nav-link{
    text-align: left;
}

.header-sub-content{
    background-color: #FFFFFF;
    color: #222;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10);
}
.header-sub-content .nav-item.active{
    position: relative;
}
.header-sub-content .nav-item.active:after{
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 2px;
    content: '';
    background: linear-gradient(110deg, #81D4BA, #DCE775);
    border-radius: 2px;
}
.header-sub-content .navbar{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.header-sub-content ::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
    -webkit-appearance: none;
    background: transparent;
}

.header-sub-content .navbar-nav .nav-link{
    padding: .5rem 1rem;
 }
.header-content .navbar-nav,.header-sub-content .navbar-nav{
    flex-direction: row;
    white-space: nowrap;
}
.header-content .navbar-nav{
    flex-wrap: wrap;
}

#nav-toggle-button span{ color:#fff;}
.navbar-dark .navbar-nav .nav-link{ color:#fff;}

.mdidfortynine-page-shell{
	margin-top: 15px;
    margin-bottom: 15px;
}
.main-right-lg{
    margin-top: 15px;
}
.mdidfortynine-sidebar-column{
    width: 320px;
    padding-right: 15px;
}
.main-right-lg{
    width: 360px;
}
.card-padding{
	padding: 0!important;
}
.card.mdidfortynine-panel-surface{
    border: none;
    border-radius: 0;
    padding: 0 1px;
    background-color: #FFFFFF;
    /* padding-right: 15px; */
	margin-bottom: 15px;
}
.hide {
    display: none;
}
.mdidfortynine-panel-surface .card-header ,.mdidfortynine-panel-surface .card-body,.mdidfortynine-panel-surface .card-footer{
    background-color: #F2FAEF;
    padding: 15px 0;
}
.mdidfortynine-panel-surface .card-header{
    padding: 15px 10px 0;
}
.mdidfortynine-panel-surface .card-header:first-child{
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.mdidfortynine-panel-surface .card-title{
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 15px;
    position: relative;
    padding-left: 10px;
}
.card-title:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 18px;
    border-radius: 2px;
    border-left: 5px solid #2E7D68;
}

.mdidfortynine-panel-surface .card-title2{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 15px;
    position: relative;
    padding-left: 10px;
}

.card-title-more i{
    margin:0 10px;
    color: #BBBBBB;
}

.card-header-weight.card-header{
    background: linear-gradient(110deg, #81D4BA, #DCE775);
    color: #FFFFFF;
}
.card-header-weight .card-title:before{
    border: none;
}
.card-header-weight .card-title{
    padding-left: 0;
}
.mdidfortynine-live-heading-tabs {
	display: flex;
	background: #fff;
}
.mdidfortynine-live-heading-tabs div {
	width: 25%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	color: #9d9d9d;
	cursor: pointer;
}
.mdidfortynine-live-heading-tabs div.mdidfortynine-live-heading-current {
	color: #fff;
	background: linear-gradient(110deg, #81D4BA, #DCE775);
}
.live {
            background-color: #F2FAEF;
            /* text-shadow: 1px 1px #fff; */
            font-weight: 600;
            padding: 1em;
            /*color: #3da309;*/
            color: #2E7D68;
    margin: 20px 20px;
    border: 1px solid #2E7D68;
    border-radius: 5px;
        }
.mdidfortynine-live-list-plain .list-group-item{
    padding: 10px 15px;
    border-color: rgba(0,0,0,.05);
}

.list-group-sub-title{
    padding: 10px 15px 5px 15px;
}
.live-item{
    font-size: 16px;
    white-space: nowrap;
    color: #222222;
}

.live-item .iconzuqiu{
    color: #000000;
    font-size:20px;
}
.live-item .iconlanqiu{
    color: #2E7D68;
    font-size: 20px;
}
.live-item .match-status{
    width: 70px;
    border-radius: 0;
    font-size: 90%;
    font-weight: 700;
    color: #2E7D68;
}
.live-item .match-time{
    font-size: 14px;
}
.live-item .mdidfortynine-live-start-time{
    font-size: 12px;
	padding: 30px 0 0;
}
.live-item .match-type ,.live-item .match-time ,.live-item .match-status{
    margin-right: 10px;
    line-height: 20px;
}
.live-item .mdidfortynine-live-league-meta{
    width: 80px;
    display: flex;
    flex-direction: column;
}
.live-item .mdidfortynine-live-resource-panel{
    width: 80px;
    text-align: center;
    color: #2E7D68;
}
.live-item .mdidfortynine-live-action-entry{
    width: 180px;
    text-align: center;
    font-size: 1.14rem;
}

.live-item.status-finished .match-status,.live-item.status-not_start .match-status{
    color: #666666;
}

.live-item.status-start .match-time, .live-item.status-start  .mdidfortynine-live-resource-panel{
    color: #2E7D68;
}

.live-item .mdidfortynine-live-teams-row .mdidfortynine-live-team-inline{
	 width:100%;
	 text-align:center;
}
.live-item .mdidfortynine-live-teams-row .mdidfortynine-live-versus-score{
    width: 80px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}
.live-item .mdidfortynine-live-teams-row img{
    width: 30px;
    height: 30px;
    background: #F2FAEF no-repeat center/cover;
    border-radius: 50%;
    margin: 0 5px;
}

.mdidfortynine-sidebar-news-row{
    width: 100%;
    padding: 0 10px 5px;
    position: relative;
	list-style: none;
}
.mdidfortynine-sidebar-news-row .mdidfortynine-item-content{
    line-height: 18px;
}
.mdidfortynine-sidebar-news-row .title-icon{
    font-size: 18px;
    margin-right: 5px;
}
.mdidfortynine-sidebar-news-row .mdidfortynine-article-tags{
    background: linear-gradient(110deg, #81D4BA, #DCE775);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: normal;
    padding: 3px 10px;
    margin-right: 10px;
}
.mdidfortynine-sidebar-news-row .mdidfortynine-item-title{
    font-size: 14px;
    font-weight: normal;
}

.news-item-sm{
    width: 100%;
    padding: 10px;
    position: relative;
}
.news-item-sm .dot{
    position: absolute;
    top: 17px;
    width: 6px;
    height: 6px;
    background: linear-gradient(110deg, #81D4BA, #DCE775);
    vertical-align: middle;
}
.news-item-sm .mdidfortynine-item-title{
    font-size: 16px;
    font-weight: normal;
    margin-left: 15px;
}
.news-col-2 .news-item-sm{
    width: 50%;
    float: left;
}


.news-img-item{
    display: block;
    width: 25%;
    margin:0 7.5px;
    border: 1px solid #ededed;
}
.news-img-item:first-child{
    margin-left: 15px;
}
.news-img-item:last-child{
    margin-right: 15px;
}
.news-img-item .img{
    width: 100%;
    padding-top: 70%;
    position: relative;
    overflow: hidden;
}
.news-img-item img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.news-img-item .mdidfortynine-article-tags{
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(110deg, #81D4BA, #DCE775);
    width: 80px;
    height: 28px;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    line-height: 28px;
    overflow: hidden;
}
.news-img-item .mdidfortynine-item-title{
    font-size: 17px;
    margin: 15px;
}
.news-img-item:hover img{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.news-img-item-sm{
    width: 100%;
    margin: 0;
    border: none;
    padding: 10px;
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.news-img-item-sm .img{
    width:120px;
    height: 80px;
    position: relative;
    overflow: hidden;
}
.news-img-item-sm .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.news-img-item-sm .mdidfortynine-live-match-meta{
    margin: 0 5px 0 10px;
}
.news-img-item-sm .mdidfortynine-item-title{
    font-size: 14px;
}
.news-img-item-sm .extra{
    margin-top: 10px;
    color: #666666;
    font-size: 12px;
}


.news-img-item .video-start ,.news-img-item-sm .video-start ,.mdidfortynine-article-list-row .video-start{
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    margin: -25px 0 0 -25px;
    background: url(../images/start.png) no-repeat;
    background-size: 44px auto;
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.news-img-item:hover .video-start ,.news-img-item-sm:hover .video-start,.mdidfortynine-article-list-row:hover .video-start{
    opacity:1;
    transform:scale(1);
}


.match-item{
    padding: 15px;
    display: block;
    position: relative;
}

.match-item .title-overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0,0,0,0.2);
    background: rgba(129, 212, 186, 0.5);

    transform: scale(0.9);
    opacity: 0;
    transition: all .25s ease-in-out;
}
.match-item:hover .title-overlay{
    transform: scale(1);
    opacity: 1;
}


.match-item:after{
    position: absolute;
    content: '';
    left: 10px;
    right: 10px;
    bottom: 0;
    background-color: #E8F6E1;
    height: 1px;
    transform: scaleY(0.5);
}
.match-item .extra{
    font-size: 12px;
    color: #666666;
}
.match-item .team{
    margin-top: 10px;
}
.match-item .score{
    font-size: 20px;
    font-weight: 600;
}
.match-item img{
    width: 35px;
    height: 35px;
    background: #E8F6E1 no-repeat center/cover;
    border-radius: 50%;
}
.mdidfortynine-article-content{
    padding: 20px;
}
.mdidfortynine-article-content h1{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin: 16px 0 16px;
}
.mdidfortynine-article-content h2{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin: 16px 0 16px;
}
.mdidfortynine-article-content h3{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin: 16px 0 16px;
}
.mdidfortynine-article-content article img{
    max-width: 100%;
}
.mdidfortynine-article-content .news-next{
    font-size: 14px;
}
.mdidfortynine-article-tags{
	padding: 0 20px;
}
.mdidfortynine-article-tags a{
	display: inline-block;
    line-height: 20px;
    padding: 5px 12px;
    margin: 8px 8px 0 0;
    font-size: 14px;
    border-radius: 5px;
    color: #666;
    border: 1px solid #999;
}
.mdidfortynine-article-heading{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.mdidfortynine-article-meta{
    color: #666666;
    padding-bottom: 5px;
    font-size: 13px;
}
.news-content{
    padding: 20px;
}
.news-content article img{
    max-width: 100%;
}
.news-content .news-next{
    font-size: 14px;
}

.news-video-detail .main-content-size{
    padding-top: 60%;
}
.news-video-detail .mdidfortynine-content-primary{
    position: relative;
}
.news-video-detail .main-content{
    position: absolute;
    left: 15px;
    right: 15px;
    top: 0;
    height: 100%;
}
.news-video-card.card ,.news-video-card.card .card-header, .news-video-card.card .card-body{
    background-color: #1d1d1d;
    color: #FFFFFF;
}
.news-video-card.card .mdidfortynine-article-meta{
    padding-bottom: 0;
    color: #FFFFFF;
}
.news-video-content{
    display: block;
    position: relative;
    opacity: 0.9;
    height: 100%;
}
.news-video-content .bg-img,.news-video-content .play-img{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
}
.news-video-content .play-img{
    transition: all .3s;
}
.news-video-content .play-img .play-icon{
    background-image: url(../images/start.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100px;
    height: 100px;
}

.news-video-relation-card{
    width: 320px;
    padding: 5px;
    background-color: #333333;
    color: #FFFFFF;
}
.news-video-relation-card .news-img-item-sm:hover,.news-img-item-sm.active{
    color: #FFFFFF;
    background-color: #000000;
}
.news-video-relation-card a:hover .mdidfortynine-item-title{
    color: #FFFFFF !important;
}
.news-video-relation-card .news-img-item-sm .extra{
    color: #CCCCCC;
}
.news-video-relation-card  .swiper-scrollbar{
    background-color: rgba(255,255,255,0.6);
}

/*old*/
.mdidfortynine-live-player-box{
    width: 100%;
    height: 0;
    padding-top: 80%;
    position: relative;
    display: none;
}
.mdidfortynine-live-player-box.video-ai{
    padding-top: 70%;
}
.mdidfortynine-live-player-box.video-qiuquba{
    padding-top: 80%;
}
.mdidfortynine-live-player-box .cartoon{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.mdidfortynine-live-detail-card .card-body{
    background-color: #E8F6E1;
    color: #333;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0;
}
.mdidfortynine-live-detail-card .live-type-1.card-body{
    background-image: url("../images/start.png");
}
.mdidfortynine-live-detail-card .match{
    margin: 40px 0;
}
.mdidfortynine-live-detail-card .team{
    width: 35%;
}
.mdidfortynine-live-detail-card .team img{
    width: 100px;
    height: 100px;
}
.mdidfortynine-live-detail-card .team .name{
    font-size: 20px;
    margin-top: 15px;
}
.mdidfortynine-live-detail-card .status{
    margin-top: 10px;
}
.mdidfortynine-live-detail-card .score{
    font-size: 40px;
    margin-top: 15px;
}
.mdidfortynine-live-detail-card .mdidfortynine-live-resource-panel{
    padding: 0 15px;
}
.mdidfortynine-live-detail-card .mdidfortynine-live-resource-panel .btn.current{
    color: #2E7D68;
    background-color: #E8F6E1;
    border-color: #A7D9B7;
    box-shadow: none;
}

.live-data .nav-link.active{
    position: relative;
}
.live-data .nav-link.active:after{
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    height: 2px;
    content: '';
    background: linear-gradient(110deg, #81D4BA, #DCE775);
    border-radius: 2px;
}
.live-data .tab-pane{
    min-height: 100px;
}


.mdidfortynine-article-list-row{
    padding: 15px;
    position: relative;
}
.mdidfortynine-article-list-row:after{
    position: absolute;
    content: '';
    left: 10px;
    right: 10px;
    bottom: 0;
    background-color: #E8F6E1;
    height: 1px;
    transform: scaleY(0.5);
}
.mdidfortynine-article-list-row .thumb{
    width: 200px;
    padding-top: 70%;
    position: relative;
    overflow: hidden;
    display: block;
}
.mdidfortynine-article-list-row .thumb img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.mdidfortynine-article-list-row .mdidfortynine-item-content{
    flex:1;
}

.rank-content-card.card-body{
    padding: 0 10px;
}
.rank-content{
    font-size: 15px;
}
.rank-num{
    width: 30px;
    display: block;
    text-align: center;
}
.rank-1,.rank-2,.rank-3{
    background-size: 100% 100%;
    height: 30px;
}
.rank-1{
    background-image: url("../images/start.png");
}
.rank-2{
    background-image: url("../images/start.png");
}
.rank-3{
    background-image: url("../images/start.png");
}

.panel-title{
    font-size: 15px;
    line-height: 15px;
    padding: 10px 15px;
}
.panel-content{
    font-size: 13px;
}

.panel-content .table-sub td, .panel-content .table-sub th{
    padding: 15px 0 0 0;
    border: none;
}
.panel-content .table-sub:first-child td, .panel-content .table-sub:first-child th{
    padding: 0;
}
.panel-content .table-sub .table-sub-title{
    font-size: 15px;
    line-height: 15px;
    padding: 10px 15px;
}

.match-result .result{
    color: #FFFFFF;
    padding: 0 10px;
}
.match-result .win{
    background: linear-gradient(110deg, #81D4BA, #DCE775);
}
.match-result .draw{
    background: linear-gradient(110deg, #81D4BA, #DCE775);
}
.match-result .lost{
    background: linear-gradient(110deg, #81D4BA, #DCE775);
}
.lsfl_list {
	overflow:hidden;
}
.lsfl_list ul {
	margin: 0;
	display: contents;
}
.lsfl_list li {
	float: left;
	list-style:none	
}

.lsfl_list li .qtdw_img {
	width: 32px;
	height: 32px;
	display: inline-block;
	float: left;
}

.lsfl_list li .qtdw_img img {
	width: 32px;
	height: 32px
}

.lsfl_list li .qtdw_name {
	height: 32px;
	line-height: 32px;
	display: inline-block;
	float: left;
     margin-left:15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px
}

.line {
    min-width: 280px;
    height: 5px;
    border-radius: 5px 5px 0px 0px;
    background: linear-gradient(110deg, #81D4BA, #DCE775);
}

.mdidfortynine-live-video-layout {
    width: 100%;
    color: #fff;
    overflow: hidden;
}
.mdidfortynine-live-scoreboard {
	border-radius:5px;
	width:100%;
	padding:30px 44px 0px;
	box-sizing: border-box;
	overflow: hidden;
	position:relative;
	height:140px;
	/* background: linear-gradient(110deg, #81D4BA, #DCE775); */
	border: 1px solid #4161FF;
}
.mdidfortynine-live-scoreboard-center {
    /* position: absolute; */
    height: 100%;
    left: 50%;
    /* transform: translateX(-50%); */
    top: 0;
    width: 170px;
    background: url(../images/ssbg.png) no-repeat center center;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 40px;
}
.mdidfortynine-live-scoreboard-center .mdidfortynine-live-match-meta{ text-align:center; z-index:999;}
.mdidfortynine-live-team-emblem {
	width:72px;
	height:72px;
	border-radius: 50%;
	 margin-bottom:30px;
}

.col_01 {
	float: left;
	width:900px;
	box-sizing: border-box;
}


.mdidfortynine-live-video-column {
	background-color: #fff;
}
.mdidfortynine-live-team-block {
    overflow: hidden;
    width: 190px;
    height: 100px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    position: relative;
	justify-content: center !important;
   
}

.mdidfortynine-live-signal-area{
    width: 78%;
}

.mdidfortynine-live-team-block div {
    height: 20px !important;
    line-height: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    font-weight: bold;
    color: #000;
    font-size: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 84px;
    text-align: center;
}
.mdidfortynine-live-team-label {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mdidfortynine-live-video-layout .match_box {
    /*display: flex;*/
    /*justify-content: space-between;*/
    width: 100%;
    /*box-sizing: border-box;*/
    height: 100px;
}

.match_box {
    position: relative;
    width: 355px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto;
}
.match_box, .vs-em-3b80 {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}


#game_matchd_lt{
	background: #fff;
	padding: 20px 0;

}
#game_matchd_lt .mdidfortynine-live-video-column{
	border: none;
	float: none;
}
#game_matchd_lt .mdidfortynine-live-scoreboard{
	background: linear-gradient(110deg, #81D4BA, #DCE775);
	width: 100%;
	height: 140px;
	padding: 0px;
	border: none;
	    display: flex;
    justify-content: center;
}
#game_matchd_lt .mdidfortynine-live-team-block{
	top: 20px;
}
#game_matchd_lt .vs{
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: space-between;
	margin-top: 35px;
}
#game_matchd_lt .vs div:nth-child(2){
	width:286px;
	flex-shrink:0;
}
#game_matchd_lt .vs div{
	font-size: 28px;
	font-weight: bold;
	line-height: 37px;
	color: #000000;
}
#game_matchd_lt .mdidfortynine-live-scoreboard-center{
	/*width:240px;*/
}
#game_matchd_lt .mdidfortynine-live-scoreboard-center >img{
	position: absolute;
	top:60px;
	width: 160px;
}
#game_matchd_lt .mdidfortynine-live-match-meta div:nth-child(1){
	font-size: 14px;
	opacity: 0.8;
}
#game_matchd_lt .mdidfortynine-live-match-meta div:nth-child(2){
	font-size: 20px;
	font-weight: bold;
}
#game_matchd_lt .mdidfortynine-live-match-meta div:nth-child(3){
	font-size: 14px;
	font-weight: 400;
}
#game_matchd_lt .vs-chlt-3b80-1{
	text-align: left;
	display: flex;
	align-content: center;
	align-items: center;
	margin-bottom: 20px;
}
#game_matchd_lt .vs-chlt-3b80-1 img{
	width: 20px;
	height: 21px;
	margin-right: 6px;
}
#game_matchd_lt .vs-chlt-3b80-1 span{
	width: 90px;
	height: 24px;
	font-size: 18px;
	font-weight: bold;
	line-height: 26px;
}

#zd_fen,#kd_fen{ display:none;}{ display:none;}

.badge-grey {
    color: #666;
    background-color: #E8F6E1;
}

.mdidfortynine-pagination-wrap .pagination ,.mdidfortynine-pagination-wrap .page-item:first-child .page-link ,.mdidfortynine-pagination-wrap .page-item:last-child .page-link{
    border-radius: 0;
}
.pagination a {
    margin: 0 2px;
}
.mdidfortynine-pagination-wrap .page-link{
    color: #2E7D68;
}
.mdidfortynine-pagination-wrap .page-item.active .page-link{
    background: linear-gradient(110deg, #81D4BA, #DCE775);
    border-color: #2E7D68;
}
.mdidfortynine-pagination-wrap .page-item{
    margin: 0 2px;
}

.mdidfortynine-site-footer{
    background-color: #2d3236;
    color: #cccccc;
}
.mdidfortynine-site-footer p{
    margin-top: revert;
}
.mdidfortynine-site-footer .mdidfortynine-footer-about-area{
    font-size: 12px;
    padding: 15px 0;
}

@media (min-width: 992px){

}
@media (max-width: 992px) {
    .mdidfortynine-content-primary{
        flex: 0 0 100%;
    }
    .main-right-lg,.mdidfortynine-sidebar-column{
        width: 100%;
        /* padding-left: 15px; */
    }
    .mdidfortynine-sidebar-news-row{
        width: 50%;
        float: left;
    }
    .news-video-detail .main-content-size{
        display: none;
    }
    .news-video-detail .main-content{
        flex-direction: column;
        position: relative;
        left: 0;
    }
    .news-video-detail .news-video-content{
        padding-top: 70%;
    }
    .news-video-relation-card{
        display: none;
    }
    .mdidfortynine-live-player-box{
        padding-top: 80%;
    }

    .mdidfortynine-live-player-box.video-ai{
        padding-top: 70%;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .news-item-sm{
        width: 50%;
        float: left;
    }
}
@media (max-width: 768px){
    .image_box img {
         max-width: 100% !important;
         height: auto !important;
     }
    .header-content .navbar{
        padding: 0.25rem 1rem;
    }
    .header-content .nav-link{
        padding: 0.25rem 0.5rem;
    }
    .header-content .nav-item.active{
        background-color: transparent;
        color: #FFFFFF;
        font-weight: 700;
    }
    .header-sub-content .navbar-nav .nav-link{
        padding: 2px 0.75rem;
        font-size: 14px;
    }
    .mdidfortynine-sidebar-news-row{
        width: 100%;
    }
    .news-col-2 .news-item-sm {
        width: 100%;
    }

    .news-img-item .mdidfortynine-item-title{
        font-size: 15px;
    }
    .list-group-sub-title{
        padding: 10px  10px 5px 10px !important;
    }
    .live-item{
        flex-direction: column;
        padding: 10px  10px 15px 10px !important;
    }
    .live-item .iconzuqiu{
        font-size: 16px;
    }
    .live-item .mdidfortynine-live-base-info{
        width: 100%;
        font-size: 12px;
    }
    .live-item .match-time{
        font-size: 12px;
    }
    .live-item .match-status{
        font-size: 12px !important;
        font-weight: normal;
    }
    .live-item .mdidfortynine-live-league-meta{
        color: #666666;
    }
    .live-item .mdidfortynine-live-teams-row{
        width: 100%;
        margin: 10px 0;
        justify-content: center;
    }
    .live-item .mdidfortynine-live-teams-row .mdidfortynine-live-team-inline{
        width: 100%;
    }
    .live-item .mdidfortynine-live-resource-panel{
        font-size: 12px;
        padding: 2px 0;
        border: 1px solid;
    }

    .mdidfortynine-article-list-row{
        padding: 10px;
    }
    .mdidfortynine-article-list-row .thumb{
        width: 120px;
    }
    .mdidfortynine-article-list-row .mdidfortynine-item-title{
        font-size: 16px;
    }
    .mdidfortynine-article-list-row .desc{
        display: none !important;
    }
    .mdidfortynine-article-list-row .time{
        color: #999999;
    }
    .mdidfortynine-pagination-wrap .page-link{
        padding: .5rem .5rem;
        font-size: 13px;
    }
    .mdidfortynine-pagination-wrap .first ,.mdidfortynine-pagination-wrap .last{
        display: none;
    }

    .mdidfortynine-live-detail-card .match{
        margin: 30px 0;
    }
    .mdidfortynine-live-detail-card .team img{
        width: 70px;
        height: 70px;
    }
    .mdidfortynine-live-detail-card .score{
        font-size: 26px;
    }

    .mdidfortynine-article-heading{
        font-size: 28px;
    }
    .mdidfortynine-article-meta{
        font-size: 14px;
    }

    .event-name-time{
        display: flex;
        flex-direction: column-reverse;
        font-size: 12px;
    }
    .event-name-time .time{
        font-size: 11px;
        margin-right: 0 !important;
    }
    .mdidfortynine-live-player-box{
        padding-top: 80%;
    }
    .mdidfortynine-live-player-box.video-ai{
        padding-top: 80%;
    }
	
	.live-item .mdidfortynine-live-action-entry{
	 position:absolute;
	 right:0px;
	 top:20px;
	 
    }
	.match_box { width:40%;}
	#game_matchd_lt .mdidfortynine-live-scoreboard-center{
	  /*width:160px;*/
     }
	 .mdidfortynine-live-team-block{
		width: 100px;
	 }
	 .mdidfortynine-live-team-emblem {
		width:50px;
		height:50px;
		border-radius: 50%;
		margin-bottom:10px;
	}
	#game_matchd_lt .vs div,.mdidfortynine-live-team-block div{ font-size:14px;}
	#game_matchd_lt .mdidfortynine-live-match-meta div:nth-child(2){ font-size:16px;}
	#game_matchd_lt .vs div:nth-child(2) {width:70%;}
	#game_matchd_lt .mdidfortynine-live-match-meta div:nth-child(3){ font-size:12px;}
	#game_matchd_lt .vs{ width:100%;}
}

@media (min-width: 576px) and (max-width: 992px) {
    .news-img-item{
        display: none;
        width: 33.333333%;
    }
    .news-img-item:nth-child(-n+3) {
        display: block;
    }
    .news-img-item .img{
        padding-top: 60%;
    }
}
@media (max-width: 576px) {
    .image_box img {
         max-width: 100% !important;
         height: auto !important;
     }
    .header-content .nav-item {
        width: unset;
    }
	.mdidfortynine-sidebar-column{
		margin-top: 15px;
	}
    .mdidfortynine-content-primary,.mdidfortynine-sidebar-column,.main-right-lg{
        padding-right: 0;
    }

    .news-img-item{
        display: none;
        width: 50%;
        border: none;
        position: relative;
    }
    .news-img-item:nth-child(-n+2) {
        display: block;
    }
    .news-img-item .img{
        padding-top: 50%;
    }
    .news-img-item .mdidfortynine-item-title{
        left: 0;
        bottom: -30px;
        right: 0;
        color: #FFFFFF;
        padding:0 5px;
        margin: 0;
        font-size: 13px;
        height: 30px;
        line-height: 30px;
        background-image: linear-gradient(110deg, #81D4BA, #DCE775);
    }

    .mdidfortynine-sidebar-news-row,.news-item-sm{
        /* display: none; */
    }
    .mdidfortynine-sidebar-news-row:nth-child(-n+8){
        display: block;
    }
    .news-item-sm:nth-child(-n+8){
        display: block;
    }

    .mdidfortynine-live-detail-card .match{
        margin: 20px 5px;
    }
    .mdidfortynine-live-detail-card .team img{
        width: 50px;
        height: 50px;
    }
    .mdidfortynine-live-detail-card .team .name{
        font-size: 14px;
    }
    .mdidfortynine-live-detail-card .status{
        margin-top: 5px;
        font-size: 13px;
    }
    .mdidfortynine-live-detail-card .score{
        font-size: 18px;
        margin-top: 10px;
        font-weight: 700;
    }
    .mdidfortynine-article-detail-card.card .card-header{
        padding: 10px;
        margin: 0;
    }
    .mdidfortynine-article-heading{
        font-size: 18px;
    }
    .mdidfortynine-article-meta{
        font-size: 13px;
    }
    .news-content{
        padding: 20px 0;
    }
    .panel-content{
        font-size: 12px;
    }

    .mdidfortynine-live-player-box{
        padding-top: 100%;
    }
    .mdidfortynine-live-player-box.video-ai{
        padding-top: 90%;
    }
    .rank-content{
        font-size: 12px;
    }
}

.layui-tab-title{
    display: flex;
    align-items: center;
    white-space: nowrap;
    background: #ffffff;
    overflow: hidden;
    overflow-x: auto;
    padding: 10px 0;
    margin: unset;
}
.layui-tab-title::-webkit-scrollbar{
    display: none;
}
.layui-tab-title li{
    min-width: 80px;
    list-style-type:none;
    text-align: left;
}
.alert-info_detail{
    height: 45px;
}
.alert-info_detail h4 {
    font-size: 18px;
    font-weight: 900;
}

.badge-info {
    text-shadow: none;
}

.fenye {
 display: flex;
 justify-content: center;
 padding: 20px 0;
 font-size: 14px;
}

.fenye ul li {
 display: inline-block;
 font-size: 14px;
 margin: 0 2px;
 line-height: 1.5;
 border-left: none;
 margin-left: 0 !important;
}


.fenye ul li a {
 font-size: 12px;
 color: #666;
 display: block;
 padding: 2px 6px;
 border: 1px solid #2E7D68;
 border-radius: 3px;
}

.fenye ul li a:hover {
 background: linear-gradient(110deg, #81D4BA, #DCE775);
 color: #fff;
 border: 1px solid #fff;
}

.fenye ul li.active a {
 background: linear-gradient(110deg, #81D4BA, #DCE775);
 color: #fff;
 border: 1px solid #fff;
}



.citiao_list{
    padding: 10px 20px;
   background: #fff;
   color:#6a6a6a;
 }
 
 .citiao_list span a {
     font-size: 14px;
     line-height: 27px;
     
     background: #fff;
     border: none;
     padding: 0;
 }

  .image_box {
 text-align: center;
}

.image_box img {
 max-width: 500px;
}

.mdidfortynine-article-content img{
 max-width: 500px;
 height: auto !important;
 display: block;
 margin: 0 auto;
}


@media (max-width: 768px){
     .mdidfortynine-article-content img {
        max-width: 100%;
        height: auto !important;
        display: block;
        margin: 0 auto;
    }
}

.mdidfortynine-live-hot-mark img {
    width: 20px !important;
    height: 20px !important;
}
}