
.headerIndex .info {
    height: 90px !important;

    .nav-index {
        height: 90px;
        display: flex;
        align-items: center;
        gap: 30px;
        margin-right: 100px;

        .nav-item {
            height: 90px;
            line-height: 90px;
            cursor: pointer;
            color: #333;

            &:hover{
                color: #d9351e;
                font-weight: 700;
            }
        }
    }
}

.btn-login-register {
    display: flex;
    height: 45px;
    line-height: 45px;
    border-radius: 24px;
    font-size: 16px;
    width: 260px;
    border: 1px solid #0066ff;
    text-align: center;
    color: #0066ff;
    cursor: pointer;
    overflow: hidden;

    .btn-login {
        width: 50%;
        border-right: 1px solid #0066ff;

        &:hover {
            background-color: #eaeff7;
        }
    }

    .btn-register {
        width: 50%;

        &:hover {
            background-color: #eaeff7;
        }
    }
}

.footerIndex {
    width: 100%;
    background-color: #101010;
    background-repeat: no-repeat;
    background-size: 1920px 280px;
    background-position: center;
    min-width: 1200px;

    .content {
        width: 1200px;
        height: 178px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);

        .footer-left {
            flex-shrink: 0;
            .desc-text {
                width: 150px;
                height: 36px;
                background: rgba(255, 255, 255, 0.09);
                border-radius: 4px;
                font-size: 14px;
                color: #bfbfbf;
                line-height: 36px;
                text-align: center;
                margin-top: 80px;
                margin-left: 10px;
            }
        }

        .footer-center {
            height: 178px;
            box-sizing: border-box;
            padding-top: 26px;
            display: flex;
            justify-content: space-around;
            width: 490px;

            .group-item {
                .sub-title {
                    display: block;
                    font-weight: bold;
                    font-size: 16px;
                    color: #ffffff;
                    line-height: 24px;
                    margin-bottom: 20px;
                }

                a {
                    display: block;
                    font-weight: 400;
                    font-size: 14px;
                    color: rgba(255, 255, 255, 0.5);
                    line-height: 24px;

                    &:hover {
                        color: #ffffff;
                    }
                }
            }
        }
    }

    .footer-copyright {
        width: 1200px;
        margin: 0 auto;
        padding-top: 13px;

        .beian-text {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
            line-height: 18px;
            margin-bottom: 6px;

            a {
                color: rgba(255, 255, 255, 0.5);
                &:hover {
                    color: #ffffff;
                }
            }
        }

        .copyright-text {
            color: rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            gap: 30px;
            font-size: 12px;
            line-height: 18px;
        }
    }

    .footerR {
        .association-item {
            &:hover {
                .contact-info {
                    display: flex;
                }
            }
            .contact-info {
                display: none;
            }
        }
    }
}