@charset "utf-8"; /* ----------
css
---------- */
/* ****************** 야구리그안내 :: 참가팀소개 ********************** */
.team-tab-list {
    width: 100%;
    margin-bottom: 50px;
    font-size: 0;
    text-align: center;
}

.team-tab-list > li {
    display: inline-block;
    width: 25%;
    max-width: 454px;
    border: 1px solid #dedede;
    background-color: #f5f5f5;
    /*border-radius: 0 30px 30px 0;
    -moz-border-radius: 0 30px 30px 0;
    -webkit-border-radius: 0 30px 30px 0;
    -o-border-radius: 0 30px 30px 0;
    -webkit-box-sizing: border-box;*/
    box-sizing: border-box;
}

.team-tab-list > li:first-child {
    border-radius: 30px 0 0 30px;
    -moz-border-radius: 30px 0 0 30px;
    -webkit-border-radius: 30px 0 0 30px;
    -o-border-radius: 30px 0 0 30px;
}

.team-tab-list > li:last-child {border-radius: 0 30px 30px 0;
    -moz-border-radius: 0 30px 30px 0;
    -webkit-border-radius: 0 30px 30px 0;
    -o-border-radius: 0 30px 30px 0;
    -webkit-box-sizing: border-box;
}

.team-tab-list > li + li {margin-left:-1px;}

.team-tab-list > li a {
    display: block;
    font-size: 18px;
    line-height: 44px;
    text-align: center;
    color: #000;
    letter-spacing: -0.65px;
}

.team-tab-list > li.selected {
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.team-tab-list > li.selected a {
    color: #fff;
}

.team-list-box {
    width: 100%;
}

.team-list-con {
    position: relative;
    width: 100%;
    margin-top: -1px;
}

.team-list-con-inner {
    display: table;
    width: 100%;
}

.team-list-con-inner > h3, .team-list-con-inner > div {
    display: table-cell;
    vertical-align: middle;
    height: 89px;
    padding: 5px 0;
    border: 1px solid #ddd;
    border-left: 0;
    border-top: 0;
    text-align: center;
    width: 12.5%;
}

.team-list-con-inner.first > h3, .team-list-con-inner.first > div {
    border-top: 1px solid #ddd;
}

.team-list-con-inner > h3 {
    border-left: 1px solid #ddd;
    background-color: #eee;
    font-size: 18px;
    color: #000;
    font-weight: 400;
    letter-spacing: -0.65px;
}

.team-list-con-inner > div p {
    font-size: 13.5px;
    line-height: 16px;
    color: #333;
    letter-spacing: -0.65px;
    word-break: break-all;
}

.team-list-con-inner:hover > h3 {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.team-list-con-inner:hover > div {
    border-top-color: var(--main-color);
    border-bottom-color: var(--main-color);
}

.team-list-con-inner:hover > div:last-child {
    border-right-width: 2px;
    border-right-color: var(--main-color);
}

.team-list-con:hover:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
}

.team-list-con:hover:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
}

/* ****************** 경기결과 ********************** */
#matchResultContainer {
    width: 100%;
}

.match-result-container {
    width: 100%;
}

.match-result-tab-content-wrapper {
    width: 100%;
    padding-bottom: 100px;
}

.match-result-tab-content-wrapper .comm-tit {
    line-height: 40px;
}

.match-result-tab-content-wrapper .comm-tit:before {
    top: 15px;
}

.match-select-box {
    float: right;
}

.match-select-box > select {
    width: 160px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #ddd;
    font-size: 13.5px;
    color: #555;
    padding-left: 15px;
    line-height: 40px;
    letter-spacing: -0.25px;
    background: #fff url(../images/content/select_arrow.png) no-repeat 90% center;
    border-radius: 7px;
    -moz-appearance: none;
    appearance: none;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
}

/* -------- 전체 경기결과 -------- */
.total-match-result-tbl {
    width: 100%;
    border-collapse: separate;
}

.total-match-result-tbl thead th {
    font-size: 16px;
    line-height: 26px;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ddd;
    border-top: 2px solid #222;
    padding: 10px 0;
}

.total-match-result-tbl tbody th, .total-match-result-tbl tbody td {
    font-size: 15px ;
    line-height: 26px;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 11px 0;
    vertical-align: middle;
}

.total-match-result-tbl tbody th {
    background-color: #eee;
}

.total-match-result-tbl tbody td {
    background-color: #fff;
}

.total-match-result-tbl .record-detail-btn {
    display: inline-block;
    width: 80px;
    height: 30px;
    line-height: 30px;
    font-size: 13.5px;
    color: #fff;
    letter-spacing: -0.5px;
    background-color: #333;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
}

.total-match-result-tbl tbody tr:hover .record-detail-btn {
    background-color: var(--main-color);
}

/* hover 시 border */
.total-match-result-tbl thead th, .total-match-result-tbl tbody th, .total-match-result-tbl tbody td {
    border-left: 0;
    border-top: 1px solid transparent;
}

.total-match-result-tbl thead th {
    border-top: 2px solid #222;
}

.total-match-result-tbl thead tr th:first-child {
    border-left: 1px solid #ddd;
}

.total-match-result-tbl tbody tr th:first-child {
    border-left: 1px solid #ddd;
}

.total-match-result-tbl tbody tr:hover th, .total-match-result-tbl tbody tr:hover td {
    border-top: 1px solid var(--main-color);
    border-bottom-width: 1px;
    border-bottom-color: var(--main-color);
}

.total-match-result-tbl tbody tr:hover th:first-child {
    border-left: 1px solid var(--main-color);
}

.total-match-result-tbl tbody tr:hover td:last-child {
    border-right: 1px solid var(--main-color);
}

/* -------- 전체 경기결과 :: 경기결과 -------- */
.result-box {
    width: 100%;
    display: table;
}

.result-box > li {
    display: table-cell;
    vertical-align: top;
    width: 184px;
}

.result-box > li.team-left {
    text-align: right;
}

.result-box > li.team-right {
    text-align: left;
}

.result-box > li.score {
    width: 80px;
    font-size: 20px;
    font-weight: 600;
}

.result-box > li.team-left strong, .result-box > li.team-left span {
    float: right;
}

.result-box > li.team-right strong, .result-box > li.team-right span {
    float: left;
}

.result-box > li strong {
    font-weight: 400;
    margin: 0 7px;
    max-width: 95px;
    word-break: break-all;
}

.result-box > li span {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    background-color: #eee;
    border: 1px solid #dedede;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    -o-border-radius: 100%;
    text-align: center;
}

.result-box > li span img {
    max-width: 20px;
    max-height: 20px;
}

.result-box > li em.win-mark {
    color: #ec1f4a;
    font-weight: 600;
}

/* -------- 팀/선수 경기결과 -------- */
.team-match-result-tbl {
    width: 100%;
    border-collapse: separate;
}

.team-match-result-tbl thead th {
    font-size: 16px;
    line-height: 26px;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ddd;
    border-top: 2px solid #222;
    padding: 10px 0;
}

.team-match-result-tbl tbody td {
    font-size: 14px ;
    line-height: 20px;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 11px 0;
    vertical-align: middle;
    background-color: #fff;
}

.team-match-result-tbl tbody td.team, .team-match-result-tbl tbody td.league {
    padding-left: 15px;
    text-align: left;
}

.team-match-result-tbl tbody td.player, .team-match-result-tbl tbody td.count, .team-match-result-tbl tbody td.win, .team-match-result-tbl tbody td.loss, .team-match-result-tbl tbody td.draw, .team-match-result-tbl tbody td.per, .team-match-result-tbl tbody td.score {
    font-weight: 600;
}

.team-match-result-tbl .record-detail-btn {
    display: inline-block;
    width: 80px;
    height: 30px;
    line-height: 30px;
    font-size: 13.5px;
    color: #fff;
    letter-spacing: -0.5px;
    background-color: #333;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
}

.team-match-result-tbl tbody tr:hover .record-detail-btn {
    background-color: var(--main-color);
}

/* hover 시 border */
.team-match-result-tbl thead th, .team-match-result-tbl tbody th, .team-match-result-tbl tbody td {
    border-left: 0;
    border-top: 1px solid transparent;
}

.team-match-result-tbl thead th {
    border-top: 2px solid #222;
}

.team-match-result-tbl thead tr th:first-child {
    border-left: 1px solid #ddd;
}

.team-match-result-tbl tbody tr th:first-child {
    border-left: 1px solid #ddd;
}

.team-match-result-tbl tbody tr:hover th, .team-match-result-tbl tbody tr:hover td {
    border-top: 1px solid var(--main-color);
    border-bottom-width: 1px;
    border-bottom-color: var(--main-color);
}

.team-match-result-tbl tbody tr:hover th:first-child {
    border-left: 1px solid var(--main-color);
}

.team-match-result-tbl tbody tr:hover td:last-child {
    border-right: 1px solid var(--main-color);
}

.team-match-result-tbl.type2 {
    border-collapse: collapse;
}

.team-match-result-tbl.type2 tbody tr:hover td {
    border-top-width: 1px;
    border-top-color: #ddd;
    border-bottom-width: 1px;
    border-bottom-color: #ddd;
}

.team-match-result-tbl.type2 tbody tr:hover td:first-child {
    border-left: 1px solid #ddd;
}

.team-match-result-tbl.type2 tbody tr:hover td:last-child {
    border-right: 1px solid #ddd;
}

.result-box.type2 {
    display: block;
}

.result-box.type2 > p {
    display: block;
}

.result-box.type2 > p strong, .result-box.type2 > p span {
    float: left;
}

.result-box.type2 > p strong {
    font-weight: 400;
    margin: 0 7px;
    max-width: 220px;
}

.result-box.type2 > p span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    background-color: #eee;
    border: 1px solid #dedede;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    -o-border-radius: 100%;
    text-align: center;
}

.result-box.type2 > p span img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 20px;
    max-height: 20px;
}

.loc-team-tab li.selected {
    background-color: #555;
    border: 1px solid #555
}

.loc-team-tab li.selected a {
    color: #fff;
}

/* ****************** 팀/선수 상세보기 ********************** */
#teamViewContainer {
    width: 100%;
}

#teamViewContainer .comm-tit {
    line-height: 40px;
}

#teamViewContainer .comm-tit:before {
    top: 15px;
}

.team-view-sub-tit {
    font-size: 21px;
    line-height: 30px;
    color: #111;
    font-weight: 400;
    letter-spacing: -0.7px;
    margin-bottom: 15px;
}

.team-view-box {
    width: 100%;
    margin-bottom: 20px;
}

.team-view-btn-box {
    float: right;
}

.team-view-btn-box > button {
    float: left;
    width: 89px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    line-height: 40px;
    text-align: left;
    font-size: 13.5px;
    color: #333;
    letter-spacing: -0.7px;
}

.team-view-btn-box > button.next-team {
    border-left: 0;
    text-align: right;
}

.team-view-btn-box > button i {
    vertical-align: middle;
    font-size: 28px;
    line-height: 38px;
}

.team-view-btn-box > .to-team-list {
    float: right;
    width: 100px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background-color: #333;
    text-align: center;
    font-size: 13.5px;
    letter-spacing: -0.7px;
    margin-left: 10px;
}

.team-view-information-box {
    width: 100%;
    margin-bottom: 20px;
}

.team-view-information-box > .team-logo {
    float: left;
    width: 26%;
    height: 287px;
    border: 1px solid #ddd;
    background-color: #fff;
    line-height: 248px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.team-logo > img {
    max-width: 100%;
}

.team-info-tbl-box {
    float: right;
    width: 73%;
}

/* 팀/선수 상세보기 테이블 공통 */
.team-comm-tbl {
    width: 100%;
}

.team-comm-tbl th, .team-comm-tbl td {
    font-size: 15px;
    line-height: 26px;
    text-align: left;
    color: #333;
    letter-spacing: -0.5px;
    padding: 11px 0;
    padding: 15px;
    border: 1px solid #ddd;
    font-weight: 400;
    word-break: break-all;
}

.team-comm-tbl.center th, .team-comm-tbl.center td {
    text-align: center;
    padding-left: 0;
}

.team-comm-tbl th {
    background-color: #eee;
}

.team-comm-tbl td {
    background-color: #fff;
}

.team-comm-tbl td.player-name {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.team-comm-tbl td.player-name a {
    color: inherit;
}

.team-comm-tbl tr:first-child th, .team-comm-tbl tr:first-child td {
    border-top: 2px solid #222;
}

.team-comm-tbl.bort0 tr:first-child th, .team-comm-tbl.bort0 tr:first-child td {
    border-top: 0;
}

/* 스크롤 박스 :: 테이블 */
.team-tbl-tit-box {
    float: left;
    width: 20%;
}

.team-tbl-scroll-box {
    float: left;
    width: 80%;
    overflow-x: scroll;
}

.team-tbl-scroll-inner {
    width: 145%;
    margin-bottom: 10px;
}

.team-tbl-scroll-inner .team-comm-tbl tr th:first-child, .team-tbl-scroll-inner .team-comm-tbl tr td:first-child {
    border-left: 0;
}

/* ****************** 기록실 :: 스크롤 박스 :: 테이블 ********************** */
.ranking-view-box {
    width: 100%;
    position: relative;
}

.ranking-tbl-tit-box {
    float: left;
    width: 37%;
}

.ranking-tbl-tit-box.type2 {
    width: 42%;
}

.ranking-tbl-scroll-box {
    float: left;
    width: 63%;
    overflow-x: scroll;
}

.ranking-tbl-scroll-box.type2 {
    width: 58%;
}

.ranking-tbl-scroll-inner {
    width: 160%;
    margin-bottom: 10px;
}

.ranking-tbl-scroll-inner.type2 {
    width: 200%;
}

.ranking-tbl-scroll-inner .team-match-result-tbl tr th:first-child, .ranking-tbl-scroll-inner .team-match-result-tbl tr td:first-child {
    border-left: 0;
}

.ranking-tbl-scroll-inner .team-match-result-tbl tbody td {
    line-height: 40px;
}

.ranking-tbl-tit-box .team-match-result-tbl .result-box.type2 > p strong {
    max-width: 130px;
    letter-spacing: -0.75px;
}

.ranking-tbl-tit-box .team-match-result-tbl tbody td {
    height: 40px;
}

.ranking-tbl-tit-box .team-match-result-tbl tbody td.team {
    padding-left: 5px;
}

.ranking-tbl-tit-box .team-match-result-tbl tbody td.league {
    padding-left: 0;
    text-align: center;
}

/* 팀 공격순위 */
.ranking-view-box-m {
    display: none;
}

/* ****************** 기록실 :: 스크롤 박스 :: 테이블 슬라이드 ********************** */
.ranking-tbl-slide-box {
    float: left;
    width: 63%;
}

.ranking-tbl-slide-box.type2 {
    width: 58%;
}

.ranking-tbl-slide {
    width: 100%;
}

.ranking-tbl-slide > li .team-match-result-tbl {
    width: 693px;
}

.ranking-tbl-slide-btn {
    position: absolute;
    bottom: -80px;
    width: 100%;
    text-align: center;
    font-size: 0;
}

.ranking-tbl-slide-btn button {
    margin: 0 5px;
    display: inline-block;
    padding: 0 25px;
    height: 40px;
    text-align: center;
    font-size: 13.5px;
    letter-spacing: -0.5px;
    border: 2px solid var(--main-color);
    background-color: #fff;
    color: #333;
    cursor: pointer;
}

.ranking-tbl-slide-btn button.slick-disabled span {
    opacity: 0.3;
}

.ranking-tbl-slide-btn button.prev {
    padding-left: 15px;
}

.ranking-tbl-slide-btn button.next {
    padding-right: 15px;
}

.ranking-tbl-slide-box.type2 .ranking-tbl-slide .slick-prev, .ranking-tbl-slide-box.type2 .ranking-tbl-slide .slick-next {
    margin-left: 329px;
}

.ranking-tbl-slide-box.type2 .ranking-tbl-slide .slick-prev.fixed, .ranking-tbl-slide-box.type2 .ranking-tbl-slide .slick-next.fixed {
    margin-left: 560px;
}

.ranking-tbl-slide-box .team-match-result-tbl tbody td {
    height: 40px;
}

.ranking-tbl-slide-box .team-match-result-tbl tr th:first-child, .ranking-tbl-slide-box .team-match-result-tbl tr td:first-child {
    border-left: 0;
}

.ranking-tbl-slide-box .ranking-tbl-slide .team-match-result-tbl.type2 tbody tr:hover td:first-child {
    border-left: 0;
}

.ranking-tbl-tit-box .team-match-result-tbl.type2 tbody tr td:first-child {
    border-left: 1px solid #ddd;
}

/* 슬라이드 표 내용 블럭 처리 가능 */
.slick-slider {
    cursor: auto !important;
    -moz-user-select: auto !important;
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -o-user-select: auto !important;
    -webkit-user-select: text;
    -khtml-user-select: auto !important;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* ****************** 기록실 :: 구조변경 :: 해당 팀 오버시 보더 ********************** */
.ranking-tbl-tit-box-container {
    width: 100%;
    position: relative;
}

.ranking-tbl-tit-box-container .num {
    width: 12%;
}

.ranking-tbl-tit-box-container .team {
    width: 45%;
}

.ranking-tbl-tit-box-container .league {
    width: 43%;
}

.ranking-tbl-slide-box {
    position: absolute;
    top: 0;
    right: 0;
}

/* thead */
.team-match-result-tbl-thead-group {
    width: 100%;
}

.team-match-result-tbl-thead {
    display: table;
    float: left;
    width: 37%;
}

.team-match-result-tbl-thead > li.th {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    line-height: 26px;
    color: #333;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.5px;
    background-color: #eee;
    border: 1px solid #ddd;
    border-top: 2px solid #222;
    padding: 10px 0;
    border-left: 0;
}

.team-match-result-tbl-thead > li.th:first-child {
    border-left: 1px solid #ddd;
}

/* tbody */
.team-match-result-tbl-tbody-group {
    width: 100%;
}

.team-match-result-tbl-tbody-group > div {
    width: 100%;
    position: relative;
    z-index: 10;
}

.team-match-result-tbl-tbody-group > div:hover {
    outline: 1px solid #ff7e00;
    z-index: 11;
}

.team-match-result-tbl-tbody {
    display: table;
    width: 37%;
}

.team-match-result-tbl-tbody > li.td {
    display: table-cell;
    height: 40px;
    vertical-align: middle;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-left: 0;
    border-top: 0;
    padding: 11px 0;
}

.team-match-result-tbl-tbody > li.td:first-child {
    border-left: 1px solid #ddd;
}

.team-match-result-tbl-tbody > li.td.team {
    padding-left: 5px;
}

.team-match-result-tbl-tbody > li.td.team .result-box.type2 > p strong {
    max-width: 130px;
    letter-spacing: -0.75px;
    text-align: left;
}

/* -------- 개인공격순위 & 개인투수순위 -------- */
.ranking-tbl-tit-box-container.player .num {
    width: 11%;
}

.ranking-tbl-tit-box-container.player .name {
    width: 16%;
}

.ranking-tbl-tit-box-container.player .team {
    width: 39%;
}

.ranking-tbl-tit-box-container.player .league {
    width: 34%;
}

/* thead */
.team-match-result-tbl-thead.player {
    width: 42%;
}

/* tbody */
.team-match-result-tbl-tbody.player {
    width: 42%;
}

.team-match-result-tbl-tbody.player > li.td.team .result-box.type2 > p strong {
    max-width: 130px;
    letter-spacing: -0.75px;
    text-align: left;
}
