* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
    font-family: 'MongolianBaiti';
    src: url('../../images/MONBAITI.TTF') format('truetype');
}

body {
    font-family: 'MongolianBaiti', sans-serif;
    overflow-x: hidden;
}

/* 轮播图容器 */
.carousel-container {
  position: relative;
  width: 100vw;
  height: 100px;
  overflow: hidden;
}

/* 导航栏 */
.navbar {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 30px;
}

.nav-item {
    color:#000;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    /* font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
}

.nav-item2 {
    color:#9c9c9c;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    /* font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
}

/* Logo */
.logo {
    position: absolute;
    top: 10px;
    left: 50px;
    z-index: 10;
    width: 250px;
}

.boby-title {
    position: relative;
    padding: 65px 10%;
    text-align: left;
    border-top: 1px solid #ddd;
}

.boby-title-left{
    position: absolute;
    top: 30px;
    left: 10%;
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 50px;
}

.boby-title-right{
    position: absolute;
    top: 36px;
    right: 10%;
    color:#9c9c9c;
    text-decoration: none;
    font-size: 15px;
    line-height: 50px;
    
}

.boby-title-info1{
    position: absolute;
    top: 80px;
    left: 10%;
    font-size: 22px;
    color: var(--primary-color);
    line-height: 50px;
}
.boby-title-info2{
    position: absolute;
    top: 80px;
    right: 10%;
    font-size: 19px;
    color: var(--primary-color);
    line-height: 50px;
}

/* 内容容器 */
.carousel-container2 {
    position: relative;
    width: 80vw;
    height: 800px;
    overflow: hidden;
    text-align: center;
    margin-left: 10vw;
}


/* 轮播图滑动轨道 */
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

/* 单张轮播图 */
.carousel-slide {
    min-width: 80vw;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.01);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.prev-btn { left: -50px; }
.next-btn { right: 150px; }

/* 内容区域 */
.content {
    padding: 30px 10% 60px 10%;
    text-align: left;

}
.content .point{
    font-size: 14px;
    color:#9c9c9c;
    line-height: 18px;
}


/* 页脚 */
.footer {
  background: #f5f5f5;
  padding: 40px ;
  text-align: center;

}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

