body {
  min-width: 1236px;
  background-color: #f4f6fa;
  font-size: 16px;
}

.wrap-content {
  width: 1236px;
  margin: 0 auto;
}

/* header */

header {
  background-color: #fff;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 130px;
  user-select: none;
}

.header-wrapper .logo .zh {
  font-family: SourceHanSansCN-Bold;
  font-size: 32px;
  color: #b50005;
}

.header-wrapper .logo .en {
  margin-top: 5px;
  color: #8c8c8c;
  font-size: 14px;
}

.header-wrapper .header-r .search {
  overflow: hidden;
  width: 290px;
  height: 44px;
  border-radius: 21px;
  border: 1px solid #dddddd;
}

.header-wrapper .header-r .search input {
  width: 100%;
  height: 100%;
  padding: 0 17px;
  border: 0;
  box-sizing: border-box;
  outline: none;
}

.header-wrapper .header-r .search input::placeholder {
  color: #c1c1c1;
}

.header-r {
  display: flex;
}

.header-r .search-wrap {
  display: flex;
  justify-content: start;
}

.header-btn {
  position: relative;
  user-select: none; 
  cursor: pointer;
}

.header-btn .header-btn-icon-1 {
  z-index: 9;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
}

.header-btn .header-btn-icon-2 {
  width: 25px;
	height: 24px;
}

.header-btn .header-btn-icon-1 img,
.header-btn .header-btn-icon-2 img {
  width: 100%;
  height: 100%;
}

.header-btn .header-search {
  display: block;
  width: 120px;
  height: 44px;
  margin-left: 11px;
  border: 0;
  border-radius: 21px;
  color: #fff;
  background-color: #b50005;
  padding-left: 32px;
}


.header-r .not-login ,
.header-r .yes-login {
  display: flex;
  align-items: center;
  margin-left: 28px;
  color: #333333;
  cursor: pointer;
}

.header-r .not-login .login-line ,
.header-r .yes-login .login-line {
  margin: 0 11px;
}

/* banner */
.banner {
  height: 360px;
}

.banner img {
  width: 100%;
  height: 100%;
}

/* router */
.router-wrap {
  color: #fff;
  background-color: #b50005;
}

.router-wrap .router {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.router-wrap .router-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  font-size: 20px;
  user-select: none;
}

.router-wrap .router-list .router-item {
  height: 100%;
  line-height: 62px;
  padding: 0 26px;
}

.router-wrap .router-list .router-item:hover {
  color: #eadd0d;
  background-color: #931013;
}

.router-wrap .router-list .router-item--active {
  color: #eadd0d;
  background-color: #931013;
}

.router-wrap .tel-wrap {
  display: flex;
  align-items: center;
}

.router-wrap .tel-wrap .tel-icon {
  margin-right: 14px;
}

.router-wrap .tel-wrap .tel {
  font-size: 20px;
}

/* footer */

footer {
  margin-top: 64px;
  color: #9195a8;
  background-color: #3b3e4e;
  text-align: center;
}

footer .footer-nav {
  padding: 45px 0 0 0;
  text-align: center;
}

footer .footer-nav .nav-list {
  display: flex;
  justify-content: center;
}

footer .nav-list .nav-item {
  position: relative;
  padding: 0 42px 45px 0;
  user-select: none;
  cursor: pointer;
}

footer .nav-item:hover .item-arrow{
  border-bottom: 5px solid #fff;
}

footer .footer-nav .nav-list .nav-item--list {
  position: absolute;
  top: 22px;
  left: 0;
  width: 200px;
  background-color: #fff;
  border: 1px #ccc solid;
  border-radius: 10px;
  display: none;
  transition: opacity ease-in 2s;
}

footer .footer-nav .nav-list .nav-item--list .nav-item--item {
  display: block;
  font-size: 16px;
  line-height: 32px;
  color: #333;
  text-align: center;
  border-bottom: 1px #999 solid;
  padding: 0 30px;
  border-bottom: 1px #ddd solid;
}

footer .footer-nav .nav-list .nav-item--list .nav-item--item:last-child {
  border-bottom: 0;
}

footer .nav-item .item-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-bottom: 5px solid #9195a8;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  vertical-align: middle;
}

footer .nav-item:last-child {
  padding-right: 0;
}

footer .copyright {
  padding: 43px 0 49px 0;
  border-top: 1px solid #545766;
}

footer .copyright p {
  line-height: 30px;
}

/* content */
.title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-wrap .title {
  position: relative;
  padding-left: 22px;
  color: #b50005;
  font-size: 24px;
}

.title-wrap .title::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 8px;
  height: 20px;
  background-color: #b50005;
}

.cur-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 24px 0;
  color: #393939;
  user-select: none;
}

.cur-wrap .cur-icon {
  width: 22px;
  height: 22px;
  margin-right: 11px;
}

.cur-wrap .cur-icon img {
  width: 100%;
  height: 100%;
}


/* detail */
.detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.detail .desc-wrap {
  background-color: #fff;
  box-sizing: border-box;
}


.detail .detail-nav {
  width: 300px;
  min-height: 520px;
  background-color: #fff;
  user-select: none;
}

.detail .detail-nav .nav-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  margin-bottom: 26px;
  color: #fff;
  background-color: #b50005;
  font-size: 30px;
}

.detail .detail-nav .nav-title .nav-icon {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.detail .detail-nav .nav-title .nav-icon img {
  width: 100%;
  height: 100%;
}

.detail .detail-nav .nav-list .nav-item {
  height: 60px;
  line-height: 60px;
  color: #333;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
}

.detail .detail-nav .nav-list .nav-item:hover {
  background-color: #ececec;
}

.detail .detail-nav .nav-list .nav-item--actived {
  position: relative;
  background-color: #ececec;
}

.detail .detail-nav .nav-list .nav-item--actived::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 60px;
  top: 0;
  left: 0;
  background-color: #b50005;
}

.detail .detail-content {
  width: 900px;
  min-height: 800px;
  box-sizing: border-box;
  background-color: #fff;
}

.detail-content .list-title {
  position: relative;
  height: 75px;
  line-height: 75px;
  padding-left: 24px;
  color: #333333;
  border-bottom: 1px  solid #dddddd;
  font-size: 24px;
}

.detail-content .list-title::before {
  position: absolute;
  content: "";
  width: 140px;
  height: 3px;
  left: 0;
  bottom: -2px;
  background-color: #b50005;
}

.detail-content .list {
  padding: 24px;
  box-sizing: border-box;
}

.detail-content .list .item {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 19px 0 19px 14px;
  border-bottom: 1px dotted #e5e5e5;
  color: #333;
}

.detail-content .list .item::before {
  position: relative;
  content: "";
  top: 4px;
  left: -14px;
  width: 0;
  height: 0;
  border-left: 5px solid #b50005;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.detail-content .list .item .item-title {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}

.detail-content .list .item .item-time {
  flex: none;
  margin-left: 20px;
  color: #989898;
}

.desc .desc-title-wrap {
  padding: 44px 20px 26px 20px;
  border-bottom: 1px solid #ddd;
}

.desc .desc-title {
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
  text-align: center;
  word-break: break-all;
}

.desc .desc-info-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999;
  font-size: 14px;
}

.desc .desc-info-wrap .info-author {
  margin: 0 20px;
}

.desc .desc-content {
  padding: 20px;
  box-sizing: border-box;
}

/* element-ui */
.el-pagination {
  padding: 40px 0;
  text-align: center;
  font-weight: 1000;
  font-size: 30px;
}

.el-pagination.is-background .el-pager li:not(.disabled).active {
  background-color: #b50005;
}


.el-pager li {
  font-size: 16px;
}

.el-input .el-input__inner:focus,
.el-textarea .el-textarea__inner:focus,
.el-select .el-input__inner:focus,
.el-select .el-input.is-focus .el-input__inner {
  border-color: #DCDFE6;
}