@charset "utf-8";  
        :root {
            --primary-blue: #0066cc;
            --text-dark: #1e2a3a;
            --text-gray: #6a768e;
            --border-light: #f0f3f7;
            --card-bg: #ffffff;
            --transition: all 0.3s ease;
        }

        body {
            background-color: #fcfdfe;
            font-family: 'Inter', -apple-system, sans-serif;
            margin: 0; padding: 0;
            -webkit-font-smoothing: antialiased;
        }

        .container-1480 {
            width: 100%;
            max-width: 1480px;
            margin: 0 auto;
            padding: 0 25px;
        }

        .section-padding { padding: 50px 0; }

        /* ========== 修复：询盘区下方的白边问题 ========== */
        main.main-content {
            padding-bottom: 0 !important; /* 清除主体容器底部内边距 */
            display: flex;
            flex-direction: column;
        }

        .inquiry-section {
            margin-bottom: 0 !important;   /* 强制清除底部外边距 */
            padding-bottom: 80px;         /* 增加内边距代替外边距，确保背景色延伸 */
            display: block;
            background-color: #001428;    /* 确保背景色显式声明（根据你的图示可能是深蓝色） */
        }

        /* 强制覆盖后续 Footer 的间距 */
        footer, .footer, .footer-wrapper {
            margin-top: 0 !important;
            border-top: none !important;
        }
        /* ============================================= */

        .posts-con { display: flex; flex-direction: column; gap: 30px; }
        .post-card {
            display: flex;
            background: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .post-thumb {
            flex: 0 0 28%;
            max-width: 400px;
            overflow: hidden;
        }

        .post-thumb img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            display: block;
        }

        .post-content {
            flex: 1;
            padding: 25px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .post-card h2 {
            font-size: 1.55rem; font-weight: 700;
            margin: 0 0 15px 0;
        }

        @media (max-width: 767px) {
            .container-1480 { padding: 0 10px; }
            .post-card { flex-direction: column; }
            .post-thumb { width: 100%; max-width: none; }
            .post-content { padding: 15px 12px; }
        }

        .fenye { margin-top: 40px; text-align: center; }
        .fenye a, .fenye span {
            display: inline-block; padding: 8px 16px; margin: 0 3px;
            border: 1px solid var(--border-light); border-radius: 4px;
        }
        .fenye .current { background: var(--primary-blue); color: #fff; }

       .form-input[type="file"] {
  padding: 10px 15px;
  border: none;
  background: none;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}

