﻿/* 下单注意事项页面样式 */
    .order-guide-header {
      background: url(../images/vip/order-guide-bg.png) no-repeat;
      padding: 40px 0;
      text-align: center;
      border-radius: 8px;
      margin: 20px auto;
      max-width: 1200px;
    }

    .order-guide-header h1 {
      font-size: 32px;
      color: #333;
      margin-bottom: 10px;
      letter-spacing: 8px;
      font-weight: bold;
    }

    .order-guide-header p {
      font-size: 16px;
      color: #666;
    }

    .order-guide-title{
      margin-bottom: 40px;
    }

    .order-guide-title .title{
      display: inline-block;
      color: #fff;
      font-size: 30px;
      height: 50px;
      line-height: 50px;
      padding: 0 30px;
      border-radius: 30px;
      background-color: #0367e2;
    }

    .order-guide-content {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .process-section {
      margin-bottom: 60px;
    }

    .process-title {
      background: url('../images/order-guide/process-title-bg.png') no-repeat center top;
      background-size: contain;
      height: 60px;
      text-align: center;
      line-height: 60px;
      font-size: 32px;
      color: #fff;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .process-step-group {
      margin-bottom: 50px;
    }

    .process-step-title {
      font-size: 28px;
      color: #1e88e5;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .process-step-title::before {
      content: '●';
      color: #1e88e5;
      margin-right: 10px;
    }

    .step-item {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .step-image {
      flex: 0 0 550px;
      margin-right: 40px;
      border: 2px solid #e0e0e0;
      border-radius: 4px;
      overflow: hidden;
    }

    .step-image img {
      width: 100%;
      display: block;
    }

    .step-content {
      flex: 1;
    }

    .step-number {
      font-size: 36px;
      color: #1e88e5;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .step-number span {
      font-size: 24px;
      margin-right: 5px;
    }

    .step-description {
      font-size: 20px;
      color: #666;
      line-height: 2;
    }

    .step-description strong {
      color: #d32f2f;
      font-size: 22px;
    }

    /* 响应式设计 */
    @media (max-width: 1200px) {
      .step-item {
        flex-direction: column;
      }

      .step-image {
        flex: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
      }
    }

    /* 页脚样式 */
    .footer-info {
      background: #f5f5f5;
      padding: 20px 0;
      margin-top: 60px;
      border-top: 1px solid #e0e0e0;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      color: #999;
      font-size: 12px;
      line-height: 2;
    }

    .footer-content a {
      color: #999;
      text-decoration: none;
    }

    .footer-content .separator {
      margin: 0 10px;
      color: #ccc;
    }