* {
    margin: 0;
    padding: 0;
}

body * {
    box-sizing: border-box;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

body {
    font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
        Arial, PingFang SC-Light, Microsoft YaHei;
}

input {
    background-color: transparent;
    border: 0;
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
}

button:active {
    opacity: 0.6;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-start {
    display: flex;
    justify-content: flex-start;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.align-start {
    display: flex;
    align-items: flex-start;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}

.topBabbar {
    display: flex;
    align-items: center;
    margin-left: 8vw;
}

.topBabbar .topTabbarList {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 1.5vw;

    overflow-wrap: break-word;
    color: rgba(137, 139, 162, 1);
    font-size: 0.83vw;
    font-family: PingFang-SC-Medium;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.topBabbar .action {
    font-weight: bold !important;
    color: #1887F7 !important;
}

.topBabbar .topTabbarList .underLine {
    height: 0.2vw;
    width: 2vw;
    border-radius: 2px;
    margin-top: 0.5vw;
}

.topBabbar .action .underLine {
    background-color: #1887F7 !important;
}

.group_1 {
    width: 92.71vw;
    height: 4.17vw;
    background-color: #fff;
    justify-content: flex-center;
}

.image_1 {
    width: 8.75vw;
    height: 2.5vw;
    margin: 0.83vw 16.77vw 0 11.45vw;
}

@media (max-width: 768px) {
    .topBabbar {
        display: none;
    }


	.group_1 {
	    width: 92.71vw;
	    height:12.5vw;
	}
	
}