* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

video {
    user-select: none;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #014c8d;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #FFF;
}

html,
body {
    /* height: 100%; */
    font-family: Arial, "Microsoft YaHei", sans-serif;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;

}

header {
    background-color: #014c8d;
}

.header {
    background: #014c8d;
    width: 100%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.header_main {
    max-width: 1400px;
    min-height: 70px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_main_title {
    width: 137px;
    height: 30px;
    cursor: pointer;
    font-size: clamp(18px, 4vw, 22px);
    color: #FFF;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header_main_title img {
    width: 100%;
    height: 100%;
}

main {
    flex: 1;
    background-color: #FFFFFF
}

.main_Box_header {
    background-color: #F5FAFF;
}

.main_Box_Bar {
    background-color: #F5FAFF;
    padding: 32px 0;

}

.arrow_line {
    position: absolute;
    top: 40%;
    left: 3%;
    right: 3%;
    height: 20px;
    background-image: url(/static/img/loginbarheader.gif);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    animation: flashEffect 1s ease-in-out infinite;
}

@keyframes flashEffect {
    0% {
        box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(255, 255, 255, 1);
    }

    100% {
        box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0);
    }
}


.arrow_line_item {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    border-radius: 10px;
    border: 2px solid #FFFFFF;
    position: relative;
}

.arrow_line_item::after {
    content: '';
    position: absolute;
    width: 105%;
    height: 105%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #FFFFFF;
}

.arrow_line_item1 {
    background-color: #3DC279;
}

.arrow_line_item2 {
    background-color: #3AABB2;
}

.arrow_line_item3 {
    background-color: #4FA2FF;
}

.arrow_line_item4 {
    background-color: #FF8C5B;
}

.arrow_line_item5 {
    background-color: #F46060;
}


.main_header {
    max-width: 1400px;
    background: #F5FAFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    border-radius: 8px;
    margin: 0 auto;
}

.main_left {
    flex: 1;
    padding: 20px;
    padding-bottom: 15px;
}

.main_left h1 {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 40px;
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: bold;
    font-size: 44.5px;
    color: #000000;
    line-height: 79px;
    font-size: 72px;
}

.main_left h1 span {
    color: #0067e7;
}

.main_left p {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 30px;
    max-width: 600px;
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-size: 18px;
    color: #696969;
    line-height: 29px;
}

.start_btn {
    display: inline-block;
    background: linear-gradient(145deg, #014C8D, #0173D4);
    color: white;
    padding: 12px 30px;
    border: none;
    width: 360px;
    border-radius: 32px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    inset 0 -1px 3px rgba(0, 0, 0, 0.4);
}

.start_btn:hover {
    background: linear-gradient(145deg, rgb(0, 60, 224), #0173D4);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -1px 3px rgba(0, 0, 0, 0.4);
}

.start_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%);
    animation: shine 3s infinite ease-in-out;
    opacity: 0.8;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        left: 150%;
        opacity: 0;
    }
}

.start_btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.1) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.1) 55%, transparent 55%);
    background-size: 6px 6px;
    opacity: 0.5;
    border-radius: 32px;
}

.main_right {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.main_bar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 1vw;
    position: relative;
}

.bar_title {
    background-image: url(/static/img/bantoumingFF.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 220px;
}

.bar_img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

.bar_title h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000000;
}

.bar_title p {
    font-size: 14px;
    color: #666;
}


.main_Box {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    background-color: #FFFFFF;
    padding-bottom: 40px;
}

.main_Box_title {
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: bold;
    font-size: 40px;
    color: #333333;
    line-height: 52px;
    padding: 32px 0;
}


.main_Box_Data_Left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main_Box_Data_Left_title {
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: bold;
    font-size: 26px;
    color: #333333;
    padding-bottom: 32px;
    line-height: 35px;

}

.main_Box_Data_rigth {
    flex: 1;
}

.main_Box_Data_rigth_title {
    padding-bottom: 3vw;
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: bold;
    font-size: 26px;
    color: #333333;
    line-height: 35px;

}

.main_Box_Data {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding-bottom: 32px;
    overflow: hidden;
}


.main_Box_Data_Left_Bata_item_title {
    font-family: MicrosoftYaHei;
    font-size: 26px;
    color: #333333;
    line-height: 35px;
}

.main_Box_Data_Left_Bata_item_value {
    font-family: MicrosoftYaHei;
    font-size: 18px;
    color: #333333;
    line-height: 24px;
}


.main_Box_Data_Left_Bata {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    grid-auto-rows: 140px;
    gap: 12px;
    padding: 12px;
    box-sizing: border-box;

}

.main_Box_Data_Left_Bata_item {
    background: #F5FAFF;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    box-sizing: border-box;
}

.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.chart-wrapper {
    width: 280px;
    height: 280px;
}

.legend-wrapper {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.legend-color {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 4px;
}

.main_Box_footer_BOX {
    background-color: #F5FAFF;
    flex: 1;
}

.main_Box_footer {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    background-color: #F5FAFF;
    padding: 0 20px;
}

.main_Box_footer_title {
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: bold;
    font-size: 32px;
    color: #333333;
    line-height: 1.3;
    padding: 48px 0;
    padding-top: 29px;
}

.main_Box_footer_data {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 48px;
}

.main_Box_footer_data_item {
    padding: 24px 40px;
    width: 100%;
    max-width: 440px;
    background: #FFFFFF;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.main_Box_footer_data_item > div {
    display: flex;
    align-items: flex-start;
}

.main_Box_footer_data_item img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    margin-right: 8px;
}

.main_Box_footer_data_item h4 {
    font-size: 20px;
    margin-bottom: 13px;
    color: #333;
}

.main_Box_footer_data_item p {
    font-size: 16px;
    color: #666;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}

.footer {
    background: #333;
    color: #FFF;
    text-align: center;
    padding: 24px;
    flex-shrink: 0;
    font-size: 14px;
}

.main_Box_Data_button {
    box-sizing: border-box;
    margin: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    background: #333;
    color: #FFF;
    text-align: center;
    padding: 24px;
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 40px;
}

.main_user_BOX {
    background-color: #FFFFFF;
}

.main_user {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    background-color: #FFFFFF;
    padding: 0 20px;
}

.main_user_BOX_title {
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: bold;
    font-size: 32px;
    color: #333333;
    line-height: 1.3;
    padding: 48px 0;
    padding-bottom: 24px;
    padding-top: 32px;
    padding-top: 29px;
}

.carousel-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 32px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: max-content;
}

.user-card {
    margin: 10px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-right: 20px;
    flex: 0 0 340px;
    transition: transform 0.3s ease;
}

.user-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.user-info {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 16px 16px 10px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    border: 2px solid #e0e0e0;
}

.user-details {
    width: 100%;
    margin-right: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.user-name {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    color: #333;
    text-align: left;
}

.user-score {
    width: 50px;
    font-size: 12px;
    color: #ffffff;
    padding: 0 0.32px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    background-color: #014C8D;
    padding-left: 0.35vw;
    margin-left: 10px;
}

.user-score::before {
    content: "IQ:";
    color: #fafafa;
    margin-right: 4px;
}

.user-remark {
    padding: 16px;
    padding-top: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: left;
}


.footer {
    margin-top: auto;
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 12px;
}


.pause-animation {
    animation-play-state: paused;
}


.main_Box_brain_BOX {
    background-color: #F5FAFF;
    flex: 1;
}

.main_Box_brain {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    background-color: #F5FAFF;
    padding: 0 20px;
}

.main_Box_brain_title {
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: bold;
    font-size: 32px;
    color: #333333;
    line-height: 1.3;
    padding: 48px 0;
    padding-top: 29px;
}

.main_Box_brain_data {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
}

.main_Box_brain_data_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    flex: 1;
}

.main_Box_brain_data_img {
    flex: 1;
}

.main_Box_brain_data_rigth {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    flex: 1;
}


.main_Box_brain_data_title {
    width: 150px;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    color: #333333;
    margin-bottom: 48px;
    margin-top: 48px;
}

.main_Box_brain_data_value {
    font-family: MicrosoftYaHei;
    font-size: 18px;
    color: #333333;
    margin-bottom: 48px;

}

.main_Box_brain_data_remoke {
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: bold;
    font-size: 20px;
    color: #014C8D;
}


.main_Box_brain_data img {
    display: block;
    width: 100%;
}

.main_Box_brain_data .img {
    max-width: 400px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.main_Box_brain_data .img::before {
    content: "";
    position: absolute;
    left: -40%;
    top: 30%;
    transform: translateY(-50%);
    height: 138px;
    width: 309px;
    background-image: url(/static/img/brainafter.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.main_Box_brain_data .img::after {
    content: "";
    position: absolute;
    right: -40%;
    top: 30%;
    transform: translateY(-50%);
    height: 138px;
    width: 309px;
    background-image: url(/static/img/brainbeftr.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}


.arrow_line_item_data {
    height: 92px;
}

@media (max-width: 800px) {

    .arrow_line_item_data {
        height: auto !important;
    }

    .chart-wrapper {
        width: 60vw;
        height: 60vw;
    }

    .main_bar {
        justify-content: left;
    }

    .arrow_line {
        display: none;
    }

    .main_Box_brain_data_rigth {
        margin-bottom: 16px;
    }

    .main_Box_Bar {
        padding-top: 0;
    }

    .main_Box_brain_data {
        flex-direction: column;
        text-align: left;
        padding: 0;
    }

    .main_Box_brain_data_title {
        margin: 8px;
        font-size: 18px;
    }

    .main_Box_brain_data_value {
        font-size: 14px;
        margin: 8px;
    }

    .main_Box_brain_data_remoke {
        font-size: 16px;
        margin-left: 8px;

    }

    .main_Box_brain_data_left {
        margin-bottom: 24px;
    }

    .user-card {
        flex: 0 0 80vw;
    }

    .user-info {
        padding: 12px;
    }


    .user-name {
        text-align: left;
        font-size: 4vw;
    }

    .user-remark {
        padding: 3vw;
        padding-top: 0;
        font-size: 3.525vw;
    }

    .main_Box_footer_title {
        padding: 4vw 0;
        font-size: 6vw;
    }

    .main_Box_footer_data {
        flex-direction: column;
        margin-top: 15px;
    }

    .main_Box_footer_data_item {
        width: 100%;
        padding: 20px;
    }

    .main_Box_Data_Left_title {
        padding-bottom: 2vw;
        font-size: 4.5vw;
        line-height: 5vw;
    }

    .main_Box_Data_rigth_title {
        padding-top: 3vw;
        font-size: 5vw;
    }

    .main_Box_title {
        font-size: 5vw;
        line-height: 5vw;
        padding: 3vw 0;
        width: 95%;
        margin: 0 auto;
        margin-top: 3vw;

    }

    .main_header {
        flex-direction: column;
        text-align: center;
    }

    .main_left {
        margin-bottom: 30px;
        text-align: center;
    }

    .main_left p {
        font-size: 4vw;
        line-height: 6vw;
    }

    .main_left h1 {
        font-size: 40px;
    }

    .main_left h1 span {
        font-size: 40px;
    }

    .main_Box_Data {
        flex-direction: column;
        text-align: center;
    }

    .main_left p {
        margin-left: auto;
        margin-right: auto;

    }

    .main_right {
        width: 100%;
        position: relative;
    }

    .main_right img {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .main_right video {
        display: block;
        width: 100%;
        margin: 0 auto;
        position: relative;
    }


    .main_header {
        padding-top: 0;
    }

    .main_left {
        margin-bottom: 0;
    }

    .bar_title {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background-image: url(/static/img/bantoumingFFMM.png);
        text-align: left;
        margin-left: 12.5vw;
    }

    .bar_title img {
        margin: 0;
        width: 8.5vh;
        height: 8.5vh;
        margin-right: 16px;
    }

    .bar_title h3 {
        margin-bottom: 0;
        font-size: 5vw;
    }

    .bar_title p {
        display: inline;
        text-align: left !important;
        font-family: MicrosoftYaHei;
        color: #333333;
        font-size: 4vw;
        /* line-height: 5vw; */
    }

    .arrow_line_item {
        position: absolute;
        left: 5%;
        z-index: 10;
    }

    .arrow_line_item::after {
        content: '';
        position: absolute;
        width: 105%;
        height: 105%;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 3px solid #FFFFFF;
    }

    .arrow_line_M {
        position: absolute;
        top: 0;
        left: 5.8vw;
        z-index: 9;
        height: 100%;
        width: 15px;
        background-image: url(/static/img/loginbarheaderM.gif);
        background-position: center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }


    .main_Box_footer_data {
        align-items: center;
    }


    .main_Box_Data_Left_Bata {
        grid-auto-rows: 30vw;
    }


    .main_Box_Data_Left_Bata_item_title {
        font-size: 4vw;
        line-height: 4.5vw;
        margin-bottom: 1vw;
    }

    .main_Box_Data_Left_Bata_item_value {
        line-height: 4.5vw;
        font-size: 3vw;

    }

    .main_Box_footer_data_item h4 {
        font-size: 4.5vw;
        margin-bottom: 2vw;
        color: #333;
    }

    .main_Box_footer_data_item img {
        width: 10vw;
        height: 10vw;
        margin-bottom: 1.5vw;
        margin-right: 1vw;
    }

    .main_Box_footer_data_item p {
        font-size: 3vw;
        color: #666;
    }

    .main_user_BOX_title {
        font-size: 6vw;
        color: #333333;
        line-height: 1.3;
        padding: 4vw 0;
    }

    .user-score {
        padding-left: 1.2vw;
    }

    .main_bar {
        gap: 0;
    }

    .main_bar .bar_title {
        margin-top: 4vw;
    }
}

@media (max-width: 600px) {
    .arrow_line_M {
        left: 6.9vw;
    }

    .user-info {
        padding: 4vw;
    }

    .user-avatar {
        width: 18vw;
        height: 18vw;
    }

    .main_Box_brain_title {
        padding: 4vw 0;
        font-size: 6vw;
    }

    .main_Box_footer_data {
        flex-direction: column;
        gap: 15px;
    }

    .main_Box_footer_data_item {
        width: 100%;
        padding: 20px;
        min-height: auto;
    }

    .main_Box_Data {
        flex-direction: column;
        text-align: center;
    }

    .main_Box_Data_Left_Bata {
        gap: 8px;
        padding: 8px;
    }

    .main_Box_Data_Left_Bata_item {
        padding: 8px;
    }

    .main_Box_Data_rigth {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .main_Box_Data_Left_title {
        padding-bottom: 16px;
    }

    .main_Box_Data_rigth_title {
        padding-top: 3vw;
    }


    .main_Box_Data {
        flex-direction: column;
        text-align: center;
    }

    .main_left h1 {
        line-height: 50px;
        margin-top: 10px;
    }

    .main_header {
        padding: 30px 20px;
    }

    .bar_title {
        width: 100%;
        min-height: auto;
    }

    .start_btn {
        width: 100%;
        padding: 3vw 3vw;
    }

    .main_Box_Data_Left_Bata {
        gap: 8px;
        padding: 8px;
    }

    .main_Box_Data_Left_Bata_item {
        padding: 8px;
    }

    .main_header {
        padding-top: 0;
    }

    .main_bar {
        justify-content: left;
    }

    .main_Box_brain_data_title {
        text-align: left;
    }
}


@media (min-width: 801px) {

    .main_Box_brain_data_left_img {
        display: none !important;
    }

    .main_Box_brain_data_rigth_img {
        display: none !important;
    }

    .main_Box_brain_data_img_pc {
        display: block !important;
    }

    .main_right_PC {
        display: block;
        position: relative;
    }

    .main_right_PC::before {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        width: 100%;
        background-color: transparent;
        z-index: 9;
    }

    .main_right_M {
        display: none;
    }

    .main_left_p_pc {
        display: block;
        font-weight: 400;
        color: #696969;

    }

    .main_left_p_m {
        display: none;
    }
}

@media (max-width: 800px) {
    body {
        font-size: 16px;
    }


    .arrow_line_item_data {
        display: flex;
        flex-wrap: wrap;
    }

    .main_Box_brain_data_left_img {
        display: block !important;
        width: 90px !important;
    }

    .main_Box_brain_data_rigth_img {
        display: block !important;
        width: 90px !important;
    }

    .main_Box_brain_data_img_pc {
        display: none !important;
    }

    .main_left_p_pc {
        display: none;

    }

    .main_right_PC {
        display: none;
    }

    .main_right_M {
        display: block;
    }

    .main_right_M::before {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        width: 100%;
        background-color: transparent;
        z-index: 9;

    }

    .main_right {
        height: auto;
    }


    .arrow_line {
        display: none;
    }


}


.footer-links {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    margin: 0 10px;
    color: #999;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    flex-direction: column;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-copyright-svg {
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright-svg div {
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    padding: 0 8px;
    align-items: center;
    margin: 0 0.32px;
    border-radius: 0.48px;
    margin-top: 10px;
    border-radius: 2px;

}

.footer-copyright-svg svg {
    width: 30px;
    height: 25px;
}


@media (max-width: 800px) {


    .footer-copyright-svg div {
        margin-top: 10px;
    }

    .user-add_title {
        max-width: 35px;
        background: rgba(0, 0, 0, 0);
        border-radius: 3px;
        border: 1px solid #1981DC;
        font-weight: 400;
        line-height: 19px;
        color: #1981DC;
    }

}


.user-add {
    margin-left: auto;
}


.user-add_title {
    width: 50px;
    font-size: 0.8vw;
    background: rgba(0, 0, 0, 0);
    border-radius: 3px;
    border: 1px solid #1981DC;
    font-weight: 400;
    margin-left: auto;
    line-height: 19px;
    color: #1981DC;
}

.user-add_value {
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}

.user-add_value_img {
    width: 20px;
    height: 20px;
}

.user-add_value_ra {
    line-height: 18px;
    margin-left: 2px;
    color: #b5b5b5;
}

@media (max-width: 800px) {
    .footer-copyright {
        flex-direction: column;
    }

    .footer-copyright-svg div {
        margin-top: 10px;
        border-radius: 1vw;
    }

    .user-add_title {
        font-size: 3vw;
        width: 8vw;
        background: rgba(0, 0, 0, 0);
        border-radius: 1vw;
        border: 1px solid #1981DC;
        font-weight: 400;
        line-height: 4vw;
        color: #1981DC;
    }
}
