﻿.content-banner {
    width: 100%;
    display: block;
    height: auto;
    margin-bottom: 20px;
}

.content-box {
    padding: 40px;
    text-align: center;
}

    .content-box h1 {
        font-size: 42px;
        margin-bottom: 30px;
        color: #333;
    }

    .content-box p {
        font-size: 15px;
        line-height: 1.6;
        color: #733555;
        max-width: 800px;
        margin: 0 auto 20px;
        text-align: justify;
        text-justify: inter-character;
        word-break: break-all;
    }

body {
    margin: 0;
    font-family: "Microsoft YaHei", sans-serif;
    background: linear-gradient(to bottom, #d6c5e4, #FFFFFF);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
    .fixed-header.extra {
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
.logo {
    /*margin-right: 15px;
    width: 36px;
    height: 36px;*/
    height: 65px;
    background-color: #d6c5e4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.top-extra {
    width: 940px;
    margin: 0 auto;
    padding-top: 0px;
    display: flex;
    gap: 80px;
    background-color: #d6c5e4;
}

    .logo img {
        width: 100%;
        height: auto;
    }
.header-top {
    height: 65px;
    background-color: #d6c5e4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    /*position: relative;*/
}

.header-logo-right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 305px;
    height: 47px;
}

.header-line {
    height: 2px;
    background-color: #c0afcf;
}

.main-container {
    width: 940px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 10px;
    flex: 1;
}

    .main-container.xinxi {
        width: 940px;
        margin: 0 auto;
        padding-bottom: 50px;
        flex: 1;
    }

.menu-item {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}

    .menu-item:hover {
        color: #FFFFFF;
    }


.footer-rect {
    height: 45px;
    background-color: #d6c5e4;
    text-align: center;
    padding-top: 15px;
}

    .footer-rect a {
        flex: 1;
        color: #333;
        text-decoration: none;
        font-size: 15px;
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 20px;
        line-height: 20px;
    }

.content-box {
    background-color: rgba(255, 255, 255, 0);
    padding: 40px;
}

/*新加卡片式*/
.card-container {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 940px;
    margin: 20px auto;
    box-sizing: border-box;
}

.info-card {
    flex: 1;
    min-width: 380px;
    /*background: #fff;
     background: #F5F1E4; */
    background: linear-gradient(to bottom, #ffffff 0%, #F5F1E4 100%);
    border-radius: 12px;
    padding: 24px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #2C3E50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0dfdf;
}

.info-item {
    font-size: 14px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 14px;
    display: flex;
}

    .info-item strong {
        color: #4A5568;
        min-width: 70px;
        font-weight: 500;
    }

    .info-item a {
        color: #3182CE;
        text-decoration: none;
    }

        .info-item a:hover {
            text-decoration: underline;
        }

/* 底部二维码卡片*/
.code-card {
    background: transparent;
    border-radius: 16px;
    padding: 32px;
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-group,
.nav-group {
    display: flex;
    gap: 24px;
}

.code-item {
    text-align: center;
}

    .code-item img {
        width: 150px;
        height: auto;
        display: block;
        margin-bottom: 8px;
        border-radius: 8px;
    }

    .code-item span {
        font-size: 14px;
        color: #666;
    }
