@font-face {
    font-family: "思源黑体 Normal";
    src: url("./font/Normal.woff") format("woff2"),
    url("./font/Normal.woff") format("woff");
    font-display: swap;
}

/* 把我们所有标签的内外边距清零 */
* {
    margin: 0;
    padding: 0;
    /* css3盒子模型 */
    box-sizing: border-box;
}


.goTop {
    width: 50px;
    height: 50px;
    position: fixed;
    right: calc(calc(calc(100% - 1200px) / 2) - 100px);
    bottom: 300px;
    z-index: 55;
    cursor: pointer;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goTop img {
    width: 40px;
}

html {
    min-height: 100%;
    position: relative;
}

body {
    padding-bottom: 230px !important;
}

.layui-menu .layui-menu-item-down > ul {
    overflow-y: scroll;
    max-height: 600px;
    overflow-x: hidden;
}

.layui-menu .layui-menu-item-down > ul::-webkit-scrollbar {
    display: none;
}

:root {
    --c1: #f21646;
    --c2: #f3f5f9;
    --c3: #fff;
    --c4: #909399;
    --c5: #666;
    --c6: #f7f8fa;
    --c7: #eeeeee;
    --c8: #bbb;
    --c9: #f1f1f1;
}

.green {
    color: #83cb00;
}

.blue {
    color: #007fff;
}

.red {
    color: var(--c1) !important;
}

.grey {
    color: grey !important;
}

.yellow {
    color: #feb548 !important;
}

.red_status {
    color: var(--c1) !important;
    border: 1px solid var(--c1) !important;
}

.yellow_status {
    color: #feb548 !important;
    border: 1px solid #feb548 !important;
}

.grey_status {
    color: grey !important;
    border: 1px solid grey !important;
}

.red_status:hover {
    color: var(--c1) !important;
}


img,
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
ul,
li,
a,
dl,
dt,
dd,
table,
tr,
td,
ol,
b,
strong {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    text-decoration: none;
    font-weight: normal;
}

/* em 和 i 斜体的文字不倾斜 */
em,
i {
    font-style: normal;
}

/* 去掉li 的小圆点 */
li {
    list-style: none;
}

img {
    /* border 0 照顾低版本浏览器 如果 图片外面包含了链接会有边框的问题 */
    border: 0;
    /* 取消图片底侧有空白缝隙的问题 */
    display: block;
}

button {
    /* 当我们鼠标经过button 按钮的时候，鼠标变成小手 */
    cursor: pointer;
}

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

button,
input {
    font-family: "思源黑体 Normal";
    /* 默认有灰色边框我们需要手动去掉 */
    border: 0;
    /* 点击后取消出现的黑色外边框 */
    outline: none;
    background-color: transparent;
}

body {
    /* CSS3 抗锯齿形 让文字显示的更加清晰 */
    -webkit-font-smoothing: antialiased;
    background-color: #f7f7f8;
    font-family: "思源黑体 Normal";
    font-size: 14px;
    color: #333;
}

/* 清除浮动 */
.clearfix:after {
    visibility: hidden;
    clear: both;
    display: block;
    content: ".";
    height: 0;
}

.clearfix {
    *zoom: 1;
}

/* 基础样式 */
.fr {
    float: right;
}

.fl {
    float: left;
}

.marbtm10 {
    margin-bottom: 10px !important;
}

.marrig10 {
    margin-right: 10px !important;
}

.martop10 {
    margin-top: 10px !important;
}

.padleft10 {
    padding-left: 10px !important;
}

.padd {
    padding: 10px;
}

.ActFtcolor {
    color: var(--c1) !important;
}

.end {
    color: #666 !important;
}

.grayFtcolor {
    color: #959595 !important;
}

.ActFWtcolor {
    color: var(--c1) !important;
    font-weight: 600;
}

.Ftcolor {
    color: #707070 !important;
}

.ActBgcolor {
    background-color: var(--c1) !important;
    color: var(--c3) !important;
    border: 1px solid var(--c1) !important;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.ActBgcolor3 {
    background: #F21646;
    color: #FFFFFF;
}

.fs16 {
    font-size: 16px;
}

.ActBgcolor1 {
    background-color: var(--c2) !important;
    color: var(--c1) !important;
}

.ActBgcolor2 {
    background-color: var(--c3) !important;
    color: var(--c1) !important;
}

.ActBrcolor {
    color: var(--c1) !important;
    border-bottom: 3px solid var(--c1) !important;
}

.ActBrcolor1 {
    border-bottom: 3px solid var(--c1) !important;
}

.imgSize1 {
    width: 132px;
    object-fit: cover;
    border-radius: 2px;
}

.imgSize2 {
    width: 24px;
    height: 22px;
    margin: 0 24px;
}

.recentliveOl .imgSize2 {
    margin: 0 10px;
    object-fit: contain;
}

.recentliveOl .ellipsis {
    margin-bottom: 0;
}

.imgSize3 {
    width: 14px;
    height: 14px;
    margin: 0 4px;
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.flexA {
    display: flex;
    align-items: center;
}

.flexJ {
    display: flex;
    justify-content: space-between;
}

.flexAJ {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flexAC {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.bcgFFF {
    background-color: var(--c3) !important;
}

.grayline {
    margin: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.graylineBlod {
    width: 100%;
    height: 10px;
    background: #f7f7f8;
    transform: scale(1.08);
}

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

.changeOne {
    font-size: 12px;
}

.bRadius {
    border-radius: 4px;
}

.bottomSJX {
    position: relative;
}

.bottomSJX::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    top: 22px;
    right: -18px;
    transition: all 0.5s;
    transform: rotate(315deg);
    border: 1px solid #000;
    border-top: var(--c3) fff;
    border-right: var(--c3) fff;
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 20px;
}

.ellipsismore {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.rightSJX {
    position: relative;
    color: var(--c1);
}

.rightSJX::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    top: 23px;
    right: 20px;
    transform: rotate(-135deg);
    border: 1px solid var(--c1);
    border-top: var(--c3) fff;
    border-right: var(--c3) fff;
}

.rightSJX1 {
    position: relative;
}

.rightSJX1::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    top: 23px;
    right: 20px;
    transform: rotate(-135deg);
    border: 1px solid #000;
    border-top: var(--c3) fff;
    border-right: var(--c3) fff;
}

/*里面的代码可以根据自己需求去进行更改*/
/* 设置滚动条的样式 */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background: rgba(153, 153, 153, 0.1);
}

/* 滚动条上的滚动滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(153, 153, 153, 0.5);
}

.layui-btn-group .layui-btn {
    margin-right: 5px !important;;
    border: 1px solid;
    border-radius: 7px;
}

.layui-btn-group .layui-btn-primary:first-child, .layui-btn-group .layui-btn:last-child {
    border-radius: 7px;
}

.layui-btn-group .layui-btn:hover {
    background: red;
    border-color: red
}

.layui-btn-group .layui-btn:hover a {
    color: #fff !important;
}

.league-wrap {
    color: #fff;
    background: url(../images/bg-league.png) no-repeat;
    margin-bottom: 10px;
}

.league-wrap .logo {
    display: inline-block;
    vertical-align: top;
}

.league-wrap .logo img {
    width: 100px;
    max-height: 100px;
    margin: 36px;
    border-radius: 5px;
}

.league-wrap .info {
    display: inline-block;
    vertical-align: top;
    width: 990px;
    height: 172px;
    position: relative;
}

.league-wrap .info .middle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.ellipsismore {
    display: -webkit-inline-box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.league-wrap .team {
    line-height: 28px;
}

.league-wrap .team * {
    vertical-align: bottom;
}

.league-wrap .team b {
    color: #fff;
    font-size: 28px;
    margin-right: 16px;
}

.league-wrap .team a {
    color: #ff4d4d;
    line-height: 28px;
    margin: 0 5px;
    display: inline-block;
}

.league-wrap .team b a {
    color: #fff;
    font-size: 28px;
}

.league-wrap h1 {
    font-size: 24px !important;
}

.league-wrap .info .middle .intro {
    word-break: break-all;
    color: rgba(255, 255, 255, .7);
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.living_title {
    padding: 10px;
    box-sizing: border-box;
    margin-top: 20px;
}

.living_title p {
    margin-bottom: 5px;
    font-size: 16px;
}

.living_title p strong {
    font-size: 16px;
}

/*新增的数据及文字直播模块*/
.live-content-data{
    margin-top: 20px;
}
.til {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #212326;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    font-weight: 500;
    height: 27px;
    line-height: 27px;
    min-width: 100px;
    padding-left: 20px;
    position: relative;
}

.til:before {
    background-image: url(../images/icon_title.svg);
    content: "";
    height: 18px;
    left: 0;
    margin-top: -9px;
    position: absolute;
    top: 50%;
    width: 14px;
}

.live-content-data .player-data {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 48px;
}

.live-content-data .player-data .item {
    width: 659px;
}

.live-content-data .player-data .item .list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 37px;
}

.live-content-data .player-data .item .list .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    position: relative;
    width: 226px;
}

.live-content-data .player-data .item .list .content:before {
    background: hsla(0, 100%, 70%, 0.88);
    bottom: 26px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 328px;
}

.live-content-data .player-data .item .list .content .avatar {
    height: 76px;
    margin-bottom: 12px;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 1;
    width: 76px;
}

.single-line {
    white-space: nowrap;
}

.single-line {
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-content-data .player-data .item .list .content .username {
    color: #212326;
    height: 20px;
    width: 226px;
}

.live-content-data .player-data .item .list .center {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
}

.live-content-data .player-data .item .list .center .top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 76px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 11px;
}

.live-content-data .player-data .item .list .center .top .score {
    -webkit-box-flex: 1;
    color: #212326;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.live-content-data .player-data .item .list .center .top .score.home {
    text-align: right;
}

.live-content-data .player-data .item .list .center .top .summary-graph {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 76px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 51px;
}

.live-content-data .player-data .item .list .center .top .summary-graph .box {
    background: hsla(0, 100%, 70%, 0.88);
    border-radius: 4px 4px 0 0;
    height: 100%;
    width: 24px;
}

.live-content-data .player-data .item .list .center .top .summary-graph .box.right {
    background: rgba(0, 128, 255, 0.88);
}

.live-content-data .player-data .item .list .center .bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    color: #212326;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    -webkit-justify-content: center;
    justify-content: center;
    line-height: 20px;
}

.live-content-data .player-data .item .list .content.right {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.live-content-data .player-data .item .list .content.right:before {
    background: rgba(0, 128, 255, 0.88);
    content: "";
    left: -102px;
}

.live-content-data .team_data {
    margin: 16px 0 48px;
}

.live-content-data .team_data .list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    height: 48px;
    line-height: 48px;
    margin-top: 7px;
}

.live-content-data .team_data .list:first-child {
    border-bottom: 1px solid rgba(33,35,38,0.16);
    font-size: 16px;
    font-weight: 500;
    margin-top: 0;
}

.live-content-data .team_data .list .left {
    -webkit-box-flex: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.live-content-data .team_data .list .logo {
    height: 36px;
    margin-left: 6px;
    -o-object-fit: contain;
    object-fit: contain;
    width: 36px;
}

.live-content-data .team_data .list .center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    color: #212326;
    height: 50px;
    -webkit-justify-content: center;
    justify-content: center;
    width: 116px;
}

.live-content-data .team_data .list .center, .live-content-data .team_data .list .right {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.live-content-data .team_data .list .right {
    -webkit-box-flex: 1;
    -ms-flex-align: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.live-content-data .team_data .list .right .logo {
    margin-left: 0;
    margin-right: 6px;
    -o-object-fit: contain;
    object-fit: contain;
}

.live-content-data .team_data .list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    height: 48px;
    line-height: 48px;
    margin-top: 7px;
}

.live-content-data .team_data .list .num {
    color: #212326;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 92px;
}

.live-content-data .team_data .list .progress-bar {
    -webkit-box-flex: 1;
    background-color: rgba(33,35,38,0.26);
    border-radius: 3px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 4px;
    overflow: hidden;
    position: relative;
    width: 320px;
}

.live-content-data .team_data .list .progress-bar .out {
    background-color: rgba(33,35,38,0.66);
    border-radius: 3px;
    height: 4px;
    position: absolute;
    right: 0;
    width: 30%;
}

.live-content-data .team_data .list .left span {
    color: #212326;
}

.live-content-data .team_data .list .progress-bar .in_80 {
    background: hsla(0, 100%, 70%, 0.88);
    width: 70%;
}

.live-content-data .team_data .list .progress-bar {
    -webkit-box-flex: 1;
    background-color: rgba(33,35,38,0.26);
    border-radius: 3px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 4px;
    overflow: hidden;
    position: relative;
    width: 320px;
}

.live-content-data .team_data .list .right .progress-bar .out {
    left: 0;
}

.live-content-data .game .player_data {
    margin-top: 12px;
}

.live-content-data .game .player_data:last-child {
    margin-top: 30px;
}

.live-content-data .game .player_data .list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    height: 60px;
}

.live-content-data .game .player_data .list:hover {
    background-color: rgba(33,35,38,0.06);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.live-content-data .game .player_data .list:first-child:hover {
    background-color: transparent;
}

.live-content-data .game .player_data .list .team-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 171px;
}

.live-content-data .game .player_data .list .team-left .avatar {
    border-radius: 50%;
    height: 36px;
    left: 12px;
    position: absolute;
    top: 12px;
    width: 36px;
    box-sizing: content-box;
    object-fit: contain;
}

.live-content-data .game .player_data .list .team-left .first-name {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #212326;
    display: -webkit-box;
    left: 54px;
    line-height: 19px;
    overflow: hidden;
    position: absolute;
    text-align: left;
    top: 13px;
    white-space: normal;
}

.live-content-data .game .player_data .list .team-left .position {
    color:rgba(33,35,38,0.86);
    font-size: 12px;
    left: 54px;
    line-height: 16px;
    position: absolute;
    top: 32px;
}

.live-content-data .game .player_data .list div {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    color: #212326;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    line-height: 60px;
    text-align: center;
    width: 64px;
}

.live-content-data .game .player_data .list div.in {
    color: rgba(0, 128, 255, 0.7);
}

.live-content-data .game .player_data .list:first-child {
    border-bottom: 1px solid rgba(33,35,38,0.16);
    margin-top: 0;
}

.live-content-data .game .player_data .list:first-child .team-left {
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    -webkit-justify-content: normal;
    justify-content: normal;
    line-height: 60px;
    overflow: hidden;
    text-align: left;
}

.live-content-data .game .player_data .list:first-child .team-left a {
    -webkit-box-flex: 1;
    color: #212326;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
}

.live-content-data .game .player_data .list:first-child .team-left a span {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-content-data .game .player_data .list:first-child .team-left .logo {
    background: transparent;
    height: 36px;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 1;
    padding: 11px 6px 0 12px;
    width: 36px;
    box-sizing: content-box;
}

.live-content-data .game .player_data .list:first-child div {
    color: rgba(33,35,38,0.86);
    font-size: 14px;
}

.live-content-data .game .player_data .list:nth-child(2) div {
    line-height: 50px;
    padding-top: 6px;
}

.live-content-data .game .player_data .active,
.live-content-data .game .player_data .ins {
    background-color: rgba(33,35,38,0.26);
}
.nav_content_area{
    margin-top: 20px;

}
.nav_content_area .til{
    margin-bottom: 10px;
}
.nav_content_area .children {

    min-height: 664px;
}
.flex1 {
    display: block;
    -moz-box-flex: 1.0;
    -webkit-box-flex: 1.0;
    box-flex: 1.0;
}

.broadcast-box {
    width: 100%;
    min-height: 643px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
    /*background-color: rgba(33, 35, 38,0.46)*/
}

.broadcast-box ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: hsla(0, 0%, 100%, 0.04)
}

.broadcast-box ::-webkit-scrollbar-track {
    background-color: hsla(0, 0%, 100%, 0.04)
}

.broadcast-box ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #aeaeae
}


.broadcast-box .live-code-nav {
    background-color: transparent;

}

.box_h {
    display: block;
    display: -moz-box;
    display: -webkit-box;
    display: -ms-flexbox;
    -moz-box-orient: horizontal;
    -webkit-box-orient: horizontal;
    width: 100%;
}

.broadcast-box .live-code-nav .navbtn {
    height: 40px;
    text-align: center;
    cursor: pointer;
    color: #000;
    font-size: 14px;
    line-height: 40px;
    border: 1px solid rgb(0 0 0 / 8%);
}

.broadcast-box .live-code-nav .navbtn:nth-child(1), .broadcast-box .live-code-nav .navbtn:nth-child(2), .broadcast-box .live-code-nav .navbtn:nth-child(3) {
    border-right: none;
}

.broadcast-box .live-code-nav .navbtn.active {
    background-color: rgb(0 0 0 / 4%);
    color: rgb(242 22 70 / 88%);
}

.broadcast-box .content-list {
    padding: 15px 0 15px 25px
}

.broadcast-box .content-list .list-content {
    height: 898px;
    overflow: auto
}

.broadcast-box .content-list .list-content .lier {
    overflow: hidden;
    width: 100%;
    position: relative;
    font-size: 12px;
    color: rgb(0 0 0 / 50%);
    padding: 5px 0
}

.broadcast-box .content-list .list-content .lier .line {
    position: absolute;
    left: 60px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: rgb(0 0 0 / 15%)
}

.broadcast-box .content-list .list-content .lier .line .radius {
    width: 4px;
    height: 4px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    background-color: #de1e30;
    border-radius: 100%
}

.broadcast-box .content-list .list-content .lier .code {
    width: 62px;
    padding: 8px 0;
    float: left
}

.broadcast-box .content-list .list-content .lier .score {
    width: 80px;
    text-align: center;
    padding: 8px 0;
    float: left
}

.broadcast-box .content-list .list-content .lier .tip {
    width: 940px;
    margin: 0 10px;
    padding: 8px 0;
    float: left
}

.broadcast-box .content-list .list-content .lier .tip.b {
    font-weight: 700
}

.broadcast-box .content-list .list-content .lier .logo {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    float: left
}
/*足球文字直播*/

.nav_content_area .event-list {
    margin: 0 80px 20px;
    position: relative
}

.nav_content_area .event-list:before {
    position: absolute;
    content: '';
    left: 12px;
    top: 40px;
    bottom: 60px;
    border-left: 1px dashed rgb(33 35 38 / 20%);
    display: block
}

.nav_content_area .event-list li {
    clear: both;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    position: relative;
    margin-top: 16px;
    border-radius: 5px;
    min-height: 80px
}

.nav_content_area .event-list li.system {
    background-color: rgb(189 189 193 / 60%);
    border-radius: 2px
}

.nav_content_area .event-list li.system .icon {
    background-color: #e2e2e5
}

.nav_content_area .event-list li.system .icon .svg-icon {
    color: #fff
}

.nav_content_area .event-list li.goal {
    background-color: #bab6b6;
    border-radius: 2px
}

.nav_content_area .event-list li.goal .icon {
    background-color: #c7c7cc
}

.nav_content_area .event-list li.goal .icon .svg-icon {
    color: #fff
}

.nav_content_area .event-list li .icon {
    position: absolute;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    left: -12px;
    top: 15px;
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
    background-color: rgb(189 189 193 / 90%);
    background-repeat: no-repeat;
    background-position: center center
}

.nav_content_area .event-list li .icon.anse {
    background-color: #e2e2e5
}

.nav_content_area .event-list li .icon .svg-icon {
    width: 24px;
    height: 24px;
    margin-top: 13px
}

.nav_content_area .event-list li .icon .ft {
    font-size: 16px;
    color: #fff;
    font-style: normal
}

.nav_content_area .event-list li .time {
    float: left;
    margin-left: 54px;
    width: 45px;
    min-height: 1px;
    font-size: 14px;
    color: #777474;
    margin-top: 30px
}

.nav_content_area .event-list li .vs-content {
    width: 520px;
    float: left;
    padding: 30px 0;
    position: relative
}

.nav_content_area .description {
    clear: both;
    display: inline-block;
    vertical-align: top;
    width: 1100px;
    margin: 0 20px;
    border-top: 1px solid rgba(33, 35, 38,0.46);
    line-height: 44px;
    background-color:#e2e2e5;
}

.nav_content_area .description .title {
    width: 100px;
    text-align: center;
    font-size: 16px;
    color: #787878;
    float: left;
    position: relative
}
.nav_content_area .description .title:before{
    content: none;
}

.nav_content_area .description .title:after {
    content: "";
    border-right: 1px solid #fffcfc;
    height: 25px;
    position: absolute;
    right: 0;
    top: 8px
}

.nav_content_area .description .icons {
    float: left;
    width: 860px
}

.nav_content_area .description .icons span {
    display: inline-block;
    margin: 0 10px
}

.nav_content_area .description .icons span .svg-icon {
    height: 20px;
    width: 22px;
    float: left;
    margin-top: 11px
}

.nav_content_area .description .icons span em {
    float: left;
    font-size: 12px;
    font-style: normal;
    margin-left: 5px;
    color: #212326;
}
