* {
    margin: 0;
    padding: 0;
    font-family: Microsoft YaHei, Microsoft YaHei;

}

body {
    background-color: #0E0B1C;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #fff;
}

/* 省略两行 */
.xu-ellipsis {
    display: -webkit-box;
    /* 必须设置display属性为-webkit-box */
    overflow: hidden;
    /* 超出部分隐藏 */
    text-overflow: ellipsis;
    /* 显示省略号 */
    -webkit-line-clamp: 2;
    /* 限制显示两行 */
    -webkit-box-orient: vertical;
    /* 垂直方向上的换行 */
}

/* 支持左右拖动，显示多个 */
.xu-drag-side {
    display: -webkit-box !important;
    width: 100%;
    overflow: auto;
    /*适应苹果*/
    -webkit-overflow-scrolling: touch;
}

.xu-drag-side::-webkit-scrollbar {
    width: 0 !important;
    height: 0;
}

/* 图片居中 */
.xu-content-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xu-content {
    padding-bottom: 80px;
}

/* 头部 */
.xu-header {
    width: 100%;
    height: 50px;
    background: linear-gradient(180deg, #F25458 0%, #792A2C 100%);
    display: flex;
    align-items: center;
}

.xu-header-logo {
    display: block;
    width: 100px;
    height: 28px;
    margin-left: 12px;
    margin-right: 26px;
    object-fit: fill;
}

.xu-header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.xu-header-nav>li {
    margin-right: 20px;
    padding-bottom: 4px;
}

.xu-header-nav .nav_active {
    padding-bottom: 2px;
    border-bottom: 2px solid #fff;
    font-weight: bold;
}

/* 导航 */
.xu-navigation {
    margin-top: 10px;
    padding-left: 10px;
    font-size: 14px;
    color: #FFFFFF;
}




/* 底部 */
.xu-footer {
    margin-top: 16px;
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #121212;
}

/* 返回顶部 */
.xu-back_up {
    position: absolute;
    right: 12px;
    top: -76px;
    width: 50px;
    height: 50px;
}

.xu-back_up>img {
    display: block;
    width: 100%;
    height: 100%;
}

.xu-footer-icon {
    margin-top: 8px;
    /*width: 34px;*/
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xu-footer-icon>a {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    padding: 2px 0;
}

.xu-footer-icon .active {
    color: #ED777B;
}

/* 赛事推荐 */
.xu-saishi-tag {
    width: 100%;
    border-top: 6px solid #fff;
    padding: 12px 10px 10px;
    box-sizing: border-box;
    color: #fff;
    font-size: 18px;
}

.xu-saishi-tag__title {
    padding: 0 4px;
    display: flex;
    align-items: center;
}

.xu-saishi-tag__title>img {
    display: block;
    width: 20px;
    height: 24px;
    object-fit: cover;
    margin-right: 6px;
}

.xu-saishi-tag__cont {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.xu-saishi-tag__cont__item {
    width: 100%;
    display: flex;
    padding-bottom: 8px;
    border-bottom: 1px dashed #ED777B;
    font-size: 14px;
    align-items: center;
    margin-bottom: 10px;
}

.xu-saishi-tag__cont__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.xu-saishi-tag__cont__item>span:first-child {
    margin-right: 2px;
    width: 45px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xu-saishi-tag__cont__item>span {
    margin-right: 6px;
}

.saishi_tag_cont_live {
    display: flex;
}

.saishi_tag_cont_live>div {
    display: flex;
    align-items: center;
}

.saishi_tag_cont_live_text {
    width: 54px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.saishi_tag_cont_live_img {
    display: block;
    width: 15px;
    height: 15px;
    object-fit: cover;
    margin: 0 5px;
    background-color: blue;
}

.saishi_tag_cont_vs {
    font-size: 18px;
    font-weight: bold;
}

.saishi_tag_cont_paly {
    margin-left: 10px;
    width: 80px;
    height: 24px;
    color: #7E2C2E;
    background: linear-gradient(180deg, #FFFFFF 0%, #FB9393 100%);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.saishi_tag_cont_paly>img {
    display: block;
    width: 17px;
    height: 16px;
    object-fit: cover;
    margin-right: 2px;
}


/* 头条新闻 */
.xu-top_news-nav {
    padding: 0 5px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

.xu-top_news-nav>li {
    width: 118px;
    height: 30px;
    background-color: #1B3C7E;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.xu-top_news-nav>li>img {
    display: block;
    width: 24px;
    height: 20px;
    object-fit: cover;
    margin-right: 6px;
}

.xu-top_news-nav>li .top_news_icon {
    font-size: 22px;
    margin-right: 6px;
}

.xu-top_news-nav .top_news_active>span {
    color: #BD4346;
    font-weight: bold;
}

.xu-top_news-box {
    margin-top: 17px;
}

.xu-top_news-cont {
    padding: 0 10px;
}

.xu-top_news-cont__item {
    width: 100%;
    border-bottom: 2px dashed #462533;
    display: flex;
    font-size: 14px;
    align-items: center;
    padding-bottom: 4px;
    margin-bottom: 10px;
}

.xu-top_news-cont__item .cont_item_guojia {
    display: block;
    width: 62px;
    height: 23px;
    text-align: center;
    line-height: 23px;
    background-color: #ED777B;
    border-radius: 3px;
    color: #fff;
    margin-right: 8px;
    padding: 0 2px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xu-top_news-cont__item .cont_item_text {
    display: block;
    width: 80% !important;
    height: 18px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xu-top_news-cont__item__more {
    margin-top: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.xu-top_news-cont__item__more>span {
    margin: 0 auto 6px;
    font-size: 14px;
    color: #ED777B;
}

.xu-top_news-cont__item__more>img {
    display: block;
    width: 18px;
    height: 11px;
    object-fit: cover;
}

/* 赛事列表 */
.xu-saishi_list {
    margin-top: 22px;
    width: 100%;
}

.xu-saishi_list-title {
    width: 100%;
    height: 48px;
    display: flex;
    padding: 0 10px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #F25458 0%, #792A2C 100%);
}

.xu-saishi_list-title__left {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #fff;
    margin-right: 8px;
}

.xu-saishi_list-title__left>img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: cover;
    margin-right: 4px;
}

.xu-saishi_list-title__right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #1B3C7E;
}

.xu-saishi_list-title__right>li {
    width: 78px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 4px;
    background-color: #fff;
}

.xu-saishi_list-title__right .saishi_list_active {
    background-color: #F6AC4B;
    color: #fff;
}

.xu-saishi_list-time {
    width: 100%;
    height: 23px;
    background-color: #F6AC4B;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 15px;
}

.xu-saishi_list-time>img {
    display: block;
    width: 15px;
    height: 15px;
    object-fit: cover;
    margin-right: 6px;
}

.xu-saishi_list-cont {
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.xu-saishi_list-cont__item {
    width: 100%;
    height: 162px;
    border-bottom: 2px dashed #87858E;
    padding: 0 16px;
    box-sizing: border-box;
}

.saishi_list_item_time {
    padding: 20px 0 14px;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;

}

.saishi_list_item_time>span {
    margin-right: 30px;
}

.saishi_list_item_time .item_time_state {
    width: 80px;
    height: 26px;
    background-color: #FFFFFF;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F25458;
    font-weight: bold;
}

.saishi_list_item_live {
    display: flex;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
}

.saishi_list_item_live>div {
    display: flex;
    align-items: center;
}

.saishi_list_item_text {
    width: 104px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.saishi_list_item_guoqi {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.saishi_list_item_vs {
    font-size: 24px;
    color: #F25458;
    margin: 0 12px;
}

.saishi_list_item_paly {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.saishi_list_item_paly_url {
    width: 100px;
    height: 30px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FB9393 100%);
    color: #7E2C2E;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.saishi_list_item_paly_url>img {
    display: block;
    width: 18px;
    height: 16px;
    object-fit: cover;
    margin-right: 4px;
}

.xu-beian,
.xu-beian>a {
    box-sizing: border-box;
    margin: 30px 10px 18px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.xu-copyright {
    box-sizing: border-box;
    margin: 0 10px 18px 10px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}


.page-ul {
    display: flex;
    font-size: 18px;
    margin: 0 0 5px 10px;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0 15px 0;
}

.page-ul>li {
    border: solid #C7D6F5 1px;
    border-radius: 10px;
    padding: 2px 6px;
    background-color: #fff;
}

.page-ul>li>a {
    color: #0E0B1C;
}

.page-ul>.disabled {
    background-color: #646464;
    border: solid #646464 1px;
    color: #464646;
}