@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

        @layer utilities {
            .content-auto {
                content-visibility: auto;
            }
            .form-shadow {
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }
            .btn-hover {
                transition: all 0.3s ease;
            }
            .btn-hover:hover {
                transform: translateY(-2px);
            }
            .input-focus {
                @apply focus:ring-2 focus:ring-primary/50 focus:border-primary transition-all duration-200;
            }
            .field-group {
                @apply bg-white p-4 rounded-lg border border-gray-200 shadow-sm mb-4 relative;
            }
            .remove-btn {
                @apply absolute -top-2 -right-2 bg-red-500 text-white rounded-full w-6 h-6 flex items-center justify-center cursor-pointer opacity-0 hover:opacity-100 transition-opacity duration-300;
            }
            .add-btn {
                @apply bg-primary text-white rounded-full w-8 h-8 flex items-center justify-center cursor-pointer hover:bg-primary/90 transition-colors duration-200;
            }
            .equipment-input {
                @apply col-span-1 md:col-span-4;
            }
        }

            .btn-ver {
                margin-top: 60px;
            }

        /* 页脚 */
        .footere {
            background: var(--text-primary);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footere-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footere-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footere-brand h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footere-brand p {
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .footere-social {
            display: flex;
            gap: 1rem;
        }

        .footere-social a {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footere-social a:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
        }

        .footere-section h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footere-section ul {
            list-style: none;
        }

        .footere-section ul li {
            margin-bottom: 0.75rem;
        }

        .footere-section ul li a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footere-section ul li a:hover {
            color: white;
        }

        .footere-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footere-bottom p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .footere-links {
            display: flex;
            gap: 2rem;
        }

        .footere-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footere-links a:hover {
            color: white;
        }
