[v-cloak] {
  display: none;
}


/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#app {
  overflow-x: hidden;
}

/* 导航栏样式 */
.nav {
  width: 100vw;
  background-color: #fff;
}

.nav-box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.nav-box-left {
  height: 80px;
  margin-top: 10px;
  overflow: hidden;
}

.nav-box-left>img {
  width: auto;
  height: 80px;
}

.nav-box-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.nav-box-right-top {
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  margin: 30px 0 10px;
  height: 35px;
}

.nav-box-right-top>span {
  cursor: pointer;
}

.nav-box-right-top>span:hover {
  color: #2a6496;
  text-decoration: underline;
}

.nav-box-right-bow {
  display: flex;
  align-items: center;
  height: 30px;
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
}

.tab {
  width: 100%;
  background-color: #f2f2f2;
  position: relative;
  z-index: 100;
}

.tab-box {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.tab-box-item {
  width: 120px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  overflow: hidden;
}

/* .tab-box-item:hover{
  color: #fff;
  background-color: #0066CC;
} */
.tab-box-item-nav {
  position: absolute;
  top: 45px;
  left: 0;
  z-index: 999999;
  width: 100%;
  padding: 20px 5px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #0066CC;
  border-top: none;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
}

.nav-fadeIn {
  opacity: 0;
  animation: fadeIn .6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.nav-bg {
  color: #fff;
  background-color: #0066CC;
}

.tab-item-nav-left {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start
}

.tab-item-nav-left-item {
  margin: 15px;
  width: 125px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-bottom: 1px dashed #ccc;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.tab-item-nav-left-item:hover {
  color: #005ce4;
}

.tab-item-nav-right {
  border-left: 1px solid #ddd;
  width: 50%;
}

.tab-item-nav-right>img {
  margin-left: 80px;
  width: 360px;
  height: 310px;
}

/* 轮播图样式 */
.carousel-container {
  width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.bg-img {
  width: 100vw;
  height: 300px;
}

.bg-img>img {
  width: 100vw;
  height: 300px;
}

.carousel {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 370px;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 340px;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
  z-index: 10;
}

.carousel-item>img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  cursor: pointer;
  z-index: 20;
  border: none;
  font-size: 52px;
  font-weight: 600;
  text-shadow: #666 2px 2px 5px;
  font-family: "宋体";
}

.carousel-control.prev {
  left: 16px;
}

.carousel-control.next {
  right: 16px;
}

.indicators {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 20;
}

.indicator {
  height: 10px;
  width: 60px;
  background-color: #e4e4e4;
  transition: all 0.3s ease;
  cursor: pointer;
}

.indicator.active {
  background-color: #7bbedf;
  width: 60px;
}



/* 分页器样式 */
.pagination {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #666;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination button {
  padding: 5px 12px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #666;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
}

.pagination button:hover {
  border-color: #0068b7;
  color: #0068b7;
}

.pagination button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  border-color: #ccc;
  color: #999;
}

.pagination select {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 0 5px;
}

.pagination .page-info {
  margin: 0 10px;
}

.pagination .current-page {
  color: #0068b7;
  font-weight: bold;
}

/* 底部栏 */
.footer {
  width: 100vw;
  background-color: #16222e;
}

.footer-box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.footer-box-left {
  width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-box-right {
  width: 400px;
}

.footer-box-left-title {
  color: #FFFFFF;
  text-align: center;
  line-height: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-box-left-title>a {
  text-decoration: none;
}

.footer-box-left-title>a:hover {
  text-decoration: underline;
}

.footer-box-right {
  display: flex;
}

.footer-box-right>div {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0px 20px;
  box-sizing: border-box;
}

.footer-box-right>div>img {
  width: 80px;
  height: 80px;
}

.footer-box-right>div>p {
  font-size: 14px;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}