/* 公共 */
* {
    padding: 0;
    margin: 0;
}
html,
body {
    height: 100%;
}

body {
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    background: #F5F5F5;
    color: #555555;
    min-width: 1200px;
}

a {
    text-decoration: none;
    color: #555555;
} 
a:hover {
    color: #1C4276!important;
}
a:visited {
    color: #555555;
    text-decoration: none;
}

li {
    list-style: none;
}

/* 块级元素 */
.yingguan-el-block {
    display: block;
}
.yingguan-el-block-none {
    display: none;
}

/* 定位 */
.yingguan-el-position-relative {
    position: relative
 }

/* 弹性布局 */
.yingguan-el-flex {
    display: flex;
}
.yingguan-el-flex-wrap {
    flex-wrap: wrap;
}
.yingguan-el-align-items-start {
    align-items: start;
}
.yingguan-el-align-items-center {
    align-items: center;
}
.yingguan-el-justify-content-center {
    justify-content: center;
}
.yingguan-el-justify-content-start {
    justify-content: start;
}
.yingguan-el-justify-content-end {
    justify-content: end;
}
.yingguan-el-justify-content-space-around {
    justify-content: space-around;
}
.yingguan-el-justify-content-space-between {
    justify-content: space-between;
}

/* 文字行省略号 */
.yingguan-el-text-overflow-1 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.yingguan-el-text-overflow-2 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* 滚动条 */
.yingguan-el-overflow-y {
    overflow-y: auto;
}
.yingguan-el-overflow-y::-webkit-scrollbar {
    height: 0;
    width: 0;
    color: transparent;
}

/* 字体格式 */
.yingguan-el-font-bold {
    font-weight: bold;
}
.yingguan-el-font-normal {
    font-weight: normal!important;
}

/* 背景颜色 */
.yingguan-el-back-white {
    background: #ffffff;
}

/* 手型 */
.yingguan-el-cursor-pointer {
    cursor: pointer;
}

/* 字体大小 */
.yingguan-el-font-14 {
    font-size: 14px;
}
.yingguan-el-font-16 {
    font-size: 16px;
}
.yingguan-el-font-18 {
    font-size: 18px;
}
.yingguan-el-font-20 {
    font-size: 20px;
}
.yingguan-el-font-22 {
    font-size: 22px;
}
.yingguan-el-font-24 {
    font-size: 24px;
}
.yingguan-el-font-40 {
    font-size: 40px;
}

/* 字体颜色 */
.yingguan-el-font-lightgray {
    color: #EEF1F9!important;
}
.yingguan-el-font-grey {
    color: #cccccc!important;
}
.yingguan-el-font-darkgrey {
    color: #333333!important;
}
.yingguan-el-font-blue {
    color: blue!important;
}

/* 外边距 */
.yingguan-el-mg-l-5 {
    margin-left: 5px;
}
.yingguan-el-mg-l-20 {
    margin-left: 20px;
}
.yingguan-el-mg-r-5 {
    margin-right: 5px!important;
}
.yingguan-el-mg-r-10 {
    margin-right: 10px!important;
}
.yingguan-el-mg-r-15 {
    margin-right: 15px!important;
}
.yingguan-el-mg-r-20 {
    margin-right: 20px!important;
}
.yingguan-el-mg-r-30 {
    margin-right: 30px!important;
}
.yingguan-el-mg-t-5 {
    margin-top: 5px!important;
}
.yingguan-el-mg-t-8 {
    margin-top: 8px!important;
}
.yingguan-el-mg-t-10 {
    margin-top: 10px!important;
}
.yingguan-el-mg-t-15 {
    margin-top: 15px!important;
}
.yingguan-el-mg-t-20 {
    margin-top: 20px;
}
.yingguan-el-mg-t-30 {
    margin-top: 30px;
}
.yingguan-el-mg-l-10 {
    margin-left: 10px;
}
.yingguan-el-mg-l-15 {
    margin-left: 15px!important;
}
.yingguan-el-mg-b-20 {
    margin-bottom: 20px!important;
}

/* 内边距 */
.yingguan-el-pd-20 {
    padding: 20px;
}
.yingguan-el-pd-t-15 {
    padding-top: 15px;
}
.yingguan-el-pd-b-15 {
    padding-bottom: 15px;
}
.yingguan-el-pd-b-20 {
    padding-bottom: 20px;
}

/* 宽度 */
.yingguan-el-w-baifenbi-100 {
    width: 100%!important;
}
.yingguan-el-width-1200-center {
    width: 1200px!important;
    margin: 0 auto;
}
.yingguan-el-width-150 {
    width: 150px!important;
}
.yingguan-el-width-175 {
    width: 175px!important;
}

/* 居左中右 */
.yingguan-el-center {
    text-align: center;
}
.yingguan-el-left {
    text-align: left;
}
.yingguan-el-right {
    text-align: right;
}

/* 浮动 */
.yingguan-el-float-left {
    float: left;
}
.yingguan-el-float-right {
    float: right;
}

/* 宽度 */
.yingguan-el-width-baifenbi-100 {
    width: 100%!important;
}
.yingguan-el-width-baifenbi-96 {
    width: 96%!important;
}
.yingguan-el-width-150 {
    width: 150px!important;
}
.yingguan-el-width-175 {
    width: 175px!important;
}

/* 高度 */
.yingguan-el-height-44 {
    height: 44px;
}
.yingguan-el-height-50 {
    height: 50px;
}

/* 公共布局 */
.yingguan-main-left {
    width: 830px;
}
.yingguan-main-right {
    width: 355px;
    margin-left: 15px;
}

/* 头部 */
.yingguan-header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 5px 10px #f0f0f0;
}
.yingguan-header__logo {
    width: 150px;
    height: 60px;
    display: block;
    margin-left: 30px;
}
.yingguan-header__menu {
    display: flex;
    margin-left: 50px;
}

.yingguan-header__menu > a {
    padding: 0 30px;
    height: 46px;
    line-height: 46px;
    display: block;
    text-align: center;
    color: #555555;
    font-size: 18px;
}
.yingguan-header__menu > a:hover {
    color: #555555!important;
}
.yingguan-header__menu--active {
    background: #1C4276;
    color: #ffffff!important;
}
.yingguan-header__menu > a.yingguan-header__menu--active:hover {
    color: #ffffff!important;
}

/* 赛程分类 */
.yingguan-match-cate {
    background: #1C4276;
    height: 44px;
    line-height: 44px;
    color: #ffffff;
}
.yingguan-match-cate__title {
    width: 120px;
    font-weight: normal;
    margin-left: 15px;
}
.yingguan-match-cate__list {
    width: 83%;
    position: relative;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    margin-left: 10px;
    background: #1C4276;
}
.yingguan-match-cate__name {
    padding: 0px 10px;
    color: #ffffff!important;
}
.yingguan-match-cate__name:hover {
    color: #ffffff!important;
}
.yingguan-match-cate__name--active {
    background: #c6e9d3;
    color: #555555!important;
}
.yingguan-match-cate__name--active:hover {
    color: #555555!important;
}
.yingguan-match-cate__extend-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: none;
    top: 12px;
    left: 3px;
    background: url(../images/extend.png) no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.yingguan-match-cate__extend-icon--show {
    transform-origin : center center;
    transform        : rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform   : rotate(180deg);
    -ms-transform    : rotate(180deg);
    -o-transform     : rotate(180deg);
    transition       : transform 0.3s;
    -moz-transition  : -moz-transform 0.3s;
    -o-transition    : -o-transform 0.3s;
    -ms-transition   : -ms-transform 0.3s;
}
.yingguan-match-cate__extend-icon--hide {
    transform-origin : center center;
    transform        : rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform   : rotate(deg);
    -ms-transform    : rotate(0deg);
    -o-transform     : rotate(0deg);
    transition       : transform 0.3s;
    -moz-transition  : -moz-transform 0.3s;
    -o-transition    : -o-transform 0.3s;
    -ms-transition   : -ms-transform 0.3s;
}

/* 当前位置 */
.yingguan-current-location {
    display: flex;
}
.yingguan-current-location > li:not(:first-child) {
    margin-left: 5px;
}

/* 赛程列表 */
.yingguan-match {
    background: #ffffff;
    padding: 0 15px 15px 15px;
}
.yingguan-match__title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.yingguan-match__cate {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #EFEFEF;
}
.yingguan-match__cate-content {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: -15px;
    margin-left: -15px;
    margin-bottom: 15px;
}
.yingguan-match__cate-item {
    border: 1px solid #1C4276;
    padding: 6px 15px;
    margin-left: 15px;
    margin-top: 15px;
}
.yingguan-match__cate-item:hover {
    color: #ffffff!important;
    background: #1C4276;
}
.yingguan-match__cate-item:hover .yingguan-match__cate-name {
    color: #ffffff!important;
}
.yingguan-match__cate--active {
    background: #1C4276;
}
.yingguan-match__cate--active .yingguan-match__cate-name {
    color: #ffffff!important;
}
.yingguan-match__extend-icon {
    width: 24px;
    height: 24px;
    display: none;
    background: url(../images/extend.png) no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.yingguan-match__extend-icon--show {
    transform-origin : center center;
    transform        : rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform   : rotate(180deg);
    -ms-transform    : rotate(180deg);
    -o-transform     : rotate(180deg);
    transition       : transform 0.3s;
    -moz-transition  : -moz-transform 0.3s;
    -o-transition    : -o-transform 0.3s;
    -ms-transition   : -ms-transform 0.3s;
}
.yingguan-match__extend-icon--hide {
    transform-origin : center center;
    transform        : rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform   : rotate(deg);
    -ms-transform    : rotate(0deg);
    -o-transform     : rotate(0deg);
    transition       : transform 0.3s;
    -moz-transition  : -moz-transform 0.3s;
    -o-transition    : -o-transform 0.3s;
    -ms-transition   : -ms-transform 0.3s;
}
.yingguan-match__date {
    font-weight: normal;
    font-size: 15px;
    padding-left: 18px;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 10px;
}
.yingguan-match__date::before {
    position: relative;
    top: 16px;
    left: -18px;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1C4276;
}
.yingguan-match__item-list {
    display: flex;
    align-items: center;
    padding: 0 15px;
    line-height: 40px;
}
.yingguan-match__item-list:nth-of-type(even) {
    background: #F7F7F7;
}
.yingguan-match__time {
    width: 15%;
}
.yingguan-match__label {
    width: 15%;
}
.yingguan-match__team {
    width: 60%;
    display: flex;
    align-items: center;
}
.yingguan-match__home-team {
    width: 120px;
    text-align: right;
}
.yingguan-match__home-branch {
    width: 30px;
    text-align: right;
}
.yingguan-match__vs {
    width: 30px;
    text-align: center;
}
.yingguan-match__visitor {
    display: flex;
}
.yingguan-match__visitor-team {
    width: 120px;
    text-align: left
}
.yingguan-match__visitor-branch {
    width: 30px;
    text-align: left;
}
.yingguan-match__team-icon {
    width: 24px;
    height: 24px;
}
.yingguan-match__play-btn {
    width: 70px;
    height: 24px;
    line-height: 24px;
    display: block;
    text-align: center;
    background: #d4e0f1;
    border: 1px solid #1C4276;
    color: #1C4276!important;
}
.yingguan-match__soon-btn {
    display: block;
    text-align: center;
    width: 70px;
    height: 24px;
    line-height: 24px;
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    color: #999999!important;
}
.yingguan-match__empty-tip {
    text-align: center;
    color: #cccccc!important;
    padding-top: 13px;
}
.yingguan-match__tip {
    text-align: center;
    color: #999999;
}

/* 通用侧栏文章列表 */
.yingguan-side-article-list {
    padding: 10px 15px;
    background: #ffffff;
}
.yingguan-side-article-list__label {
    font-weight: normal;
    font-size: 15px;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 10px;
}
.yingguan-side-article-list__label-name {
    padding: 12px 12px;
    width: 100%;
    background: #1C4276;
    color: #ffffff;
}
.yingguan-side-article-list__centent {
    margin-top: 8px;
}
.yingguan-side-article-list__item {
    line-height: 28px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/* 通用相关文章列表 */
.yingguan-relevant-article-list {
    padding: 10px 15px;
    background: #ffffff;
}
.yingguan-relevant-article-list__label {
    font-weight: normal;
    font-size: 15px;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 10px;
}
.yingguan-relevant-article-list__label-name {
    padding: 12px 12px;
    width: 100%;
    background: #1C4276;
    color: #ffffff;
}
.yingguan-relevant-article-list__centent {
    margin-top: 8px;
}
.yingguan-relevant-article-list__item {
    line-height: 36px;
}
.yingguan-relevant-article-list__tag {
    background: #d4e0f1;
    color: #1C4276!important;
    max-width: 120px;
    padding: 3px 6px;
}
.yingguan-relevant-article-list__title {
    margin-left: 5px;
}

/* 通用侧栏赛事列表 */
.yingguan-side-match-list {
    padding: 10px 15px;
    background: #ffffff;
}
.yingguan-side-match-list__label {
    font-weight: normal;
    font-size: 15px;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 10px;
}
.yingguan-side-match-list__label-name {
    padding: 12px 12px;
    width: 100%;
    background: #1C4276;
    color: #ffffff;
}
.yingguan-side-match-list__centent {
    margin-top: 0px;
    margin-bottom: 8px;
}
.yingguan-side-match-list__item {
    display: block;
    border: 2px solid #F5F5F5;
    padding: 15px;
    margin-top: 15px;
}
.yingguan-side-match-list__home-team {
    width: 44%;
}
.yingguan-side-match-list__vs {
    width: 22px;
    text-align: center;
}
.yingguan-side-match-list__visitor-team {
    width: 44%;
}
.yingguan-side-match-list__team-icon {
    width: 24px;
    height: 24px;
}

/* 通用侧栏标签列表 */
.yingguan-side-tag-list {
    padding: 10px 15px;
    background: #ffffff;
}
.yingguan-side-tag-list__label {
    font-weight: normal;
    font-size: 15px;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 10px;
}
.yingguan-side-tag-list__label-name {
    padding: 12px 12px;
    width: 100%;
    background: #1C4276;
    color: #ffffff;
}
.yingguan-side-tag-list__centent {
    margin-top: 0px;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
}
.yingguan-side-tag-list__item {
    background: #d4e0f1;
    color: #1C4276!important;
    max-width: 70px;
    padding: 3px 6px;
    margin-left: 15px;
    margin-top: 15px;
    text-align: center;
}


/* 通用分页 */
.pagination {
    display: flex;
    justify-content: center;
    padding: 3px;
    text-align: center;
    margin-top: 15px;
    align-items: center;
}

.pagination li {
    border: 1px solid #999999;
    margin: 5px;
    text-decoration: none;
    font-size: 16px;
}

.pagination li a {
    display: inline-block;
    padding: 5px 15px;
    color: #999999;
}

.pagination li:hover {
    border: 1px solid #1C4276;
    color: #1C4276;
}

.pagination li:active {
    border: 1px solid #1C4276;
    color: #1C4276 !important;
}

.pagination li.active {
    color: #FFFFFF !important;
    background: #1C4276 !important;
    border: 1px solid #1C4276;
    padding: 5px 15px;
}

.pagination .disabled {
    color: #999999;
}

.pagination .disabled span {
    height: 28px;
    line-height: 28px;
    padding: 0 15px;
}


/* 底部 */
.yingguan-footer {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #555555;
}
.yingguan-link {
    color: #555555;
    margin-bottom: 20px;
}
.yingguan-link__list {
    margin-top: 10px;
}
.yingguan-link__list > a {
    font-size: 12px;
    color: #555555;
    margin-right: 30px;
}
.yingguan-introduce {
    color: #555555;
    text-align: center;
}
.yingguan-copyright {
    margin-top: 20px;
    color: #555555;
    text-align: center;
}


/* 回到顶部 */
.yingguan-top {
    position: fixed;
    bottom: 50px;
    right: 260px;
    z-index: 9998;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #6d6c6c;
    display: none;
    text-align: center;
}
.yingguan-top__icon {
    width: 30px;
    position: relative;
    top: 10px;
    height: 30px;
    cursor: pointer;
}