a {
    color: inherit;
}

a:hover {
    color: inherit;
}

.social-page {
    padding-bottom: max(calc(100vw / 1920 * 150), 70px);
}

.social-page .position {
    padding: 0 max(calc(100vw / 1920 * 60), 20px);
    padding-top: max(calc(100vw / 1920 * 120), 60px);
}

.social-page .position .b-title {
    text-align: center;
}

.social-page .position .function-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: max(calc(100vw / 1920 * 60), 35px);
}

.social-page .position .function-btn .fun-item {
    position: relative;
    z-index: 3;
    font-size: max(calc(100vw / 1920 * 20), 18px);
}

.social-page .position .function-btn .fun-item .selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 210px;
    padding: max(15px, calc(100vw / 1920 * 20)) 30px;
    border: 1px solid #ced5e3;
    border-radius: 10000px;
    transition: all .5s;
}

.social-page .position .function-btn .fun-item .selected:hover {
    background-color: rgb(10, 45, 114);
    cursor: pointer;
    color: #fff;
}

.social-page .position .function-btn .fun-item .selected svg path {
    transition: all .5s;
}

.social-page .position .function-btn .fun-item .selected:hover svg path {
    stroke: #fff;
}

.social-page .position .function-btn .fun-item svg {
    display: block;
}

.social-page .position .function-btn .fun-item ul {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: calc(100% - 20px);
    padding-left: 0;
    margin-bottom: 0;
    line-height: 2.5;
    background-color: #fff;
    border: 1px solid #ced5e3;
    border-radius: 6px;
    overflow: hidden;
}

.social-page .position .function-btn .fun-item ul li {
    cursor: pointer;
    transition: all .5s;
    padding-left: 20px;
}

.social-page .position .function-btn .fun-item ul li:not(:last-child) {
    border-bottom: 1px solid #c1c1c1;
}

.social-page .position .function-btn .fun-item ul li:hover {
    background-color: #0a2d72;
    color: #fff;
}

.social-page .position-content {
    --t-1: calc((100% - 45px) / 6.5 * 2.5);
    --t-2: calc((100% - 45px) / 6.5);
    --t-3: calc((100% - 45px) / 6.5);
    --t-4: calc((100% - 45px) / 6.5);
    --t-5: calc((100% - 45px) / 6.5);
    --t-6: 45px;
    overflow: auto;
}

.social-page .position-content .position-header {
    display: flex;
    padding: max(20px, calc(100vw / 1920 * 35)) 0;
    padding-left: max(35px, calc(100vw / 1920 * 60));
    padding-right: max(25px, calc(100vw / 1920 * 45));
    margin-top: max(calc(100vw / 1920 * 40), 30px);
    background-color: #f3f4f8;
    font-size: max(18px, calc(100vw / 1920 * 24));
    min-width: 900px;
}

.social-page .position-content .position-header p {
    padding-right: 15px;
    font-size: max(18px, calc(100vw / 1920 * 22));
}

.social-page .position-content .position-header>*:nth-child(1) {
    flex: var(--t-1);
}

.social-page .position-content .position-header>*:nth-child(2) {
    flex: var(--t-2);
}

.social-page .position-content .position-header>*:nth-child(3) {
    flex: var(--t-3);
}

.social-page .position-content .position-header>*:nth-child(4) {
    flex: var(--t-4);
}

.social-page .position-content .position-header>*:nth-child(5) {
    width: var(--t-5);
}

.social-page .position-content .position-header>*:nth-child(6) {
    width: var(--t-6);
}

.social-page .position-content .list {
    min-width: 900px;
}

.social-page .position-content .list .item {
    border-bottom: 1px solid #b5c0d4;
}

.social-page .position-content .list .item .item-top {
    display: flex;
    align-items: center;
    padding: max(20px, calc(100vw / 1920 * 30)) 0;
    padding-left: max(35px, calc(100vw / 1920 * 60));
    padding-right: max(25px, calc(100vw / 1920 * 45));
    transition: all .5s;
    border-radius: 6px;
    cursor: pointer;
}

.social-page .position-content .list .item .item-top>* {
    padding-right: 15px;
    font-size: max(calc(100vw / 1920 * 20), 16px);
}

.social-page .position-content .list .item .item-top>*:nth-child(1) {
    flex: var(--t-1);
}

.social-page .position-content .list .item .item-top>*:nth-child(2) {
    flex: var(--t-2);
}

.social-page .position-content .list .item .item-top>*:nth-child(3) {
    flex: var(--t-3);
}

.social-page .position-content .list .item .item-top>*:nth-child(4) {
    flex: var(--t-4);
}

.social-page .position-content .list .item .item-top>*:nth-child(5) {
    width: var(--t-5);
}

.social-page .position-content .list .item .item-top>*:nth-child(6) {
    width: var(--t-6);
}

.social-page .position-content .list .item .item-top .icon {
    position: relative;
}

.social-page .position-content .list .item .item-top .icon img {
    display: block;
}

.social-page .position-content .list .item .item-top .icon .hover {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    transition: all .5s;
}

.social-page .position-content .list .item .item-top.active,
.social-page .position-content .list .item .item-top:hover {
    background-color: #0a2d72;
    color: #fff;
}

.social-page .position-content .list .item .item-top.active .icon .hover,
.social-page .position-content .list .item .item-top:hover .icon .hover {
    opacity: 1;
    transform: rotate(45deg);
}

.social-page .position-content .list .item-detail {
    display: none;
    position: relative;
    padding: max(35px, calc(100vw / 1920 * 60));
}

.social-page .position-content .list .item-detail h3 {
    font-size: max(calc(100vw / 1920 * 24), 18px);
}

.social-page .position-content .list .item-detail ul {
    margin-top: 20px;
    line-height: 2;
    font-size: max(calc(100vw / 1920 * 20), 16px);
}

.social-page .position-content .list .item-detail ul li {
    position: relative;
    margin-left: 60px;
}

.social-page .position-content .list .item-detail ul li::before {
    content: " ";
    background: #92f0a1;
    width: 26px;
    height: 1px;
    top: 15px;
    left: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
    position: absolute;
}

.social-page .position-content .list .item-detail h3:not(:first-child) {
    margin-top: max(calc(100vw / 1920 * 40), 20px);
}

.social-page .position-content .list .item-detail .btn {
    /* position: absolute;
    bottom: 60px;
    right: 0; */
    text-align: right;
}

.social-page .position-content .list .item-detail .btn a {
    display: inline-block;
    padding: max(15px, calc(100vw / 1920 * 20)) max(calc(100vw / 1920 * 65), 40px);
    border-radius: 10000px;
    background-color: #0a2d72;
    font-size: max(16px, calc(100vw / 1920 * 22));
    color: #fff;
    transition: all .5s;
}

.social-page .position-content .list .item-detail .btn a:hover {
    background-color: #92f0a1;
}

.social-page .position-pagination {
    margin-top: max(calc(100vw / 1920 * 60), 40px);
}

.social-page .position-pagination ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-page .position-pagination ul a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f3f4f8;
    font-size: max(calc(100vw / 1920 * 18), 16px);
}

.social-page .position-pagination ul li.selected a,
.social-page .position-pagination ul li:hover a {
    color: #fff;
    background-color: #0a2d72;
}

.social-page .position-pagination ul li.previous a,
.social-page .position-pagination ul li.next a {
    background-image: url('../images/social-arrow.svg');
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center;
}

.social-page .position-pagination ul li.next a {
    transform: rotate(180deg);
}

.social-page .position-pagination ul li.previous:hover a,
.social-page .position-pagination ul li.next:hover a {
    background-image: url('../images/social-arrow-white.svg');
}

.social-page .position-pagination ul .page-length {
    display: flex;
    gap: 10px;
    justify-content: center;
}

@media screen and (max-width: 992px) {
    .social-page .position-content .list .item-detail ul li {
        margin-left: 30px;
    }
}

@media screen and (max-width: 700px) {
    .social-page .position-content .list .item-detail .btn {
        text-align: left;
    }

    .social-page .position .function-btn .fun-item {
        flex: 1;
    }

    .social-page .position .function-btn .fun-item .selected {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .social-page .position-content .list .item-detail ul li {
        margin-left: 15px;
    }
}