*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
    width: 600px;
      max-width: 600px;
      height: 345px;
      display: block;
      margin: 60px auto;
      border-radius: 20px;
      object-fit: cover;
      object-position: center;
    }
@font-face{
    font-family: 'FZFeiFTJ-1';
    src: url('../font/FZFeiFTJ-1.otf') format('opentype');
}
@font-face{
    font-family: 'pingfang';
    src: url('../font/苹方字体.ttf') format('truetype');
}
@font-face{
    font-family: 'Tibet';
    src: url('../font/YagpoSambhotaUni.ttf') format('truetype');
}
body{
      font-family: 'pingfang', sans-serif;
      line-height: 1.6;
      color: #333;
}
.header{
    width: 100%;
    height: 100px;
    background-color: rgba(71, 195, 206, 0.73);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}
.nav{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-logo{
    width: 130px;
    margin: 15px 45px;
}
.nav-list{
    display: flex;
    list-style: none;
    align-items: center;
}
.nav-list li{
    margin: 30px 45px;
}
.nav-list li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    position: relative; /* 为伪元素提供定位参考 */
    letter-spacing: 3px;
}

.nav-list li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px; /* 距离文字底部6px */
    transform: translateX(-50%); /* 水平居中 */
    width: 40px;
    height: 3px;
    background-color: #ffffff; /* 白色背景 */
    opacity: 0; /* 初始隐藏 */
    transition: opacity 0.3s ease; /* 过渡效果 */
}
.nav-list li a:hover::after {
    opacity: 1; /* 鼠标悬停时显示 */
}
.nav-login a{
    margin-left: 20px;
}
    a {
      text-decoration: none;
      color: #333;
    }
.breadcrumb {
   margin:50px;
   margin-top: 150px;
   margin-bottom: 1.875rem;
   font-size: 16px;
   color: #999;
   margin-left: 230px;
   font-family: 苹方;
}

.container{
      width: 80%;
      margin: 20px auto;
}
.temple-section{
      display: flex;
      justify-content: center;
      flex-direction: column;
      text-align: center;
}
/* .temple-section img{
      width: 100%;
      max-width: 600px;
      height: auto;
      display: block;
      margin: 60px auto;
      border-radius: 20px;
} */
.temple-section img:nth-child(2) {
    margin-top: 60px;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 60px auto;

}
.temple-section img:last-child {
    margin-top: 30px;
    margin-bottom: 0; /* 可根据需要添加，防止和其他样式冲突导致底部 margin 异常 */
    margin-left: auto;
    margin-right: auto;

}
/* .temple-section p{
      font-family: 'pingfang';
      margin-top: 10px;
      max-width: 950px;
      text-align: center;
      text-indent: 0;
      font-size: 15px;
      margin: 0 auto;
      padding: 0;
      border: none;
      margin-bottom: 55px;
      margin-top: 55px;
      text-align:justify;
        line-height: 1.8;
} */
 .temple-section p{
      font-family: 'pingfang';
      margin-top: 10px;
      max-width: 950px;
      text-indent: 0;
      font-size: 20px;
      margin: 0 auto;
      padding: 0;
      border: none;
      margin-bottom: 55px;
      margin-top: 55px;
      text-align:justify;
        line-height: 1.8;
}
.highlight{
      font-size: 25px;
      font-family: 'pingfang';
}
.temple{
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      column-gap: 30px;
      row-gap: 0;
}
.multi-img img{
      width: 350px;
      height: 520px;
      margin-bottom: 50px;
      margin-top: 0;
      border-radius: 20px;
      transition: all 0.3s ease;

}
.multi-img img:hover {
    opacity: 0.8; /* 鼠标悬停时透明度变为 0.8 */
    transform: scale(1.05); /* 鼠标悬停时图片放大 1.05 倍 */
}
.multi-img1 img{
      width: 500px;
      height: 330px;
      margin-bottom: 10px;
      border-radius: 20px;
      transition: all 0.3s ease;
      position: relative;
      top: 95px;
}
.multi-img1 img:hover {
    opacity: 0.8; /* 鼠标悬停时透明度变为 0.8 */
    transform: scale(1.05); /* 鼠标悬停时图片放大 1.05 倍 */
}
.footer {
    width: 100%;
    height: 220px;
    background-color: #00bcd4;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    font-size: 18px;
}