/* common */
:root {
    --main-font-color: #333333;
    --nav-hover-color: #FFF9B7;
    --hover-color: #D61B00;
    --bg-color: #F7F7F7;
    --font-light-weight: 200;
    --font-regular-weight: 400;
    --font-bold-weight: 600;
}
a {display: block;}
img {
  width: 100%;
  height: 100%;
  object-fit:cover;
}
.ml-20 {
    margin-left: 20px;
}
.mt-20 {
    margin-top: 20px
}

.container {
  width: 1200px;
  margin: 0 auto;
}
.container-minW {
  min-width: 1200px;
}

/* header */
.header {
    width: 100%;
    position: relative;
}
.hdSwp-item {
  width: 100%;
  height: 280px;
}
.nav {
  width: 100%;
  height: 42px;
  background: linear-gradient(to top, #F70000, #AF0000);
}
.nav-wrap {
  width: 1200px;
  height: 42px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #F70000, #AF0000);
  display: flex;
  /* padding: 0 40px; */
  justify-content: space-between;
  align-items: center;
}
.nav-item {
  color: #ffffff;
  font-size: 18px;
  font-weight: var(--font-regular-weight);
  cursor: pointer;
  padding: 0 30px;
  position: relative;
  /* border-right: 1px solid #fff; */
}
.nav-item::after {
    content: '';
    width: 1px;
    height: 12px;
    background: url('../img/vline.png');
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 100%;
}
.nav-item:nth-last-of-type(1)::after {
    display: none;
}
.nav-item:hover {
  color: var(--nav-hover-color);
}
.curNav {
  color: var(--nav-hover-color);
}

/* footer */
.footer {
  width: 100%;
  height: 214px;
  background: #fff;
  padding-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #333333;
  font-weight: 600;
}
.footer a {
    display: inline-block;
    margin-left: 8px;
    color: #333333;
}
#_ideConac {
    width: 100px;
    height: 68px;
    margin: 0 auto;
    margin-top: 20px;
    display: inline-block;
}
.footer-row {
  font-size: 14px;
  color: #333333;
  font-weight: var(--font-bold-weight);
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-row a {
  font-size: 14px;
  color: #333333;
  margin-left: 8px;
}

/* components */
.slideTitle {
  width: 36px;
  height: 140px;
  background: url('../img/slide_title_bg.png') no-repeat;
  background-size: 100% 100%;
  font-size: 16px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0 10px;
  line-height: 20px;
}

.row {
  width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.menu {
    height: 348px;
}
.menu-topBar {
  width: 100%;
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.menu-title {
  width: auto;
  height: 36px;
  padding-left: 30px;
  background: url('../img/menu_title_01.png');
  background-size: auto 100%;
  background-repeat: no-repeat;
  color: #fff;
  line-height: 44px;
  position: relative;
  font-size: 20px;
  color: #333333;
  font-weight: var(--font-bold-weight);
}
.menu-title::after {
  content: '';
  width: 72px;
  height: 6px;
  background: url('../img/menu_title_02.png');
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: calc(100% + 6px);
}
.moreBtn {
  font-size: 14px;
  color: #888888;
  margin-right: 20px;
  cursor: pointer;
}
.menu-content {
  height: 300px;
  border: 1px solid #EAEAEA;
  overflow: hidden;
}
.menu-list {
    height: 100%;
    padding: 16px 0;
    background: #FDFDFD;
}
.menu-item {
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--main-font-color);
  font-weight: var(--font-regular-weight);
  padding: 0 40px;
}
.menu-item-dot {
    width: 5px;
    height: 5px;
    margin-right: 11px;
}
.menu-item-text {
  flex: 1;
  overflow:hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow:ellipsis;
}
.menu-item:hover {
  color: var(--hover-color) !important;
}
.moreBtn:hover {
  color: var(--hover-color);
}
.menu-item-icon {
    width: 23px;
    height: 9px;
    margin-left: 12px;
}

/* special menu */
.menu_01 {
    width: 240px;
    height: 348px;
    background: url('../img/bg_02.png');
    background-size: 100% 100%;
}
.menu_01 .menu-content {
    padding: 0 4px;
    height: auto;
    padding-top: 57px;
}
.menu_01 .menu-item-icon {
  width: 21px;
  height: 21px;
}
.menu_01 .menu-item-text {
  margin-left: 26px;
}
.menu_01 .menu-item {
  height: 46px;
  padding: 0 20px;
  background-color: rgba(254, 254, 254,0.7);
}
.menu_01 .menu-item:nth-of-type(2n) {
    background-color: rgba(250, 250, 250, 0.3);
}

.noBorder {
  border: none;
}

.courtBanner-02 {
  width: 100%;
  /* height: 63px; */
  background: #CC0000;
  margin-top: 30px;
  padding: 0 20px;
}
.courtBanner-02-list {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
}
.courtBanner-02-list a {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 24px;
  margin-right: 30px;
}
.courtBanner-02-list a:hover {
    color: var( --nav-hover-color);
}