/* common */
html {
  background-color: #f7f7f7;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.container::before,
.container::after {
  display: none !important;
}
.ny-container {
  margin-bottom: 80px;
}
.ny-wrap {
  background: url('common_res/bg-5.png');
  padding: 22px 0 50px 0;
}
.flex {
  display: flex;
}
.flex-box {
  display: flex;
  align-items: center;
}
.flex-none {
  flex: none;
}
.flex-grow-1 {
  flex: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-between {
  justify-content: space-between;
}
.flex-start {
  justify-content: flex-start;
}
.flex-center {
  justify-content: center;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reserve {
  flex-direction: column-reverse;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reserve {
  flex-direction: row-reverse;
}
.flex-align-start {
  align-items: flex-start;
}
.flex-align-baseline {
  align-items: baseline;
}
.flex-end {
  justify-content: flex-end;
}
.no-break {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line-clamp-2 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-container,
.ny-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}
.ny-container {
  padding: 0 10px 30px 10px;
}

/* header */
.header {
  z-index: 3;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: all 0.7s ease-out 0s;
}
.header1 {
  opacity: 0;
  transform: translateY(-100%);
}
.header2 {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.5s ease-out 0s;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.index.show .header1 {
  transform: none;
  opacity: 1;
}
.section.show .header2 {
  opacity: 1;
  transform: translateY(0%);
  transition: all 0.7s ease-in-out 0.5s;
}
.header-active {
  background-color: #94070a;
}
.ny-index .header2 {
  transform: none;
  opacity: 1;
}
.header .quick-wrap {
  display: none;
  width: 100%;
  height: 50px;
  background-color: #94070a;
}
.header .quick-wrap .index-container {
  height: 100%;
}
.header .quick-nav-item {
  font-size: 16px;
  color: #fff;
  padding-right: 20px;
}
.header .quick-nav-item:hover {
  color: #ffc948;
}
.header .quick-wrap .search-icon {
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.header .quick-wrap .search-icon img {
  width: 100%;
  height: 100%;
}
.header .logo {
  width: 42%;
}
.header .logo img {
  width: 100%;
  height: auto;
}
.header .nav-wrap {
  padding: 20px 0;
  background-image: linear-gradient(to bottom, #450100 0%, #930c0b 50%, transparent 100%);
}
.header .nav {
  display: none;
  width: 100%;
  height: 120px;
}
.header .nav a {
  display: block;
  height: 100%;
  font-size: 20px;
  color: #fff;
  line-height: 120px;
  text-align: center;
  font-weight: bold;
}
.header .nav a:hover{
  color:#ffc948;
} 
.header .nav .nav-item {
  position: relative;
  height: 100%;
  padding: 0 15px;
}
.header .nav .nav-item::after {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  content: '';
  width: 0;
	height: 3px;
	background-color: #f9c145;
  transition: width 0.2s ease-in;
}
.header .nav .nav-item__second {
  z-index: 9;
  position: absolute;
  left: -30%;
  top: 120px;
  width: 160%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #dcdcdc;
}
.header .nav .nav-item__second a {
  position: relative;
  font-size: 18px;
  color: #dcdcdc;
  line-height: 60px;
  text-align: center;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding: 0 13px;
  box-sizing: border-box;
  transition: height 0.5s ease-in;
}
.header .nav .nav-item__second a::after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: '';
  width: 10px;
  height: 10px;
  border-width: 0 1px 1px 0;
  border-color: #fff;
  border-style: solid;
  transform: translateY(-50%) rotate(-45deg);
}
.header .nav .nav-item:hover>a{
  color: #ffc948;
}
.header .nav .nav-item:hover::after{
  width: 30px;
}
.header .nav .nav-item:hover .nav-item__second a {
  height: 60px;
}
.header .nav .nav-item__second a:hover {
  background-color: #94070a;
}


.header2 .nav-wrap {
  background-image: none;
  background-color: #fff;
}
.header2 .nav a {
  color: #000;
}
.header2 .nav .nav-item:hover>a{
  color: #94070a;
}


/* mobile nav */
.header .menu-open,
.header .menu-close {
  height: 36px;
  cursor: pointer;
}
.header .menu-open img,
.header .menu-close img {
  width: auto;
  height: 100%;
}
.header .menu-close {
  margin: 10px;
}
.header .menu-wrap {
  z-index: 999;
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: #fff;
  transition: right 0.5s ease-out;
}
.header-en .menu-wrap {
  width: 90%;
}
.header .menu-scroll {
  height: calc(100% - 120px);
  padding-bottom: 100px;
  background-color: #fff;
  overflow-y: scroll;
}
.header .menu-item {
  position: relative;
  border-bottom: 1px #e5e5e5 solid;
}
.header .menu-item a {
  display: inline-block;
  font-size: 20px;
  color: #333;
  line-height: 48px;
  padding-left: 20px;
  width: 100%;
}
.header .menu-item__icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
}
.header .menu-item__icon-wrap .menu-item__icon {
  position: absolute;
  right: 20px;
  border: solid #afafaf;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 6px;
}
.header .menu-item__icon-wrap .menu-item__icon--up {
  display: none;
  top: 18px;
  transform: rotate(-135deg);
}
.header .menu-item__icon-wrap .menu-item__icon--down {
  top: 14px;
  transform: rotate(45deg);
}
.header .menu-item .menu-item__second>a {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s linear;
  font-size: 16px;
  color: #666;
  line-height: 38px;
  padding-left: 30px;
}



/* footer */
footer {
  background: url('common_res/bg-3.png') no-repeat 0 0;
  background-size: cover;
}
.footer {
  padding: 20px 0;
}
.footer-logo {
  display: none;
  width: 160px;
  margin-right: 20px;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-info span {
  display: block;
  font-size: 16px;
  line-height: 36px;
  color: #fff;
}
.footer-ewm {
  margin-top: 20px;
}
.footer-ewm-item {
  width: 80px;
  margin-right: 10px;
}
.footer-ewm-item:last-child {
  margin-right: 0;
}
.footer-ewm-item_img {
  width: 80px;
  height: 80px;
}
.footer-ewm-item_img img {
  width: 100%;
	height: 100%;
  object-fit: cover;
}
.footer-ewm-item_text {
  font-size: 10px;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}

/* ny-section */
.ny-section {
  padding-bottom: 50px;
}
.ny-section-r {
  width: 0;
}


/* common-slide */
.common-slide {
  display: none;
  width: 270px;
  text-align: center;
  margin-top: -80px;
}
.common-slide-title {
  height: 150px;
  background-color: #94070a;
  font-size: 36px;
  color: #fff;
  line-height: 40px;
  margin-bottom: 12px;
}
.common-slide-list {
  min-height: 590px;
  background: url('common_res/bg-slide.png') no-repeat center bottom;
}
.common-slide-list .common-slide-list__item {
  cursor: pointer;
}
.common-slide-list__item {
  position: relative;
}
.common-slide-list__item::before {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 0;
  height: 100%;
  background-color: #94070a;
  transition: width 0.5s ease-in;
}
.common-slide-list a {
  z-index: 2;
  position: relative;
  display: block;
  font-size: 20px;
  color: #333333;
  line-height: 60px;
  transition: width 0.7s ease-in;
}
.common-slide .common-slide-list__item--active {
  background-color: #94070a;
}
.common-slide .common-slide-list__item--active a {
  color: #fff;
}
.common-slide-list__item:hover::before {
  width: 100%;
}
.common-slide-list__item:hover a {
  color: #fff;
}


/* common-news-list */
.common-news-list {
  width: 100%;
  margin-top: 30px;
  padding: 0 10px;
  box-sizing: border-box;
}
.common-news-list .item {
  display: block;
  border-bottom: 1px #eee solid;
  padding: 10px 0;
}
.common-news-list .item-title {
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 32px;
  padding: 0 20px;
}
.common-news-list .item-title::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 0;
  height: 0;
  border-top: 7px transparent solid;
  border-bottom: 7px transparent solid;
  border-left: 7px #d1d1d1 solid;
}
.common-news-list .item-time {
  font-size: 16px;
  color: #666;
  line-height: 32px;
}
.common-news-list .item:hover .item-title {
  color: #94070a;
}
.common-news-list .item:hover .item-title::before {
  border-left-color: #94070a;
}


/* common-pagination */
.common-pagination {
  overflow: hidden;
  font-size: 14px;
  text-align: center;
  margin-top: 28px;
}
.common-pagination__item {
  display: inline-block;
  height: 30px;
  padding: 0 10px;
  background-color: #fff;
  border: 1px #e8e8e8 solid;
  margin-right: 5px;
  color: #515151;
  line-height: 30px;
  cursor: pointer;
}
.common-pagination__item:hover {
  color: #d30b15;
}
.common-pagination__cur {
  color: #fff;
  background-color: #d30b15;
}
.common-pagination__cur:hover {
  color: #fff;
}
.common-pagination__next {
  margin-left: 5px;
}
.common-pagination-list {
  display: inline-block;
}
.pagination-ellipsis-prev,
.pagination-ellipsis-next {
  margin-right: 5px;
}
.common-pagination-form__input {
  width: 53px;
  height: 37px;
  border: 1px #e8e8e8 solid;
  margin: 0 4px;
  box-sizing: border-box;
  text-align: center;
  outline: none;
}
.common-pagination-form__button {
  height: 37px;
  background-color: #fff;
  border: 1px #e8e8e8 solid;
  padding: 0 10px;
  font-size: 14px;
}
.common-pagination__prev,
.common-pagination__next,
.common-pagination__count,
.common-pagination-form {
  display: none;
}


/* common-pos */
.common-pos-wrap {
  border-bottom: 1px #e6e6e6 solid;
}
.common-pos-wrap .page-title {
  position: relative;
  font-size: 30px;
  color: #383838;
  line-height: 82px;
  font-weight: bold;
}
.common-pos-wrap .page-title::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  content: '';
  width: 120px;
	height: 2px;
	background-color: #94070a;
}
.common-pos {
  height: 82px;
}
.common-pos .icon-home {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.common-pos .icon-home img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.common-pos .cur {
  font-size: 16px;
  color: #383838;
}
.common-pos .cur-list a {
  position: relative;
  padding: 0 5px;
  font-size: 16px;
  color: #383838;
}

.common-pos .cur-list a:last-child {
  color: #999;
}
.common-pos .cur-list a:last-child::after {
  content: '';
}


/* common-desc */
.common-desc {
  padding: 15px 10px;
}
.common-desc,
.common-desc p,
.common-desc p span,
.common-desc span {
  font-size: 16px;
  color: #333;
  line-height: 30px;
  margin-left: 0 !important;
}
.common-desc img {
  max-width: 100% !important;
  height: auto !important;
}

/*翻页*/
.pageNum{width:100%;height: 50px;margin: 50px auto;}
.pageNum a,.pageNum i,.pageNum em,.pageNum span{height: 37px; line-height: 37px; padding: 0 15px; display: inline-block; border: 1px #e8e8e8 solid; background-color: #fff;  margin: 0 3px;color:#515151; }
.pageNum i{background-color: #fff;}
.pageNum a:hover,.pageNum .pative,.pageNum span{color:#fff;background-color:#d30b15;}




.selected2,.parent2 {
    background-color: #94070a !important;
}
.selected2 a,.parent2 a{
    color: #fff !important;
}
.lbyy { min-height:400px; padding-bottom:50px;}
.possplit {background: none; width: auto;text-align: center;text-indent: 0px;padding:0 2px;}
.wp_entry a {
    color: #007bff;
}
.wp_entry a:hover {
    text-decoration: none;
    color: #0056b3;
}












