/* 移动端按钮点击样式优化 */
button, .btn, [role="button"], .clickable {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    border: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button:focus, .btn:focus, [role="button"]:focus, .clickable:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

button:active, .btn:active, [role="button"]:active, .clickable:active {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/* 页脚样式 */

/* 防止页脚产生横向滚动 */
.footer-section {
    overflow-x: hidden;
}

.footer-section * {
    max-width: 100%;
}

.footer-section {
    background: #01241E;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-section .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
}

.footer-logo-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.footer-brand {
    display: inline-block;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-divider {
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
    height: 1px;
    background: #e5e7eb;
    text-align: right;
}

.footer-main-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.footer-description {
    max-width: 400px;
}

.footer-tagline {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

.footer-links-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 24px 0;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
}

.footer-social-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #fff;
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

.footer-download {
    margin-top: 24px;
}
.footer-download.mobile{
    display: none;
}
.footer-app-links {
    
}

.footer-app-link {
    display: inline-block;
    margin-right: 32px;
}

.footer-app-image {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.footer-copyright{
    margin-top:50px;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 2px solid #D2D5E2;
    /* text-align: center; */
    /* margin-top: 20px; */
}





/* 下载弹窗 */






.mask{
    display: none;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.app-download-dialog,.exe-download-dialog{
    display: none;
    position: fixed;
    top: 50%;
    left:50%;
    margin-left:-300px;
    margin-top:-275px;
    width: 600px;
    height: 573px;
    background: #FFFFFF;
    border-radius: 16px 16px 16px 16px;
    z-index: 9999;
    padding: 30px 0;
}
.app-download-dialog .title,.exe-download-dialog .title{
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: bold;
    font-size: 38px;
    color: #030303;
    text-align: center;
    
}
.app-download-dialog .sub-title,.exe-download-dialog .sub-title{
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #3D3D3D;
    text-align: center;
    margin-top:10px;
}
.app-download-dialog .btn-box,.exe-download-dialog .btn-box{
    text-align: center;
}
.app-download-dialog .btn-box img,.exe-download-dialog .btn-box img{
    height:54px;
    margin-left:15px;
    width: 182px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #000000;
    border-radius: 8px 8px 8px 8px;
}
.app-download-dialog .footer-content,.exe-download-dialog .footer-content{
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #3D3D3D;
    text-align: center;
    margin-top:30px;
}
.app-download-dialog .download-rqcode,.exe-download-dialog .download-rqcode{
    margin:40px auto;
    width: 210px;
    height: 210px;
    background: #3D3D3D;
    text-align: center;
}
.app-download-dialog .download-rqcode img{
    width: 210px;
    height: 210px;
}
.exe-download-dialog .download-rqcode{
    cursor: pointer;
    background: #F0F9FF;
    padding-top:62px;
}
.exe-download-dialog .download-rqcode img{
    background: #F0F9FF;
    text-align: center;
    width:48px;
    height: 48px;
}
.exe-download-dialog .download-rqcode .exe-name{
    display: block;
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #006DFF;
    text-align: center;
    margin-top:20px;
}
.footer-copyright .web{
    display: block;
}
.footer-copyright .mobile{
    display: none;
}



@media (min-width: 768px) and (max-width: 1220px) {
    .footer-download.mobile{
        display: none;
    }
}


/* 移动端媒体查询 (最大宽度: 767px) */
@media (max-width: 767px) {
    .footer-section {
        padding: 40px 0 24px;
    }
    
    .footer-section .footer-container {
        padding: 0 16px;
    }
    
    .footer-content {
        gap: 32px;
    }
    
    .footer-logo {
        height: 28px;
    }
    
    
    .footer-main-content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-description {
        max-width: 100%;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1;
    }
    
    .footer-tagline {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .footer-links-wrapper {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2;
    }
    
    .footer-column-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 16px;
    }
    
    .footer-links-list {
        gap: 12px;
    }
    
    .footer-link {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .footer-social-list {
        gap: 12px;
    }
    
    .footer-social-link {
        font-size: 14px;
        gap: 10px;
    }
    
    .footer-social-icon {
        width: 18px;
        height: 18px;
    }
    
    .footer-download.web {
        display: none;
    }
    .footer-download.mobile{
        margin-top:0;
        display: block;
    }
    
    .footer-app-links {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .footer-app-link{
        margin-right: 30px;
    }
    
    .footer-app-image {
        height: 40px;
        width: auto;
    }
    .footer-copyright .web{
        display: none;
    }
    .footer-copyright .mobile{
        display: inline-block;
        margin-left: 30px;
    }
    
    .footer-copyright {
        margin-top: 32px;
        height: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 12px;
        padding-top: 16px;
        border-top: 1px solid #374151;
    }
    
    .footer-copyright p {
        margin: 0;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }
    
    .footer-copyright span {
        margin-left: 0 !important;
        margin-right: 16px;
    }


    /* 下载弹窗 */
    .app-download-dialog{
        width: 80%;
        margin-left: -40%;
    }

    
}
