/*common*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
ul {
  margin-bottom: 0;
}
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a,
a:hover,
button,
button:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}
a:hover {
  text-decoration: none;
}
h2 {
  font-size: 30px;
}
body,
html {
  min-width: 1366px;
  min-height: 550px;
  position: relative;
  height: 100%;
}
body {
  font-family: "Microsoft YaHei", Arial;
  background: #fff;
  color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}
/*index*/
.index-main {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  right: 50px;
}
.fullPage {
  width: 100%;
  position: absolute;
  bottom: 72px;
  overflow: hidden;
  top: 120px;
}
#fullPageWrap {
  height: 100%;
  position: relative;
}
#fullPage-nav {
  _display: none;
}
#fullPage-nav li {
  vertical-align: middle;
  width: 90px;
  height: 66px;
  margin: 20px 0;
}
#fullPage-nav li a {
  float: right;
  display: inline;
  width: 6px;
  height: 100%;
  background-color: #a9a9a9;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  transition-delay: 0.5s;
}
#fullPage-nav li .active {
  background-color: #1d262f;
}
#fullPage-nav span {
  display: none;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 120px;
  padding: 0 50px 20px;
  background-color: #fff;
}
.header.position {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  padding-left: 0;
  padding-right: 0;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo img:first-child {
  margin-right: 20px;
}
.header .nav-list-wrap {
  position: relative;
}
.header .nav-list-wrap .line {
  position: absolute;
  left: 0;
  bottom: 15px;
  height: 2px;
  background-color: #D90B01;
  transition: all 0.3s ease;
}
.header .nav-list-wrap .nav-list {
  display: flex;
  align-items: center;
}
.header .nav-list-wrap .nav-list .item {
  padding: 25px;
}
.header .nav-list-wrap .nav-list .item.active a {
  color: #D90B01;
  border-bottom-color: #D90B01;
}
.header .nav-list-wrap .nav-list .item:hover a {
  color: #D90B01;
}
.header .nav-list-wrap .nav-list .item a {
  padding-bottom: 10px;
  color: #707070;
  font-size: 16px;
  border-bottom: 2px solid transparent;
}
#banner {
  width: 100%;
  height: 100%;
}
#banner .item {
  display: block;
  width: 100%;
  height: calc(100vh - 192px);
  overflow: hidden;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  min-height: 100%;
  transition: 1s linear 2s;
  transform: scale(1.1, 1.1);
}
.swiper-slide-active img,
.swiper-slide-duplicate-active img {
  transition: 6s linear;
  transform: scale(1, 1);
}
.swiper-pagination-bullet {
  width: 40px;
  height: 8px;
  margin: 0 10px !important;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: unset;
}
.swiper-pagination-bullet-active {
  background-color: #fff;
}
.column-list {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: repeat(8, 1fr);
  grid-gap: 10px;
  height: 100%;
}
.column-list .item {
  grid-row: span 4;
  height: 100%;
}
.column-list .item:first-child,
.column-list .item:nth-child(3) {
  grid-column: span 7;
}
.column-list .item:nth-child(2) {
  grid-column: span 6;
}
.column-list .item:last-child,
.column-list .item:nth-child(4) {
  grid-column: span 6;
}
.column-list .item:nth-child(5) {
  grid-column: span 8;
}
.column-list .item:nth-child(3) ~ .item {
  margin-bottom: 0;
}
.column-list .item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.column-list .item a:hover:before {
  opacity: 1;
}
.column-list .item a:hover img {
  transform: scale(1.1);
}
.column-list .item a:hover .text {
  bottom: 50%;
  transform: translate(-50%, 50%);
}
.column-list .item a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease-in;
}
.column-list .item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s cubic-bezier(0.85, 0.1, 0.1, 0.68);
}
.column-list .item a .text {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 9;
  color: #fff;
  font-size: 30px;
  transform: translateX(-50%);
  transition: all 0.5s ease-in;
}
@keyframes img_hover {
  0% {
    transform: translate3d(0, 0, 0) scale(1.1);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
/*page-banner*/
.page-banner {
  max-width: 1920px;
  height: 480px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
/*page-sub-nav*/
.page-sub-nav {
  background-color: rgba(0, 0, 0, 0.04);
}
.page-sub-nav .page-sub-nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-sub-nav .page-sub-nav-wrap ul {
  flex: 1;
  display: flex;
  align-items: center;
  height: 68px;
  margin: 0;
  font-size: 16px;
  white-space: nowrap;
  overflow-x: auto;
}
.page-sub-nav .page-sub-nav-wrap ul li {
  margin-right: 20px;
}
.page-sub-nav .page-sub-nav-wrap ul li.active a {
  color: #FF0D01;
}
.page-sub-nav .page-sub-nav-wrap ul li:hover a {
  color: #FF0D01;
}
.page-sub-nav .page-sub-nav-wrap ul li a {
  display: inline-block;
  height: 68px;
  line-height: 68px;
  padding: 0 25px;
  color: rgba(0, 0, 0, 0.7);
}
/*breadcrumb*/
.breadcrumb {
  margin: 0;
  color: #b5b5b5;
  font-size: 14px;
  background: transparent;
}
.breadcrumb a {
  padding: 0 6px;
  color: #b5b5b5;
  transition: all 1s ease-in;
}
.breadcrumb a:first-child {
  padding-left: 0;
}
.breadcrumb a:hover {
  color: #000;
}
/*pager*/
.pager {
  text-align: center;
}
.pager a {
  display: inline-block;
  margin: 0 4px;
  padding: 0 8px;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.pager a.page-num-current {
  color: #fff;
  background-color: #FF0000;
  border-color: #FF0000;
}
/*news*/
.news {
  padding: 20px 0 70px;
}
.news .list {
  padding-bottom: 60px;
}
.news .list .item {
  position: relative;
  display: flex;
  align-items: center;
  height: 170px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in;
}
.news .list .item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.news .list .item:hover .info-wrap h6 {
  color: #FF0D01;
}
.news .list .item .img {
  width: 180px;
  height: 120px;
  overflow: hidden;
}
.news .list .item .img img {
  width: 100%;
  height: 100%;
}
.news .list .item .info-wrap {
  flex: 1;
  padding-right: 60px;
}
.news .list .item .info-wrap h6 {
  width: 90%;
  color: #000;
  font-size: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s ease-in;
}
.news .list .item .info-wrap .date {
  padding: 6px 0 10px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}
.news .list .item .info-wrap .content {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news .news-detail {
  padding: 20px 0;
}
.news .news-detail h2 {
  padding-bottom: 20px;
  color: #120000;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.news .news-detail .body {
  min-height: 250px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
}
.news .news-detail .body p {
  margin-bottom: 0;
}
.news .news-detail .body img,
.news .news-detail .body video {
  max-width: 100%;
}
.news .news-detail .body iframe {
  max-width: 100%;
  max-height: 600px;
}
/*exhibit*/
.exhibit {
  padding: 30px 0 70px;
}
.exhibit .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.exhibit .list .item {
  padding-bottom: 40px;
}
.exhibit .list .item:hover .img img {
  transform: scale(1.1);
}
.exhibit .list .item:hover .text {
  color: #fff;
  background-color: #FF0D01;
}
.exhibit .list .item .img {
  width: 580px;
  height: 300px;
  overflow: hidden;
}
.exhibit .list .item .img img {
  width: 100%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.85, 0.1, 0.1, 0.68);
}
.exhibit .list .item .text {
  padding: 18px 0 50px;
  color: #000;
  font-size: 16px;
  text-align: center;
  transition: all 0.8s ease-in-out;
}
/*collection*/
.collection {
  padding: 50px 0 60px;
}
.collection .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.collection .list .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 340px;
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in;
}
.collection .list .item:hover {
  border-color: #FF0D01;
}
.collection .list .item:hover .text {
  color: #FF0D01;
}
.collection .list .item:hover .img img {
  animation: fadeIn 1s linear;
}
.collection .list .item:first-child,
.collection .list .item:nth-child(2) {
  width: 580px;
  margin-bottom: 40px;
}
.collection .list .item:first-child .img,
.collection .list .item:nth-child(2) .img {
  margin-left: 200px;
}
.collection .list .item .text {
  width: 16px;
  font-size: 16px;
  writing-mode: tb;
  transition: all 0.5s ease-in;
}
.collection .list .item .img {
  width: 180px;
  height: 240px;
  margin-left: 38px;
  overflow: hidden;
}
.collection .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*collection-detail*/
.collection-detail {
  padding: 40px 0 30px;
}
.collection-detail .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.collection-detail .list .item {
  width: 210px;
  margin-bottom: 30px;
}
.collection-detail .list .item:hover .text {
  color: #FF0D01;
}
.collection-detail .list .item .img {
  width: 100%;
  height: 285px;
  overflow: hidden;
}
.collection-detail .list .item .img img {
  width: 100%;
  height: 100%;
}
.collection-detail .list .item .text {
  padding: 10px 0;
  color: #000;
  font-size: 16px;
  text-align: center;
  transition: all 0.5s ease-in;
}
/*honor*/
.honor {
  padding-bottom: 30px;
}
.honor .tab-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px 0;
}
.honor .tab-list .item {
  color: #120000;
  font-size: 20px;
  transition: all 0.5s ease-in;
}
.honor .tab-list .item:hover,
.honor .tab-list .item.active {
  color: #FF0D01;
}
.honor .tab-list .item:last-child:after {
  display: none;
}
.honor .tab-list .item:after {
  content: '|';
  margin: 0 20px;
  color: #c4c4c4;
}
.honor .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.honor .list .item {
  width: 280px;
  margin-bottom: 50px;
}
.honor .list .item:hover .text {
  color: #FF0D01;
}
.honor .list .item .img {
  width: 100%;
  height: 185px;
  margin-bottom: 22px;
  overflow: hidden;
}
.honor .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.honor .list .item .text {
  min-height: 48px;
  color: #000;
  font-size: 16px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all 0.5s ease-in;
}
/*association*/
.association {
  padding: 30px 0 60px;
}
.association .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.association .list .item {
  width: 210px;
  margin-bottom: 30px;
}
.association .list .item:hover .text {
  color: #FF0D01;
}
.association .list .item .img {
  width: 100%;
  height: 304px;
  overflow: hidden;
}
.association .list .item .img img {
  width: 100%;
  height: 100%;
}
.association .list .item .text {
  padding: 10px 0;
  color: #000;
  font-size: 16px;
  text-align: center;
  transition: all 0.5s ease-in;
}
/*footer*/
.footer {
  padding: 28px 0;
  background-color: #f6f6f6;
}
.footer .foot-nav {
  margin-bottom: 0;
}
.footer .foot-nav dt {
  position: relative;
  padding-bottom: 10px;
}
.footer .foot-nav dt .link {
  display: block;
  color: rgba(0, 0, 0, 0.9);
  font-size: 16px;
}
.footer .foot-nav dd {
  display: flex;
  margin: 0;
  padding-bottom: 6px;
  font-size: 14px;
}
.footer .foot-nav dd:last-child {
  padding-bottom: 0;
}
.footer .foot-nav dd .link {
  color: rgba(0, 0, 0, 0.68);
  font-size: 14px;
  transition: all 1s ease;
}
.footer .foot-nav dd .link:hover {
  color: #000;
}
.footer .foot-code-wrap dt {
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}
.footer .foot-code-wrap dt .link {
  display: block;
  color: rgba(0, 0, 0, 0.9);
  font-size: 16px;
}
.footer .foot-code-wrap .foot-code {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  padding: 10px;
  background-color: #fff;
}
.footer .foot-code-wrap .foot-code img {
  width: 100%;
}
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 72px;
  padding: 20px 0;
  background-color: #fff;
}
.copyright.position {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
}
.copyright .list {
  display: flex;
  align-items: center;
}
.copyright .list .item {
  display: flex;
  align-items: center;
  margin-right: 40px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
}
.copyright .list .item:last-child {
  margin-right: 0;
}
.copyright .list .item img {
  margin-right: 6px;
  vertical-align: middle;
}
.copyright .list .item a {
  color: rgba(0, 0, 0, 0.7);
}
.copyright .list .item a:hover {
  color: #000;
}
/*fixed-bar*/
.fixed-bar {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9;
  width: 64px;
  transform: translateY(-50%);
}
.fixed-bar .item {
  position: relative;
  width: 100%;
}
.fixed-bar .item:hover > a {
  background-color: #D90B01;
}
.fixed-bar .item:hover .info-wrap {
  display: inline-block;
}
.fixed-bar .item > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  background-color: #000;
  transition: all 0.3s ease-in;
}
.fixed-bar .item > a .text {
  color: #fff;
  font-size: 14px;
}
.fixed-bar .item .info-wrap {
  display: none;
  position: absolute;
  top: 0;
  right: 74px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.fixed-bar .item .info-wrap > .text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  min-height: 64px;
  line-height: 30px;
  padding: 6px 10px;
  color: #D90B01;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.fixed-bar .item .info-wrap .code-img {
  width: 120px;
  padding: 10px 10px 8px;
}
.fixed-bar .item .info-wrap .code-img img {
  width: 100%;
}
.fixed-bar .item .info-wrap .code-img .text {
  display: block;
  text-align: center;
}
/*shopping-wrap*/
.shopping-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.shopping-wrap .shopping {
  position: relative;
  width: 420px;
  height: 332px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
}
.shopping-wrap .shopping .close-shopping {
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
}
.shopping-wrap .shopping .title {
  padding: 35px 0 25px;
  color: #000;
  font-size: 24px;
}
.shopping-wrap .shopping .code {
  width: 164px;
  height: 164px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.shopping-wrap .shopping .code img {
  width: 100%;
  height: 100%;
}
.shopping-wrap .shopping .tips {
  padding-top: 8px;
  color: #707070;
  font-size: 14px;
}
/*media*/
@media (max-width: 1440px) {
  /*index*/
  .header .logo img ~ img {
    display: none;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1230px;
  }
}
@media (max-width: 1024px) {
  .navbar-style .navbar .nav-item {
    padding: 0 20px;
  }
  /*index*/
}
@media (min-width: 1024px) {
  .dropdown-toggle::after {
    display: none;
  }
}
@media (min-width: 768px) {
  /*census*/
  .census .sidebar .navbar-toggler {
    display: none;
  }
}
@media (max-width: 768px) {
  .navbar-style .navbar-brand img {
    height: 32px;
  }
  .navbar-style .navbar-collapse {
    position: absolute;
    top: 50px;
    left: 0;
    padding: 0 20px;
    width: 100%;
    max-height: 90vh;
    z-index: 10000000;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.12);
  }
  .navbar-style .dropdown-menu {
    left: 0;
    width: 100%;
    padding: 0;
    text-align: center;
    background-color: transparent;
    border: none;
    overflow: hidden;
  }
  .navbar-style .dropdown-menu .dropdown-item {
    display: inline-block;
    width: 101px;
    line-height: 36px;
    margin-bottom: 6px;
    padding: 0;
    color: #666;
    font-size: 14px;
    border: none;
    clear: unset;
  }
  .navbar-style .dropdown-menu .dropdown-item:hover {
    color: #fff;
    background-color: #FF0D01;
  }
  .navbar-style .navbar .nav-item {
    position: relative;
    padding: 0 10px;
    text-align: center;
  }
  .navbar-style .navbar .nav-item.active,
  .navbar-style .navbar .nav-item:hover {
    background-color: transparent;
  }
  .navbar-style .navbar .nav-item.active .nav-link,
  .navbar-style .navbar .nav-item:hover .nav-link {
    color: #FF0D01;
    border: none;
  }
  .navbar-style .navbar .nav-item .nav-link {
    color: #333;
  }
  .navbar-style .navbar .custom-link {
    display: block;
  }
  /*index*/
}
@media (max-width: 480px) {
  /*census*/
  .census .sidebar {
    margin-bottom: 30px;
  }
  .census .sidebar h5 {
    font-size: 20px;
  }
  .census .sidebar .navbar-collapse {
    display: none;
  }
  .census .table-wrap {
    overflow-x: auto;
  }
  .census .table-wrap table {
    width: 150%;
  }
}
/*# sourceMappingURL=style.css.map */