
body *{
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;

}

body{
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 1200px;
    overflow: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased; /* 减少字体锯齿 */
}

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;
}


a {
    text-decoration: none; /* 去除下划线 */
    color: inherit; /* 继承父元素的颜色 */
    background-color: transparent; /* 背景色透明 */
    margin: 0; /* 去除外边距 */
    padding: 0; /* 去除内边距 */
    border: none; /* 去除边框 */
    outline: none; /* 去除轮廓线（通常用于焦点状态） */
    box-shadow: none; /* 去除盒子阴影 */
    /* 其他你可能想要重置的样式 */
}

a:hover, a:focus, a:active {
    text-decoration: none; /* 在交互状态下也去除下划线 */
    /* 你可以在这里添加其他交互状态下的样式 */
}


:root{
    --container-width: 78%;
    --max-width-1: 1264px;
    --max-width-2: 1164px;
    --max-width-3: 100%;
}


.auto-container{
    margin: 0 auto;
    width: var(--container-width);
}

@media (max-width: 1199px) {
    .auto-container{
        max-width: var(--max-width-3)
    }
}

@media screen and (min-width: 1200px) and (max-width: 1679px)  {
    .auto-container{
        max-width: var(--max-width-2)
    }
}

@media screen and (min-width: 1680px){
    .auto-container{
        max-width: var(--max-width-1)
    }
}
