/* 我的页面专用样式 */
.my-section-with-image {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.my-section-text {
  flex: 1;
}

.my-section-image {
  flex: 0 0 300px;
  text-align: center;
}

.my-feature-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.my-feature-img:hover {
  transform: scale(1.05);
}

/* 交替布局 */
.my-requirements-section .my-section-with-image,
.my-advantages-section .my-section-with-image,
.my-example-section .my-section-with-image {
  flex-direction: row-reverse;
}
.my-hero-banner {
  background: linear-gradient(135deg, #2196f3 0%, #00bfae 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.my-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.my-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.my-hero-desc {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.my-app-section {
  padding: 60px 0;
  background: #f5faff;
}

.my-app-card {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  overflow: hidden;
}

.my-app-header {
  background: linear-gradient(135deg, #2196f3 0%, #00bfae 100%);
  color: white;
  padding: 40px;
  text-align: center;
}

.my-app-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.my-app-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.my-app-content {
  padding: 40px;
}

.my-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2196f3;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #e3f2fd;
}

.my-description-section {
  margin-bottom: 40px;
}

.my-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.my-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.my-notice p {
  margin: 0;
  color: #856404;
  font-weight: 500;
}

.my-requirements-section,
.my-process-section,
.my-advantages-section {
  margin-bottom: 40px;
}

.my-requirements-list,
.my-advantages-list {
  list-style: none;
  padding: 0;
}

.my-process-list {
  padding-left: 20px;
}

.my-requirements-list li,
.my-process-list li,
.my-advantages-list li {
  background: #f8f9fa;
  margin-bottom: 12px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #2196f3;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.my-process-list li {
  position: relative;
  padding-left: 20px;
}

.my-product-info-section {
  margin-bottom: 40px;
}

.my-product-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.my-product-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #00bfae;
}

.my-product-label {
  font-weight: 600;
  color: #2196f3;
  display: block;
  margin-bottom: 5px;
}

.my-product-value {
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
}

.my-example-section {
  margin-bottom: 40px;
}

.my-example-content {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.my-example-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.my-example-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.my-example-list li {
  background: white;
  margin-bottom: 8px;
  padding: 12px 15px;
  border-radius: 6px;
  border-left: 3px solid #00bfae;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: #333;
}

.my-example-note {
  background: #e3f2fd;
  padding: 15px;
  border-radius: 6px;
  border-left: 4px solid #2196f3;
  font-style: italic;
  color: #1976d2;
  margin-top: 15px;
}

.my-contact-section {
  margin-bottom: 20px;
}

.my-contact-details {
  display: grid;
  gap: 20px;
}

.my-contact-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #2196f3;
}

.my-contact-label {
  font-weight: 600;
  color: #2196f3;
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.my-contact-value {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .my-section-with-image {
    flex-direction: column;
    gap: 20px;
  }
  
  .my-section-image {
    flex: none;
    width: 100%;
  }
  
  .my-requirements-section .my-section-with-image,
  .my-advantages-section .my-section-with-image,
  .my-example-section .my-section-with-image {
    flex-direction: column;
  }
  
  .my-hero-title {
    font-size: 2.5rem;
  }
  
  .my-hero-desc {
    font-size: 1.1rem;
  }
  
  .my-app-header {
    padding: 30px 20px;
  }
  
  .my-app-title {
    font-size: 2rem;
  }
  
  .my-app-content {
    padding: 30px 20px;
  }
  
  .my-section-title {
    font-size: 1.5rem;
  }
  
  .my-product-details {
    grid-template-columns: 1fr;
  }
  
  .my-contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .my-hero-banner {
    padding: 60px 0;
  }
  
  .my-hero-title {
    font-size: 2rem;
  }
  
  .my-app-header {
    padding: 25px 15px;
  }
  
  .my-app-content {
    padding: 25px 15px;
  }
  
  .my-section-title {
    font-size: 1.3rem;
  }
  
  .my-description {
    font-size: 1rem;
  }
}
