/* 基础样式 */
:root {
  --primary-color: #23A455;
  --secondary-color: #5511F8;
  --text-color: #454F5E;
  --background-color: #F2F0FE;
  --white-color: #FFFFFF;
  --heading-color: #0F172A;
  --border-radius: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8em;
  color: var(--text-color);
  background-color: var(--background-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover, a:focus {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.3em;
  margin-bottom: 15px;
}

/* 站点容器 */
.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 00px;
}

/* 站点头部 */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background-color: var(--white-color);
}

.site-logo {
  display: flex;
  align-items: center;
}

.custom-logo-link {
  margin-right: 15px;
}

.custom-logo {
  max-width: 50px;
  height: auto;
}

.site-title-wrap {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
}

/* 内容区域 */
.content-area {
  border-radius: 10px;
  overflow: hidden;
}

.site-main {
  padding: 20px;
}

.article-single {
  margin-bottom: 30px;
}

.content-container {
  padding: 20px;
}

/* 标题样式 */
.heading-title {
  font-size: 28px;
  margin-bottom: 15px;
}

.heading-title a {
  color: var(--heading-color);
}

/* 分割线 */
.divider {
  height: 1px;
  background-color: #eee;
  margin: 20px 0;
}

/* 图片容器 */
.image-container {
  margin: 25px 0;
  text-align: center;
}

.image-container img {
  border-radius: 10px;
}

/* 文本内容 */
.text-content {
  margin: 20px 0;
}

.text-content p {
  margin-bottom: 15px;
}

/* 按钮样式 */
.button-container {
  margin: 25px 0;
  text-align: center;
}

.button-link {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.button-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.button-text {
  color: var(--white-color);
}

/* 移动端按钮居中 */
@media (max-width: 768px) {
  .mobile-center {
    text-align: center;
  }
  
  .heading-title {
    font-size: 22px;
  }
  
  .site-main {
    padding: 10px;
  }
  
  .content-container {
    padding: 10px;
  }
  
  .site-footer ul {
    flex-direction: column;
  }
  
  .site-footer li {
    margin: 8px 0;
  }
}

/* 页脚 */
.site-footer {
  padding: 30px 0;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #e5e5e5;
  background-color: var(--white-color);
}

.footer-links {
  margin-bottom: 15px;
}

.site-footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer li {
  margin: 0 15px;
  font-size: 14px;
}

.site-footer a {
  color: var(--text-color);
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--primary-color);
}

.copyright {
  font-size: 13px;
  color: #999;
  margin-top: 10px;
} 