/* common */
:root {
    --main-font-color: #333333;
    --nav-hover-color: #FFFFFF;
    --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: 220px;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit:cover;
}

.search {
  width: 210px;
  height: 32px;
  position: absolute;
  right: 375px;
  top: 178px;
  z-index: 9;
  display: flex;
  align-items: center;
}
.search-form {
  width: 210px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E0E0E0;
}
.searchInput {
  flex: 1;
  height: 32px;
  line-height: 32px;
  outline: none;
  border: none;
  border-radius: 16px;
  font-size: 14px;
}
.searchInput::placeholder {
  color: #CCCCCC;
}
.searchIcon {
  width: 21px;
  height: 21px;
  cursor: pointer;
}
.searchBtn {
  width: 70px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
}

.nav {
  width: 100%;
  height: 50px;
  background: #941400;
  position: relative;
}
.nav-wrap {
  width: 1200px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-item {
  color: #FFFFFF;
  font-size: 22px;
  cursor: pointer;
  position: relative;
  flex: 1;
}
.nav-item a:hover {
  background: #A71802;
}
.curNav {
  background: #A71802;
}
.nav-item-link {
  display: block;
  width: 100%;
  text-align: center;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}
.nav-subList {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
  display: none;
  background-color: rgba(255, 44, 44, .8);
}
.nav-subItem {
  width: 100%;
  height: 42px;
  text-align: center;
  line-height: 42px;
  list-style: none;
}
.nav-subItem a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}


/* 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;
  font-weight: var(--font-bold-weight);
}
.footer-row a {
  font-size: 14px;
  color: #333333;
  font-weight: var(--font-bold-weight);
  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: #B21A03;
  margin-top: 30px;
  margin-bottom: 20px;
}
.courtBanner-list {
  width: 1200px;
  height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* padding: 0 30px; */
}
.courtBanner-title {
  font-size: 16px;
  color: #ffffff;
  margin-right: 42px;
  font-weight: var(--font-bold-weight);
  background: #D8930E;
  border-radius: 8px;
  padding: 6px 11px;
}
.courtBanner-list a {
  font-size: 14px;
  color: #ffffff;
  margin-right: 30px;
}
.courtBanner-list a:hover {
  color: #FFF9B7;
}