* {
    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;
}



.boby-bottom {
    padding: 60px 10%;
    text-align: left;
    border-top: 1px solid #ddd;

}
.boby-bottom-title{
    font-size: 30px;
}

/* 轮播图容器 */
.carousel-container {
    position: relative;
    width: 100vw;
    height: 100px;
    overflow: hidden;
}

.carousel-container2 {
    position: relative;
    width: 70vw;
    height: 600px;
    overflow: hidden;
    text-align: center;
    margin-left: 15vw;
}


/* 轮播图滑动轨道 */
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

/* 单张轮播图 */
.carousel-slide {
    min-width: 70vw;
    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; }

/* 导航栏 */
.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;
}

/* 内容区域 */
.content {
    padding: 60px 15%;
    text-align: left;

}

.title {
    margin-bottom: 30px;
    /* margin: 10px; */
    font-size: 24px;
    color: #9c9c9c;
    margin-bottom: 50px;
}

.p1 {
    max-width: 1200px;
    text-align: left;
    padding-top: 30px;
    /* //margin: 10px; */
    line-height: 1.2;
    color: #3b3b3b;
}


.p2 {
    max-width: 1200px;
    text-align: left;
    padding-top: 10px;
    /* //margin: 10px; */
    line-height: 1.2;
    color: #3b3b3b;
}

/* 图片画廊 */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    margin-top: 40px;
}

.gallery-item {
    width: calc(25% - 20px);
    min-width: 250px;
    height: 674px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.email-container2 {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: left; /* 水平居中 */
    height: 70px; /* 确保容器有高度 */
    text-align: center; /* 文字水平居中 */
    line-height: normal; /* 重置默认行高 */
}

.email-container2 img {
    margin-right: 10px; /* 图片和文字之间的间距 */
}

.email-container2 span {
    display: inline-block; /* 使span可以设置宽度 */
    margin-top: 60px;
    /* height: 40px; */
}



/* 页脚 */
.footer {
    background: #f5f5f5;
    padding: 40px ;
    text-align: center;

}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}
