/* ========================================
   好芯友科技官网 - 页面特定样式
   ======================================== */

/* ========================================
   关于我们页面
   ======================================== */
.about-page {
  min-height: 100vh;
  background: #fff;
}

.about-page .page-header {
  background: url('../images/aboutbg.jpg') center/cover no-repeat;
}

/* 锚点导航 */
.anchor-nav {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 15px 0;
}

.anchor-links {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.anchor-links a {
  font-size: 15px;
  color: #666;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.anchor-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0066cc;
  transition: width 0.3s;
}

.anchor-links a:hover,
.anchor-links a.active {
  color: #0066cc;
}

.anchor-links a.active::after {
  width: 100%;
}

/* 公司简介 */
.section-intro {
  padding: 80px 0;
  background: #fafafa;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text p:first-child {
  font-size: 20px;
  color: #0066cc;
  font-weight: bold;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 15px;
  color: #666;
  line-height: 2;
  margin-bottom: 15px;
}

.intro-desc {
  font-size: 18px;
  color: #0066cc;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* 资质荣誉 */
.section-honor {
  padding: 80px 0;
  background: #fff;
}

.honor-carousel-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.honor-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: grab;
  user-select: none;
}

.honor-carousel:active {
  cursor: grabbing;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-item {
  flex: 0 0 50%;
  width: 50%;
}

.carousel-item img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: #0066cc;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dots span.active {
  background: #0066cc;
  transform: scale(1.2);
}

/* 企业文化 */
.section-culture,
.section-vision {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.section-culture .section-bg,
.section-vision .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/rongyubg.jpg') center/cover no-repeat;
  z-index: 0;
}

.section-culture .section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 41, 59, 0.85);
  z-index: 1;
}

.section-vision .section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 102, 204, 0.7);
  z-index: 1;
}

.section-culture .section-content,
.section-vision .section-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-culture .section-label {
  color: #0066cc;
}

.section-culture .section-title,
.section-vision .section-title {
  color: #fff;
  margin-bottom: 20px;
}

.section-culture p,
.section-vision p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
  margin-bottom: 15px;
}

.section-culture p:first-child {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.section-vision p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   联系我们页面
   ======================================== */
.contact-page {
  min-height: 100vh;
  background: #fff;
}

.contact-page .page-header {
  background: url('../images/contactus.jpg') center/cover no-repeat;
}

.section-contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-section {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .contact-info-section {
    padding-right: 0;
  }
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  fill: white;
}

.card-content h4 {
  font-size: 15px;
  color: #333;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-content p,
.card-content a {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  text-decoration: none;
}

.card-content a:hover {
  color: #0066cc;
}

.map-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
}

.map-section h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #e8f4fc 0%, #d4e9f7 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
}

/* 表单区域 */
.contact-form-section {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 30px 20px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.required {
  color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.contact-form-section .btn-submit,
.contact-form-section .btn-reset {
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-section .btn-submit {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
  border: none;
  flex: 1;
}

.contact-form-section .btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.contact-form-section .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form-section .btn-reset {
  background: #fff;
  color: #666;
  border: 1px solid #e0e0e0;
}

.contact-form-section .btn-reset:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  color: #155724;
  font-size: 14px;
  margin-top: 20px;
}

.success-message svg {
  fill: #28a745;
  flex-shrink: 0;
}

/* ========================================
   新闻页面
   ======================================== */
.news-page {
  min-height: 100vh;
  background: #fff;
}

.news-page .page-header {
  background: url('../images/newsbg.jpg') center/cover no-repeat;
}

.news-categories {
  padding: 40px 0;
  background: #fafafa;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 25px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover {
  border-color: #0066cc;
  color: #0066cc;
}

.tab-btn.active {
  background: #0066cc;
  border-color: #0066cc;
  color: #fff;
}

.news-list {
  padding: 40px 0 80px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  background: #0066cc;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
}

.news-tag.notice {
  background: #ff9800;
}

.news-tag.company {
  background: #4caf50;
}

.news-content {
  padding: 20px;
}

.news-title {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-summary {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #ccc;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.page-btn {
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.page-btn:hover:not(:disabled) {
  border-color: #0066cc;
  color: #0066cc;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-info {
  color: #666;
  font-size: 14px;
}

/* ========================================
   招聘页面
   ======================================== */
.job-page {
  min-height: 100vh;
  background: #fff;
}

.job-page .page-header {
  background: url('../images/jobbg.jpg') center/cover no-repeat;
}

.job-list {
  padding: 60px 0;
}

.job-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  color: inherit;
  text-decoration: none;
}

.job-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 25px rgba(0, 102, 204, 0.15);
}

.job-info {
  flex: 1;
}

.job-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.job-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.job-salary {
  color: #ff6b6b;
  font-size: 16px;
  font-weight: 600;
}

.job-location {
  color: #666;
  font-size: 14px;
}

.job-tags {
  display: flex;
  gap: 10px;
}

.tag {
  padding: 4px 12px;
  background: #f0f0f0;
  color: #666;
  font-size: 12px;
  border-radius: 4px;
}

.job-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-arrow svg {
  width: 20px;
  height: 20px;
  fill: #999;
  transition: fill 0.3s, transform 0.3s;
}

.job-card:hover .job-arrow svg {
  fill: #0066cc;
  transform: translateX(5px);
}

.contact-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
}

.contact-content {
  text-align: center;
}

.contact-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.contact-content a {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.contact-content a:hover {
  opacity: 0.8;
}

/* ========================================
   搜索页面
   ======================================== */
.search-page {
  min-height: 100vh;
  background: #f5f7fa;
}

.search-hero {
  background: linear-gradient(135deg, #1c86df 0%, #0d5db8 100%);
  padding: 140px 0 100px;
  text-align: center;
  margin-top: 80px;
}

.search-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
}

.search-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px 0;
}

.search-box {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrapper .search-icon {
  position: absolute;
  left: 20px;
  color: #999;
  pointer-events: none;
}

.search-box .search-input {
  width: 100%;
  padding: 14px 50px;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #333;
}

.search-box .search-input:focus {
  outline: none;
}

.search-box .search-input::placeholder {
  color: #999;
}

.clear-btn {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.clear-btn:hover {
  background: #f0f0f0;
  color: #666;
}

.search-select {
  padding: 12px 20px;
  border: none;
  background: #f5f7fa;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  border-radius: 25px;
  margin-right: 6px;
  min-width: 120px;
}

.search-select:focus {
  outline: none;
  background: #e8ecf0;
}

.search-box .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  height: auto;
  padding: 12px 32px;
  background: linear-gradient(135deg, #1c86df 0%, #0d5db8 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}

.search-box .search-btn svg {
  flex-shrink: 0;
}

.search-box .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 134, 223, 0.4);
}

.hot-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hot-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.hot-tag {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.hot-tag:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.search-results {
  padding: 40px 0 80px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e5e5e5;
}

.results-count {
  font-size: 15px;
  color: #666;
}

.results-count .count {
  color: #1c86df;
  font-weight: 600;
}

.results-tabs {
  display: flex;
  gap: 8px;
}

.results-tabs .tab-btn {
  padding: 8px 20px;
  background: #f5f7fa;
  color: #666;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.results-tabs .tab-btn:hover {
  color: #1c86df;
}

.results-tabs .tab-btn.active {
  background: #1c86df;
  color: #fff;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-item {
  display: flex;
  align-items: center;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.3s;
}

.result-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.result-content {
  flex: 1;
}

.result-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
}

.result-title .highlight {
  color: #1c86df;
  background: rgba(28, 134, 223, 0.1);
  padding: 0 2px;
  border-radius: 2px;
}

.result-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.result-desc .highlight {
  color: #1c86df;
  background: rgba(28, 134, 223, 0.1);
  padding: 0 2px;
  border-radius: 2px;
}

.result-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.result-type {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.result-type.products {
  background: rgba(28, 134, 223, 0.1);
  color: #1c86df;
}

.result-type.news {
  background: rgba(52, 199, 120, 0.1);
  color: #34c77a;
}

.result-date {
  font-size: 13px;
  color: #999;
}

.result-arrow {
  color: #ccc;
  flex-shrink: 0;
  margin-left: 16px;
  transition: all 0.3s;
}

.result-item:hover .result-arrow {
  color: #1c86df;
  transform: translateX(4px);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination .page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #fff;
  color: #666;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-btn.active {
  background: #1c86df;
  color: #fff;
  border-color: #1c86df;
}

.pagination .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination .page-btn.ellipsis {
  border: none;
  cursor: default;
  background: transparent;
}

.pagination .page-btn.ellipsis:hover {
  border-color: transparent;
  color: #666;
}

.pagination .page-btn:hover:not(:disabled):not(.ellipsis) {
  border-color: #1c86df;
  color: #1c86df;
}

.pagination .page-btn.prev,
.pagination .page-btn.next {
  padding: 0 16px;
}

/* 加载状态 */
.loading {
  text-align: center;
  padding: 60px 0;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top-color: #1c86df;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading p {
  color: #999;
  font-size: 14px;
}

.no-results {
  text-align: center;
  padding: 80px 0;
}

.no-results-icon {
  color: #ddd;
  margin-bottom: 24px;
}

.no-results h3 {
  font-size: 22px;
  color: #333;
  margin: 0 0 12px 0;
}

.no-results p {
  color: #999;
  font-size: 14px;
  margin: 0 0 8px 0;
}

.suggestion {
  margin-top: 24px;
  color: #666 !important;
}

.suggestion-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.suggestion-link {
  padding: 10px 24px;
  background: #f5f7fa;
  color: #1c86df;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.suggestion-link:hover {
  background: #1c86df;
  color: #fff;
}

/* ========================================
   产品中心列表页面
   ======================================== */
.productlist-page {
  min-height: 100vh;
  background: var(--bg-light);
}

.productlist-page .page-header {
  background: url('../images/productbg.png') center/cover no-repeat;
}

.product-list {
  padding: 60px 0 80px;
}

/* 产品网格 - 产品列表页特有 */
.productlist-page .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* 产品项 */
.productlist-page .product-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  opacity: 1;
  transform: none;
  transition: all 0.6s ease;
}

.productlist-page .product-item:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* 图片 */
.productlist-page .product-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productlist-page .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.productlist-page .product-item:hover .product-image img {
  transform: scale(1.1);
}

/* 中间遮罩标题 */
.productlist-page .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: none;
}

.productlist-page .overlay-title {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin: 0;
}

/* 左下角查看更多 */
.productlist-page .view-more {
  position: absolute;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.productlist-page .product-item:hover .view-more {
  opacity: 1;
  transform: translateX(0);
}

.productlist-page .view-more span {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
}

/* 产品列表页响应式 */
@media (max-width: 768px) {
  .productlist-page .page-header {
    min-height: 300px;
  }

  .productlist-page .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .productlist-page .product-image {
    min-height: 280px;
  }

  .productlist-page .overlay-title {
    font-size: 1.5rem;
  }

  .productlist-page .image-overlay,
  .productlist-page .view-more {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   产品详情页面
   ======================================== */
.productdetail-page {
  min-height: 100vh;
  background: #fff;
}

.productdetail-page .page-header {
  background: url('../images/productbg.png') center/cover no-repeat;
}

.product-main {
  padding: 60px 0;
  background: #fff;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-image {
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  padding-top: 20px;
}

.product-name {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
}

.info-item {
  margin-bottom: 15px;
  font-size: 14px;
}

.info-item .label {
  color: #666;
}

.info-item .value {
  color: #333;
}

.info-item .category {
  color: #0066cc;
}

.hotline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.hotline svg {
  fill: #666;
}

.hotline .label {
  color: #666;
  font-size: 14px;
}

.hotline .phone {
  color: #e74c3c;
  font-size: 20px;
  font-weight: 600;
}

.actions {
  display: flex;
  gap: 20px;
}

.btn-outline {
  background: #fff;
  color: #0066cc;
  border: 1px solid #0066cc;
  padding: 12px 40px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
}

.btn-outline:hover {
  background: #0066cc;
  color: #fff;
}

.product-scope {
  padding: 40px 0 60px;
  background: #fff;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.scope-item {
  padding: 15px 10px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  color: #666;
  transition: all 0.3s;
}

.scope-item:hover {
  border-color: #0066cc;
  color: #0066cc;
}

.inquiry-section {
  padding: 60px 0;
  background: #f8f8f8;
}

.inquiry-section .section-title {
  text-align: center;
  color: #0066cc;
  font-size: 24px;
  margin-bottom: 40px;
}

.inquiry-form {
  max-width: 600px;
  margin: 0 auto;
}

.inquiry-form .form-group label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.inquiry-form .form-group input,
.inquiry-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.3s;
}

.inquiry-form .form-group input:focus,
.inquiry-form .form-group textarea:focus {
  outline: none;
  border-color: #0066cc;
}

.inquiry-form .form-group textarea {
  resize: vertical;
}

.inquiry-form .btn-submit {
  display: block;
  width: 200px;
  margin: 30px auto;
  padding: 12px 0;
  background: #fff;
  color: #333;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.inquiry-form .btn-submit:hover {
  background: #333;
  color: #fff;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 20px;
}

/* ========================================
   新闻详情页面
   ======================================== */
.newsdetail-page {
  min-height: 100vh;
  background: #fff;
}

.newsdetail-page .page-header {
  background: url('../images/newsbg.jpg') center/cover no-repeat;
}

.article-container {
  padding: 60px 0;
}

.article {
  background: #fff;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.article-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  color: #999;
}

.article-content {
  line-height: 2;
  color: #666;
  font-size: 15px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.article-content li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.article-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #0066cc;
  border-radius: 50%;
}

.article-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.article-footer .share-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.article-footer .share-section span {
  color: #666;
  font-size: 14px;
}

.article-footer .share-buttons {
  display: flex;
  gap: 10px;
}

.article-footer .share-btn {
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.article-footer .share-btn:hover {
  opacity: 0.8;
}

.article-footer .share-btn.weibo { background: #e6162d; }
.article-footer .share-btn.wechat { background: #4caf50; }
.article-footer .share-btn.qq { background: #1296db; }
.article-footer .share-btn.qzone { background: #ffc107; }

.article-nav {
  margin-top: 40px;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 8px;
}

.article-nav .nav-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.article-nav .nav-item.next {
  border-top: 1px solid #eee;
  margin-top: 10px;
  padding-top: 20px;
}

.article-nav .nav-label {
  color: #999;
  font-size: 14px;
  margin-right: 10px;
}

.article-nav .nav-item a {
  color: #0066cc;
  font-size: 14px;
}

.article-nav .nav-item a:hover {
  text-decoration: underline;
}

.article-nav .nav-none {
  color: #ccc;
  font-size: 14px;
}

.related-news {
  padding: 60px 0;
  background: #fafafa;
}

.related-news .container {
  max-width: 1200px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  transition: transform 0.3s, box-shadow 0.3s;
  color: inherit;
  text-decoration: none;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 120px;
  height: 100px;
  flex-shrink: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card .card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.related-card .card-content h4 {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-date {
  font-size: 12px;
  color: #999;
}

/* ========================================
   职位详情页面
   ======================================== */
.jobdetail-page {
  min-height: 100vh;
  background: #fff;
}

.jobdetail-page .page-header {
  background: url('../images/jobbg.jpg') center/cover no-repeat;
}

.job-detail {
  padding: 60px 0;
}

.jobdetail-page .detail-grid {
  grid-template-columns: 1fr 320px;
  gap: 50px;
}

.job-main {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.job-header .job-title {
  font-size: 28px;
  color: #333;
}

.job-salary {
  font-size: 24px;
  color: #ff6b6b;
  font-weight: 600;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.tag-label {
  color: #999;
}

.tag-value {
  color: #333;
}

.content-section {
  margin-bottom: 40px;
}

.content-section h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0066cc;
  display: inline-block;
}

.duty-list,
.requirement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.duty-list li,
.requirement-list li {
  padding: 10px 0;
  padding-left: 20px;
  position: relative;
  color: #666;
  line-height: 1.6;
}

.duty-list li::before,
.requirement-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: #0066cc;
  border-radius: 50%;
}

.job-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.job-sidebar .apply-card,
.job-sidebar .contact-card {
  display: block;
  background: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
}

.job-sidebar .apply-card h3,
.job-sidebar .contact-card h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.job-sidebar .apply-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.job-sidebar .apply-btn {
  display: block;
  padding: 12px;
  background: #0066cc;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}

.job-sidebar .apply-btn:hover {
  background: #0052a3;
}

.job-sidebar .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-sidebar .contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.job-sidebar .contact-list li:last-child {
  border-bottom: none;
}

.job-sidebar .contact-list .contact-label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
}

.job-sidebar .contact-list a {
  color: #0066cc;
  font-size: 14px;
}

.job-sidebar .contact-list span:last-child {
  font-size: 14px;
  color: #666;
}

.other-jobs {
  padding: 60px 0;
  background: #fafafa;
}

.other-jobs .section-title {
  font-size: 22px;
  color: #333;
  margin-bottom: 30px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.job-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
  color: inherit;
  text-decoration: none;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.job-card h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.job-card .job-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #999;
}

/* ========================================
   申请职位页面
   ======================================== */
.jobapply-page {
  min-height: 100vh;
  background: #f5f7fa;
}

.jobapply-page .page-header {
  background: url('../images/jobbg.jpg') center/cover no-repeat;
}

.main-content {
  padding: 40px 0 80px;
}

.position-card {
  background: linear-gradient(135deg, #1c86df 0%, #0d5db8 100%);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(28, 134, 223, 0.3);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.position-title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.detail-link {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 20px;
  border-radius: 20px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.position-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.position-tags .tag-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.position-tags .tag-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.position-tags .tag-value {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.form-section {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-section .section-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 32px 0;
  padding-bottom: 16px;
  border-bottom: 3px solid #1c86df;
  display: inline-block;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px 24px -12px;
}

.form-col {
  width: 50%;
  padding: 0 12px;
  box-sizing: border-box;
}

.form-col.full {
  width: 100%;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-group .required {
  color: #ff4d4f;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s;
  background: #fff;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1c86df;
  box-shadow: 0 0 0 3px rgba(28, 134, 223, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.radio-group {
  display: flex;
  gap: 28px;
  height: 44px;
  align-items: center;
}

.radio-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #1c86df;
}

.radio-label {
  margin-left: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.input-with-unit {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-unit input {
  padding-right: 48px;
}

.input-with-unit .unit {
  position: absolute;
  right: 16px;
  color: #999;
  font-size: 14px;
  pointer-events: none;
}

.date-range {
  display: flex;
  align-items: center;
  gap: 12px;
}

.date-range input {
  flex: 1;
}

.date-range .separator {
  color: #999;
}

.upload-area {
  border: 2px dashed #e5e5e5;
  border-radius: 10px;
  padding: 40px 24px;
  text-align: center;
  background: #fafbfc;
  cursor: pointer;
  transition: all 0.3s;
}

.upload-area:hover {
  border-color: #1c86df;
  background: #f0f7ff;
}

.upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upload-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: #1c86df;
}

.upload-icon svg {
  width: 100%;
  height: 100%;
}

.upload-text {
  font-size: 14px;
  color: #333;
  margin: 0 0 8px 0;
}

.upload-hint {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 10px 16px;
  background: #f0f7ff;
  border-radius: 6px;
}

.file-name {
  font-size: 14px;
  color: #333;
}

.file-size {
  font-size: 12px;
  color: #999;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #f0f0f0;
}

.btn {
  padding: 14px 48px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #1c86df 0%, #0d5db8 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(28, 134, 223, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 134, 223, 0.4);
}

.btn-secondary {
  background: #fff;
  color: #666;
  border: 1px solid #e5e5e5;
}

.btn-secondary:hover {
  border-color: #1c86df;
  color: #1c86df;
}

/* 申请职位响应式 */
@media (max-width: 768px) {
  .jobapply-page .page-header {
    min-height: 320px;
    padding: 60px 0;
  }

  .jobapply-page .page-title {
    font-size: 28px;
  }

  .jobapply-page .main-content {
    padding: 24px 0 60px;
  }

  .position-card {
    padding: 20px;
  }

  .position-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .position-title {
    font-size: 20px;
  }

  .position-tags {
    gap: 10px;
  }

  .position-tags .tag-item {
    padding: 8px 14px;
    width: calc(50% - 5px);
    box-sizing: border-box;
  }

  .form-section {
    padding: 24px 16px;
  }

  .form-section .section-title {
    font-size: 18px;
  }

  .form-col {
    width: 100%;
  }

  .form-row {
    margin-bottom: 16px;
  }

  .radio-group {
    height: 40px;
  }

  .upload-area {
    padding: 30px 16px;
  }

  .form-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }
}

/* ========================================
   服务详情页面
   ======================================== */
.servicedetail-page {
  min-height: 100vh;
  background: #fff;
}

.servicedetail-page .page-header {
  background: url('../images/servicebg.jpg') center/cover no-repeat;
}

.servicedetail-page .service-detail {
  padding: 60px 0;
}

.servicedetail-page .service-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.servicedetail-page .service-desc {
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.servicedetail-page .service-features {
  margin-bottom: 40px;
}

.servicedetail-page .service-features h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0066cc;
}

.servicedetail-page .service-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicedetail-page .service-features li {
  padding: 12px 0;
  padding-left: 25px;
  position: relative;
  color: #666;
}

.servicedetail-page .service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #0066cc;
  border-radius: 50%;
}

.servicedetail-page .service-contact {
  padding: 20px;
  background: #f5f5f5;
  border-radius: 8px;
}

.servicedetail-page .service-contact p {
  color: #666;
  margin-bottom: 15px;
}

.servicedetail-page .service-contact .contact-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #0066cc;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}

.servicedetail-page .service-contact .contact-btn:hover {
  background: #0052a3;
}

/* ========================================
   在线留言页面
   ======================================== */
.message-page {
  min-height: 100vh;
  background: #fff;
}

.message-page .page-header {
  background: url('../images/contactus.jpg') center/cover no-repeat;
}

.section-message {
  padding: 80px 0;
}

.message-wrapper {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 50px;
}

.message-intro {
  margin-bottom: 40px;
}

.message-intro .section-label {
  font-size: 14px;
  color: #0066cc;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.message-intro .section-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.intro-text {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

.message-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.message-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.message-form .form-group input,
.message-form .form-group select,
.message-form .form-group textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.message-form .form-group input:focus,
.message-form .form-group select:focus,
.message-form .form-group textarea:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.message-form .form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* 留言页面两栏布局 */
.message-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.message-sidebar {
  position: sticky;
  top: 100px;
}

/* 留言表单 label */
.message-form .form-group label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.message-form .form-group label .required {
  color: #e74c3c;
  margin-left: 2px;
}

.message-form .form-row .full-width {
  grid-column: 1 / -1;
}

/* 留言表单按钮 */
.message-form .form-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.message-form .btn-submit,
.message-form .btn-reset {
  padding: 14px 40px;
  font-size: 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.message-form .btn-submit {
  background: linear-gradient(135deg, #0066cc, #0052a3);
  color: #fff;
}

.message-form .btn-submit:hover {
  background: linear-gradient(135deg, #0052a3, #003d7a);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.message-form .btn-reset {
  background: #f0f0f0;
  color: #666;
}

.message-form .btn-reset:hover {
  background: #e0e0e0;
  color: #333;
}

.sidebar-contact {
  background: linear-gradient(135deg, #243b55 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 40px 30px;
  color: white;
  height: fit-content;
}

.sidebar-contact h4 {
  font-size: 18px;
  color: white;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-contact .contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.sidebar-contact .contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-contact .contact-icon svg {
  fill: white;
}

.sidebar-contact .contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-contact .contact-text .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.sidebar-contact .contact-text a,
.sidebar-contact .contact-text span:last-child {
  font-size: 14px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-contact .contact-text a:hover {
  color: #4da6ff;
}

.business-hours {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours h5 {
  font-size: 14px;
  color: white;
  margin-bottom: 10px;
}

.business-hours p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* 响应式 */
@media (max-width: 1200px) {
  .scope-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .scope-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-sidebar {
    order: -1;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .job-sidebar .apply-card,
  .job-sidebar .contact-card {
    flex: 1;
    min-width: 280px;
  }

  .message-wrapper {
    grid-template-columns: 1fr;
  }

  .message-layout {
    grid-template-columns: 1fr;
  }

  .message-sidebar {
    position: static;
  }

  .message-form .form-row {
    grid-template-columns: 1fr;
  }

  .message-form .form-actions {
    flex-direction: column;
  }

  .message-form .btn-submit,
  .message-form .btn-reset {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-header {
    min-height: 300px;
    padding: 60px 0;
  }

  .page-title {
    font-size: 28px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .search-hero {
    padding: 120px 0 80px;
    margin-top: 70px;
  }

  .search-title {
    font-size: 28px;
  }

  .search-subtitle {
    font-size: 15px;
  }

  .search-box {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
    gap: 10px;
  }

  .search-input-wrapper {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .search-select {
    border-radius: 8px;
    margin-right: 0;
  }

  .search-box .search-btn {
    border-radius: 8px;
    justify-content: center;
  }

  .results-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .results-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .result-item {
    padding: 16px;
  }

  .result-title {
    font-size: 16px;
  }

  .result-desc {
    font-size: 13px;
  }

  .result-arrow {
    display: none;
  }

  .product-name {
    font-size: 22px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .scope-item {
    padding: 12px 8px;
    font-size: 12px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-card {
    flex-direction: column;
  }

  .card-image {
    width: 100%;
    height: 150px;
  }

  .job-header {
    flex-direction: column;
    gap: 10px;
  }

  .job-main {
    padding: 25px;
  }

  .job-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .job-sidebar .apply-card,
  .job-sidebar .contact-card {
    flex: 1;
    min-width: 280px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .position-card {
    padding: 20px;
  }

  .position-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .position-title {
    font-size: 20px;
  }

  .position-tags {
    gap: 10px;
  }

  .position-tags .tag-item {
    padding: 8px 14px;
    width: calc(50% - 5px);
    box-sizing: border-box;
  }

  .form-section {
    padding: 24px 16px;
  }

  .form-col {
    width: 100%;
  }

  .form-row {
    margin-bottom: 16px;
  }

  .upload-area {
    padding: 30px 16px;
  }

  .form-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .message-wrapper {
    padding: 30px 20px;
  }

  .section-message {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .form-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .search-hero {
    padding: 50px 0 60px;
  }

  .search-title {
    font-size: 24px;
  }

  .hot-tags {
    gap: 8px;
  }

  .hot-tag {
    padding: 5px 12px;
    font-size: 12px;
  }

  .pagination {
    gap: 6px;
  }

  .pagination .page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* ========================================
   服务页面
   ======================================== */
.service-page {
  min-height: 100vh;
  background: #fff;
}

.service-page .page-header {
  background: url('../images/servicebg.jpg') center/cover no-repeat;
}

.service-categories {
  padding: 40px 0;
  background: #fafafa;
}

.service-detail {
  padding: 60px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.service-products {
  padding: 40px 0 60px;
  background: #fafafa;
}

.service-products .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  border-color: #ddd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.product-card .product-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.product-card .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card .product-name {
  font-size: 15px;
  color: #333;
  text-align: center;
  padding: 15px 10px 10px;
  margin: 0;
}

.product-line {
  border: none;
  border-top: 1px solid #eee;
  margin: 0 15px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px 15px;
}

.product-date {
  font-size: 13px;
  color: #999;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-date::before {
  content: '📅';
  font-size: 12px;
}

/* 响应式 */
@media (max-width: 992px) {
  .page-header {
    min-height: 400px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image {
    order: -1;
  }

  .anchor-links {
    gap: 20px;
    flex-wrap: wrap;
  }

  .section-culture,
  .section-vision {
    padding: 70px 0;
  }

  .section-culture .section-content,
  .section-vision .section-content {
    padding: 0 20px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-image {
    order: -1;
  }

  .service-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-header {
    min-height: 300px;
    padding: 60px 0;
  }

  .page-title {
    font-size: 28px;
  }

  .section-intro,
  .section-honor,
  .section-culture,
  .section-vision {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .carousel-item img {
    height: 240px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .anchor-nav {
    padding: 10px 0;
  }

  .anchor-links a {
    font-size: 13px;
  }

  .section-contact {
    padding: 50px 0;
  }

  .section-contact .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .form-actions {
    flex-direction: column;
  }

  .contact-form-section .btn-submit,
  .contact-form-section .btn-reset {
    width: 100%;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .job-arrow {
    display: none;
  }

  .category-tabs {
    gap: 10px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
