/* #region 网页通用CSS */
* {
  font-family: "Microsoft YaHei", Arial !important;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* #endregion */

/* #region 网页顶部 */
.topLine {
  padding: 5px 0;
  background: #c71d07;
}

.topLine .content {
  color: white;
  overflow: hidden;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.topLine .content .goCn {
  cursor: pointer;
  color: #e9e9e9;
  font-style: italic;
  font-size: 14px;
  margin-right: 12px;
}

.topLine .content .searchBox {
  background: #e14c38;
  height: 32px;
  line-height: 32px;
  width: 240px;
  padding: 0 12px;
  position: relative;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topLine .content .searchBox .se-input {
  background: #e14c38;
  width: 170px;
  color: white;
  border: none;
}

.topLine .content .searchBox .se-input:focus {
  outline: none;
  box-shadow: none;
}

.topLine .content .searchBox .se-input::placeholder {
  color: #e9e9e9;
  font-style: italic;
}

.topLine .content .searchBox .se-btn {
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}
/* #endregion */

/* #region 导航条 */
.nav :not(.article) {
  box-sizing: border-box;
  outline: none !important;
  vertical-align: middle;
  text-decoration: none;
}

.nav {
  width: 1200px;
  height: 86px;
  margin: 0 auto;
  line-height: 86px;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.nav .toplogo {
  height: 50px;
  vertical-align: middle;
}

.nav>ul {
  display: inline-block;
  width: 853px;
  font-size: 16px;
  text-align: right;
  float: right;

  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none !important;
  vertical-align: middle;
  text-decoration: none;
}

.nav>ul>li {
  /*float: right;*/
  display: inline-block;
  width: 10%;
  min-height: 57px;
  line-height: 57px;
  color: #333;
  cursor: pointer;
  position: relative;
  text-align: right;
}

.nav>ul>li>a {
  color: #333;
  display: inline-block;
  max-width: 100%;
}

.nav>ul>li a:hover {
  color: #c71d07;
}

/*隐藏的二级菜单*/
.nav-submenu {
  display: none;
  position: absolute;
  left: -206px;
  width: 700px;
  min-height: 182px;
  background: white;
  text-align: left;
  z-index: 10;
  padding: 20px 20px;
  border-radius: 4px;
  font-size: 16px;
  box-shadow: inset 0 2px 0px 0px #C71D07;
  border-left: 1px solid pink;
  border-right: 1px solid pink;

  transition: all 0.3s ease-in-out;
}

.nav-first>li:nth-child(n+12)>.nav-submenu {
  left: -604px;
}

.nav-first>li:nth-child(9)>.nav-submenu {
  left: -604px;
}

.nav-first>li:nth-child(8)>.nav-submenu {
  left: -594px;
}

.nav-first>li:nth-child(7)>.nav-submenu {
  left: -494px;
}

.nav-first>li:nth-child(6)>.nav-submenu {
  left: -394px;
}

.nav-submenu .nav-submenu {
  width: 144px !important;
  position: relative;
  bottom: 4px;
  left: 0;
  margin-left: -22%;
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
}

.nav-submenu .sub-links li {
  overflow: visible;

}

.nav-submenu .nav-submenu .sub-links,
.nav-submenu .nav-submenu .dropdown {
  width: 100%;
  margin: auto;
  text-align: center;

}


.show {
  display: block;
}

.nav-submenu .imgBox {
  display: inline-block;
  text-align: left;
  color: #c71d07;
  vertical-align: middle;

  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none !important;
  vertical-align: middle;
  text-decoration: none;
}

.nav-submenu .imgBox .subImg {
  height: 137px;
  width: 137px;
  display: inline-block;
  border-radius: 50%;
  border: 5px #F9E8E6 solid;
  background: center no-repeat;
  background-size: cover;
}

.nav-submenu .imgBox .info {
  width: 136px;
  display: inline-block;
  margin-left: 6px;
}

.nav-submenu .imgBox .info .info_top {
  height: 40px;
  line-height: 40px;
  border-bottom: 1px #ECECEC solid;
}

.nav-submenu .imgBox .info .info_bottom {
  height: 40px;
  line-height: 40px;
}

.nav-submenu .sub-links {
  display: inline-block;
  width: 334px;
  line-height: 20px;
  margin-left: 30px;

}

.sub-links li {
  text-align: left;
  height: 40px;
  min-height: 40px !important;
  line-height: 40px !important;
  /*margin-left: 10px;*/
  overflow: hidden;
  float: none !important;
  display: inline-block;
  width: 30%;
  position: relative;
}

.sub-links li::before {
  background: #797979;
  display: inline-block;
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
}

.sub-links li a {
  text-align: left;
  padding-left: 10px;
  color: #333;
  height: 100%;
  max-width: 96px;
  display: inline-block;
}

.sub-links li[data-level="3"],
.sub-links li[data-level="4"],
.sub-links li[data-level="5"] {
    display: block !important;
    width: 100%;
}
/* #endregion */

/* #region Banner */
.banner {
  position: relative;
}

.banner .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
}

.banner .text:before,
.banner .text:after {
  width: 50px;
  height: 2px;
  background: #c71d07;
  display: inline-block;
  content: '';
  margin: 0 14px;
  vertical-align: middle;
}

/* #endregion */

/* #region 列表区域 */
.contentList {
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}
.contentList .leftNav {
  width: 257px;
  min-height: 700px;
  height: 100%;
  margin-right: 42px;
  background-color: #F5F7F9;
  position: relative;
}
.contentList .leftNav .navTitle {
  height: 100px;
  background: #c71d07 url(../images/listTop.png) center no-repeat;
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contentList .leftNav .navList {
  padding-top: 30px;
}
.contentList .leftNav .navList .navItem {
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border-bottom: 1px solid #e9e9e9;
}
.contentList .leftNav .navList .navItem a {
  color: #333;
  width: 100%;
  height: 100%;
  display: block;
}
.contentList .leftNav .navList .navItem:hover {
  background-color: #c71d07;
  color: #fff;
}
.contentList .leftNav .navList .navItem:hover a {
  color: #fff;
}

.contentList .rightContent {
  width: 896px;
  min-height: 364px;
  background-color: #fff;
  padding-top: 20px;
}
.contentList .rightContent .rightTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c7c7c7;
}
.contentList .rightContent .rightTitle .name {
  font-size: 24px;
  color: #c71d07;
  font-weight: bold;
  height: 40px;
  border-bottom: 3px solid #c71d07;
}
.contentList .rightContent .rightTitle .address {
  font-size: 14px;
  color: #333;
}

.contentList .rightContent .rightList {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.contentList .rightContent .rightList .item {
  cursor: pointer;
  height: 236px;
}
.contentList .rightContent .rightList .item-cover {
  height: 189px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e9e9e9;
}
.contentList .rightContent .rightList .item-cover img {
  width: 100%;
  height: auto;
}
.contentList .rightContent .rightList .item .item-name {
  width: 280px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* #endregion */

/* #region 友情链接 */
.friendLink {
  height: 42px;
  line-height: 42px;
  background: #f4f4f4;
}

.friendLink .content {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

.friendLink .content select {
  flex: 1;
  height: 28px;
  margin-left: 10px;
  border-radius: 4px;
}

.friendLink .content .title {
  width: 94px;
  font-size: 16px;
  color: #c71d07;
  font-weight: bold;
}

/* #endregion */

/* #region 网页底部 */
.footer {
  background: url(../images/bottombj.png) no-repeat center;
  background-size: cover;
  height: 183px;
}

.footer .content {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyBar {
  width: 100%;
  height: 32px;
  background: black;
  line-height: 32px;
  color: #c4bcbc;
  text-align: center;
  font-size: 12px;
}

/* #endregion */