@charset "UTF-8";

/* === page.css - 内页通用布局 === */

/* Page Header */
.page-header {
  background-color: #0D1B2A;
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
}

/* Page Content */
.page-content {
  padding: 50px 0;
  min-height: 500px;
}

.page-content .container {
  max-width: 1000px;
}

.page-content h2 {
  font-size: 24px;
  color: #0D1B2A;
  margin: 30px 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F77F00;
}

.page-content h3 {
  font-size: 20px;
  color: #0D1B2A;
  margin: 24px 0 12px;
}

.page-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.page-content ul li,
.page-content ol li {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
}

.page-content ul li {
  list-style-type: disc;
}

.page-content ol li {
  list-style-type: decimal;
}

.page-content a {
  color: #F77F00;
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 20px 0;
}

.page-content blockquote {
  border-left: 4px solid #F77F00;
  padding: 16px 20px;
  background-color: #F0F4F8;
  margin: 20px 0;
  font-style: italic;
  color: #555;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.page-content table th {
  background-color: #0D1B2A;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.page-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid #C8D5E0;
  color: #333;
}

.page-content table tr:nth-child(even) {
  background-color: #F0F4F8;
}

.page-content table tr:hover {
  background-color: #e8eef4;
}

/* Timeline (for about page) */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #C8D5E0;
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  background-color: #F77F00;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #F77F00;
}

.timeline-content h4 {
  font-size: 18px;
  color: #0D1B2A;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 14px;
  color: #666;
}

/* Case/Project Cards */
.case-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.case-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.case-card-img {
  width: 100%;
  height: 200px;
  background-color: #F0F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.case-card-body {
  padding: 20px;
}

.case-card-body h3 {
  font-size: 18px;
  color: #0D1B2A;
  margin-bottom: 8px;
}

.case-card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Honor/Awards */
.honor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.honor-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.honor-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.honor-icon {
  font-size: 48px;
  color: #F77F00;
  margin-bottom: 12px;
}

.honor-item h3 {
  font-size: 16px;
  color: #0D1B2A;
  margin-bottom: 8px;
}

.honor-item p {
  font-size: 13px;
  color: #666;
}

/* Partner Logos */
.partner-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.partner-wall-item {
  width: 180px;
  height: 90px;
  background: #F0F4F8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #C8D5E0;
  transition: all 0.3s ease;
  color: #555;
  font-size: 14px;
}

.partner-wall-item:hover {
  border-color: #F77F00;
  box-shadow: 0 4px 12px rgba(247, 127, 0, 0.15);
}

/* Team */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.team-member {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background-color: #F0F4F8;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #666;
}

.team-member h4 {
  font-size: 16px;
  color: #0D1B2A;
  margin-bottom: 4px;
}

.team-member p {
  font-size: 13px;
  color: #666;
}

/* Advantage list */
.advantage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.advantage-item {
  flex: 1;
  min-width: 250px;
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #F0F4F8;
  border-radius: 4px;
}

.advantage-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(247, 127, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #F77F00;
}

.advantage-text h4 {
  font-size: 16px;
  color: #0D1B2A;
  margin-bottom: 6px;
}

.advantage-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Sidebar Layout */
.with-sidebar {
  display: flex;
  gap: 30px;
}

.main-content {
  flex: 1;
  min-width: 0;
}

.sidebar {
  width: 280px;
  flex-shrink: 0;
}

.sidebar-widget {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-widget h4 {
  font-size: 16px;
  color: #0D1B2A;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F77F00;
}

.sidebar-widget ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.sidebar-widget ul li a {
  color: #333;
  transition: color 0.2s ease;
  display: block;
  padding: 4px 0;
}

.sidebar-widget ul li a:hover {
  color: #F77F00;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  display: inline-block;
  padding: 6px 12px;
  background: #F0F4F8;
  border-radius: 3px;
  font-size: 13px;
  color: #555;
  transition: all 0.2s ease;
}

.tag-cloud a:hover {
  background: #F77F00;
  color: #fff;
}

/* Responsive */
@media (max-width: 1023px) {
  .page-header {
    padding: 40px 0;
  }
  
  .page-header h1 {
    font-size: 26px;
  }
  
  .with-sidebar {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
  }
  
  .case-card,
  .honor-item {
    min-width: 200px;
  }
}

@media (max-width: 767px) {
  .page-header {
    padding: 30px 0;
  }
  
  .page-header h1 {
    font-size: 22px;
  }
  
  .page-content h2 {
    font-size: 20px;
  }
  
  .page-content h3 {
    font-size: 17px;
  }
  
  .case-card,
  .honor-item,
  .advantage-item {
    min-width: 100%;
  }
  
  .timeline::before {
    left: 12px;
  }
  
  .timeline-item {
    padding-left: 36px;
  }
  
  .timeline-dot {
    left: 4px;
    width: 16px;
    height: 16px;
  }
}
