/* common */
:root {
    --main-font-color: #333333;
    --nav-hover-color: #C90404;
    --hover-color: #D70000;
    --font-light-weight: 200;
    --font-regular-weight: 400;
    --font-bold-weight: 600;
}

body {
  background: #ffffff;
}
.container-minW {
  min-width: 1200px;
}
.mainBox {
  width: 1200px;
  margin: 0 auto;
  background: #fff;
}

.header {
  width: 100%;
  position: relative;
}
.banner {
  width: 100%;
  height: 309px;
}
.nav {
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, #FFFFFF, #DBD5D5);
  position: relative;
}
.nav-wrap {
  width: 1200px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-list {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 40px;
  padding-right: 30px;
}
.nav-item {
  color: #333333;
  font-size: 20px;
  cursor: pointer;
}
.nav-item:hover {
  color: var(--nav-hover-color);
  font-weight: var(--font-bold-weight);
}
.curNav {
  color: var(--nav-hover-color);
  font-weight: var(--font-bold-weight);
}


/* footer */
.footer {
  width: 100%;
  background: #fff;
  text-align: center;
  font-size: 14px;
  color: #333333;
  padding-bottom: 58px;
}
.footer-row {
  font-size: 14px;
  color: #333333;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-row a {
  font-size: 14px;
  color: #333333;
  margin-left: 8px;
}
.footer a {
  display: inline-block;
  margin-left: 8px;
  color: #333333
}
#_ideConac {
  width: 56px;
  height: 68px;
  margin: 0 auto;
  margin-top: 20px;
  display: inline-block;
}
/* components */
.courtBanner {
  width: 100%;
  height: 42px;
  background: #CC0000;
  margin-top: 30px;
  margin-bottom: 20px;
}
.courtBanner-list {
  width: 1200px;
  height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.courtBanner-list a {
  font-size: 14px;
  color: #ffffff;
  margin-right: 30px;
  margin-left: 0;
}
.courtBanner-list a:hover {
  color: #FFF9B7;
}