@charset "utf-8";
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        body {
            background-image: url('../images/bg8.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 40px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        /* 顶部标题区域 */
        .header-wrap {
            text-align: center;
            margin-bottom: 48px;
        }
        .main-title {
            font-size: 56px;
            font-weight: bold;
            color: #ffffff;
            letter-spacing: 0.15em;
        }
        .sub-title {
            font-size: 24px;
            color: #ffffff;
            margin: 8px 0 12px;
        }
        .title-line {
            width: 80px;
            height: 4px;
            background-color: #ffffff;
            margin: 0 auto;
        }
        /* 白色卡片容器 */
        .contact-card {
            width: 800px;
            max-width: 100%;
            margin: 0 auto;
            background: rgba(36, 66, 102, 0.6);
            border-radius: 16px;
            padding: 60px 40px;
            text-align: center;
            box-shadow: 0 10px 60px rgba(0,0,0,0.3);
            border: 2px solid #ffffff;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        /* 联系文本区域 */
        .contact-text {
            font-size: 22px;
            color: #ffffff;
            line-height: 3.2;
            display: inline-block;
            text-align: left;
        }
        .contact-text p:first-child {
            margin-bottom: 12px;
        }
        .contact-text .contact-icon {
            display: inline-flex;
            vertical-align: middle;
            margin-right: 10px;
        }
        .contact-text .contact-icon svg {
            width: 22px;
            height: 22px;
            stroke: #ffffff;
        }
        .mail-link {
            color: #ffffff;
            text-decoration: none;
        }
        @media (max-width: 700px) {
            body { padding: 24px 16px; }
            .main-title { font-size: 36px; }
            .sub-title { font-size: 18px; }
            .title-line { width: 60px; height: 3px; }
            .header-wrap { margin-bottom: 32px; }
            .contact-card { padding: 40px 20px; }
            .contact-text { font-size: 15px; line-height: 2.4; }
            .contact-text .contact-icon svg { width: 18px; height: 18px; margin-right: 6px; }
            .contact-text p:first-child { margin-bottom: 8px; }
            body > a { font-size: 1rem !important; gap: 6px !important; top: 16px !important; left: 16px !important; }
            body > a svg { width: 20px !important; height: 20px !important; }
        }
