/* 公共样式 */


/* 动画 */
@keyframes scaleInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* 标题 */
.section_title {
    width: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section_title img {
    height: 29px;
}

.section_title_name {
    font-size: var(--font-0);
    font-weight: 700;
    margin-top: -16px;
}

.section_title .white {
    color: #ffffff;
}

/* 提示 */
.tips {
    color: #999999;
    font-size: var(--font-8);
}

/* 按钮 */
.btn {
    text-align: center;
    padding: 16px 30px;
    font-size: var(--font-5);
    font-weight: 700;
    color: #ffffff;
    background: #CE0259;
    border-radius: 54px;
    box-shadow: 0px 4px 10px 0px rgba(206, 2, 89, 0.33);
    transition: all 0.3s;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.btn:hover {
    box-shadow: 0px 4px 10px 4px rgba(206, 2, 89, 0.2),
        inset 0px 0px 10px 0px rgba(255, 255, 255, 1);
}

/* 表格 */
.table_wrap {
    width: var(--view-width);
    padding-top: 48px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.table_wrap .bgline {
    width: 100%;
    height: 36px;
    padding: 10px 20px 0px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #790637;
    border-radius: 20px;
}

.table_wrap .bgline_inner {
    width: 100%;
    height: 100%;
    background: #CE0259;
    border-radius: 16px;
}

.table {
    width: calc(100% - 40px);
    padding-top: 64px;
    padding-bottom: 32px;
    margin-top: -18px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.08);
    backdrop-filter: saturate(100%) blur(8px);
    -webkit-backdrop-filter: saturate(100%) blur(4px);
    --tr-left-padding: 68px;
}

.table_header {
    width: 100%;
    padding: 0px 40px 32px 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.table_header .th {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    line-height: 50px;
    font-size: var(--font-5);
    font-weight: 700;
    color: #CE0259;
    border-radius: 54px;
    background: #FFF1F7;
    border: 1px solid #CE0259;
}

.table_body {
    width: 100%;
    padding-bottom: 45px;
    box-sizing: border-box;
    overflow: hidden;
}

.table_body .tr {
    width: 100%;
    height: 50px;
    padding: 0px 40px 0px var(--tr-left-padding, 68px);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-around;
    line-height: 50px;
    text-align: left;
    font-size: var(--font-6);
    color: #500022;
}



.table_body .tr:nth-child(odd) {
    background: #FFF1F7;
}

.table_footer {
    width: 100%;
    padding: 0px 50px 0px var(--tr-left-padding, 68px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* section2 */
.section2 .table_header .th .td,
.section2 .table_body .tr .td {
    flex: 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}



.section2 .table_header .th .td div,
.section2 .table_body .tr .td div {
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

/* section4 */
.section4 .table_header .th {
    padding-left: 54px;
}

.section4 .table_header .th .td {
    flex: 1;
}

.section4 .table_body .tr {
    padding-left: 94px;
    line-height: normal;
}

.section4 .table_body .tr .td {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* section6 */
.section6 .table_header .th {
    padding-left: 70px;
}

.section6 .table_body {
    height: 350px;
    overflow-y: auto;
}

.section6 .table_body .tr {
    height: 70px;
    padding-left: 90px;
    line-height: normal;
}

.section6 .table_header .th .td,
.section6 .table_body .tr .td {
    box-sizing: border-box;
    cursor: pointer;
}

.section6 .table_footer {
    padding-top: 30px;
}
