/* 联系我们页面头部样式 */
.lianxi-header-banner {
  margin: 0 !important;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('010.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 120px;
  background-color: #000000;
}

.lianxi-header-headline {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.lianxi-header-title {
  display: block;
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0;
  animation: fadeInDown 1s ease-out;
}

.lianxi-header-subtitle {
  display: block;
  font-size: 24px;
  margin: 10px 0;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* 动画定义 */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 联系我们页面面包屑样式 */
.lianxi-breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.lianxi-breadcrumb-wrapper {
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}

.lianxi-breadcrumb-content {
  font-size: 12px;
  color: #666;
}

.lianxi-breadcrumb-link {
  color: #06c;
  text-decoration: none;
}

.lianxi-breadcrumb-link:hover {
  text-decoration: underline;
}

.lianxi-breadcrumb-separator {
  margin: 0 5px;
}

.lianxi-breadcrumb-current {
  color: #333;
  font-weight: 500;
}




    .fxtm-contact-section {
        background-color: #ffffff;
        padding: 4rem 5%;
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        color: #1e2a41;
    }
    .fxtm-contact-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .fxtm-contact-intro {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #2a3f5e;
        margin-bottom: 2.5rem;
        background: #f8fafd;
        padding: 1.5rem 2rem;
        border-radius: 16px;
        border-left: 4px solid #d4af37;
    }
    .fxtm-address-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    .fxtm-address-item {
        display: flex;
        gap: 1rem;
        background: #f8fafd;
        padding: 1.5rem;
        border-radius: 16px;
        border: 1px solid #eef2f8;
        transition: 0.2s;
    }
    .fxtm-address-item:hover {
        border-color: #d4af37;
        box-shadow: 0 8px 18px rgba(0,20,40,0.08);
    }
    .fxtm-address-icon {
        color: #d4af37;
        font-size: 1.8rem;
        line-height: 1;
    }
    .fxtm-address-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #2a3f5e;
    }
    .fxtm-address-text strong {
        color: #0b1a2f;
        display: block;
        margin-bottom: 0.3rem;
        font-size: 1rem;
    }

    .fxtm-contact-subtitle {
        font-size: 1.8rem;
        font-weight: 600;
        color: #0b1a2f;
        margin: 2rem 0 0.8rem;
    }
    .fxtm-contact-note {
        font-size: 1rem;
        color: #4a5b73;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .fxtm-main-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }
    .fxtm-main-item {
        background: #f8fafd;
        padding: 1rem 1.5rem;
        border-radius: 40px;
        border: 1px solid #eef2f8;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1rem;
        transition: 0.2s;
    }
    .fxtm-main-item:hover {
        border-color: #d4af37;
        background: #fff;
    }
    .fxtm-main-item i {
        color: #d4af37;
        font-size: 1.4rem;
        width: 1.8rem;
        text-align: center;
    }
    .fxtm-main-item a {
        color: #0b1a2f;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px dotted #d4af37;
    }
    .fxtm-main-item a:hover {
        color: #d4af37;
        border-bottom-style: solid;
    }

    /* 其他联系方式网格 */
    .fxtm-other-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
        margin-top: 1rem;
    }
    .fxtm-other-item {
        background: #f8fafd;
        padding: 0.8rem 1.2rem;
        border-radius: 30px;
        border: 1px solid #eef2f8;
        display: flex;
        flex-direction: row;        /* 明确水平排列 */
        align-items: center;
        gap: 0.8rem;
        flex-wrap: nowrap;          /* 防止换行（文字折行不影响flex行） */
        font-size: 0.95rem;
        transition: 0.2s;
    }
    .fxtm-other-item:hover {
        border-color: #d4af37;
        background: #fff;
    }
    .fxtm-other-item i {
        color: #d4af37;
        font-size: 1.2rem;
        width: 1.6rem;
        text-align: center;
        flex-shrink: 0;              /* 图标大小固定 */
    }
    .fxtm-other-text {
        flex: 1;                      /* 占用剩余宽度 */
        min-width: 0;                 /* 允许缩小 */
        word-break: break-word;       /* 长单词换行 */
        line-height: 1.4;
    }
    .fxtm-other-text a {
        color: #0b1a2f;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px dotted #d4af37;
    }
    .fxtm-other-text a:hover {
        color: #d4af37;
        border-bottom-style: solid;
    }

    /* 响应式微调 */
    @media (max-width: 768px) {
        .fxtm-contact-subtitle {
            font-size: 1.6rem;
        }
        .fxtm-main-item {
            padding: 0.8rem 1.2rem;
        }
    }
    @media (max-width: 480px) {
        .fxtm-contact-section {
            padding: 2.5rem 1rem;
        }
        .fxtm-address-item {
            flex-direction: column;
            align-items: flex-start;
        }
        .fxtm-main-item {
            flex-wrap: wrap;
        }
    }


    

        .fxtm-form-section {
            padding: 60px 0;
            background-color: #f9fafc;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        .fxtm-form-section .fxtm-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .fxtm-form-title {
            font-size: 2.2rem;
            font-weight: 600;
            color: #0b1a2f;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        .fxtm-form-title::after {
            content: '';
            display: block;
            width: 180px;
            height: 4px;
            background: #d4af37;
            margin: 16px auto 0;
            border-radius: 2px;
        }
        .fxtm-contact-form {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }
        .fxtm-form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }
        .fxtm-form-group {
            margin-bottom: 0;
        }
        .fxtm-full-width {
            grid-column: span 2;
            margin-bottom: 20px;
        }
        .fxtm-label {
            display: block;
            font-size: 0.95rem;
            font-weight: 500;
            color: #2d3e4f;
            margin-bottom: 8px;
        }
        .fxtm-input,
        .fxtm-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e0e4e8;
            border-radius: 12px;
            font-size: 1rem;
            color: #0b1a2f;
            background-color: #fff;
            transition: border-color 0.2s, box-shadow 0.2s;
            box-sizing: border-box;
        }
        .fxtm-input:focus,
        .fxtm-textarea:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
        }
        .fxtm-input::placeholder,
        .fxtm-textarea::placeholder {
            color: #a0b0c0;
        }
        .fxtm-textarea {
            resize: vertical;
            min-height: 120px;
        }
        .fxtm-form-submit {
            text-align: center;
        }
        .fxtm-btn-submit {
            background-color: #d4af37;
            color: #0b1a2f;
            border: none;
            border-radius: 50px;
            padding: 14px 42px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
            border: 1px solid transparent;
        }
        .fxtm-btn-submit:hover {
            background-color: #e4c25c;
            transform: translateY(-2px);
            box-shadow: 0 15px 25px rgba(212, 175, 55, 0.35);
        }
        .fxtm-btn-submit:active {
            transform: translateY(0);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .fxtm-form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .fxtm-full-width {
                grid-column: span 1;
            }
            .fxtm-contact-form {
                padding: 30px 20px;
            }
        }
        @media (max-width: 480px) {
            .fxtm-form-title {
                font-size: 1.8rem;
            }
            .fxtm-btn-submit {
                width: 100%;
            }
        }



    .fxtm-join-section {
        position: relative;
        margin-bottom: -25px;
        background-image: url('012.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 6rem 1.5rem;
        text-align: center;
        color: #ffffff;
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* 半透明遮罩层，提高文字可读性 */
    .fxtm-join-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .fxtm-join-container {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .fxtm-join-title {
        color: #ffffff;
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .fxtm-join-subtitle {
        color: #ffffff;
        text-align: center;
        font-size: 1.4rem;
        font-weight: 400;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }

    .fxtm-join-btn {
        display: inline-block;
        background: #d4af37;
        color: #0b1a2f;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 3rem;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    }

    .fxtm-join-btn:hover {
        background: #e4c25c;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
        .fxtm-join-title {
            font-size: 2.2rem;
        }
        .fxtm-join-subtitle {
            font-size: 1.2rem;
        }
        .fxtm-join-btn {
            font-size: 1rem;
            padding: 0.8rem 2.5rem;
        }
    }

    @media (max-width: 480px) {
        .fxtm-join-section {
            padding: 4rem 1rem;
        }
        .fxtm-join-title {
            font-size: 1.8rem;
        }
        .fxtm-join-subtitle {
            font-size: 1rem;
        }
    }
