﻿@charset "UTF-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body, html {
    font-size: 16px;
    color: #333;
    font-family: "Microsoft YaHei UI Light"
}

button, input[type=button], input[type=checkbox], input[type=radio], input[type=reset], input[type=submit] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important
}

em, i {
    font-style: normal
}

a {
    color: #333;
    text-decoration: none
}

ol, ul {
    list-style: none
}

a {
    color: #667
}

.gray {
    color: #939393
}

.link:hover {
    color: green
}

.txtHidden {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.header {
    display: block
}

    .header .header_bg {
        background: green
    }

    .header .header_links_view {
        display: block;
        width: 100%;
        position: relative
    }

    .header .wap_menu_btn {
        display: none;
        color: #fff;
        font-size: 26px
    }

    .header .header_main {
        width: 1250px;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        height: 60px;
        margin: 0 auto
    }

        .header .header_main .logo {
            width: 220px;
            height: 60px
        }

            .header .header_main .logo img {
                width: 100%
            }

        .header .header_main .link_nav {
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center
        }

            .header .header_main .link_nav li {
                position: relative
            }

                .header .header_main .link_nav li a {
                    display: block;
                    padding: 0 30px;
                    height: 60px;
                    line-height: 60px;
                    color: #fff;
                    position: relative;
                    -webkit-transition: all .2s ease-in-out;
                    transition: all .2s ease-in-out
                }

                    .header .header_main .link_nav li a:hover:after {
                        content: "";
                        position: absolute;
                        bottom: 0;
                        left: 50%;
                        -webkit-transform: translateX(-50%);
                        transform: translateX(-50%);
                        z-index: 10;
                        border-left: 10px solid transparent;
                        border-right: 10px solid transparent;
                        border-bottom: 10px solid #fff
                    }

                .header .header_main .link_nav li .active:after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    -webkit-transform: translateX(-50%);
                    transform: translateX(-50%);
                    z-index: 10;
                    border-left: 10px solid transparent;
                    border-right: 10px solid transparent;
                    border-bottom: 10px solid #fff
                }

    .header .header_child_nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        width: 1250px;
        margin: 0 auto;
        padding: 5px 0
    }

        .header .header_child_nav .left {
            width: 70%
        }

            .header .header_child_nav .left .layui-breadcrumb a {
                color: #333 !important;
                font-size: 14px
            }

                .header .header_child_nav .left .layui-breadcrumb a:hover {
                    color: green !important
                }

        .header .header_child_nav .right {
            width: 250px;
            position: relative;
            border: 1px solid #dedede;
            border-radius: 2px
        }

            .header .header_child_nav .right input {
                background: 0 0;
                border: none;
                outline: 0;
                display: block;
                width: 100%;
                padding: 5px 30px 5px 10px
            }

            .header .header_child_nav .right .layui-icon {
                position: absolute;
                top: 50%;
                right: 10px;
                z-index: 1;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%)
            }

.wap_header_link_container {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    z-index: 100001;
    overflow: auto;
    background: #fff
}

    .wap_header_link_container .layui-colla-title {
        background: #f7f7f7
    }

    .wap_header_link_container .child_navs {
        display: block;
        width: 100%
    }

        .wap_header_link_container .child_navs a {
            display: block;
            width: 100%;
            padding: 10px 10px 10px 15px;
            border-bottom: 1px solid #f1f1f1
        }

            .wap_header_link_container .child_navs a:active {
                color: green
            }

.container_mask_view {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    height: 100%;
    background: rgba(0,0,0,.5)
}

.scroll_top {
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px 4px #ddd;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 100000;
    cursor: pointer
}

    .scroll_top:hover i {
        color: green
    }

    .scroll_top i {
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg);
        font-size: 26px
    }

    .scroll_top p {
        margin: 0;
        font-size: 12px
    }

.footer {
    display: block;
    position: relative;
    padding: 80px 0;
    background: green
}

    .footer .footer_main {
        width: 1250px;
        margin: 0 auto;
        color: #fff
    }

        .footer .footer_main .links {
            border-bottom: 1px solid #f1f1f1;
            padding-bottom: 10px;
            margin-bottom: 10px
        }

            .footer .footer_main .links .v_link a {
                display: inline-block;
                padding: 10px 15px;
                color: #fff
            }

        .footer .footer_main .extra_info {
            text-align: center
        }

            .footer .footer_main .extra_info p {
                font-size: 12px
            }

            .footer .footer_main .extra_info .v_a {
                display: -webkit-box;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -webkit-justify-content: center;
                justify-content: center
            }

                .footer .footer_main .extra_info .v_a a {
                    display: inline-block;
                    padding: 20px 20px;
                    color: #fff;
                    font-size: 12px
                }

.red {
    color: green
}

.live_bar_swiper_container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 1250px;
    margin: 15px auto
}

    .live_bar_swiper_container .toggle_btn {
        display: block;
        width: 30px;
        text-align: center;
        height: 126px;
        line-height: 126px;
        background: #f1f1f1;
        cursor: pointer;
        font-size: 20px
    }

    .live_bar_swiper_container .live_bar_swiper {
        width: 93%;
        display: block
    }

        .live_bar_swiper_container .live_bar_swiper .live_item {
            display: inline-block;
            position: relative;
            width: 100%;
            border: 1px solid #f1f1f1;
            border-radius: 2px;
            overflow: hidden
        }

            .live_bar_swiper_container .live_bar_swiper .live_item .top {
                display: -webkit-box;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: justify;
                -webkit-justify-content: space-between;
                justify-content: space-between;
                padding: 5px 10px;
                border-bottom: 1px solid #eee
            }

                .live_bar_swiper_container .live_bar_swiper .live_item .top > a {
                    width: 50%;
                    display: block;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    font-size: 14px;
                    color: #bbb
                }

                .live_bar_swiper_container .live_bar_swiper .live_item .top > span {
                    width: 50%;
                    font-size: 14px;
                    text-align: right;
                    white-space: nowrap
                }

            .live_bar_swiper_container .live_bar_swiper .live_item .cont {
                padding: 5px 10px;
                height: 90px
            }

                .live_bar_swiper_container .live_bar_swiper .live_item .cont .row {
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    padding: 5px 0
                }

                    .live_bar_swiper_container .live_bar_swiper .live_item .cont .row img {
                        width: 30px;
                        height: 30px;
                        border-radius: 50%
                    }

                    .live_bar_swiper_container .live_bar_swiper .live_item .cont .row em {
                        display: block;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                        max-width: 200px;
                        padding-left: 10px
                    }

                .live_bar_swiper_container .live_bar_swiper .live_item .cont .more_line em {
                    overflow: hidden;
                    white-space: normal;
                    max-height: 65px
                }

.fighting_tabs_container {
    width: 100%;
    border-bottom: 2px solid green;
    margin: 15px 0
}

    .fighting_tabs_container .swiper-slide {
        width: auto
    }

    .fighting_tabs_container a {
        display: block;
        text-align: center;
        padding: 15px 30px;
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in;
        background-image: -webkit-linear-gradient(#fafafa,#ececec);
        background-image: linear-gradient(#fafafa,#ececec);
        font-size: 12px
    }

        .fighting_tabs_container a:hover {
            background: green;
            color: #fff
        }

    .fighting_tabs_container .active {
        background: green;
        color: #fff
    }

.body_container_main {
    display: block;
    width: 1250px;
    margin: 0 auto
}

.v_team_info_container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    background: #f1f1f1;
    padding: 8px
}

    .v_team_info_container .v_left {
        width: 26%;
        border-top: 2px solid green;
        padding: 15px;
        background: #fff;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        height: 291px;
        overflow: hidden
    }

        .v_team_info_container .v_left .img {
            display: block;
            width: 110px;
            height: 150px
        }

        .v_team_info_container .v_left .name {
            display: block;
            padding-left: 10px
        }

            .v_team_info_container .v_left .name h2 {
                font-size: 18px;
                font-weight: 600
            }

            .v_team_info_container .v_left .name p {
                font-size: 12px;
                color: #bbb
            }

    .v_team_info_container .v_mid {
        border-top: 2px solid green;
        padding: 15px;
        background: #fff;
        width: 33%;
        height: 291px;
        overflow: hidden
    }

        .v_team_info_container .v_mid > .tit {
            display: block;
            color: green;
            font-size: 18px;
            margin-bottom: 15px
        }

        .v_team_info_container .v_mid .txt > p {
            font-size: 14px;
            margin-bottom: 8px
        }

    .v_team_info_container .v_right {
        width: 40%;
        border-top: 2px solid green;
        padding: 15px;
        background: #fff;
        height: 291px;
        overflow: hidden
    }

        .v_team_info_container .v_right > .tit {
            display: block;
            color: green;
            font-size: 18px;
            margin-bottom: 15px
        }

        .v_team_info_container .v_right .txt {
            font-size: 14px;
            line-height: 22px
        }

.live_news_container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start
}

    .live_news_container .new_left {
        width: 70%;
        padding-right: 8px
    }

    .live_news_container .new_right {
        width: 30%;
        padding-left: 8px
    }

.special_title_block {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 10px 0
}

    .special_title_block img {
        width: 35px;
        margin-right: 10px
    }

    .special_title_block h2 {
        font-size: 18px;
        font-weight: 600
    }

.filter_btn_link_view .filter_top {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 10px 0;
    position: relative
}

    .filter_btn_link_view .filter_top .hot_links {
        width: 70%
    }

        .filter_btn_link_view .filter_top .hot_links a {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 30px;
            border: 1px solid #f1f1f1;
            margin-right: 10px;
            font-size: 14px
        }

            .filter_btn_link_view .filter_top .hot_links a:hover {
                border-color: green;
                background: green;
                color: #fff
            }

        .filter_btn_link_view .filter_top .hot_links .active {
            border-color: green;
            background: green;
            color: #fff
        }

    .filter_btn_link_view .filter_top .down {
        position: absolute;
        top: 50%;
        right: 10px;
        z-index: 1;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        cursor: pointer
    }

        .filter_btn_link_view .filter_top .down:hover em, .filter_btn_link_view .filter_top .down:hover i {
            color: green
        }

        .filter_btn_link_view .filter_top .down i {
            font-size: 22px;
            -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out
        }

        .filter_btn_link_view .filter_top .down em {
            font-size: 14px;
            margin-left: 5px;
            display: inline-block
        }

.filter_btn_link_view .filter_shadow {
    box-shadow: 0 4px 9px -6px #bbb
}

.filter_btn_link_view .filter_all_links {
    display: none;
    padding: 20px;
    background: #fafafa
}

    .filter_btn_link_view .filter_all_links a {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 30px;
        border: 1px solid #e3e3e3;
        margin-right: 10px;
        margin-bottom: 10px;
        font-size: 14px
    }

        .filter_btn_link_view .filter_all_links a:hover {
            border-color: green;
            background: green;
            color: #fff
        }

.week-live_block_container {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 0
}

    .week-live_block_container .w_time {
        display: block;
        width: 100%;
        padding-left: 20px;
        position: relative
    }

        .week-live_block_container .w_time:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            z-index: 1;
            width: 10px;
            height: 10px;
            display: block;
            background: green;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%)
        }

    .week-live_block_container .name_top {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #f1f1f1;
        margin-bottom: 10px
    }

        .week-live_block_container .name_top .left {
            width: 50%;
            display: block
        }

            .week-live_block_container .name_top .left img {
                width: 30px;
                margin-right: 5px
            }

        .week-live_block_container .name_top em {
            font-size: 14px
        }

    .week-live_block_container .week_live_table {
        display: block;
        width: 100%
    }

        .week-live_block_container .week_live_table .row {
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
            padding: 5px 0
        }

            .week-live_block_container .week_live_table .row:nth-child(even) {
                background: #f8f8f8
            }

            .week-live_block_container .week_live_table .row span {
                display: inline-block;
                padding: 5px 5px;
                text-align: center;
                font-size: 14px
            }

            .week-live_block_container .week_live_table .row .tim {
                width: 10%
            }

            .week-live_block_container .week_live_table .row .name {
                width: 20%;
                display: -webkit-box;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -webkit-align-items: center;
                align-items: center
            }

            .week-live_block_container .week_live_table .row .team {
                width: 50%;
                display: -webkit-box;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -webkit-justify-content: center;
                justify-content: center
            }

                .week-live_block_container .week_live_table .row .team em {
                    display: inline-block;
                    padding: 0 10px
                }

                .week-live_block_container .week_live_table .row .team .t_left {
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -webkit-align-items: center;
                    align-items: center
                }

                    .week-live_block_container .week_live_table .row .team .t_left img {
                        width: 30px;
                        margin: 0 10px
                    }

            .week-live_block_container .week_live_table .row .ext {
                width: 20%;
                font-size: 12px
            }

.news_special_block_container {
    display: block;
    width: 100%;
    padding: 10px 0
}

    .news_special_block_container .top_title {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        padding: 0 0 10px 0;
        border-bottom: 1px solid #f1f1f1
    }

        .news_special_block_container .top_title .more {
            font-size: 14px
        }

        .news_special_block_container .top_title .title {
            font-size: 18px;
            font-weight: 600;
            border-left: 2px solid green;
            padding-left: 10px
        }

    .news_special_block_container .news_special_items {
        display: block;
        width: 100%;
        position: relative
    }

        .news_special_block_container .news_special_items .item {
            width: 100%;
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
            padding: 4px 0
        }

            .news_special_block_container .news_special_items .item em {
                padding: 0 5px
            }

            .news_special_block_container .news_special_items .item a {
                display: block;
                font-size: 14px;
                color: #bbb
            }

                .news_special_block_container .news_special_items .item a:last-child {
                    display: block;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    color: #333
                }

        .news_special_block_container .news_special_items .video_item {
            position: relative;
            display: block;
            width: 100%;
            height: 200px
        }

            .news_special_block_container .news_special_items .video_item h4 {
                color: #fff;
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                z-index: 1;
                padding: 5px;
                background: rgba(0,0,0,.5);
                display: block;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                font-size: 14px
            }

    .news_special_block_container .news_special_video_view {
        display: block;
        width: 100%
    }

        .news_special_block_container .news_special_video_view .item {
            padding: 15px 0;
            border-bottom: 1px solid #f1f1f1;
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center
        }

            .news_special_block_container .news_special_video_view .item .left {
                width: 200px;
                display: inline-block;
                height: 90px
            }

            .news_special_block_container .news_special_video_view .item .info {
                display: block;
                padding-left: 10px;
                width: 76%
            }

                .news_special_block_container .news_special_video_view .item .info h3 a {
                    font-size: 14px;
                    font-weight: 600;
                    height: 58px;
                    display: block;
                    overflow: hidden
                }

                    .news_special_block_container .news_special_video_view .item .info h3 a:active {
                        color: green
                    }

                .news_special_block_container .news_special_video_view .item .info .v_info {
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -webkit-align-items: center;
                    align-items: center
                }

                    .news_special_block_container .news_special_video_view .item .info .v_info .name {
                        display: -webkit-box;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -webkit-align-items: center;
                        align-items: center
                    }

                        .news_special_block_container .news_special_video_view .item .info .v_info .name img {
                            width: 30px;
                            height: 30px;
                            border-radius: 50%;
                            margin-right: 5px
                        }

                        .news_special_block_container .news_special_video_view .item .info .v_info .name em {
                            font-size: 12px
                        }

                    .news_special_block_container .news_special_video_view .item .info .v_info > em {
                        font-size: 12px;
                        color: #bbb;
                        display: inline-block;
                        margin-left: 8px
                    }

    .news_special_block_container .news_special_news_view {
        display: block;
        width: 100%
    }

        .news_special_block_container .news_special_news_view .item {
            width: 100%;
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #f1f1f1
        }

            .news_special_block_container .news_special_news_view .item .link {
                width: 60%;
                display: block;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                font-size: 14px
            }

            .news_special_block_container .news_special_news_view .item .tiem {
                font-size: 12px;
                color: #bbb
            }

.cub_main_block {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1
}

    .cub_main_block .ti {
        font-size: 14px
    }

.both_sides_team_vs_container {
    display: block;
    width: 100%;
    background: url(../images/bg-league.png) no-repeat center/cover;
    padding: 30px 0;
    margin: 15px 0
}

    .both_sides_team_vs_container .head {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: space-around;
        justify-content: space-around
    }

        .both_sides_team_vs_container .head .left .link, .both_sides_team_vs_container .head .right .link {
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            color: #fff
        }

            .both_sides_team_vs_container .head .left .link img, .both_sides_team_vs_container .head .right .link img {
                width: 60px;
                height: 60px;
                margin: 0 10px;
                border-radius: 50%
            }

        .both_sides_team_vs_container .head .mid {
            text-align: center
        }

            .both_sides_team_vs_container .head .mid h2 {
                color: #fff;
                margin: 10px 0
            }

    .both_sides_team_vs_container .bottom {
        padding: 30px 15px;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

        .both_sides_team_vs_container .bottom a {
            display: inline-block;
            padding: 3px 15px;
            border: 1px solid #999;
            border-radius: 30px;
            margin: 8px;
            font-size: 14px
        }

        .both_sides_team_vs_container .bottom .red_link {
            border-color: green;
            color: green
        }

        .both_sides_team_vs_container .bottom .green_color {
            color: #0f0 !important
        }

.three_news_cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

    .three_news_cont .news_special_block_container {
        width: 30.8%
    }

.Collection_extra_container {
    display: block;
    margin-bottom: 20px
}

    .Collection_extra_container .head {
        padding: 0 0 10px 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px
    }

        .Collection_extra_container .head h3 {
            color: green;
            font-size: 18px
        }

    .Collection_extra_container .vid_links {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap
    }

        .Collection_extra_container .vid_links a {
            display: block;
            width: 33.333%;
            text-align: center;
            padding: 8px 0;
            margin: 5px 0;
            position: relative
        }

            .Collection_extra_container .vid_links a:hover {
                color: #fff
            }

                .Collection_extra_container .vid_links a:hover:before {
                    background: green
                }

            .Collection_extra_container .vid_links a:before {
                content: "";
                position: absolute;
                background: #f1f1f1;
                width: 90%;
                height: 100%;
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-50%,-50%);
                transform: translate(-50%,-50%);
                z-index: -1
            }

    .Collection_extra_container .extra_table_coll .row {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        border-bottom: 1px solid #f1f1f1
    }

        .Collection_extra_container .extra_table_coll .row span {
            display: inline-block;
            padding: 5px 1px;
            text-align: center;
            background: 0 0
        }

        .Collection_extra_container .extra_table_coll .row .num {
            width: 20%
        }

        .Collection_extra_container .extra_table_coll .row .team {
            width: 60%
        }

        .Collection_extra_container .extra_table_coll .row .c_win {
            width: 10%
        }

        .Collection_extra_container .extra_table_coll .row .c_fail {
            width: 10%
        }

    .Collection_extra_container .extra_table_coll .head {
        background: #f5f5f5;
        padding-bottom: 0
    }

.match_ranking_content {
    width: 100%;
    margin-bottom: 1rem;
    padding: .5rem
}

    .match_ranking_content .mid {
        border-top: 1px solid #eee
    }

    .match_ranking_content .rank_mid_table .row {
        border-bottom: 1px solid #eee;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center
    }

        .match_ranking_content .rank_mid_table .row:last-child {
            border-bottom: none
        }

        .match_ranking_content .rank_mid_table .row span {
            text-align: center;
            font-size: 14px;
            display: inline-block;
            padding: .8rem 0
        }

        .match_ranking_content .rank_mid_table .row .rank {
            width: 15%;
            position: relative
        }

        .match_ranking_content .rank_mid_table .row .team {
            width: 35%;
            text-align: left
        }

        .match_ranking_content .rank_mid_table .row .wfa {
            width: 25%
        }

        .match_ranking_content .rank_mid_table .row .score {
            width: 25%
        }

        .match_ranking_content .rank_mid_table .row .active_org:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 10px;
            height: 10px;
            z-index: 1;
            background: orange;
            border-radius: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%)
        }

        .match_ranking_content .rank_mid_table .row .active_blue:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 10px;
            height: 10px;
            z-index: 1;
            background: #1e88e5;
            border-radius: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%)
        }

    .match_ranking_content .rank_mid_table .head {
        color: #555;
        background: #f5f5f5
    }

        .match_ranking_content .rank_mid_table .head .team {
            text-align: center
        }

.substation_index_container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    border-top: 1px solid #f1f1f1
}

    .substation_index_container .substation_left {
        width: 70%;
        padding-right: 10px;
        border-right: 1px solid #f1f1f1
    }

    .substation_index_container .substation_right {
        width: 30%;
        padding-left: 10px
    }

.substation_top_news_block {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

    .substation_top_news_block .news_special_block_container {
        width: 49%
    }

.hot_rec_staion_block {
    display: block;
    width: 100%;
    margin: 10px 0
}

    .hot_rec_staion_block > h2 {
        font-size: 18px;
        color: green;
        font-weight: 600;
        border-bottom: 1px solid #f1f1f1;
        padding-bottom: 8px;
        margin-bottom: 8px
    }

    .hot_rec_staion_block .links {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap
    }

        .hot_rec_staion_block .links a {
            margin: 0 10px 10px 0;
            display: inline-block;
            padding: 2px 10px;
            border: 1px solid #f1f1f1;
            border-radius: 30px;
            font-size: 14px
        }

.title_info_block {
    display: block;
    width: 100%
}

    .title_info_block > img {
        width: 200px;
        display: block;
        margin: 15px auto
    }

    .title_info_block .txt {
        padding: 5px 0;
        line-height: 22px;
        text-indent: 24px;
        font-size: 14px
    }

    .title_info_block .extra_info {
        padding: 15px 0;
        border-top: 1px solid green
    }

        .title_info_block .extra_info .head h3 {
            font-size: 16px;
            font-weight: 600
        }

        .title_info_block .extra_info .head span {
            display: block;
            padding: 5px 0;
            font-size: 12px
        }

            .title_info_block .extra_info .head span .red {
                display: inline-block;
                padding: 0 4px
            }

.ranking_order_head {
    display: block;
    margin-bottom: 15px
}

    .ranking_order_head h2 {
        color: green;
        font-weight: 600;
        padding: 10px 0;
        border-bottom: 1px solid #eee
    }

    .ranking_order_head .filter {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        border-bottom: 1px solid #eee;
        padding: 15px 0
    }

        .ranking_order_head .filter a {
            display: inline-block;
            padding: 0 10px;
            border-right: 1px solid #f1f1f1
        }

            .ranking_order_head .filter a:last-child {
                border: none
            }

.ranking_table_container {
    margin-bottom: 15px
}

    .ranking_table_container .rank_extra_tit {
        position: relative
    }

        .ranking_table_container .rank_extra_tit:before {
            content: "";
            position: absolute;
            bottom: 0;
            z-index: 100;
            width: 100%;
            height: 2px;
            background: green
        }

        .ranking_table_container .rank_extra_tit span {
            display: inline-block;
            padding: 5px 10px;
            background: green;
            color: #fff
        }

    .ranking_table_container .layui-table .num {
        font-size: 12px;
        display: inline-block;
        width: 20px;
        height: 20px;
        border-radius: 4px;
        font-weight: 600;
        text-align: center
    }

    .ranking_table_container .layui-table .team {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center
    }

        .ranking_table_container .layui-table .team img {
            width: 30px;
            margin-right: 5px
        }

    .ranking_table_container .layui-table .gray {
        color: #bbb
    }

    .ranking_table_container .layui-table .rank_teams {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

        .ranking_table_container .layui-table .rank_teams img {
            width: 30px;
            margin: 0 5px
        }

        .ranking_table_container .layui-table .rank_teams .name {
            display: inline-block;
            min-width: 100px;
            text-align: center
        }

    .ranking_table_container .layui-table .other_link {
        margin: 0 5px;
        white-space: nowrap
    }

.ranking_schedule_list > h1 {
    padding: 10px 0;
    color: green;
    border-bottom: 2px solid green
}

.ranking_schedule_list .items {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0
}

    .ranking_schedule_list .items a {
        display: inline-block;
        padding: 5px 10px;
        border: 1px solid #f1f1f1;
        margin: 0 8px 8px 0
    }

        .ranking_schedule_list .items a:hover {
            border-color: green;
            background: green;
            color: #fff
        }

    .ranking_schedule_list .items .active {
        border-color: green;
        background: green;
        color: #fff
    }

.scroll_ranking_table {
    display: block;
    width: 100%;
    overflow: auto
}

    .scroll_ranking_table .ranking_table_container {
        min-width: 600px
    }

        .scroll_ranking_table .ranking_table_container .over_txt {
            display: block;
            max-width: 125px;
            width: 100%;
            text-align: center;
            overflow: hidden
        }

.video_news_detail_container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start
}

    .video_news_detail_container .vid_left {
        width: 70%;
        padding-right: 10px
    }

        .video_news_detail_container .vid_left .sp_video_button {
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            padding: 10px 0;
            width: 180px;
            border-radius: 30px;
            background: green;
            color: #fff;
            position: relative;
            margin: 20px 0
        }

            .video_news_detail_container .vid_left .sp_video_button:before {
                content: "";
                position: absolute;
                top: 100%;
                left: 50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                z-index: 10;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-top: 8px solid green
            }

            .video_news_detail_container .vid_left .sp_video_button i {
                font-size: 26px;
                display: inline-block;
                margin-right: 5px
            }

            .video_news_detail_container .vid_left .sp_video_button em {
                margin-top: -3px;
                font-weight: 600
            }

        .video_news_detail_container .vid_left .v_list {
            padding: 15px 8px;
            background: #f5f5f5
        }

            .video_news_detail_container .vid_left .v_list .item {
                display: -webkit-box;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -webkit-align-items: center;
                align-items: center;
                position: relative;
                padding: 8px 0
            }

                .video_news_detail_container .vid_left .v_list .item .orange {
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    font-size: 14px
                }

                    .video_news_detail_container .vid_left .v_list .item .orange i {
                        font-size: 18px
                    }

                    .video_news_detail_container .vid_left .v_list .item .orange em {
                        font-size: 12px;
                        margin-top: -4px;
                        margin-left: 2px
                    }

                .video_news_detail_container .vid_left .v_list .item > em {
                    display: inline-block;
                    padding: 0 4px
                }

                .video_news_detail_container .vid_left .v_list .item .link {
                    width: 60%;
                    display: block;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap
                }

                .video_news_detail_container .vid_left .v_list .item .time {
                    position: absolute;
                    top: 50%;
                    right: 0;
                    z-index: 10;
                    -webkit-transform: translateY(-50%);
                    transform: translateY(-50%);
                    font-size: 14px;
                    color: #bbb
                }

    .video_news_detail_container .vid_right {
        width: 30%;
        padding-left: 10px
    }

.orange {
    color: #ffa80e
}

    .orange * {
        color: #ffa80e
    }

.rich_text_container {
    margin: 15px 0;
    display: block;
    width: 100%
}

    .rich_text_container > h3 {
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: 600
    }

    .rich_text_container .top_st {
        background: #f6f6f6;
        padding: 8px
    }

        .rich_text_container .top_st p {
            margin-bottom: 8px;
            font-size: 14px
        }

    .rich_text_container .t_img {
        display: block;
        margin: 15px auto;
        width: 80%
    }

    .rich_text_container .txt {
        display: block;
        line-height: 24px
    }

.pages_toggle_main_block {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    margin: 20px 0
}

    .pages_toggle_main_block .left p, .pages_toggle_main_block .right p {
        color: #1e88e5;
        display: block;
        width: 100%;
        margin-bottom: 10px
    }

.points_ranking_container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    margin-bottom: 30px
}

    .points_ranking_container .point_left {
        width: 20%;
        padding-right: 10px
    }

    .points_ranking_container .point_right {
        width: 80%;
        padding-left: 10px
    }

.nav_bar_column_block {
    width: 100%;
    border: 1px solid green
}

    .nav_bar_column_block a {
        display: block;
        width: 100%;
        padding: 12px 5px;
        border-bottom: 1px solid #f5f5f5
    }

        .nav_bar_column_block a:hover {
            background: green;
            color: #fff
        }

    .nav_bar_column_block .active {
        background: green;
        color: #fff
    }

.filter_button_top_block {
    display: block
}

    .filter_button_top_block .swiper-slide {
        width: auto
    }

    .filter_button_top_block a {
        display: inline-block;
        padding: 12px 20px;
        border-bottom: 1px solid #f5f5f5;
        background: #f5f5f5
    }

        .filter_button_top_block a:hover {
            background: green;
            color: #fff
        }

    .filter_button_top_block .active {
        background: green;
        color: #fff
    }

.tv_live_container {
    display: block;
    position: relative;
    margin: 15px auto 100px auto;
    width: 1250px
}

    .tv_live_container .wap_filter_view {
        display: none;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        padding: 15px 10px;
        background: #f5f5f5;
        margin: 0 auto 15px auto;
        width: 97%
    }

        .tv_live_container .wap_filter_view h3 {
            font-size: 16px;
            font-weight: 600
        }

        .tv_live_container .wap_filter_view i {
            font-size: 24px;
            color: #999
        }

.tv_live_times {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

    .tv_live_times a {
        display: inline-block;
        border-style: solid;
        border-width: 1px;
        border-color: #eee;
        padding: 10px 0;
        border-right: none
    }

        .tv_live_times a:hover {
            background: green;
            color: #fff
        }

        .tv_live_times a:last-child {
            border-right: 1px solid #eee
        }

    .tv_live_times .left {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        width: 15%
    }

        .tv_live_times .left a {
            -webkit-box-flex: 2;
            -webkit-flex: 2;
            flex: 2;
            text-align: center
        }

    .tv_live_times .mid {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        width: 66%
    }

        .tv_live_times .mid a {
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            flex: 1;
            text-align: center
        }

    .tv_live_times .right {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        width: 15%
    }

        .tv_live_times .right a {
            -webkit-box-flex: 3;
            -webkit-flex: 3;
            flex: 3;
            text-align: center
        }

    .tv_live_times .active {
        background: green;
        color: #fff
    }

.tv_live_station {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 10px 0 20px 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-bottom: 2px solid #f1f1f1;
    margin-bottom: 20px
}

    .tv_live_station .station_item {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        margin-bottom: 5px
    }

        .tv_live_station .station_item > .title {
            display: inline-block;
            position: relative;
            background: #eee;
            padding: 4px 8px
        }

            .tv_live_station .station_item > .title:before {
                content: "";
                position: absolute;
                top: 50%;
                right: -10px;
                z-index: 1000;
                border-left: 10px solid #eee;
                border-top: 7px solid transparent;
                border-bottom: 7px solid transparent;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%)
            }

        .tv_live_station .station_item > .links {
            padding-left: 15px;
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap
        }

            .tv_live_station .station_item > .links a {
                display: block;
                font-size: 12px;
                margin: 2px 5px
            }

.t_list_icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 2px solid #f1f1f1;
    margin-bottom: 30px;
    padding-bottom: 20px
}

    .t_list_icon li {
        width: 16.666%;
        border: 1px solid #f1f1f1
    }

        .t_list_icon li a {
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            flex-direction: column;
            padding: 10px 0
        }

            .t_list_icon li a img {
                margin-top: 5px;
                max-width: 80px
            }

.tv_live_container_vid {
    margin: 20px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start
}

    .tv_live_container_vid .left_bann {
        width: 20%
    }

        .tv_live_container_vid .left_bann > .tit {
            background: green;
            color: #fff;
            text-transform: capitalize;
            padding: 15px 5px;
            font-weight: 600;
            font-size: 18px
        }

        .tv_live_container_vid .left_bann .link_scroll {
            width: 100%;
            height: 1000px;
            overflow: auto
        }

            .tv_live_container_vid .left_bann .link_scroll a {
                display: block;
                padding: 10px 5px;
                border-bottom: 1px solid #f1f1f1
            }

                .tv_live_container_vid .left_bann .link_scroll a:hover {
                    background: #f1f1f150
                }

    .tv_live_container_vid .right_content {
        width: 80%;
        padding-left: 10px
    }

        .tv_live_container_vid .right_content .vid_content {
            margin-bottom: 20px
        }

            .tv_live_container_vid .right_content .vid_content iframe {
                width: 100%;
                height: 600px
            }

        .tv_live_container_vid .right_content .video_main_info .title {
            margin-bottom: 20px;
            border-bottom: 1px solid #f1f1f1;
            padding: 15px 0;
            text-transform: capitalize
        }

            .tv_live_container_vid .right_content .video_main_info .title h2 {
                font-weight: 600
            }

        .tv_live_container_vid .right_content .video_main_info .week_times {
            display: block;
            width: 100%
        }

            .tv_live_container_vid .right_content .video_main_info .week_times .scroll_tab {
                display: block;
                width: 100%;
                overflow: auto;
                padding: 10px 0
            }

            .tv_live_container_vid .right_content .video_main_info .week_times .tabs {
                display: -webkit-box;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -webkit-align-items: center;
                align-items: center
            }

                .tv_live_container_vid .right_content .video_main_info .week_times .tabs a {
                    text-transform: capitalize;
                    padding: 5px 8px
                }

                    .tv_live_container_vid .right_content .video_main_info .week_times .tabs a:hover {
                        background: green;
                        color: #fff
                    }

                .tv_live_container_vid .right_content .video_main_info .week_times .tabs .active {
                    background: green;
                    color: #fff
                }

            .tv_live_container_vid .right_content .video_main_info .week_times .week_times_schedule_ul {
                margin: 15px 0;
                -webkit-column-count: 2;
                column-count: 2;
                border: 1px solid #f1f1f1
            }

                .tv_live_container_vid .right_content .video_main_info .week_times .week_times_schedule_ul li {
                    border-bottom: 1px solid #f1f1f1
                }

                    .tv_live_container_vid .right_content .video_main_info .week_times .week_times_schedule_ul li:hover {
                        background: #f1f1f130
                    }

                    .tv_live_container_vid .right_content .video_main_info .week_times .week_times_schedule_ul li a {
                        display: -webkit-box;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: start;
                        -webkit-align-items: flex-start;
                        align-items: flex-start;
                        padding: 8px 0
                    }

                        .tv_live_container_vid .right_content .video_main_info .week_times .week_times_schedule_ul li a i {
                            width: 50px;
                            text-align: center
                        }

                        .tv_live_container_vid .right_content .video_main_info .week_times .week_times_schedule_ul li a em {
                            margin-left: 10px;
                            width: 90%
                        }

.tv_live_fixed_container {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    overflow: auto;
    z-index: 100000;
    background: #fff;
    padding-top: 10px
}

    .tv_live_fixed_container .tv_live_fixed_main {
        padding: 10px 10px 20px 10px
    }

        .tv_live_fixed_container .tv_live_fixed_main .top_rec_container .t_list_icon li {
            width: 33.333%
        }

            .tv_live_fixed_container .tv_live_fixed_main .top_rec_container .t_list_icon li i {
                font-size: 12px
            }

        .tv_live_fixed_container .tv_live_fixed_main .fixed_links_view {
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap
        }

            .tv_live_fixed_container .tv_live_fixed_main .fixed_links_view a {
                display: inline-block;
                padding: 5px 0;
                width: 20%;
                display: block;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                text-align: center;
                margin-bottom: 8px
            }

            .tv_live_fixed_container .tv_live_fixed_main .fixed_links_view .active {
                background: green;
                color: #fff
            }

.two_belligerent_parties {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 1rem;
    background: #f1f1f1;
    width: 100%;
    margin: 1rem auto;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

    .two_belligerent_parties .left {
        background: #fff;
        width: 32%;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        height: 10rem;
        padding: 1rem;
        border-top: 3px solid green;
        border-radius: 2px
    }

        .two_belligerent_parties .left img {
            width: 100px
        }

        .two_belligerent_parties .left span {
            display: block;
            width: 80%;
            padding-left: 1rem
        }

            .two_belligerent_parties .left span i {
                display: block;
                color: #999;
                font-size: 14px;
                margin-top: .4rem
            }

            .two_belligerent_parties .left span b {
                font-size: 20px;
                color: #000
            }

    .two_belligerent_parties .mid {
        height: 10rem;
        line-height: 10rem;
        background: #fff;
        width: 32%;
        text-align: center;
        font-size: 36px;
        font-weight: 600;
        text-transform: uppercase;
        border-top: 3px solid green;
        border-radius: 2px
    }

    .two_belligerent_parties .right {
        height: 10rem;
        background: #fff;
        width: 32%;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        padding: 1rem;
        border-top: 3px solid green;
        border-radius: 2px
    }

        .two_belligerent_parties .right img {
            width: 100px
        }

        .two_belligerent_parties .right span {
            display: block;
            width: 80%;
            padding-left: 1rem
        }

            .two_belligerent_parties .right span b {
                font-size: 20px;
                color: #000
            }

            .two_belligerent_parties .right span i {
                display: block;
                color: #999;
                font-size: 14px;
                margin-top: .4rem
            }

@media  {
    .week-live_block_container .week_live_table .row .team .t_left b {
      
    }

    .both_sides_team_vs_container .head .left .link h3, .both_sides_team_vs_container .head .right .link h3 {
        display: none
    }

    .both_sides_team_vs_container .head .mid h2 {
        font-size: 14px
    }

    .substation_top_news_block {
        display: block
    }

        .substation_top_news_block .news_special_block_container {
            width: 100%
        }

    .video_news_detail_container .vid_left .v_list .item .link {
        width: 45%
    }

    .tv_live_container_vid .right_content .vid_content iframe {
        height: 300px
    }

    .tv_live_container_vid .right_content .video_main_info .week_times .week_times_schedule_ul li a {
        display: block
    }

        .tv_live_container_vid .right_content .video_main_info .week_times .week_times_schedule_ul li a i {
            display: block;
            margin-bottom: 15px;
            font-size: 12px;
            color: #999
        }

        .tv_live_container_vid .right_content .video_main_info .week_times .week_times_schedule_ul li a em {
            font-size: 14px;
            display: block;
            margin: 0;
            padding: 5px
        }

    .two_belligerent_parties .left img, .two_belligerent_parties .right img {
        width: 90%;
        max-width: 120px;
    }
}

@media (max-width:768px) {
    .two_belligerent_parties .left, .two_belligerent_parties .mid, .two_belligerent_parties .right {
        height: 7rem
    }

    .two_belligerent_parties .mid {
        line-height: 7rem
    }

    .v_team_info_container {
        display: block
    }

        .v_team_info_container .v_left {
            width: 100%;
            height: auto
        }

        .v_team_info_container .v_mid {
            width: 100%;
            height: auto
        }

        .v_team_info_container .v_right {
            width: 100%;
            height: auto
        }

    .live_news_container {
        display: block;
        padding: 0 10px
    }

        .live_news_container .new_left {
            width: 100%
        }

        .live_news_container .new_right {
            width: 100%
        }

    .filter_btn_link_view {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap
    }

        .filter_btn_link_view a {
            margin-bottom: 10px
        }

    .cub_main_block {
        padding: 10px 10px
    }

    .three_news_cont {
        display: block;
        padding: 0 10px
    }

        .three_news_cont .news_special_block_container {
            width: 100%
        }

    .ranking_table_container .layui-table .team {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

    .layui-table td, .layui-table th {
        padding: 4px
    }

    .ranking_order_head h2 {
        font-size: 18px
    }

    .live_news_container .new_left {
        padding: 0
    }

    .fix_font-size td, .fix_font-size th {
        padding: 4px;
        font-size: 12px
    }

        .fix_font-size td .rank_teams .name, .fix_font-size th .rank_teams .name {
            display: none !important
        }

    .fix_font-size tbody tr td:last-child, .fix_font-size thead tr th:last-child {
        display: none
    }

    .video_news_detail_container .vid_left {
        padding: 0 10px
    }

    .video_news_detail_container .vid_right {
        padding: 0 10px
    }

    .points_ranking_container {
        display: block
    }

        .points_ranking_container .point_left {
            width: 100%;
            margin-bottom: 15px;
            padding: 0 10px
        }

        .points_ranking_container .point_right {
            width: 100%;
            padding: 0 10px
        }

    .nav_bar_column_block {
        padding: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap
    }

        .nav_bar_column_block a {
            display: block;
            width: 16.666%;
            padding: 10px 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis
        }

    .tv_live_container .t_list_icon, .tv_live_container .tv_live_station, .tv_live_container .tv_live_times {
        display: none
    }

    .tv_live_container .wap_filter_view {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex
    }
}

@media (max-width:992px) {
    .header .header_bg .header_main {
        padding: 0 10px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between
    }

        .header .header_bg .header_main .link_nav {
            display: none
        }

        .header .header_bg .header_main .wap_menu_btn {
            display: block
        }

    .header .header_links_view {
        display: none
    }

    .footer .footer_main {
        width: 100%;
        padding: 0 10px
    }

        .footer .footer_main .links h2 {
            font-size: 18px;
            font-weight: 600
        }

    .scroll_top {
        display: none
    }

    .v_team_info_container .v_left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
        text-align: center
    }

        .v_team_info_container .v_left .img {
            margin-bottom: 10px
        }

    .substation_index_container {
        display: block
    }

        .substation_index_container .substation_left {
            width: 100%;
            padding: 10px
        }

        .substation_index_container .substation_right {
            width: 100%;
            padding: 10px
        }

    .video_news_detail_container {
        display: block
    }

        .video_news_detail_container .vid_left {
            width: 100%
        }

        .video_news_detail_container .vid_right {
            width: 100%
        }

    .two_belligerent_parties .left {
        display: block;
        text-align: center
    }

        .two_belligerent_parties .left span i {
            display: none
        }

    .two_belligerent_parties .right {
        display: block;
        text-align: center
    }

        .two_belligerent_parties .right span i {
            display: none
        }
}

@media (max-width:1200px) {
    .body_container_main, .header .header_main, .live_bar_swiper_container, .tv_live_container {
        width: 100%
    }
}

.md-footer {
    border-top: 1px solid #ececec;
    background-color: #fff;
    margin-top: 30px
}

.md-footer__inner {
    margin: 0 auto;
    padding-bottom: 30px
}

    .md-footer__inner:after, .md-footer__inner:before {
        content: " ";
        display: table
    }

    .md-footer__inner:after {
        clear: both
    }

.md-footer .md-footer__inner {
}

.md-footer .footer-wrapper {
    padding-bottom: 18px;
    padding: 24px 100px 18px
}

    .md-footer .footer-wrapper:after, .md-footer .footer-wrapper:before {
        content: " ";
        display: table
    }

    .md-footer .footer-wrapper:after {
        clear: both
    }

.md-footer .md-footer-meta-wrapper {
    width: 650px;
    float: left
}

    .md-footer .md-footer-meta-wrapper p {
        text-align: center;
        color: #999;
        font-size: 14px
    }

.md-footer--meta {
    padding: 0;
    margin-bottom: 0
}

    .md-footer--meta li {
        display: inline-block;
        margin: 18px 0 24px
    }

        .md-footer--meta li:before {
            content: "|";
            color: #ddd;
            font-size: 12px
        }

        .md-footer--meta li:first-child:before {
            content: none
        }

        .md-footer--meta li a {
            padding: 0 14px;
            color: #333;
            font-size: 14px
        }

.md-footer .md-footer-qr-code-wrapper {
    float: right
}

    .md-footer .md-footer-qr-code-wrapper:after, .md-footer .md-footer-qr-code-wrapper:before {
        content: " ";
        display: table
    }

    .md-footer .md-footer-qr-code-wrapper:after {
        clear: both
    }

    .md-footer .md-footer-qr-code-wrapper .md-footer-qr-code {
        float: left;
        margin: 0 15px
    }

        .md-footer .md-footer-qr-code-wrapper .md-footer-qr-code img {
            width: 85px;
            height: 85px
        }

        .md-footer .md-footer-qr-code-wrapper .md-footer-qr-code .qr-code-desc {
            text-align: center;
            font-size: 14px;
            color: #999;
            margin: 10px 0 0
        }

.md-footer .footer-link-wrapper {
    margin-bottom: 16px;
    background-color: #fff;
    border: 1px solid #eee;
    line-height: 20px;
    padding: 0 8px
}

.md-footer .footer-link {
    border-bottom: 1px dashed #e5e5e5;
    font-size: 13px;
    color: #999
}

    .md-footer .footer-link:last-of-type {
        border-bottom: 0
    }

    .md-footer .footer-link:after, .md-footer .footer-link:before {
        content: " ";
        display: table
    }

    .md-footer .footer-link:after {
        clear: both
    }

    .md-footer .footer-link .desc {
        text-indent: 17px;
        margin-top: 11px;
        color: #000;
        float: left;
        width: 85px;
        padding-top: 2px
    }

        .md-footer .footer-link .desc a {
            color: #000
        }

            .md-footer .footer-link .desc a:hover {
                color: #00a853
            }

    .md-footer .footer-link .links {
        float: left;
        margin-top: 11px;
        margin-bottom: 11px
    }

        .md-footer .footer-link .links li {
            display: inline-block
        }

            .md-footer .footer-link .links li.link-friendship {
                color: #00a853;
                margin-left: 30px
            }

            .md-footer .footer-link .links li a {
                margin-left: 18px;
                text-align: center;
                display: inline-block;
                color: #999
            }

                .md-footer .footer-link .links li a:hover {
                    color: #00a853
                }

.md-footer .footer-badge {
    text-align: center
}
