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

body {
  background: #F1F1F1;
}
.container-minW {
  min-width: 1004px;
}

/* topBanner */
.topBar {
  width: 100%;
  height: 45px;
  background: #EEEEEE;
}
.topBar-con {
  width: 1004px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#showTime {
  color: #666666;
  font-size: 14px;
}
.search {
  width: 330px;
  height: 32px;
  display: flex;
  align-items: center;
}
.search-form {
  width: 256px;
  height: 100%;
  display: flex;
  align-items: center;
  /* border: 1px solid #D8D8D8; */
  position: relative;
}
.searchInput {
  flex: 1;
  height: 100%;
  line-height: 34px;
  background: #fff;
  padding:  0 14px;
}
.search-form select, .search-form input {
  outline: none;
  border: none;
}
.searchIcon {
  width: 21px;
  height: 21px;
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  cursor: pointer;
}
.searchBtn {
  width: 70px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
}

.mainBox {
  width: 1004px;
  margin: 0 auto;
  background: #fff;
  padding-bottom: 47px;
}

.header {
  width: 100%;
  position: relative;
}
.banner {
  width: 100%;
  height: 180px;
}

.nav {
  width: 100%;
  height: 42px;
  background: linear-gradient(to bottom, #F70000, #AF0000);
  position: relative;
}
.nav-wrap {
  width: 1004px;
  height: 44px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, #E0E0E0, #FDFDFD);
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}
.nav-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-item {
  flex: 1;
  height: 44px;
  line-height: 44px;
  color: #666666;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.nav-item:hover {
  color: var(--nav-hover-color);
  background-color: rgba(255, 20, 20, 0.8);
  font-weight: var(--font-bold-weight);
}
.curNav {
  color: var(--nav-hover-color);
  background-color: rgba(255, 20, 20, 0.8);
  font-weight: var(--font-bold-weight);
}


/* footer */
.footer {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #333333;
  padding-bottom: 58px;
}
.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;
  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: #CC0000;
  margin-bottom: 20px;
}
.courtBanner-list {
  width: 1004px;
  height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.courtBanner-list a {
  font-size: 14px;
  color: #ffffff;
  width: 200px;
  line-height: 42px;
  text-align: center;
  margin: 0;
}
.courtBanner-list a:hover {
  color: #FFF9B7;
}