
/* 加载动画样式 */
.loader {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 2px 2px 2px #eee; /* 修正了box-shadow的语法 */
}

.loader-1 .loader-outter {
    position: absolute;
    border: 3px solid #f50057; /* 修正了颜色值的空格 */
    border-left-color: transparent;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: loader-1-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.van-tab__text{
    justify-content: center;
    margin: auto;
}

/* 加载动画关键帧 */
@keyframes loader-1-outter {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 加载提示文字样式 */
.lodding-app {
    color: #333;
    position: absolute;
    display: block;
    bottom: -90%;
    font-size: 1rem;
    left: -20%;
}

/* 媒体查询：手机端 */
@media (max-width: 768px) {

    .van-tabs__content {
        padding-top: 10px; /* 内边距调整 */
    }
    .van-nav-bar__content {
        padding: 5px; /* 较小的内边距 */
    }
    .fixed-title {
        font-size: 1.2em; /* 手机端标题字体小一点 */
    }
    .size-table {
        overflow-x: auto; /* 如果表格过宽，允许水平滚动 */
        display: block; /* 使其为块级元素 */
        margin: 0 auto; /* 居中显示 */
    }
    .size-table table {
        width: 100%; /* 表格宽度全屏 */
        min-width: 320px; /* 最小宽度，防止表格过小 */
    }
    .size-click {
        flex-direction: row; /* 按钮水平排列 */
    }
}

/* 媒体查询：电脑端 */
@media (min-width: 769px) {

    .size-table {
        overflow: hidden; /* 隐藏表格溢出 */
    }
    .size-table table {
        width: 100%; /* 表格宽度全屏 */
    }
}
