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

body {
  background: #ffffff;
}
.container-minW {
  min-width: 1200px;
}
/* topBanner */
.topBanner {
  display: block;
  width: 100%;
  position: relative;
}
.topBanner img{
  width: 100%;
  height: auto;
}
.topBanner .navArrow {
  position: absolute;
  font-size: 0.12rem;
  color: #F1E187;
  right: 1.16rem;
  bottom: 0.13rem;
  font-family: 'FZHei-B01S';
}

.mainBox {
  /* width: 1200px;
  margin: 0 auto; */
  background: #fff;
}

.header {
  width: 100%;
  position: relative;
}
.banner {
  width: 100%;
  height: 400px;
}
.search {
  width: 410px;
  height: 32px;
  position: absolute;
  right: 30px;
  top: 335px;
  z-index: 9;
  display: flex;
  align-items: center;
}
.search-form {
  width: 340px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: #ffffff;
}
.searchInput {
  flex: 1;
  height: 32px;
  line-height: 32px;
  outline: none;
  border: none;
}
.searchIcon {
  width: 23px;
  height: 23px;
}
.searchBtn {
  width: 70px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
}

.nav {
  width: 100%;
  height: 42px;
  background: linear-gradient(to bottom, #F70000, #AF0000);
  position: relative;
}
.nav-wrap {
  width: 1200px;
  height: 42px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, #FFFFFF, #D0D0D0);
}
.nav-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-item {
  flex: 1;
  color: #333333;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.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);
  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: 63px;
  background: #CC0000;
  margin-top: 30px;
  margin-bottom: 20px;
}
.courtBanner-list {
  width: 1200px;
  height: 63px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.courtBanner-list a {
  font-size: 14px;
  color: #ffffff;
  /* margin-right: 30px; */
  margin-left: 0;
  width: 130px;
  text-align: left;
}
.courtBanner-list a:hover {
  color: #FFF9B7;
}