html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 1200px;
}


#app {
    width: 100%;
}


/* 顶部导航栏样式 */
.menu-wrap {
    height: 80px;
    z-index: 1000;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: #0646a0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-wrap + .section-wrap {
    margin-top: 80px;
}

/* 主容器样式 */
.section-wrap {
    width: 100%;
}

.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* 左侧头部样式 */
.left-header {
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.logo img {
    width: 100%;
}

.menus {
    height: 100%;
}

/* 菜单样式 */
.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.menu-item {
    display: block;
    line-height: 80px;
    height: 80px;
    font-size: 18px;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 2px solid transparent;
    padding: 0 10px;
    position: relative;
}

.menu-item a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
    font-weight: 500;
}

.menu-item.active,
.menu-item:hover {
    color: #f15629;
    border-color: #f15629;
}



.avatar:hover {
    border-color: #f15629;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(241, 86, 41, 0.2);
}

.avatar a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.avatar:hover img {
    transform: scale(1.1);
}

/* 用户登录时的右侧头部布局调整 */
.right-header {
    display: flex;
    align-items: center;
    gap: 25px;
}

.right-header > div {
    display: flex;
    align-items: center;
    height: 40px;
}

/* 当用户已登录时，右侧只有头像，不需要调整间距 */
.right-header:has(.avatar) {

}

/* 可选：添加下拉菜单样式（如果需要的话） */
.avatar-wrapper {
    position: relative;
}

.avatar-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    min-width: 160px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.avatar-wrapper:hover .avatar-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.avatar-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
}

.avatar-dropdown-item {
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.avatar-dropdown-item:last-child {
    border-bottom: none;
}

.avatar-dropdown-item:hover {
    background: #f8f9fa;
    color: #0646a0;
    padding-left: 25px;
}

.avatar-dropdown-item.logout {
    color: #ff4d4f;
}

.avatar-dropdown-item.logout:hover {
    background: #fff2f0;
    color: #ff4d4f;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .avatar {
        width: 36px;
        height: 36px;
        border-width: 1px;
    }

    .right-header {
        gap: 15px;
    }

    .right-header:has(.avatar) {
        gap: 0;
    }
}

@media (max-width: 768px) {
    .right-header {
        display: none;
    }

    /* 移动端显示用户头像 */
    .mobile-right-header {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mobile-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .mobile-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.login a, .applyTrial a {
    display: block;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 0 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.login a {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.applyTrial a {
    color: #0646a0;
    background: #fff;
    border: 1px solid #fff;
}

.applyTrial a:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 响应式调整（可选） */
@media (max-width: 1240px) {
    #app {
        min-width: auto;
    }

    .section {
        width: 100%;
        max-width: 1200px;
    }

    .left-header {
        gap: 40px;
    }

    .menu {
        gap: 20px;
    }

    .menu-item {
        font-size: 16px;
        padding: 0 8px;
    }
}

@media (max-width: 1024px) {
    .menu-wrap {
        height: 60px;
    }

    .menu-wrap + .section-wrap {
        margin-top: 60px;
    }

    .header {
        height: 60px;
    }

    .left-header {
        gap: 30px;
    }

    .logo {
        height: 50px;
    }

    .menu-item {
        line-height: 60px;
        height: 60px;
        font-size: 15px;
    }

    .right-header {
        gap: 15px;
    }

    .login a, .applyTrial a {
        font-size: 14px;
        padding: 0 12px;
        height: 36px;
        line-height: 36px;
    }
}

/* 移动端菜单切换（可选扩展） */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
    }

    .menus {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #0646a0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .menus.active {
        display: block;
    }

    .menu {
        flex-direction: column;
        gap: 0;
    }

    .menu-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .right-header {
        display: none;
    }
}

.section-title {
    margin: 0 auto 80px;
    text-align: center;
    line-height: 1;
    position: relative;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    padding-top: 60px;
}

.section-title.dark {
    color: #333333;
}

.section-desc {
    font-size: 14px;
    margin-top: 20px;
    font-weight: normal;
}

.banner {
    padding: 70px 0;
    background: linear-gradient(#0d52b3, #1c68d1 46%, #1460c8);
}

.banner-img {
    text-align: right;
}

.banner-txt {
    color: #fff;
}

.banner-txt h2 {
    font-size: 40px;
    margin: 0;
    margin-bottom: 30px;
    animation: fade 1s;
    font-weight: normal
}

.banner-txt h2 span {
    background: #fff;
    color: #1b67cf;
    border-radius: 6px;
    font-size: 30px;
    display: inline-block;
    line-height: 40px;
    padding: 3px 10px;
    margin-left: 5px;
}

.banner-txt p {
    animation: fade 1s;
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.banner .item {
    animation: fade 1s;
    background: rgba(6, 70, 160, 0.5);
    width: 160px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.banner-txt h2::after {
    content: '';
    display: block;
    margin-top: 20px;
    width: 50px;
    height: 9px;
    background: #f15629;
}

.platform-business {
    background: #e5eef5;
    padding-bottom: 100px;
}

.platform-business .item {
    border: 1px solid #e5e5e5;
    height: 240px;
    padding: 30px;
    margin: 0 12px 24px;
    background: #fff;
    color: #666666;
}

.platform-business .item:hover {
    background: #0646a0;
    color: #fff;
}

.platform-business .item:hover h3 {
    color: #fff;
}

.platform-business .item img {
    height: 40px;
}

.platform-business .item h3 {
    color: #333333;
    font-size: 24px;
    margin: 20px 0 20px;
}

.platform-business .item p {
    line-height: 29px;
}

.platform-point {
    background: #0646a0;
    color: #fff;
}

.platform-point .item {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    background: #1351c0;
    margin: 20px auto;
}

.platform-point .item img {
    vertical-align: middle;
}

.platform-data {
    padding-bottom: 100px
}

.platform-data .item {
    text-align: center;
    color: #666;
    box-shadow: 0 3px 10px 0px #e8e8e8;
    padding: 40px 20px;
    height: 300px;
    margin: 0 10px;
}

.platform-data .item p {
    line-height: 29px
}

.platform-data .item .num {
    font-size: 50px;
    color: #f15629;
    font-weight: bold;
}

.platform-data .item .num-title {
    color: #333;
    height: 5em;
    font-weight: bold;
    position: relative;
}

.platform-data .item .num-title::after {
    content: '';
    width: 30px;
    height: 4px;
    background: #f15629;
    margin: 10px auto;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.platform-data .item .unit {
    font-size: 40px;
    font-weight: normal;
    vertical-align: super;
}

.platform-data .item:hover .num-title {
    color: #fff
}

.platform-data .item:hover {
    color: #fff;
    background: #0646a0
}

.platform-corp {
    background: #f6f6f6;
}


.footer {
    background: #022555;
    line-height: 45px;
    color: #fff;
}

.btn-submit {
    background: #f15629;
    color: #fff;
    box-shadow: none;
    border: 0;
    width: 150px;
    border-radius: 4px;
}
/* 联系我们区块样式 */
.contactus {
    background: linear-gradient(135deg, #0646a0 0%, #08367d 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contactus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q50,0 100,50 Q50,100 0,50" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.3;
}

.contactus .section {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contactus h3 {
    font-size: 36px !important;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.contactus h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f15629;
    border-radius: 2px;
}

/* 左侧内容区域 */
.left-section {
    flex: 1;
    max-width: 580px;
}

.content-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.phone, .address {
    font-size: 18px;
    line-height: 1.6;
}

.phone a {
    color: #f15629;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.phone a:hover {
    color: #ff8a6d;
    border-bottom-color: #ff8a6d;
}

.desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
}

/* 右侧内容区域 */
.right-section {
    flex: 0 0 auto;
}

.right-section .content-wrap {
    display: flex;
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
}

.qr-code {
    text-align: center;
    transition: transform 0.3s ease;
}

.qr-code:hover {
    transform: translateY(-5px);
}

.qr-code img {
    width: 160px;
    height: 160px;
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: white;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.qr-code:hover img {
    border-color: #f15629;
    box-shadow: 0 12px 30px rgba(241, 86, 41, 0.25);
}

.qr-code p {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .contactus .section {
        gap: 60px;
    }

    .right-section .content-wrap {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .contactus .section {
        flex-direction: column;
        gap: 60px;
    }

    .left-section, .right-section {
        width: 100%;
        max-width: 100%;
    }

    .right-section .content-wrap {
        justify-content: flex-start;
        gap: 40px;
    }

    .contactus h3 {
        font-size: 32px !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contactus {
        padding: 60px 0;
    }

    .right-section .content-wrap {
        justify-content: center;
        gap: 30px;
    }

    .qr-code img {
        width: 140px;
        height: 140px;
    }

    .phone, .address {
        font-size: 16px;
    }

    .desc {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .contactus {
        padding: 50px 0;
    }

    .contactus h3 {
        font-size: 28px !important;
        margin-bottom: 25px;
    }

    .right-section .content-wrap {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .content-wrap {
        gap: 25px;
    }

    .phone a {
        font-size: 18px;
    }

    .qr-code img {
        width: 150px;
        height: 150px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contactus .left-section,
.contactus .right-section {
    animation: fadeInUp 0.8s ease forwards;
}

.contactus .right-section {
    animation-delay: 0.2s;
}

/* 分隔线样式（可选） */
.contactus .section {
    position: relative;
}

.contactus .section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (max-width: 992px) {
    .contactus .section::before {
        display: none;
    }
}

/* 额外的装饰元素（可选） */
.contactus .decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 86, 41, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.contactus .decoration:nth-child(1) {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
}

.contactus .decoration:nth-child(2) {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
}

/* 退出按钮样式 */
.logout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-left: 15px;
}

.logout:hover {
    background: rgba(241, 86, 41, 0.1);
    border-color: #f15629;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(241, 86, 41, 0.15);
}

.logout a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* 或者使用图片标签（如果您想用外部图标） */
.logout img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1); /* 将图标变为白色 */
    transition: filter 0.3s ease;
}

.logout:hover img {
    filter: brightness(0) invert(54%) sepia(63%) saturate(2264%) hue-rotate(340deg) brightness(98%) contrast(96%); /* 变为橙色 */
}

/* 提示文字（可选） */
.logout::after {
    content: '退出登录';
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.logout:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.section-title2{
    display: flex;
}