/* 柬埔寨服务器页面样式 */
/* 全局容器样式 */
.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
/* 主内容区域样式 */
.hk-content {
  padding-bottom: 60px;
}
/* 页面标题区域 */
.page-header {
  text-align: center;
  padding: 60px 0;
}
.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #333;
  letter-spacing: -0.5px;
}
.page-header p {
  font-size: 20px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}
/* 服务器优势区域 */
.hk-advantages {
  background-color: #f8f9fa;
  padding: 90px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #333;
  letter-spacing: -0.5px;
}
.section-header p {
  font-size: 20px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.advantage-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.advantage-card i {
  font-size: 54px;
  color: #0056b3;
  margin-bottom: 25px;
}
.advantage-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #333;
}
.advantage-card p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}
/* 服务器配置方案 */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}
.plan-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.plan-card.featured {
  border: 2px solid #0056b3;
  transform: scale(1.05);
}
.plan-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
}
.plan-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #0056b3;
  color: #fff;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  border-bottom-left-radius: 12px;
}
.plan-header {
  background-color: #f8f9fa;
  padding: 30px 25px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.plan-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #333;
}
.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.plan-price .price {
  font-size: 42px;
  font-weight: 700;
  color: #0056b3;
}
.plan-price .unit {
  font-size: 18px;
  color: #666;
  margin-left: 5px;
}
.plan-specs {
  padding: 35px 25px;
  list-style: none;
  margin: 0;
}
.plan-specs li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 16px;
}
.plan-specs li:last-child {
  border-bottom: none;
}
.spec-label {
  font-weight: 600;
  color: #333;
}
.plan-card .btn {
  display: block;
  margin: 0 25px 25px;
  padding: 14px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}
.plan-card .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}
/* 服务特点区域 */
.service-features {
  padding: 90px 0;
}
.service-features:nth-child(odd) {
  background-color: #f8f9fa;
}
.features-container {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  margin-bottom: 25px;
}
.feature-icon i {
  font-size: 54px;
  color: #0056b3;
}
.feature-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.feature-content p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}
/* 网络连接区域 */
.network-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 60px;
}
.stat-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-8px);
}
.stat-icon i {
  font-size: 42px;
  color: #0056b3;
  margin-bottom: 20px;
}
.stat-value {
  font-size: 38px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.stat-label {
  font-size: 17px;
  color: #666;
}
.network-providers {
  background-color: #fff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.network-providers h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}
.providers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.provider {
  background-color: #f1f5ff;
  color: #0056b3;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.provider:hover {
  background-color: #e0eaff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
}
/* 应用场景区域 */
.application-scenarios {
  padding: 90px 0;
}
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 60px;
}
.scenario-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scenario-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.scenario-icon i {
  font-size: 54px;
  color: #0056b3;
  margin-bottom: 25px;
}
.scenario-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #333;
}
.scenario-content p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}
/* FAQ区域 */
.faq-list {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-5px);
}
.faq-question {
  display: flex;
  align-items: center;
  padding: 25px 35px;
  cursor: pointer;
  background-color: #f8f9fa;
}
.faq-question i {
  font-size: 28px;
  color: #0056b3;
  margin-right: 20px;
}
.faq-question h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.faq-answer {
  padding: 0 35px 25px 83px;
}
.faq-answer p {
  color: #666;
  line-height: 1.8;
  margin: 0;
  font-size: 16px;
}
/* 联系我们区域 */
.contact-section {
  background-color: #0056b3;
  color: #fff;
}
.contact-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.contact-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.contact-content p {
  font-size: 20px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.contact-buttons .btn {
  padding: 15px 35px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.contact-buttons .btn-primary {
  background-color: #fff;
  color: #0056b3;
  border: none;
}
.contact-buttons .btn-primary:hover {
  background-color: #f1f1f1;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.contact-buttons .btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.contact-buttons .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* 响应式样式 */
@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
  .advantages-grid,
  .scenarios-grid,
  .network-stats,
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-card.featured {
    transform: scale(1);
  }
  .plan-card.featured:hover {
    transform: translateY(-12px);
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  .advantages-grid,
  .scenarios-grid,
  .network-stats,
  .features-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-buttons {
    flex-direction: column;
  }
  .contact-buttons .btn {
    width: 100%;
  }
  .feature-item {
    padding: 30px 20px;
  }
  .page-header h1 {
    font-size: 36px;
  }
  .section-header h2 {
    font-size: 32px;
  }
}
