﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;700&display=swap");

/*---------------------------------------------------------
# focus and free
---------------------------------------------------------*/

/*article*/
.type-bg {
    background: var(--gray2);
    padding: 8px 16px;
    border-radius: 8px 8px 0 0;
}

.type-title {
    display: flex;
}

    .type-title .type-color {
        width: 16px;
        height: 24px;
        background-color: var(--main);
        border-radius: 8px;
    }

    .type-title .type-text {
        margin-left: 16px;
        font-weight: 600;
    }



.date-box {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.card-article h3 {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom:0;
}


.card-article p {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.card-article .auther {
    font-size: 14px;
    color: var(--gray)
}

.date-box .ic-squre {
    transform: rotate(45deg);
}


/*--------- focus ----------*/
.focus-main {
    border-radius: 8px;
    overflow: hidden;
}

    .focus-main p {
        display: -webkit-box;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical;
        overflow: hidden;
        white-space: inherit;
        line-height: 160%;
        margin-bottom:16px;
    }

.focus-main-content {
    padding: 20px 24px 20px 0;
}

@media (max-width: 767px) {
    .focus-main-content {
        padding: 24px;
    }
}




/*--------- focus free ----------*/
.free-box {
}

.free-title {
    text-align: center;
    background: var(--primary);
    position: relative;
    z-index: 5;
    border-radius: 8px;
    padding: 12px 0 20px;
}

    .free-title h3 {
        color: #fff;
    }

.free-list, free-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.free-list {
    position: relative;
    z-index: 10;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    margin-top: -17px;
    background: #fff;
    margin-inline: 16px;
    padding: 16px;
}

    .free-list .free-item:not(:last-child) {
        border-bottom: 1px solid var(--gray2);
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

.free-item p {
    margin-bottom: 0;
}

.free-item h3 {
    margin-bottom: 2px;
}

.free-item p, .free-item h3 {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.free-box .btn-more {
    margin: 20px 0 0 35px;
}
.free-list:after {
    content: '';
    position: absolute;
    height: 5px;
    width: 90%;
    bottom: -3px;
    background: var(--primary);
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1199px) {
    .free-box {
        margin-top: 32px;
    }
}


/*---------------------------------------------------------
# podcast
---------------------------------------------------------*/

.podcast-bg {
    background: url("../../assets/images/podcast-bg.jpg") repeat;
    padding: 40px 0;
    margin-bottom: 50px;
}

.podcastItem {
    display: flex;
    border: 1px solid rgba(255,255,255,.5);
    padding: 12px 24px;
    color: #fff !important;
    align-items: center;
}

    .podcastItem:hover {
        opacity: .7
    }

    .podcastItem img {
        width: 90px;
        height: 90px;
        border-radius: 4px;
        margin-right: 24px;
    }

    .podcastItem h3 {
        color: #fff !important;
    }
    .podcastItem h3, .podcastItem .speaker {
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .podcastItem .time {
        padding-left: 19px;
        position: relative;
    }

.time:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 13px;
    border-color: transparent transparent transparent #fff;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 4px;
    border-radius: 3px;
}

.podcast-box .btn-more {
    text-align: center;
    text-align: center;
    justify-content: end;
    margin-top: 30px;
    color: #fff;
}

    .podcast-box .btn-more span {
        border-color: #fff;
    }

.podcast-info {
    display: flex;
    border-radius: 8px;
    padding: 24px;
    color: #fff;
}

    .podcast-info img {
        width: 200px;
        height: 200px;
    }

    .podcast-info .right {
        padding: 0 24px;
        align-content: center;
    }

        .podcast-info .right h3 {
            font-size: 24px;
            color: #fff;
        }

        .podcast-info .right p {
            font-size: 18px;
        }

.pocast-list h3 {
    color: var(--black1) !important;
}

.pocast-list .podcastItem {
    color: var(--primary) !important;
}

.pocast-list .time:before {
    border-color: transparent transparent transparent var(--primary) !important;
}

.pocast-list .podcastItem {
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
}


@media (max-width: 576px) {
    .podcast-info .right p {
        font-size: 16px;
    }

    .pocast-list .podcastItem {
        padding: 12px 0;
    }

    .podcastItem img {
        width: 80px;
        height: 80px;
        margin-right: 16px;
    }

    .podcast-box .row-gap-4 {
        row-gap: 1rem !important;
    }

    .podcast-info img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 400px) {
    .podcast-info {
        display: block;
    }

        .podcast-info .right {
            padding: 0;
            margin-top: 24px;
        }
}


/*---------------------------------------*/
/*--------- topic----------*/
/*---------------------------------------*/
.topic-box .container-xxl {
    padding-inline: 80px;
}

.topic-box ul, .topic-box li {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .topic-box li a {
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        display: block;
    }

.topic-box li {
    border-bottom: 1px solid var(--gray2);
    margin-bottom: 12px;
    padding-bottom: 12px;
}
@media (max-width: 576px) {
    .topic-box .container-xxl {
        padding-inline: 20px;
    }


    .topic-box .owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }

    .topic-box .owl-carousel .owl-nav button.owl-prev {
        left: -10px;
    }
}
    /*--------------------------------------------------------------
# member
--------------------------------------------------------------*/
    .member {
        margin-top: -54px;
    }

    .memberW {
        max-width: 960px;
    }

    .member-header {
        background: #333;
        color: rgba(255,255,255,.8);
        padding-top: 30px;
    }

        .member-header h2 {
            font-weight: 100;
            color: #a9a41d;
            padding: 0 30px;
            margin-right: 30px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin-bottom: 0;
        }

    .member-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .member-info-r {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        color: rgba(255,255,255,.6);
    }

    .member-name {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .member-header span {
        display: block;
        font-size: 14px;
    }

        .member-header span a {
            color: rgba(255,255,255,.6) !important;
            text-decoration: underline;
        }

        .member-header span i {
            color: #a9a41d;
            margin-right: 5px;
        }

    .member-menu-box {
        background: #494842;
        position: relative;
    }

    .member-menu {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0;
        margin: auto;
        list-style: none;
    }

        .member-menu li {
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            text-align: center;
        }

        .member-menu:before {
            content: '';
            background: rgba(255,255,255,.2);
            height: 1px;
            width: 3000px;
            position: absolute;
            TOP: 0;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            left: 50%
        }

        .member-menu li a {
            color: rgba(255,255,255,.6) !important;
            line-height: 2.5;
            position: relative;
            display: block;
        }

            .member-menu li a:hover, .member-menu li a.active {
                color: rgba(255,255,255,.8) !important;
            }

                .member-menu li a:hover:after,
                .member-menu li a.active:after {
                    content: '';
                    height: 3px;
                    width: 100%;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    background: #a9a41d;
                }

    .openMenu {
        display: none;
    }

    .member-tit {
        margin-top: 50px;
        margin-bottom: 30px;
        font-size: 28px;
        position: relative;
        padding-left: 16px;
    }

        .member-tit:before, .member-tit:after {
            content: '';
            width: 8px;
            background: rgba(169,164,29,.4);
            height: 28px;
            position: absolute;
            left: 0;
            top: 5px;
            border-radius: 10px;
        }

        .member-tit:after {
            background: #a9a41d;
            height: 21px;
            bottom: 4px;
            top: auto;
            border-radius: 0 0 15px 15px
        }

    .point-rule {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: #fff8f2;
        margin: 40px 0;
    }

    .point-rule-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-bottom: 16px;
        margin-top: -8px;
    }

    .point-rule-list {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding-left: 104px;
        line-height: 1.6;
    }

        .point-rule-list i {
            margin-right: 5px;
            color: #28a745;
            font-weight: bold;
        }

    .point-rule-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 22px;
        margin-right: 16px;
        color: #fff;
        padding: 0 24px;
        background-image: -o-linear-gradient(70deg, #f78ca0 0%, #f9748f 19%, #fd868c 60%, #fe9a8b 100%);
        background-image: linear-gradient(20deg, #f78ca0 0%, #f9748f 19%, #fd868c 60%, #fe9a8b 100%);
    }

    .point-rule-subtitle {
        font-weight: bold;
        position: relative;
        left: -86px;
        top: 27px;
    }

        .point-rule-subtitle img {
            width: 24px;
            height: auto;
            position: relative;
            top: -3px;
            margin-right: 8px;
        }

    .btn-fover {
        text-decoration: none;
    }

        .btn-fover:hover {
            text-decoration: underline;
        }

    @media (max-width: 1199.98px) {
        .member-header {
            margin-top: 60px;
        }
    }

    @media (max-width: 991.98px) {
        .point-rule-content {
            display: block;
        }

            .point-rule-content .point-rule-list:first-child {
                margin-bottom: 0;
            }
    }

    @media (max-width: 767.98px) {
        .member-menu li a {
            padding: 0
        }

        .member-menu {
            display: block;
        }

        .member-header h2 {
            font-size: 26px;
            border: 0;
            padding: 0;
        }

        .openMenu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            border-top: 1px solid rgba(255,255,255,.3);
            color: rgba(255,255,255,.8) !important;
            background: #494842;
        }

            .openMenu.open i, .cat-menu .openMenu.open .float-end {
                -webkit-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                transform: rotate(90deg);
            }

            .openMenu i {
                font-size: 30px;
                -webkit-transition: -webkit-transform .15s;
                transition: -webkit-transform .15s;
                -o-transition: transform .15s;
                transition: transform .15s;
                transition: transform .15s, -webkit-transform .15s;
                -webkit-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                transform: rotate(0deg);
            }

        .member-menu {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            position: absolute;
            top: 46px;
            width: 100%;
            z-index: 999;
            display: none;
            background: #494842;
        }

            .member-menu > .nav-link.active:after {
                content: '';
                height: 0px;
            }

            .member-menu.open {
                display: block;
            }

            .member-menu li {
                border-bottom: 1px solid rgba(255,255,255,.3)
            }

                .member-menu li a {
                    padding: 0 15px
                }

        .member-info {
            display: block;
        }

        .member-header {
            margin-top: 40px
        }

            .member-header .container-xxl {
                padding: 0;
            }

        .member-name {
            font-size: 24px
        }

        .member .form-list {
            width: 100%;
        }

            .member .form-list .col-form-label {
                display: block;
                width: 100%;
            }

            .member .form-list > .form-group {
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            }

        .member-tit {
            margin-top: 25px;
            font-size: 24px;
        }

        .member-menu li a.active:after, .member-menu li a:hover:after {
            height: 0;
        }

        .member-menu li a.active {
            background: #a9a41d;
        }

        .point-rule {
            display: block;
            padding-bottom: 1px;
        }

        .point-rule-title {
            line-height: 2;
            font-size: 20px;
            -webkit-box-align: inherit;
            -ms-flex-align: inherit;
            align-items: inherit;
            -webkit-box-pack: inherit;
            -ms-flex-pack: inherit;
            justify-content: inherit;
            margin: 0;
            margin-bottom: 12px;
        }

        .point-rule-list {
            padding: 16px;
        }

        .point-rule-subtitle {
            position: inherit
        }

        .point-rule-content {
            margin-bottom: 0
        }
    }

    .example {
        display: -ms-grid;
        display: grid;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
        background: -o-linear-gradient(top, white, black);
        background: linear-gradient(to bottom, white, black);
    }

    /*---------------------------------------*/
    /*---------category ----------*/
    /*---------------------------------------*/
    .cat-menu {
        margin-bottom: 20px;
    }

        .cat-menu ul, .cat-menu li {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .cat-menu li {
            display: inline-block;
            margin-right: 16px;
        }

        .cat-menu a:hover {
            color: var(--black1)
        }

        .cat-menu a.active {
            color: var(--main);
        }

    .content-box {
        display: flex;
    }

    .content-left {
        width: calc(100% - 340px)
    }

    .cat-artical h2 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .category-box .focus-main {
        background: var(--main);
        color: #fff !important;
    }

        .category-box .focus-main h3,
        .category-box .focus-main .date-box,
        .category-box .focus-main .auther,
        .category-box .focus-main p {
            color: #fff;
        }

.date-box .ic-squre {
                background: #fff;
                margin-inline: 6px;
            }

        .category-box .focus-main .date-box,
        .category-box .focus-main .auther {
            opacity: .7
        }

        .category-box .focus-main .date-box {
            margin-bottom: 6px;
        }

        .category-box .focus-main h3 {
            margin-bottom: 12px;
        }

    .cat-crtical-box {
        margin-top: 40px;
    }

    @media (max-width: 991px) {
        .content-box {
            flex-direction: column;
        }

        .content-left {
            width: 100%
        }
    }

    @media (max-width: 767px) {
        .cat-menu {
            position: relative;
        }

            .cat-menu .openMenu {
                padding: 6px 15px;
                border-top: 1px solid rgba(255, 255, 255, .3);
                color: rgb(44 44 44 / 80%) !important;
                background: #ffffff;
                border: 1px solid #b8b8b8;
            }

        .cat-menu-list.member-menu {
            background: #fff !important;
            border: 1px solid #eee;
            box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
            border-radius: 10px;
            top: 43px;
        }

            .cat-menu-list.member-menu a {
                padding: 8px 18px !important;
                display: block !important;
                color: var(--primary) !important;
                line-height: 24px;
            }

            .cat-menu-list.member-menu li a:hover, .cat-menu-list.member-menu li a.active {
                color: var(--primary) !important;
            }

        .cat-menu li {
            display: block;
            margin-right: 0;
            border-bottom: 1px solid #aaa !important;
            text-align: left !important;
        }

        .cat-menu-list.member-menu li a.active {
            background: none !important;
            color: var(--main) !important;
        }
    }



    /*---------------------------------------*/
    /*---------paperDetail ----------*/
    /*---------------------------------------*/
.paperDt-box .ic-squre {
    background: var(--gray);
}
.paperDt-social {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    margin-bottom: 16px;
}

    .social-list, .social-item {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .social-list {
        display: flex;
    }

    .social-item {
    }

        .social-item img {
            height: 24px;
            width: 24px;
            filter: drop-shadow(var(--primary) 100px 0);
            transform: translateX(-100px);
        }

        .social-item a {
            padding: 0 8px;
            width: 40px;
            height: 28px;
            overflow: hidden;
            display: inline-block;
        }

            .social-item a:hover img {
                filter: drop-shadow(var(--black1) 100px 0);
            }

        .social-item img.active {
            filter: drop-shadow(var(--main) 100px 0);
        }

        .social-item a:hover img.active {
            filter: drop-shadow(var(--main) 100px 0);
        }

    .readMore {
        width: 500px;
        border-radius: 8px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

        .readMore h3 {
            font-size: 26px;
            color: var(--black);
            text-align: center;
        }

        .readMore .btn + btn {
            margin-left: 16px;
        }

        .readMore ul, .readMore li {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .readMore ul {
            margin-bottom: 20px;
        }

        .readMore li span {
            position: absolute;
            left: 0;
        }

        .readMore li {
            padding-left: 30px;
            position: relative;
        }

        .readMore .btnGroup {
            text-align: center;
        }

        .readMore .btn svg {
            position: relative;
            top: -2px;
        }

    @media (max-width: 767px) {
        .paperDt-social {
            display: block;
        }

        .social-list {
            margin-top: 12px;
        }

        .readMore {
            width: 100%;
        }
    }


    /*---------------------------------------*/
    /*---------other ----------*/
    /*---------------------------------------*/

    /*hover*/
    .category-box .focus-main a:hover h3 {
        opacity: .7 !important;
        color: #fff !important;
    }

    .pocast-list .podcastItem:hover {
        opacity: 1;
    }

        .card-article:hover h3,
        .free-list a:hover h3,
        .pocast-list .podcastItem:hover h3,
        .type-title:hover .type-text {
            color: var(--primary) !important;
        }

    .topic-box .item ul a:hover {
        color: var(--black1);
    }

    .ic-squre {
        width: 6px;
        height: 6px;
        border-radius: 2px;
        display: block;
    }

    .focusArea + .podcast-box {
        margin-top: 60px;
    }

    /*--------------------------------------------------------------
# adAgent
--------------------------------------------------------------*/
    .adAgent {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .adAgent-bg {
        height: 300px;
        width: 300px;
        background: url(../images/adAgent.jpg) no-repeat center center;
        background-size: cover;
    }

    .adAgent-corp {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .adAgent-corp ul {
            list-style: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
            margin-left: 40px;
        }

        .adAgent-corp li {
            margin-bottom: 15px;
            display: block;
        }

            .adAgent-corp li a {
                font-size: 36px;
                border-bottom: 1px solid #222;
            }

                .adAgent-corp li a:hover {
                    border-bottom: 1px solid #a9a41d;
                    color: #a9a41d !important
                }

            .adAgent-corp li img {
                width: 35px;
                position: relative;
                top: -8px;
                margin-right: 15px;
            }

    @media (max-width: 767.98px) {
        .adAgent {
            display: block
        }

        .adAgent-bg {
            height: 250px;
            width: 100%;
            background: url(../images/adAgent-m.jpg) no-repeat center center;
            background-size: cover;
        }

        .adAgent-corp ul {
            margin-left: 0;
            margin-top: 30px;
        }
    }

    @media(max-width:575.98px) {
        .adAgent-corp li a {
            font-size: 26px;
        }

        .adAgent-corp li img {
            width: 30px;
            position: relative;
            top: -5px;
            margin-right: 15px;
        }
    }

    /*--------------------------------------------------------------
# order
--------------------------------------------------------------*/
    .pricing {
        max-width: 900px;
        margin: auto;
        margin-top: 50px;
    }

    .pricing-header {
        margin-bottom: 20px;
        font-size: 20px;
        text-align: center;
    }

        .pricing-header i {
            font-size: 24px;
            color: #638900;
            margin-right: 5px;
        }

    .pricing .pricing-item {
        -webkit-box-shadow: 0 4px 10px 0 rgba(68, 88, 144, 0.1);
        box-shadow: 0 0px 6px 0 rgba(68, 88, 144, 0.1);
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        border: 1px solid #eeeeee;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 15px;
        min-height: 100px;
    }

        .pricing .pricing-item:hover {
            border-color: #a9a41d
        }

    .pricing h3 {
        padding: 20px 15px;
        height: 100%;
        font-size: 24px;
    }

    .pricing .pricing-item .princing-intro {
        padding: 15px;
        list-style: none;
        margin: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .princing-act-title {
        font-weight: bold;
        margin-left: -5px
    }

        .princing-act-title:before {
            content: "【"
        }

        .princing-act-title:after {
            content: "】"
        }

    .princing-act-content {
    }

    .princing-act-date {
        font-size: 14px;
        margin-top: 10px;
        color: #ff6e12;
        font-weight: bold;
    }

        .princing-act-date span {
            background: #ff6e12;
            border-radius: 20px;
            padding: 0px 10px;
            margin-right: 5px;
            color: #fff;
        }

    .pricing .btn-wrap {
        padding: 20px 15px;
        text-align: center;
    }

        .pricing .btn-wrap .btn {
            height: 42.5px;
        }

        .pricing .btn-wrap .d-flex + .d-flex {
            border-top: 1px dotted #d0d0d0;
            padding-top: 15px;
            margin-top: 10px;
        }

    .pricing .advanced {
        width: 200px;
        position: absolute;
        top: 18px;
        right: -68px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        z-index: 1;
        font-size: 14px;
        padding: 1px 0 3px 0;
        background: #e40012;
        color: #fff;
    }

    .pricing .pricing-price {
        font-size: 36px;
        color: #a9a41d;
        font-weight: 600;
    }

        .pricing .pricing-price sup {
            font-size: 20px;
            top: -12px;
            left: -3px;
        }

        .pricing .pricing-price span {
            color: #4e4e4e;
            font-size: 16px;
        }

    /*Single purchase*/
    .cataloglList .catalogi-item small {
        text-align: center;
        margin-top: 10px;
    }

    .cataloglList .catalogi-item .pricing-price {
        font-size: 20px;
        text-align: center; /* margin-top: 10px; */
    }

    .cataloglList .catalogi-item {
        margin-bottom: 40px;
        background: #efefef;
        border: 1px solid #e7e7e8;
        padding: 15px;
        display: block;
    }

        .cataloglList .catalogi-item:hover {
            border-color: #a9a41d
        }

    @media (max-width: 767.98px) {
        .pricing .pricing-item {
            display: block;
            text-align: center;
            margin-bottom: 25px
        }

        .pricing h3 {
            background: #eee;
            text-align: center;
        }

        .pricing ul {
            text-align: center;
        }

        .btn-wrap {
            background: #eee;
        }

        .pricing .pricing-item .princing-intro {
            text-align: center;
        }

        .cataloglList .catalogi-item {
            margin-bottom: 20px;
        }

        .cataloglList > .row {
            padding-left: 15px;
        }

            .cataloglList > .row > [class^="col"] {
                padding-left: 0;
            }
    }

    @media (max-width: 575.98px) {
        .pricing {
            margin-top: 30px;
        }

        .cataloglList .catalogi-item {
            padding: 0;
        }

        .pricing-header span {
            display: block !important;
            text-align: left;
            margin-left: 0 !important;
            margin-top: 10px
        }
    }

    /*--------------------------------------------------------------
# catalog+editor
--------------------------------------------------------------*/
    /*catalog-search*/
    .catalog-search {
        background: #343434;
        padding: 15px;
        overflow: hidden;
        margin-bottom: 20px;
        margin-right: 0;
        margin-left: 0;
    }

        .catalog-search label {
            color: #a9a41d;
            margin-bottom: 10;
            text-align: center;
            display: inline-block;
            font-size: 16px;
            position: relative;
            background: #343434;
            z-index: 9;
            padding: 0px;
        }

            .catalog-search label:after, .catalog-search label:before {
                content: '';
                position: absolute;
                top: 10px;
                height: 1px;
                background: #a9a41d;
                width: 40px;
            }

            .catalog-search label:after {
                left: -55px;
            }

            .catalog-search label:before {
                left: 75px;
            }

        .catalog-search .form-group {
            text-align: center;
        }

            .catalog-search .form-group span {
                line-height: 2.4;
                color: #fff;
                padding: 0 5px;
            }

        .catalog-search .search-btn, .catalog-search .form-group {
            width: 100%;
        }

            .catalog-search .search-btn .btn-lightgray {
                width: 30%;
                white-space: nowrap;
            }

    .search-result span {
        font-weight: bold;
    }

    .catalog-con-book {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 50px;
    }

    .catalog-con-bookBox {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding-left: 20px;
    }

    .catalog-con-book .fixedImgBox {
        width: 200px;
        height: 280px;
    }

        .catalog-con-book .fixedImgBox img {
            bottom: auto;
        }

    .catalog-con-book .d-flex button + button {
        margin-left: 5px;
    }

    .catalog-con-bookBox h4 {
        margin-bottom: 20px;
    }

    .catalog-con-bookBox p {
        line-height: 1.8
    }

    .catalog-con-book .btn {
        margin-right: 5px;
    }

    .catalog-con-tit {
        position: relative;
        text-align: center;
        display: block;
        height: 50px;
        margin-bottom: 10px;
    }

        .catalog-con-tit h4 {
            position: absolute;
            z-index: 6;
            background: #fff;
            display: inline;
            left: 50%;
            padding: 0 20px;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            font-weight: normal;
            font-size: 24px;
        }

        .catalog-con-tit:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            background: #777;
            left: 0;
            top: 18px;
            z-index: 0;
        }

    .catalog-item {
        height: calc(100vh - 229px);
        overflow: auto;
    }

        .catalog-item ul {
            list-style: none;
            padding: 0;
            overflow: hidden;
            margin-bottom: 0;
        }

        .catalog-item li {
            border: 1px solid #ddd;
            margin-bottom: 10px;
            padding: 10px;
            text-align: center;
        }

            .catalog-item li:hover {
                border: 1px solid #a9a41d;
                color: #a9a41d
            }

    .catalog-r {
        padding: 0;
        position: sticky;
        top: 75px
    }

        .catalog-r h4 {
            font-size: 22px;
            border-bottom: 1px solid #222222;
            padding-bottom: 5px;
            margin-bottom: 15px;
        }

    .catalog-item-mobile, .catalog-item-modal {
        display: none;
    }

    /*editor*/
    .editor-rec-item ul {
        list-style: none;
        padding: 0;
    }

        .editor-rec-item ul li {
            margin-bottom: 10px;
        }

        .editor-rec-item ul a {
            display: block;
        }

            .editor-rec-item ul a:hover {
                text-decoration: underline;
            }

            .editor-rec-item ul a span {
                font-weight: bold;
            }

                .editor-rec-item ul a span:before {
                    content: '【'
                }

                .editor-rec-item ul a span:after {
                    content: '】'
                }

    .editor-rec-item h3.title {
        color: var(--green);
        font-size: 32px;
        font-weight: 400;
    }

    .editor-rec-item {
        margin-top: 70px;
    }

        .editor-rec-item + .editor-rec-item {
            margin-top: 50px;
        }

    /*catalog-old-list*/
    .periodTitle {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .catalog-old-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .catalog-old-list .catalog-old-item:nth-child(even) {
        background: #f8f8f8;
    }

    .catalog-old-item a {
        display: block;
        padding: 10px 10px 10px 20px;
    }

        .catalog-old-item a:hover .catalog-old-item-title {
            text-decoration: underline;
        }

    .catalog-old-item-titleBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .catalog-old-item-title {
        flex: 1;
        font-weight: bold;
        position: relative;
    }

        .catalog-old-item-title:before {
            content: '';
            position: absolute;
            left: -20px;
            top: 9px;
            height: 10px;
            width: 10px;
            background: #575757;
            border-radius: 50%;
        }

    .catalog-old-item-name {
        width: 200px;
        text-align: right;
        font-size: 16px;
    }

    .catalog-old-item-con {
        color: #888;
        font-size: 14px;
        margin: 0;
    }

    .btn-catalog-old {
        border-radius: 0;
        width: 100%;
        border: 1px solid #ddd;
        margin-bottom: 20px;
        padding: 10px;
    }

        .btn-catalog-old:hover {
            border-color: #a9a41d;
            color: #a9a41d
        }

    .catalog-item-modal.active.btn-catalog-old, .btn-catalog-old {
        color: #E40012 !important;
    }

    .catalog-item-modal.active .btn-catalog-old {
        border: 0;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    /*catalog-item scrollbar*/
    .catalog-item::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
        border-radius: 0px;
        background-color: rgba(0,0,0,0);
    }

    .catalog-item::-webkit-scrollbar {
        width: 6px;
        background-color: rgba(255, 255, 255, 0);
    }

    .catalog-item::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        background-color: #00000073;
    }


    @media (max-width: 991.98px) {
        .catalog-l {
            margin-right: 0px
        }

        .catalog-item {
            display: none;
        }

        .catalog-item-mobile {
            display: block;
            margin-bottom: 41px;
            border: 1px solid #c5c5c5;
            padding: 10px;
            cursor: pointer;
        }

            .catalog-item-mobile i {
                float: right;
                font-size: 26px;
            }

        .catalog-search {
            display: none;
        }

        .catalog-item-modal {
            position: fixed;
            background: rgb(255, 255, 255);
            color: #fff;
            z-index: 9999000;
            top: 0;
            width: 100%;
            height: 100vh;
            left: 0;
            display: none;
        }

            .catalog-item-modal.active {
                display: block;
            }

            .catalog-item-modal .catalog-item {
                display: block;
            }

            .catalog-item-modal h4 {
                color: #fff;
                border-bottom: 3px solid #a9a41d;
                padding: 0 20px;
                font-size: 22px;
                line-height: 50px;
                background: #333;
                position: fixed;
                width: 100%;
            }

            .catalog-item-modal .search-close {
                width: 50px;
                height: 50px;
                background: none;
                border: 0;
                position: fixed;
                top: 2px;
                right: 5px;
                z-index: 1;
            }

                .catalog-item-modal .search-close i {
                    font-size: 32px;
                    color: #fff;
                    font-weight: bold;
                }

            .catalog-item-modal ul {
                list-style: none;
                padding: 0;
                border-bottom: 3px solid rgba(255,255,255,.7);
                height: calc(100vh - 50px);
                margin-top: 50px;
                overflow: auto;
            }

            .catalog-item-modal li {
                color: #333;
                border-bottom: 1px solid rgba(180, 180, 180, 0.5);
                padding: 10px 20px;
            }

                .catalog-item-modal li:hover {
                    background: #eee
                }

                .catalog-item-modal li a {
                    display: block;
                }

        .search-result {
            display: none;
        }

        .catalog-con-bookBox {
            padding-left: 0px;
        }

        .btn-catalog-old {
            display: none;
        }
    }

    @media (max-width: 767.98px) {
        .catalog-con-book {
            display: block;
            text-align: center;
        }

            .catalog-con-book .fixedImgBox {
                margin: auto
            }

        .catalog-con-bookBox h4 {
            margin-top: 20px;
        }

        .catalog-con-bookBox .d-flex {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        .catalog-old-item-title:before {
            content: '';
            height: 0;
            width: 0;
        }

        .catalog-old-item a {
            padding-left: 10px;
        }

        .catalog-old-item-titleBox {
            display: block;
        }

        .catalog-old-item-name {
            width: 100%;
            text-align: left;
        }
    }

    .editor-title h4 {
        margin-bottom: 10px;
    }

    .editor-title h5 {
        color: #888;
        font-weight: normal;
        font-size: 18px;
    }

    .editor-title .social a {
        margin-right: 10px;
        margin-left: 0;
    }

    .editor-title .catalog-con-bookBox {
        width: 100%;
    }

    .catalog-con-bookBox .catalog-con-bookBox {
        padding-left: 0;
    }

    /*tree-view*/
    .tree-view ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .tree-view li {
        padding: 5px 5px;
    }

    .level-1 {
        margin-bottom: 10px;
    }

    .tree-view .level-1 > li {
        margin-bottom: 20px
    }

    .tree-view .tree-view-title {
        background: #7b818b;
        color: #fff;
        padding: 5px 10px 5px 10px;
        margin-bottom: 10px;
    }

    .tree-view .level-3 li {
        border-bottom: 1px solid #ddd
    }

    .level-2-title {
        color: #D70000;
        border-bottom: 0;
    }

    .tree-view-con {
        display: block;
        line-height: 1.8;
    }

        .tree-view-con:hover {
            text-decoration: underline;
        }

    /*--------------------------------------------------------------
# privacy+GDPR
--------------------------------------------------------------*/
    .privacy {
        max-width: 1200px;
        line-height: 1.8
    }

        .privacy ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .privacy li {
            margin-bottom: 20px;
        }

            .privacy li li {
                text-indent: -17px;
                padding-left: 21px;
            }

            .privacy li span {
                font-weight: bold;
            }

        .privacy h4 {
            font-size: 18px;
            line-height: 2
        }

    .mbBox > ul {
        max-width: 900px;
        margin: auto;
        background: #f7f7f7;
        padding: 30px;
        border-radius: 20px;
        border: 1px solid #ddd;
    }


    /*--------------------------------------------------------------
# tab
--------------------------------------------------------------*/
    .nav-tabs {
        border: 0;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: auto;
    }

        .nav-tabs .nav-item {
            margin-bottom: 0;
            border-bottom: 1px solid #c7c7c7;
        }

        .nav-tabs .nav-item {
            position: relative;
        }

            .nav-tabs .nav-item:first-child:before {
                content: '';
            }

            .nav-tabs .nav-item:before {
                content: '/';
                position: absolute;
                font-size: 40px;
                font-weight: 100;
                color: #e0e0e0;
                left: -10px;
                bottom: -20px;
            }

            .nav-tabs .nav-item .nav-link {
                border: 0;
                font-size: 36px;
                background: none;
                padding: 0 50px;
                color: var(--primary);
            }

                .nav-tabs .nav-item .nav-link.active {
                    color: #a9a41d;
                    position: relative;
                }

                    .nav-tabs .nav-item .nav-link.active:before {
                        content: '';
                        position: absolute;
                        bottom: -2px;
                        height: 3px;
                        width: 30px;
                        background: #a9a41d;
                        left: 50%;
                        -webkit-transform: translateX(-50%);
                        -ms-transform: translateX(-50%);
                        transform: translateX(-50%)
                    }

    @media (max-width: 991.98px) {
        .nav-tabs .nav-item .nav-link {
            font-size: 28px;
            padding: 0 30px;
        }
    }

    @media (max-width: 767.98px) {
        .nav-tabs .nav-item .nav-link {
            font-size: 24px;
            padding: 0 30px;
        }
    }

    @media (max-width: 575.98px) {
        .nav-tabs .nav-item {
            width: 33.333330%;
        }

            .nav-tabs .nav-item .nav-link {
                padding: 0 0px;
                font-size: 20px;
            }

            .nav-tabs .nav-item:before {
                font-size: 26px;
                top: 0
            }
    }

    /*--------------------------------------------------------------
# papers
--------------------------------------------------------------*/
    .papers {
        display: flex;
    }

        .papers h4 {
            font-size: 20px;
            margin-bottom: 17px;
            border-bottom: 1px solid #333;
            padding-bottom: 3px;
        }

        .papers img {
            width: 300px;
        }

    .papers-wrappwer {
        max-width: 700px;
        flex: 1;
    }

        .papers-wrappwer p {
            margin-bottom: 24px;
        }

    .papers .stepItem {
        display: flex;
        margin-bottom: 16px;
    }

        .papers .stepItem label {
            width: 100px;
            background: #e5e6e7;
            color: #444;
            height: 30px;
            border-radius: 30px;
            text-align: center;
            margin-right: 16px;
            font-weight: bold;
        }

        .papers .stepItem span {
            flex: 1;
        }

    .papers-img {
        background: url(/assets/images/paperBg.jpg) no-repeat center;
        background-size: cover;
        width: 300px;
        margin-right: 30px;
    }

    @media (max-width: 767.98px) {
        .papers {
            display: block;
        }

        .papers-img {
            width: 100%;
            height: 200px;
            margin-bottom: 24px;
        }

        .papers .stepItem {
            display: block;
            margin-bottom: 32px;
        }

            .papers .stepItem span {
                display: block;
            }
    }


    /*--------------------------------------------------------------
# privacy+GDPR
--------------------------------------------------------------*/
    .privacy {
        max-width: 1200px;
        line-height: 1.8
    }

        .privacy ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .privacy li {
            margin-bottom: 20px;
        }

            .privacy li li {
                text-indent: -17px;
                padding-left: 21px;
            }

            .privacy li span {
                font-weight: bold;
            }

        .privacy h4 {
            font-size: 18px;
            line-height: 2
        }

    .mbBox > ul {
        max-width: 900px;
        margin: auto;
        background: #f7f7f7;
        padding: 30px;
        border-radius: 20px;
        border: 1px solid #ddd;
    }


    /*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
    .team {
        padding-bottom: 50px;
        position: relative;
        overflow: hidden;
        margin-bottom: 80px;
        z-index: 0;
    }

        .team:before {
            content: '';
            position: absolute;
            width: 40px;
            height: 100vh;
            left: 23px;
            background: rgba(205,205,205,.2);
        }

        .team:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 40px;
            left: 0;
            background: rgba(111,111,111,.1);
            bottom: 30px;
        }

        .team img {
            width: 100%;
        }

    .team-pic {
        height: 400px;
        position: relative;
        z-index: 1;
        margin-left: 27px;
        box-shadow: 2px 3px 3px rgba(0,0,0,.2);
    }

    .team ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .team li {
        margin-bottom: 5px;
    }

    .team-title {
        margin-bottom: 25px;
        position: relative; /* left: -71px; */
        top: -5px;
    }

        .team-title .job-title {
            width: 90px;
            height: 70px;
            display: inline-block;
            background: #a9a41d;
            float: left;
            letter-spacing: 0px;
            color: #fff;
            text-align: center;
            line-height: 70px;
            position: relative;
            top: 6px;
            margin-right: 15px;
            font-size: 18px;
        }

    .team-name {
        display: inline-block;
    }

        .team-name h3 {
            font-size: 38px;
            font-weight: normal;
            letter-spacing: 5px
        }

        .team-name h4 {
            font-family: 'Georgia';
            font-size: 20px;
        }

    .team-item h6 {
        border-bottom: 1px dotted #9f9f9f;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

    .team-other {
        padding-left: 46px;
    }

        .team-other .team-title .job-title {
            width: 80px;
        }

        .team-other .team-title + .team-title {
            margin-left: 80px;
        }

    @media (max-width: 991.98px) {
        .team-item > div:first-child {
            margin-bottom: 30px
        }
    }

    @media (max-width: 767.98px) {
        .team-title {
            margin-bottom: 30px;
            position: relative;
            left: 0;
            top: 9px;
        }

            .team-title .job-title {
                width: 90px;
                height: 70px;
                text-align: center;
                font-size: 20px;
                padding-right: 0;
            }

        .team-name {
            margin-top: 5px;
        }

            .team-name h3 {
                font-size: 30px;
                letter-spacing: 0px
            }

            .team-name h4 {
                font-size: 18px;
            }

        .team-title {
            width: 100%;
        }

        .team-other .team-title + .team-title {
            margin-left: 0px;
        }
    }

    @media (max-width: 575.98px) {
        .team {
            padding: 0;
        }

        .team-pic {
            height: 300px;
            margin-left: 0;
        }

        .team-title {
            margin-bottom: 30px;
            position: relative;
            left: 0;
            top: 9px;
        }

            .team-title .job-title {
                width: 70px;
                height: 60px;
                font-size: 16px;
                line-height: 60px;
            }

        .team-name h3 {
            font-size: 26px;
        }

        .team-name h4 {
            font-size: 16px;
        }

        .team-name {
            margin-top: 8px;
        }

        .team:before, .team:after {
            content: '';
            width: 0;
            height: 0;
        }

        .team-other .team-title {
            width: 100%;
            margin-left: 15px;
        }

            .team-other .team-title + .team-title {
                margin-left: 15px;
            }

        .team-other {
            margin-bottom: 0
        }
    }




 