@charset "UTF-8";
a {
  cursor: pointer;
}

body {
  color: #333;
  font-size: 14px;
}

.wrapper {
  position: relative;
  box-sizing: border-box;
  width: 1200px;
  height: inherit;
  margin: 0 auto;
}

.m80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.nc-header {
  position: relative;
  z-index: 20;
  height: 100px;
  font-size: 20px;
  line-height: 20px;
}
.nc-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nc-header-left {
  display: flex;
  align-items: center;
}
.nc-header-left .logo {
  display: inline-block;
  width: 188px;
  height: 64px;
  margin-left: 5px;
  background: url("../images/logo.png") center no-repeat;
  background-size: 100%;
}
.nc-header-left .city {
  position: relative;
  height: 100px;
  margin-left: 22px;
}
.nc-header-left .city-location {
  display: flex;
  align-items: center;
  margin-top: 50px;
  font-size: 20px;
  line-height: 20px;
}
.nc-header-lang {
  width: 40px;
  height: 40px;
  margin-top: 22px;
  color: #a0a0a0;
  line-height: 40px;
  text-align: center;
  border: 1px solid #bfbfbf;
  transition: all 0.2s ease;
}
.nc-header-lang:hover {
  color: #ffc21d;
  border-color: currentcolor;
}

.nc-menu {
  position: sticky;
  top: 0;
  z-index: 10;
  box-sizing: border-box;
  height: 50px;
  background: linear-gradient(90deg, #ff8706, #ffc21d);
}
.nc-menu-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 1200px;
  margin: auto;
}
.nc-menu-list {
  position: relative;
  height: 50px;
  margin-left: 74px;
  font-size: 20px;
  line-height: 50px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: border 0.2s ease;
}
.nc-menu-list:first-child {
  margin-left: 0;
}
.nc-menu-list:hover {
  border-bottom-color: #000;
}
.nc-menu-list:hover .nc-menu-list-info {
  max-height: 230px;
}
.nc-menu-list-info {
  position: absolute;
  top: 45px;
  left: 50%;
  min-width: 120px;
  max-height: 0;
  overflow: hidden;
  transform: translateX(-50%);
  transition: max-height 0.5s ease;
}
.nc-menu-list-item {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding: 12px 15px;
  background-color: rgba(0, 0, 0, 0.3);
}
.nc-menu-list-item a {
  margin: 8px 0;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nc-menu-list-item a:hover {
  color: #ffc21d;
}

.nc-banner {
  display: block;
  width: 100%;
  min-width: 1200px;
  height: 300px;
  overflow: hidden;
  background: url("../images/common_banner.jpg") center no-repeat;
}

.nc-breadcrumb {
  width: 1200px;
  height: 94px;
  margin: auto;
  line-height: 134px;
  border-bottom: 1px solid #6a706d;
}
.nc-breadcrumb-item {
  transition: color 0.2s ease;
}
.nc-breadcrumb-item:hover {
  color: #ffc21d;
}

.nc-footer {
  padding: 30px 0 15px;
  background-color: #efeff5;
}
.nc-footer .wrapper {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.nc-footer-lt {
  flex: 1;
}
.nc-footer-lt .logo {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d2d2d2;
}
.nc-footer-lt .logo img {
  width: 148px;
}
.nc-footer-lt .address {
  font-size: 12px;
  line-height: 24px;
}
.nc-footer-rt {
  display: flex;
  flex: none;
  justify-content: flex-end;
}
.nc-footer-rt .ewm-box {
  width: 102px;
  margin-left: 32px;
}
.nc-footer-rt .ewm-img {
  box-sizing: border-box;
  width: 102px;
  height: 102px;
  padding: 8px;
  background-color: #fff;
  border-radius: 10px;
}
.nc-footer-rt .ewm-des {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
}

.nc-tabs {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.nc-tabs-title {
  position: absolute;
  top: -16px;
  left: 4px;
  font-weight: bold;
  font-size: 40px;
}
.nc-tabs-title::after {
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 80px;
  height: 9px;
  background-color: #ffc21d;
  content: "";
}
.nc-tabs-nav {
  padding-top: 84px;
}
.nc-tabs-item {
  display: block;
  font-size: 20px;
  line-height: 64px;
  cursor: pointer;
  transition: color 0.24s linear;
}
.nc-tabs-item.active, .nc-tabs-item:hover {
  color: #ffc21d;
}
.nc-tabs-content {
  box-sizing: border-box;
  width: 960px;
  min-height: 410px;
  padding: 48px;
  text-align: justify;
  border-radius: 10px;
  box-shadow: 0 0 32px 0 rgba(161, 161, 161, 0.24);
}
.nc-tabs-content .nc-tab-panel {
  display: none;
  height: 100%;
}
.nc-tabs-content .nc-tab-panel:first-child {
  display: block;
}
.nc-tabs-content .title {
  font-size: 36px;
  text-align: center;
}
.nc-tabs-content .time {
  margin-top: 14px;
  text-align: right;
}
.nc-tabs-content .content {
  margin-top: 36px;
  line-height: 36px;
}
.nc-tabs-content .content img {
  margin: auto;
}

.nc-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;
  font-size: 20px;
  border: solid 1px #898989;
  transition: all 0.2s ease;
}
.nc-more-btn:hover {
  color: #fff;
  background-color: #ffc21d;
  border-color: #ffc21d;
  cursor: pointer;
}

.nc-card {
  display: flex;
  height: 250px;
  margin-bottom: 30px;
  overflow: hidden;
  background-color: #f3f3f3;
  border-radius: 10px 0 0 10px;
  transition: all 0.2s ease;
}
.nc-card.nodesc .nc-card-content {
  display: flex;
  align-items: center;
}
.nc-card.nodesc .nc-card-title {
  display: block;
  margin-bottom: 0;
}
.nc-card.nodesc .nc-card-title h4 {
  width: 600px;
  margin-bottom: 30px;
}
.nc-card:hover {
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.nc-card:hover img {
  transform: scale(1.05);
  filter: blur(1px);
}
.nc-card:hover .nc-card-title h4 {
  color: #ffc21d;
}
.nc-card:hover .nc-card-btn {
  color: #fff;
  background-color: #ffc21d;
  border-color: #ffc21d;
  cursor: pointer;
}
.nc-card-img {
  flex: none;
  width: 530px;
  height: 100%;
  overflow: hidden;
}
.nc-card-img img {
  width: 100%;
}
.nc-card-content {
  flex: 1;
  box-sizing: border-box;
  height: 100%;
  padding: 32px 30px 30px 42px;
}
.nc-card-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.nc-card-title h4 {
  position: relative;
  width: 450px;
  height: 60px;
  font-size: 26px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}
.nc-card-title h4::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 9px;
  background-color: #ffc21d;
  content: "";
}
.nc-card-des {
  margin-top: -20px;
  line-height: 26px;
  text-align: justify;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.nc-card-btn {
  width: 130px;
  height: 32px;
  font-size: 14px;
}

.nc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 20px;
}
.nc-pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  margin: 0 10px;
  line-height: 30px;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.nc-pagination-item.prev, .nc-pagination-item.next {
  width: 80px;
}
.nc-pagination-item:hover {
  color: #ffc21d;
  background-color: rgba(255, 194, 29, 0.1);
  border-color: currentcolor;
}
.nc-pagination-item.active {
  color: #fff;
  background-color: #ffc21d;
  border-color: #ffc21d;
}
.nc-pagination-item.disabled {
  color: inherit;
  background-color: rgba(210, 210, 210, 0.25);
  border-color: #d2d2d2;
  cursor: not-allowed;
}

.nc-message-box {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 999999;
  display: flex;
  align-items: center;
  width: 80%;
  max-width: 380px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid;
  border-radius: 3px;
  transform: translate(-50%, -150%);
  opacity: 0;
  transition: opacity 0.3s, transform 0.4s;
}
.nc-message-box::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  content: "";
}
.nc-message-box.success {
  color: #00b42a;
  background-color: #e6f8ea;
  border-color: #ccf0d4;
}
.nc-message-box.success::before {
  background-color: #00b42a;
  content: "✓";
}
.nc-message-box.warning {
  color: #ff7d00;
  background-color: #fff2e6;
  border-color: #ffe5cc;
}
.nc-message-box.warning::before {
  background-color: #ff7d00;
  content: "!";
}
.nc-message-box.error {
  color: #f53f3f;
  background-color: #feecec;
  border-color: #fdd9d9;
}
.nc-message-box.error::before {
  background-color: #f53f3f;
  content: "✗";
}
.nc-message-box.fade-in {
  transform: translate(-50%, 0);
  opacity: 1;
}