/*------------------------------------------------------------------
  style-essential.css
  精简版样式文件 - 仅包含项目中真正使用的样式
  原始文件: style.css (8000+ 行) → 精简后约 150 行
  
  使用的页面:
  - privacyPolicy.vue
  - termsOfService.vue
  - refundPolicy.vue
  - cookiePolicy.vue
  - intellectual.vue
  - info.vue
  - payChannel.vue
-------------------------------------------------------------------*/

/*--------------------------------------------------------------
  Theme Reset & Base
--------------------------------------------------------------*/
html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background-color: #f5f6f7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-width: 320px;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

/* 富文本编辑器对齐 */
.ql-align-center {
  text-align: center;
  text-indent: 0em;
}

/*--------------------------------------------------------------
  Global Elements
--------------------------------------------------------------*/
.page-wrapper {
  position: relative;
  overflow: hidden;
  padding-left: 0px;
  padding-right: 0px;
}

.section-padding {
  padding: 60px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 20px 0;
  }
}

@media (max-width: 530px) {
  .section-padding {
    padding: 15px 0;
  }
}

/* 清除浮动 */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/*--------------------------------------------------------------
  Blog Single Section (政策/条款页面使用)
--------------------------------------------------------------*/
.wpo-blog-single-section {
  background: #fff;
}

@media screen and (min-width: 1200px) {
  .wpo-blog-single-section .wpo-blog-content {
    padding-right: 0px;
  }
}

.wpo-blog-content {
  background: #fff;
}

/* Post 文章样式 */
.post {
  position: relative;
}

.wpo-blog-single-section .post h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 0.5em;
  color: #242f6c;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .post h2 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post h2 {
    font-size: 20px;
  }
}

.wpo-blog-single-section .post p {
  margin-bottom: 1.5em;
  line-height: 1.8;
  color: #333;
}

.wpo-blog-single-section .post h3 {
  font-size: 22px;
  line-height: 1.5em;
  margin: 1.8em 0 1em;
  color: #242f6c;
  font-weight: 600;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .post h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post h3 {
    font-size: 18px;
  }
}

.wpo-blog-single-section .post h4 {
  font-size: 18px;
  line-height: 1.5em;
  margin: 1.5em 0 0.8em;
  color: #242f6c;
  font-weight: 600;
}

.wpo-blog-single-section .post ul,
.wpo-blog-single-section .post ol {
  margin-bottom: 1.5em;
  padding-left: 20px;
}

.wpo-blog-single-section .post li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}

.wpo-blog-single-section .post a {
  color: #00d690;
  text-decoration: none;
}

.wpo-blog-single-section .post a:hover {
  text-decoration: underline;
}

/* 引用块 */
.wpo-blog-single-section .post blockquote {
  background-color: #f8f8f8;
  padding: 30px;
  margin: 30px 0;
  border: 0;
  border-left: 4px solid #00d690;
  line-height: 1.9em;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post blockquote {
    padding: 20px;
  }
}

