.s1 {
    padding: 0.5rem 0;
    background-color: #f7f7f7;
}

.s1-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* 导航固定 */
    position: sticky;
    top: 80px;
    z-index: 99;
    background: #f7f7f7;
}

.s1-desc {
    margin-top: 0.24rem;
    color: #666;
}

.s1-top-btn-group {
    display: flex;
    width: fit-content;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.s1-top-btn {
    background-color: transparent;
    border: 1px solid #ffaf02;
    color: #222;
    white-space: nowrap;
    position: relative;
}

.s1-top-btn:hover {
    transform: none;
}

.s1-top-btn::after {
    filter: invert(1);
}

.s1-top-btn-item-content {
    position: relative;
}

.s1-top-btn-item-second-content {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;

    border-radius: 5px;
    z-index: 7;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.s1-top-btn-second {
    color: #3a3a3a;
    line-height: 1.5;
    display: block;
    padding: 0.1rem;
    padding-left: calc(10px + 0.08rem);
    border-bottom: 1px solid #f7f7f7;
    background-color: #fff;
}

.s1-top-btn-second:hover {
    color: #000;
    border-color: #ffaf02;
}

.s1-top-btn-item-content.active .s1-top-btn-item-second-content {
    display: block;
}

.s1-top-btn-item-second-content {
    padding-top: 0.1rem;
    display: none;
}

.s1-top-btn.active {
    background-color: #ffaf02;
    color: #fff;
}

.s1-top-btn.active::after {
    filter: none;
}

.s1-content {
    margin-top: 0.68rem;
    display: grid;
    gap: 0.9rem 0.3rem;
    grid-template-columns: repeat(3, 1fr);
}

.s1-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.26rem;
    padding: 0.13rem 0.25rem calc(18px + 0.2rem);
    background-color: #fff;
    min-height: 1rem;
}

.s1-item-left img {
    width: 0.35rem;
    height: 0.33rem;
    min-width: 20px;
    min-height: 19px;
}

.s1-item-title {
    font-size: var(--font-size-24);
    font-family: var(--font-medium);
    color: #222;
    margin-top: 0.1rem;
    margin-bottom: 0.2rem;
}

.s1-item-li {
    margin-bottom: 0.12rem;
}

.s1-item-li::before {
    content: '';
    display: block;
    width: 0.33rem;
    height: 4px;
    background-color: #ffaf02;
    margin-bottom: 0.11rem;
}

.s1-item-btn {
    position: absolute;
    display: none;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    white-space: nowrap;
}

.s1-item-btn::before {
    content: '';
    display: inline-block;
    background-image: url(../images/other/download.png);
    background-size: cover;
    width: 0.23rem;
    height: 0.23rem;
    min-height: 14px;
    min-width: 14px;
    margin-right: 0.1rem;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .s1-item-btn:hover {
        transform: translate(-50%, 25%);
    }
}

.s1-item-li-title {
    line-height: 1.6;
}

.s1-item:hover .s1-item-btn {
    display: block;
    animation: showfade 1s ease-in-out;
}

@keyframes showfade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* table-download  */
.download-table-box {
    margin-top: 0.6rem;
    overflow: auto;
}

.download-table {
    width: 100%;
}

.download-table th {
    text-align: left;
    font-size: var(--font-size-24);
    font-family: var(--font-medium);
    font-weight: 400;
    background-color: var(--theme-color);
    padding: 0.2rem 0;
    min-width: fit-content;
}

.download-table td {
    font-family: var(--font-medium);
    font-size: var(--font-size-p);
    background-color: #fff;
    border-bottom: 1px solid #98979770;
    min-width: fit-content;
}

.download-table th:last-child {
    width: 25%;
    min-width: fit-content;
    text-align: center;
}

.download-table td:last-child {
    text-align: center;
}

.download-table th:first-child {
    padding-left: var(--font-size-48);
}

.download-table td:first-child {
    padding-left: var(--font-size-48);
    position: relative;
}

.download-table td:first-child::before {
    content: '';
    display: block;
    width: max(0.33rem, 20px);
    height: max(0.04rem, 2px);
    background-color: #ffaf02;
    position: absolute;
    left: var(--font-size-48);
    bottom: 0.06rem;
}

.table-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;

    padding: max(0.16rem, 12px) max(0.3rem, 18px);
    border-radius: max(0.3rem, 30px);
    gap: max(0.06rem, 4px);
    margin: 0.1rem auto;
    transition: 0.3s;
    white-space: nowrap;
}

.table-btn:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.table-btn::before {
    content: '';
    display: block;
    width: 0.23rem;
    height: 0.23rem;
    min-height: 14px;
    min-width: 14px;
    background-image: url(../images/other/download.png);
    background-size: cover;
}

@media (min-width: 768px) {
    .table-btn::after {
        content: '';
        display: block;
        width: max(0.05rem, 5px);
        height: max(0.08rem, 8px);
        min-height: 8px;
        min-width: 5px;
        background-image: url(../images/common/right-allow.png);
        background-size: cover;
    }
}

@media (max-width: 768px) {
    .s1 {
        padding-bottom: 1rem;
    }

    .s1-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .s1-item {
        padding: 0.4rem 0.4rem 0.8rem;
    }

    .s1-item-btn {
        display: block;
    }

    .s1-top {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .s1-top-right {
        min-width: 100%;
    }

    .s1-top-right-title {
        font-weight: 600;
        font-family: var(--font-medium);
        color: #000;
        font-size: 16px;
        padding: 16px 0;
        padding-left: 10px;
        background-color: #fff;
        border-radius: 5px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
    }

    .s1-top-right-title::after {
        content: '+';
        margin-left: auto;
        margin-right: 10px;
        font-size: 16px;
    }

    .s1-top-right-content.active .s1-top-right-title::after {
        content: '-';
    }

    .s1-top-btn-group {
        display: none;
        width: 100%;
    }

    .s1-top-right-content {
        position: relative;
    }

    .s1-top-right-content.active .s1-top-btn-group {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10;
        border-radius: 5px;
        box-shadow: 2px 2px 0.06rem rgba(0, 0, 0, 0.1);
    }

    .s1-top-btn {
        background-color: #fff !important;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        width: 100% !important;
        color: #666 !important;
        box-sizing: border-box !important;
    }

    .s1-top-btn::after {
        background-image: url(../images/common/arrow-right.png);
        background-size: 100% 100%;
        margin-left: 0;
        transition: 0.6s;
    }

    .s1-top-btn-item-content.active .s1-top-btn::after {
        transform: rotate(90deg);
    }

    .s1-top-btn-item-second-content {
        position: static;
        padding-top: 0;
        box-shadow: none;
    }

    .s1-top-btn-item-content.active .s1-top-btn-item-second-content {
        display: block;
    }
}

@media (max-width: 500px) {
    .s1-content {
        grid-template-columns: repeat(1, 1fr);
    }
}

.pagation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    margin-top: 1rem;
}

.sty {
    border-radius: 20px;
    border: solid 1px #ffc335;
    padding: 0.13rem 0.44rem;
    box-sizing: border-box;
    border: 1px solid var(--theme-color);
}

.pagation-link {
    border-radius: 50%;
    width: calc(20px + 0.18rem);
    height: calc(20px + 0.18rem);
    min-width: calc(20px + 0.18rem);
    /* background-color: var(--theme-color); */
    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid var(--theme-color);
    color: #222;
}

.pagation-link.active {
    background-color: var(--theme-color);

    color: #fff;
}


/* 下载页的面包屑*/
.download-breadsheet {
    font-size: 18px;
    margin: 0.1rem 0;
    font-weight: bold;
    color: #222;
}

