:root {
    font-size: 10px;
    --center-width: 100rem;
    --color-primary: rgba(0, 178, 147, 1);
}
* {
    font-size: 1.2rem;
    color: currentColor;
    font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif !important;
    line-height: 1.5;
}
/*桌面端*/
@media (min-width: 999px) {
    footer {
        display: block;
    }
}

/*移动端*/
@media (max-width: 1000px) {
    footer {
        display: none;
    }
}

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

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;
}

.flex-row-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex-row-wrap > * {
    flex-grow: 1;
}

.flex-row-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.flex-row-end {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.flex-row-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.flex-col-left {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.flex-col-right {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.text-ellipsis {
    white-space: nowrap; /* 强制文本在一行内显示，不换行 */
    overflow: hidden; /* 超出容器部分隐藏 */
    text-overflow: ellipsis; /* 将隐藏的文本替换为省略号 */
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.padding-row-1 {
    padding: 0 1rem
}

.padding-row-2 {
    padding: 0 2rem
}