/* 移动端适配样式 */
@media (max-width: 767px) {
  /* 热门问题部分样式 */
  .hot-questions-section {
    width: 100%;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .hot-questions-container {
    padding: 15px 20px;
    width: 100%;
    height: auto;
    min-height: 511px;
    border-radius: 10px;
    background: linear-gradient(220deg, #FFF4FB 0%, #ffffff 50%, #f3f3f3 100%);
  }

  .hot-questions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .hot-title {
    font-size: 20px;
    font-weight: 700;
    color: #F20921;
  }

  .hot-subtitle {
    font-size: 14px;
    color: #666;
  }

  .more-btn {
    font-size: 14px;
    color: #777777;
    cursor: pointer;
  }

  .hot-questions-content {
    display: flex;
    flex-direction: column;
  }

  .hot-questions-image {
    position: relative;
    width: 100%;
    height: 87px;
    border-radius: 8px;
    overflow: hidden;
  }

  .hot-questions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 77, 79, 0.9);
    padding: 15px;
    color: #fff;
  }

  .overlay-tag {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .overlay-text {
    font-size: 10px;
    font-weight: 600;
  }

  .hot-questions-list {
    flex: 1;
  }

  .question-item {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    margin-top: 12px;
  }

  .question-content {
    display: flex;
  }

  .question-number {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 600;
    margin-right: 8px;
    line-height: 24px;
  }

  .question-number-1 {
    color: #FF0000;
  }

  .question-number-2 {
    color: #FF8000;
  }

  .question-number-3 {
    color: #FEBF29;
  }

  .question-number-4 {
    color: #AAAAAA;
  }

  .question-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 20px;
    margin-top: 2px;
    /* 两行溢出出现省略号 */
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .answer-btn {
    background-color: transparent;
    border: 1px solid #FB9548;
    color: #FB9548;
    font-size: 12px;
    padding: 2px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
    margin-top: 5px;
  }

  .answer-btn:hover {
    background-color: #FB9548;
    color: #fff;
  }

  /* 常见问题部分样式 */
  .common-questions-container {
    padding: 15px 20px;
    width: 100%;
    height: auto;
    min-height: 511px;
    border-radius: 10px;
    background: linear-gradient(220deg, #F4F6FF 0%, #ffffff 50%, #f3f3f3 100%);
  }

  .common-questions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .common-title {
    font-size: 20px;
    font-weight: 700;
    color: #3D7FFF;
  }

  .common-subtitle {
    font-size: 14px;
    color: #666;
  }

  .common-btn {
    font-size: 14px;
    color: #777777;
    cursor: pointer;
  }

  .common-questions-list {
    margin-top: 20px;
  }

  .common-question-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .question-bullet {
    font-size: 16px;
    color: #ff4d4f;
    margin-right: 8px;
    line-height: 24px;
  }

  .question-content {
    flex: 1;
  }

  .question-title {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 20px;
    margin-top: 2px;
    /* 两行溢出出现省略号 */
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .question-date {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    margin-left: auto;
  }

  /* 帮助问题部分样式 */
  .help-question {
    width: 100%;
    height: auto;
    min-height: 511px;
    border-radius: 10px;
  }

  .help-banner {
    width: 100%;
    height: 89px;
    border-radius: 8px;
  }

  .help-questions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 20px;
    padding: 0 16px;
  }

  .help-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
  }

  .help-subtitle {
    font-size: 14px;
    color: #666;
  }

  .help-more-btn {
    font-size: 14px;
    color: #777777;
    cursor: pointer;
  }

  .help-questions-content {
    display: flex;
    flex-direction: column;
    padding: 20px 16px 0 40px;
    position: relative;
  }

  .help-questions-content:after {
    content: '';
    position: absolute;
    display: block;
    left: 25px;
    top: 20px;
    width: 1px;
    height: 90%;
    background-color: #E5E5E5;
  }

  .help-question-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    position: relative;
  }

  .help-question-title {
    font-size: 14px;
    color: #000;
    line-height: 20px;
    margin-top: 2px;
    /* 两行溢出出现省略号 */
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .help-question-title:after {
    content: '';
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border: #FB9548 2px solid;
    background-color: #FFF;
    margin-top: 10px;
    border-radius: 50%;
    top: -4px;
    left: -20px;
    z-index: 1;
  }

  .help-question-summary {
    font-size: 12px;
    color: #666;
    line-height: 20px;
    margin-top: 2px;
    /* 两行溢出出现省略号 */
    line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .help-question-date {
    font-size: 10px;
    color: #999;
    margin-top: 5px;
  }

  .help-more-bottom-btn {
    font-size: 12px;
    color: #777777;
    cursor: pointer;
    margin-top: 20px;
    border: 1px solid #777777;
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
    margin: 20px 40px;
  }

  /* 新闻卡片部分样式 */
  .news-card-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .news-card-container {
    width: 100%;
  }

  .news-card-static {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .news-card-wrap {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
  }

  .news-card-wrap:hover {
    transform: translateY(-2px);
  }

  .news-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    margin-bottom: 8px;
  }

  .news-card-left {
    position: relative;
    width: 100%;
    height: 180px;
    flex-shrink: 0;
    border-radius: 5px;
  }

  .news-card-image {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .news-card-badge {
    position: absolute;
    top: 10px;
    left: 0px;
    width: 100px;
  }

  .news-card-right {
    flex: 1;
    padding: 10px 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .news-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
    /* 两行溢出出现省略号 */
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
  }

  .news-card-qa-count {
    background-color: #FB9548;
    color: #FFF;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 5px;
    margin-right: 20px;
  }

  .news-card-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.6;
  }

  .news-card-meta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: auto;
  }

  .news-card-views-icon {
    width: 14px;
    height: 14px;
  }

  .news-card-views-count {
    font-size: 14px;
    color: #999;
    margin-left: 2px;
  }

  .news-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .news-card-date {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 50%;
  }

  .news-card-views {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-top: 10px;
  }

  .news-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .news-card-tag {
    background-color: #FF9500;
    color: #FFF;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
  }

  /* 右侧静态卡片样式 */
  .news-card-static .vip-banner {
    background-color: #FF6B6B;
    color: #FFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 147px;
    border-radius: 5px;
  }

  /* 摩讯从这开始标题 */
  .news-card-static .section-title {
    padding: 15px 5px 8px 0;
    font-size: 26px;
    font-weight: 600;
    color: #333;
    position: relative;
  }

  .news-card-static .section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background-color: #FF6B6B;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  /* 摩耶按摩文章数量 */
  .news-card-static .article-count {
    padding: 15px 5px;
    border-bottom: 1px solid #F0F0F0;
  }

  .news-card-static .article-count-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .news-card-static .article-count-item:last-child {
    margin-bottom: 0;
  }

  .news-card-static .article-count-item img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }

  .news-card-static .article-count-item .article-title {
    flex: 1;
    font-size: 14px;
    color: #333;
  }

  .news-card-static .article-count-item .article-number {
    font-size: 14px;
    color: #FF6B6B;
    font-weight: 600;
  }

  /* 精选文章 */
  .news-card-static .featured-article {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
  }

  .news-card-static .featured-index {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background-color: #FF0000;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
  }

  .news-card-static .featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
  }

  .news-card-static .featured-content {
    padding: 12px 0 0;
  }

  .news-card-static .featured-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    /* 两行溢出出现省略号 */
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-card-static .featured-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* 你可能会关心 */
  .news-card-static .you-may-care {
    padding: 15px 0px;
  }

  .news-card-static .care-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .news-card-static .care-item:hover {
    transform: translateX(5px);
  }

  .news-card-static .care-item .care-index {
    width: 122px;
    height: 70px;
    background-color: #FF6B6B;
    margin-right: 10px;
    border-radius: 6px;
  }

  .news-card-static .care-item .care-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60px;
  }

  .news-card-static .care-item .care-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    /* 两行溢出出现省略号 */
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-card-static .care-item .care-meta {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* 问答部分 */
  .news-card-static .qa-section {
    overflow: hidden;
    margin: 15px 0;
  }

  .qa-meta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
  }

  .qa-views-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .qa-item-first {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 211px;
    background-size: 100% 100%;
    background-image: url('/images/news/16.png');
    color: #FFF;
    border-bottom: none !important;
    border-radius: 10px;
  }

  .news-card-static .qa-item {
    padding: 15px;
    border-bottom: 1px dashed #AAAAAA;
    background-color: #FFF;
  }

  .news-card-static .qa-item:last-child {
    border-bottom: none;
  }

  .news-card-static .qa-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
    line-clamp: 2;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
  }

  .news-card-static .qa-answer {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
    opacity: 0.9;
    overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
    line-clamp: 2;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
  }

  .news-card-static .qa-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.8;
  }

  .qa-time {
    margin-left: 10px;
  }

  .news-card-static .qa-btn {
    background-color: #FFF;
    color: #FF4D4D;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .news-card-static .qa-btn:hover {
    background-color: #FFE5E5;
    transform: scale(1.05);
  }

  /* 从这开始探索 */
  .news-card-static .explore-section {
    background-color: #FFF;
    border-radius: 8px;
    margin-bottom: 15px;
    margin-top: 24px;
  }

  .news-card-static .explore-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    position: relative;
    padding-left: 15px;
  }

  .news-card-static .explore-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background-color: #FF4D4D;
    border-radius: 2px;
  }

  .news-card-static .explore-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 15px 15px;
  }

  .news-card-static .explore-tag {
    background-color: #F0F0F0;
    color: #333;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .news-card-static .explore-tag:hover {
    background-color: #FFE5E5;
    color: #FF4D4D;
    transform: scale(1.05);
  }

  /* 特殊标签样式 */
  .news-card-static .explore-tag:nth-child(6) {
    background-color: #FF4D4D;
    color: #FFF;
  }

  .news-card-static .explore-tag:nth-child(13) {
    background-color: #4CAF50;
    color: #FFF;
  }

  .news-card-static .explore-tag:nth-child(14) {
    background-color: #FF9800;
    color: #FFF;
  }

  /* 分页样式 */
  .page-link {
    color: #EF061C;
    background-color: #FFECE8;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 12px;
  }

  .active.page-item .page-link {
    border: #EF061C 1px solid;
    background-color: #EF061C !important;
    color: #FFF !important;
    font-size: 14px;
    font-weight: 600;
  }

  .page-link {
    border: #FFECE8 1px solid;
    color: #EF061C;
    background-color: #FFECE8;
  }

  /* 新闻横幅部分样式 */
  .news-banner {
    width: 100%;
    min-height: 300px;
    background-image: url("/images/news/7.png");
    background-size: 100% 100%;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
  }

  .banner-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    padding: 0 15px;
    box-sizing: border-box;
  }

  /* 箭头样式 */
  .banner-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    display: none;
  }

  .banner-arrow:hover {
    transform: scale(1.05);
  }

  .banner-arrow img {
    width: 40px;
    height: 40px;
  }

  .banner-arrow-left {}

  .banner-arrow-right {}

  /* 轮播标题区域样式 */
  .banner-title {
    width: 100%;
    height: auto;
    min-height: 200px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px 25px 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    display: none;
  }

  .banner-title::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%);
    }

    100% {
      transform: translateX(100%) translateY(100%);
    }
  }

  .banner-title p {
    font-size: 14px;
    color: #000;
    margin-bottom: 14px;
    line-height: 2.5;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }

  .banner-title p:hover {
    transform: translateX(8px);
    color: #000;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .banner-title p::before {
    content: "▸";
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
  }

  .banner-title p:hover::before {
    opacity: 1;
    transform: translateX(0);
  }

  /* 右侧信息卡片 */
  .banner-info {
    width: 100%;
    height: auto;
    min-height: 200px;
    background: linear-gradient(180deg, #DAF9FF 0%, #FFFFFF 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 2px solid #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 20px;
  }

  /* 摩耶问答样式 */
  .qa-title {
    font-size: 30px;
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-align: center;
  }

  .qa-subtitle {
    font-size: 14px;
    color: #666666;
    line-height: 2;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
  }

  .banner-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    position: relative;
    display: none;
  }

  .dec-item-wrap {
    padding: 15px;
    box-sizing: border-box;
    background-image: url('/images/news/17.png');
    background-size: 280px 380px;
    background-position: 0px 0px;
    width: 100%;
    max-width: 280px;
    height: 380px;
    transition: all 0.3s ease;
    margin-top: 0;
    border: 2px solid #FFF;
    border-radius: 10px;
    margin-left: 0;
  }

  .dec-item-wrap:hover {
    transform: scale(1.05);
  }

  .dec-item {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 38px;
    align-items: center;
  }

  .dec-image {
    width: 140px;
    height: 140px;
    margin-top: 18px;
    border-radius: 50%;
  }

  .dec-name {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 28px;
  }

  .dec-name-title {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
  }

  .dec-text-itle {
    font-weight: 600;
    font-size: 24px;
  }

  .dec-text {
    color: #777777;
    font-size: 14px;
  }

  .dec-time {
    margin-right: 10px;
    display: flex;
    align-items: center;
  }

  .dec-time-icon {
    width: 15px;
    height: 15px;
  }

  .dec-time-length {
    color: #777777;
    font-size: 12px;
    margin-left: 2px;
  }

  .dec-price-num {
    color: #FF3F22;
  }

  .dec-price-after {
    font-size: 12px;
    margin-left: 10px;
    font-weight: 800;
  }

  .dec-price-info {
    font-size: 18px;
    font-weight: 800;
  }

  .dec-price-hua {
    margin-right: 10px;
    color: #777777;
    text-decoration: line-through;
    font-size: 14px;
  }

  .dec-price {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 16px;
  }

  .dec-btn {
    width: 150px;
    height: 44px;
    border-radius: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 18px;
    background-color: #FB9548;
    line-height: 44px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
    transition: all 1000ms;
    cursor: pointer;
  }

  .dec-btn:hover {
    color: #FFF;
    transform: scale(1.05);
    outline: 2px solid #FFFFFF;
    box-shadow: 4px 5px 17px -4px #FFFFFF;
  }

	.dec-btn::before {
		content: "";
		position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #F53D50;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 500ms;
  }

	.dec-btn:hover::before {
		width: 250%;
	}

	.news-load-more {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 60px;
		font-size: 14px;
		font-weight: 500;
		color: #999;
	}
}

/* 标签悬停效果 */
.news-card-tag:hover {
  background-color: #EF061C;
  cursor: pointer;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* 通用移动端样式 */
@media (max-width: 767px) {
  /* 确保所有元素都适应屏幕宽度 */
  * {
    box-sizing: border-box;
  }

  /* 调整字体大小 */
  body {
    font-size: 14px;
    line-height: 1.5;
  }

  /* 移除不必要的边距和填充 */
  .container {
    padding: 0 15px;
  }

  /* 确保图片适应屏幕 */
  img {
    max-width: 100%;
    height: auto;
  }

  /* 调整按钮样式 */
  button {
    font-size: 14px;
    padding: 8px 16px;
  }

  /* 调整输入框样式 */
  input, textarea {
    font-size: 14px;
    padding: 8px 12px;
  }

  /* 调整标题样式 */
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 14px;
  }

  h6 {
    font-size: 12px;
  }

  /* 调整段落样式 */
  p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* 调整列表样式 */
  ul, ol {
    padding-left: 20px;
  }

  li {
    font-size: 14px;
    line-height: 1.5;
  }
}
