/* Services页面样式 */

/* 主要内容区域 */
.main-content {
    padding-top: 100px; /* 为顶部导航留出空间 */
    padding-bottom: 60px;
}

/* Services Hero Section */
.services-hero {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 80px;
   
   
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.service-item {
    flex: 1;
    padding: 20px 0;
}

.service-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.service-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* 订单信息区域 */
.ordering-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.circle-image-container {
    position: absolute;
    top: 60px;
    left: 40px;
}

.circle-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.circle-image:hover {
    transform: translateX(300px);
}

.ordering-content {
    display: flex;
    margin-top: 200px;
    padding-top: 60px;
}

.ordering-form-container {
    flex: 1;
    padding-right: 30px;
}

.ordering-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.ordering-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #333;
}

.ordering-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ordering-image {
    width: 400px;
    height: 600px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 响应式样式 - Services页面 */
@media (max-width: 1024px) {
    .services-hero, .ordering-section {
        padding: 40px 20px;
    }
    
    .services-title {
        font-size: 54px;
        margin-bottom: 60px;
    }
    
    .services-grid {
        gap: 30px;
    }
    
    .ordering-image {
        width: 350px;
        height: 500px;
    }
}

@media (max-width: 767px) {
    .services-title {
        font-size: 42px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-item {
        text-align: center;
    }
    
    .circle-image-container {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .ordering-content {
        flex-direction: column;
        margin-top: 0;
        padding-top: 20px;
    }
    
    .ordering-form-container {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .ordering-title {
        font-size: 28px;
        text-align: center;
    }
    
    .ordering-image-container {
        display: none; /* 在移动端隐藏重复的图片 */
    }
}

@media (max-width: 479px) {
    .services-title {
        font-size: 36px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .service-description {
        font-size: 16px;
    }
    
    .ordering-title {
        font-size: 24px;
    }
    
    .form-input, .form-textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .submit-button {
        padding: 12px;
        font-size: 16px;
    }
} 