* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 顶部导航 */
.top-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
}

.nav-list a {
  text-decoration: none;
  color: #333;
}

/* Banner区域 */
.banner img {
  width: 100%;
  height: auto;
}

/* 服务信息 */
.notice {
  color: #ff0000;
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.service-info {
  padding: 20px;
  line-height: 2;
}

.info-item {
  display: flex;
  align-items: flex-start;
}

.label {
  color: #333;
  font-weight: normal;
}

.phone {
  color: #0066ff; /* 蓝色电话号码 */
}

.value {
  color: #333;
}

/* 服务步骤 */
.service-steps {
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  text-align: center;
}

.step {
  flex: 1;
}

/* 服务说明 */
.service-notes {
  padding: 20px 0;
}

.service-notes ul {
  list-style: none;
  padding: 10px 0;
}

.service-notes li {
  margin-bottom: 10px;
  padding-left: 20px;
}

/* 咨询广告图 */
.consultation-banner img {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.troubleshooting {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
  line-height: 1.8;
}
/* FAQ部分  */
h1 {
  font-size: 18px;
  margin-bottom: 20px;
}

.section {
  margin-bottom: 30px;
}

h2 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: normal;
}

ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

ol li {
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
}

/* 新闻列表 */
.price-news-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.news-item {
  padding: 20px;
  border: 1px solid #eee; /* 添加边框 */
  margin-bottom: 15px; /* 添加底部间距 */
  border-radius: 2px; /* 添加圆角 */
  background: #fff; /* 添加背景色 */
}

.news-title {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  font-weight: normal;
}

.news-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.news-time {
  font-size: 14px;
  color: #999;
  display: block;
}

/* 鼠标悬停效果 */
.news-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* 添加悬停阴影效果 */
}


/* 新闻内容样式 */
.news-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-content h1 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.news-content h2 {
    font-size: 18px;
    color: #555;
    margin: 15px 0;
}

/* 价格高亮显示 */
.price-highlight {
    font-size: 20px;
    color: #ff6600;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    background-color: #fff9f0;
    border-radius: 4px;
}

/* 表格样式优化 */
.price-table {
    width: 100%;
    margin: 15px 0;
    border-collapse: collapse;
}

.price-table th, .price-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

.price-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-info h3 {
    margin-top: 20px;
    padding-left: 10px;
    border-left: 3px solid #0099ff;
}

.price-info ul {
    margin: 10px 0;
    padding-left: 20px;
}

.price-info li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.price-note {
    text-align: right;
    color: #777;
    font-size: 14px;
    margin-top: 10px;
}

.price-info ul {
    margin: 15px 0;
    padding-left: 20px;
}

.price-info li {
    margin-bottom: 8px;
}

/* 新闻项目悬停效果 */
.news-item {
    cursor: pointer;
    transition: background-color 0.3s;
}

.news-item:hover {
    background-color: #f0f8ff;
}

.news-item.active {
    background-color: #e6f7ff;
    border-left: 3px solid #0099ff;
}
