@charset "UTF-8";
/* CSS Document */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #fafafa;
    color: #333;
    line-height: 1.6;
  }
a { text-decoration: none;  color: #999999; }
a:hover {text-decoration: underline; }
li{
	list-style: none;
	text-align: left;
}
  /* 顶部 Logo */
  .logo-box {
    text-align: center;
    padding: 30px 20px 20px;
  }

  .logo-box img {
    height: 80px;
    width: auto;
  }

  /* 导航栏 */
  nav {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
  }

  nav a {
    display: inline-block;
    margin: 0 18px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }

  nav a:hover {
    color: #666;
  }

  /* 标题 */
  header {
    text-align: center;
    padding: 0 20px 40px;
  }

  header h1 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  /* 通用板块 */
  .section {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
  }

  .section h2 {
    font-size: 20px;
    margin: 30px 0 20px;
    font-weight: 500;
    text-align: center;
  }

  /* 档期 */
  .booking-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
  }

  .booking-section p {
    color: #444;
    margin-bottom: 25px;
    font-size: 16px;
  }

  /* 预约按钮 → 跳微信 */
  .booking-btn {
    display: inline-block;
    background: #07C160;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
  }

  .booking-btn:hover {
    background: #06ad56;
  }

  /* 简介 */
  .profile {
    text-align: left;
  }

  .profile p {
    margin-bottom: 10px;
    color: #444;
  }

  /* 三列图片 */
  .gallery {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: grid;
	grid-template-columns: repeat(3,1fr);
    gap: 20px;
    padding: 0 20px;
  }

  .photo-item {
    width: 100%;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
  }

  .photo-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 底部版权 */
  footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 14px;
  }

  /* 手机端 */
  @media (max-width: 768px) {
    .gallery {
      grid-template-columns: 1fr;
    }
    nav a {
      margin: 0 10px;
      font-size: 15px;
    }
    .logo-box img {
      height: 60px;
    }
}

/*联系方式部分代码*/
#contact {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	font-size: 12px;
	line-height: 1.8;
}
#contact ul { 
	margin: 0 auto;
	width:fit-content;
	text-align:left;
	list-style: none;
	padding-left: 0;
}
#contact li {
	float: left;
	display: block;
	margin: 10px 10px;
}

#abstract {
	margin:10px auto;
	padding:0 20px;
	text-indent: 2em;
	line-height: 1.8;
}
#abstract h2{
	text-align: center;
}
