/*
Theme Name:     Orange
Theme URI:      
Description:    Orange child theme for yulong
Author:         nicetheme
Author URI:     
Template:       Orange
Version:        1.1.0
*/

@import url("../Orange/style.css");

.site-footer{
    background: #000;
}
/**
yulong poster
**/
.yulong-poster {
    position: relative;
    background-color: #000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.yulong-poster .poster-content {
    display: flex;
    flex: 1 1 auto;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    height: 500px;
    color: #fff;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .yulong-poster .poster-content {
        height: 300px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .yulong-poster .poster-content {
        height: 240px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

/**
yulong menu
**/
.yulong-menu {
    background-color: #f0f1f4;
}

.yulong-menu ul {
    display: flex;
}

.yulong-menu ul li {
    position: relative;
    margin-right: 10px;
}

.yulong-menu ul li a {
    display: block;
    padding: 15px 25px;
}

.yulong-menu ul li.active a {
    color: var(--color-primary);
}

.yulong-menu ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background-color: var(--bg-primary);
    transform: translateX(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.yulong-menu ul li:hover::after,
.yulong-menu ul li.active::after {
    width: 100%;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .yulong-menu ul {
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        justify-content: start;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .yulong-menu ul li {
        flex-shrink: 0;
    }

    .yulong-menu ul li a {
        display: block;
        padding: 15px 20px;
    }

    .yulong-menu ul::-webkit-scrollbar {
        display: none
    }
}

@media (max-width: 767.98px) {

    .yulong-menu ul {
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        justify-content: start;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .yulong-menu ul li {
        flex-shrink: 0;
    }

    .yulong-menu ul li a {
        display: block;
        padding: 15px 15px;
    }

    .yulong-menu ul::-webkit-scrollbar {
        display: none
    }

}

/**
yulong grid
**/
.yulong-grid {
    position: relative;
    padding: 5rem 0;
    background-color: #FBFBFB;
}

.yulong-grid h2 {
    font-size: 2.25rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .yulong-grid {
        padding: 3rem 0;
    }

    .yulong-grid h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .yulong-grid {
        padding: 2rem 0;
    }

    .yulong-grid h2 {
        font-size: 1.75rem;
    }
}

/**
yulong about 1
**/


.yulong-about-1 .yulong-slogan {
    display: flex;
    margin-bottom: 4rem;
    line-height: 1.75;
    justify-content: center;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .yulong-about-1 .yulong-slogan {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .yulong-about-1 .yulong-slogan {
        margin-bottom: 2rem;
    }

}

/**
yulong about 2
**/

.yulong-about-2 {
    position: relative;
    background-color: #000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.yulong-about-2 .grid-content {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 300px;
    width: 100%;
}

.yulong-about-2 .history-tabs {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 80%;
    font-size: 1.2rem;
}

.yulong-about-2 .history-tabs a {
    position: relative;
    color: #fff;
    cursor: pointer;
}

.yulong-about-2 .history-tabs a:hover,
.yulong-about-2 .history-tabs a:focus {
    color: #fff;
}

.yulong-about-2 .history-tabs::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    width: 100%;
    height: 1px;
    background-color: #fff;
}


.yulong-about-2 .history-tabs a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 100%;
    transform: translate(-50%, 150%);
}

.yulong-about-2 .history-tabs a.active::after {
    box-shadow: 0 0 0 4px rgb(255 255 255 / 50%);
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .yulong-about-2 .grid-content {
        height: auto;
        padding: 3rem 0 4rem;
    }

    .yulong-about-2 .history-tabs {
        width: 100%;
    }

    .yulong-about-2 .history-tabs::after {
        bottom: -16px;
    }

    .yulong-about-2 .history-tabs a::after {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 767.98px) {
    .yulong-about-2 .grid-content {
        height: auto;
        padding: 2rem 0 4rem;
    }

    .yulong-about-2 .history-tabs {
        width: 100%;
        font-size: 1rem;
    }

    .yulong-about-2 .history-tabs::after {
        bottom: -16px;
    }

    .yulong-about-2 .history-tabs a::after {
        width: 15px;
        height: 15px;
    }

}

/**
yulong about 3
**/

.framework-box .compy {
    text-align: center;
    margin-top: 12px;
    position: relative;
    margin-bottom: 64px;
}

.framework-box .compy img {
    width: 183px;
}

.framework-box .compy:after {
    content: ' ';
    height: 26px;
    width: 2px;
    background: #D8D9DC;
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

.framework-box .framework-tabmenu {
    width: 100%;
    position: relative;
    display: flex;
}

.framework-box .framework-tabmenu::before {
    content: ' ';
    position: absolute;
    display: block;
    left: 50%;
    top: -26px;
    width: 83.7%;
    height: 2px;
    background: #D8D9DC;
    -webkit-transform: translateX(-50%);
}

.framework-box .framework-tabmenu a {
    position: relative;
    width: 16.25%;
    background: #f0f1f4;
    padding: 32px 10px;
    margin-right: .5%;
    text-align: center;
    cursor: pointer;
    -webkit-transition: background-color 0.2s linear;
    -moz-transition: background-color 0.2s linear;
    -o-transition: background-color 0.2s linear;
    -webkit-transition: background-color 0.2s linear;
    -ms-transition: background-color 1s linear;
}

.framework-box .framework-tabmenu a:last-child {
    margin-right: 0%;
}

.framework-box .framework-tabmenu a.active {
    background: #fff;
}

.framework-box .framework-tabmenu a:before {
    content: ' ';
    height: 26px;
    width: 2px;
    background: #D8D9DC;
    position: absolute;
    top: -26px;
}

.framework-box .framework-tabmenu a .desc {
    display: none;
}

.framework-box .framework-tabbox {
    width: 100%;
    margin-top: 48px;
    background: #fff;
    position: relative;
}

.framework-box .framework-tab .item {
    position: relative;
    display: none;
    color: #5F6464;
    line-height: 25px;
    background: #fff;
    padding: 32px 42px;
    margin-top: 48px;
    transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    -webkit-transition: opacity 0.2s linear;
    -ms-transition: opacity 1s linear;
}

.framework-box .framework-tab .item::before {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 30px;
    border-color: transparent transparent #fff transparent;
    transform: translate(0%, -99%);
    display: none;
}

.framework-box .framework-tab .item1:before {
    left: 50px;
    display: block;
}

.framework-box .framework-tab .item1.active:before {
    left: 6%;
    display: block;
}

.framework-box .framework-tab .item2.active:before {
    left: 22.5%;
    display: block;
}

.framework-box .framework-tab .item3.active:before {
    left: 39.334%;
    display: block;
}

.framework-box .framework-tab .item4.active:before {
    left: 56%;
    display: block;
}

.framework-box .framework-tab .item5.active:before {
    left: 73%;
    display: block;
}

.framework-box .framework-tab .item6.active:before {
    left: 89.55%;
    display: block;
}

.framework-box .framework-tab .item.active {
    display: block;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .framework-box .framework-tabmenu a {
        padding: 20px 15px;
    }

    .framework-box .framework-tabmenu a h3 {
        font-size: 1.125rem;
        margin-bottom: 5px;
    }
}

@media (max-width: 767.98px) {
    .framework-box .compy {
        margin-bottom: 16px;
    }


    .framework-box .framework-tabmenu {
        flex-direction: column;
    }

    .framework-box .framework-tabmenu a {
        padding: 10px 15px;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        text-align: left;
        background: #fff;
    }

    .framework-box .framework-tabmenu a .title {
        display: flex;
        align-items: center;
    }

    .framework-box .framework-tabmenu a .title:after {
        position: absolute;
        content: "";
        display: block;
        right: 21px;
        top: 20px;
        height: 6px;
        width: 6px;
        border-left: 1px solid #000;
        border-bottom: 1px solid #000;
        transform: rotate(315deg);
        transition: all 0.2s;
    }

    .framework-box .framework-tabmenu a.active .desc {
        display: block;
        top: 20px;
        border-top: 1px solid #f1f1f1;
        margin-top: 10px;
        padding-top: 10px;
        color: var(--color-dark)
    }

    .framework-box .framework-tabmenu a.active .title:after {
        transform: rotate(135deg);
        top: 22px;
    }

    .framework-box .framework-tabmenu a h3 {
        font-size: 1.25rem;
        margin-bottom: 0;
        margin-right: 15px;
    }

    .framework-box .compy:after,
    .framework-box .framework-tabmenu::before,
    .framework-box .framework-tabmenu a:before {
        display: none;
    }

    .framework-box .framework-tab .item,
    .framework-box .framework-tab .item.active {
        display: none;
    }
}

/**
yulong about 4
**/

.yulong-team {}

.yulong-team .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px
}

.yulong-team .item .item-title {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.yulong-team .item .item-title h3 {
    font-size: 1.75rem;
}

.yulong-team .item .item-image {
    position: relative;
    width: 70%;
}

.yulong-team .item .item-image .image-box {
    position: relative;
}

.yulong-team .item .item-image .image-box::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    background-color: var(--bg-primary);
    transform: translate(-50%, 50%);
    transition: all 0.3s ease-in-out;
}

.yulong-team .item:hover .item-image .image-box::after {
    transform: translate(0%, 0%);
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .yulong-team .item .item-title {
        width: 35%;
    }

    .yulong-team .item .item-image {
        width: 60%;
    }

    .yulong-team .item .item-image .image-box::after {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767.98px) {
    .yulong-team .item {
        margin-bottom: 64px
    }

    .yulong-team .item .item-title {
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .yulong-team .item .item-title h3 {
        font-size: 1.25rem;
    }

    .yulong-team .item .item-title .text-lg {
        font-size: .875rem;
    }

    .yulong-team .item .item-image {
        position: relative;
        width: 50%;
    }

    .yulong-team .item .item-image .image-box::after {
        width: 30px;
        height: 30px;
    }
}

/**
yulong about 5
**/

.workplace-tabmenu ul {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #d7d7d7;
}

.workplace-tabmenu li {
    position: relative;
    margin: 0 10px
}

.workplace-tabmenu li a {
    position: relative;
}

.workplace-tabmenu li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0%;
    height: 5px;
    background-color: var(--bg-primary);
    transform: translateX(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.workplace-tabmenu li:hover a::after,
.workplace-tabmenu li a.active::after {
    width: 100%;
}

.workplace-tabmenu li a {
    display: block;
    padding: 15px 30px;
}

.workplace-tab .item {
    display: none;
    margin-top: 4rem;
}

.workplace-tab .item.active {
    display: block;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .workplace-tabmenu ul {
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        justify-content: start;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .workplace-tabmenu ul::-webkit-scrollbar {
        display: none
    }

    .workplace-tabmenu li {
        flex-shrink: 0;
        margin: 0 10px 0 0;
    }

    .workplace-tabmenu li a {
        display: block;
        padding: 15px 20px;
    }

    .workplace-tab .item {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .workplace-tabmenu ul {
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        justify-content: start;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .workplace-tabmenu ul::-webkit-scrollbar {
        display: none
    }

    .workplace-tabmenu li {
        flex-shrink: 0;
        margin: 0 10px 0 0;
    }

    .workplace-tabmenu li a {
        display: block;
        padding: 15px 20px;
    }

    .workplace-tab .item {
        display: none;
        margin-top: 2rem;
    }
}

/**
industry
**/

.industry-main {
    padding: 5rem 0;
    background-color: #FBFBFB;
}

.industry-main .industry {
    margin-bottom: 5rem;
}

.industry-main .industry:last-child {
    margin-bottom: 0;
}

.industry-main .industry .industry-top {
    display: flex;
}

.industry-main .industry .industry-top .top-title {
    width: 20%;
}

.industry-main .industry .industry-top .top-desc {
    width: 80%;
    line-height: 1.75;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .industry-main {
        padding: 3rem 0;
    }

    .industry-main .industry {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .industry-main {
        padding: 2rem 0;
    }

    .industry-main .industry {
        margin-bottom: 2rem;
    }

    .industry-main .industry .industry-top {
        flex-direction: column;
    }

    .industry-main .industry .industry-top .top-title {
        width: 100%;
    }

    .industry-main .industry .industry-top .top-desc {
        width: 100%;
        margin-top: .5rem;
    }

}

/**
industry-tab
**/

.industry-tab {}

.industry-tab .item {
    display: none;
}

.industry-tab .item.active {
    display: block;
}

.industry-tab .tabs ul {
    display: flex;
    flex-wrap: wrap;
}

.industry-tab .tabs ul li {
    flex: 1 1 auto;
    width: 25%;
    display: flex;
}

.industry-tab .tabs ul li a {
    position: relative;
    display: block;
    padding: 20px 25px;
    background-color: #f0f1f4;
    width: 100%;
}

.industry-tab .tabs ul li a.active {
    background-color: #fff;
}

.industry-tab .tabs ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background-color: var(--bg-primary);
    transform: translateX(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.industry-tab .tabs ul li a.active::after {
    width: 100%;
}

.industry-tab .tabs ul li a.active::after {
    width: 100%;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .industry-tab .tabs ul li a {
        padding: 15px 20px
    }
}

@media (max-width: 767.98px) {

    .industry-tab .tabs ul li a {
        display: flex;
        flex: 1 1 auto;
        text-align: center;
        align-items: center;
        justify-content: center;
        height: 60px;
        padding: 10px 10px;
    }

    .industry-tab .tabs ul li a .text-lg {
        font-size: .875rem;
    }

}


/**
staff
**/
.staff-main {
    padding: 4rem 0;
}

.staff-grid {
    margin-bottom: 4rem;
}

.staff-grid h2 {
    font-size: 2.25rem;
}

.staff-1 .staff-box {
    position: relative;
}

.staff-1 .staff-content {
    position: absolute;
    width: 50%;
    background-color: #fff;
    padding: 3rem;
    top: 50%;
    transform: translateY(-50%);
}

.staff-1 .staff-content.right {
    right: 0;
}

.staff-3 .item {
    position: relative;
}

.staff-3 .item .item-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    color: #fff;
    padding: 15px 20px;
}

.staff-4 {
    margin-bottom: 0;
}

.staff-4 .staff-content {
    position: relative;
}

.staff-4 .staff-content h2 {
    position: absolute;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    z-index: 1;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .staff-main {
        padding: 3rem 0;
    }

    .staff-grid {
        margin-bottom: 2.5rem;
    }

    .staff-1 .staff-content {
        padding: 1.5rem;
    }

    .staff-grid h2 {
        font-size: 1.75rem;
    }

    .staff-grid .text-lg,
    .staff-grid .text-md {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .staff-main {
        padding: 2rem 0;
    }

    .staff-grid {
        margin-bottom: 2rem;
    }

    .staff-grid h2 {
        font-size: 1.5rem;
    }

    .staff-1 .staff-box {
        border: 1px solid var(--border-light);
    }

    .staff-1 .staff-content {
        padding: 1rem;
        position: relative;
        width: 100%;
        top: auto;
        transform: translateY(0%);
    }

    .staff-1 .staff-content h2 {
        font-size: 1.5rem;
    }

    .staff-4 {
        margin-bottom: 0;
    }

    .staff-4 .staff-content h2 {
        left: 10%;
    }
}

.quotes-left {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    background-image: url('data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCI+PHBhdGggZD0iTTE5NS41NDEgNzM5LjAzQzE1MS41OTUgNjkyLjM1MSAxMjggNjQwIDEyOCA1NTUuMTM1YzAtMTQ5LjMzMyAxMDQuODMyLTI4My4xNzkgMjU3LjI4LTM0OS4zNTVsMzguMTAxIDU4Ljc5NWMtMTQyLjI5MyA3Ni45Ny0xNzAuMTEyIDE3Ni44NTMtMTgxLjIwNSAyMzkuODMgMjIuOTEyLTExLjg2MiA1Mi45MDctMTYgODIuMzA0LTEzLjI3IDc2Ljk3IDcuMTI1IDEzNy42NDMgNzAuMzE1IDEzNy42NDMgMTQ4Ljg2NGExNDkuMzMzIDE0OS4zMzMgMCAwIDEtMTQ5LjMzNCAxNDkuMzMzIDE2NS4xNjMgMTY1LjE2MyAwIDAgMS0xMTcuMjQ4LTUwLjMwNHptNDI2LjY2NyAwYy00My45NDctNDYuNjc4LTY3LjU0MS05OS4wMy02Ny41NDEtMTgzLjg5NCAwLTE0OS4zMzMgMTA0LjgzMi0yODMuMTc5IDI1Ny4yOC0zNDkuMzU1bDM4LjEwMSA1OC43OTVjLTE0Mi4yOTMgNzYuOTctMTcwLjExMiAxNzYuODUzLTE4MS4yMDUgMjM5LjgzIDIyLjkxMi0xMS44NjIgNTIuOTA2LTE2IDgyLjMwNC0xMy4yNyA3Ni45NyA3LjEyNSAxMzcuNjQyIDcwLjMxNSAxMzcuNjQyIDE0OC44NjRhMTQ5LjMzMyAxNDkuMzMzIDAgMCAxLTE0OS4zMzMgMTQ5LjMzMyAxNjUuMTYzIDE2NS4xNjMgMCAwIDEtMTE3LjI0OC01MC4zMDR6Ii8+PC9zdmc+');
}

.quotes-right {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    background-image: url('data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCI+PHBhdGggZD0iTTgyOC40NTkgMjg0Ljk3Qzg3Mi40MDUgMzMxLjY0OSA4OTYgMzg0IDg5NiA0NjguODY1YzAgMTQ5LjMzMy0xMDQuODMyIDI4My4xNzktMjU3LjI4IDM0OS4zNTVsLTM4LjEwMS01OC43OTVjMTQyLjI5My03Ni45NyAxNzAuMTEyLTE3Ni44NTMgMTgxLjIwNS0yMzkuODMtMjIuOTEyIDExLjg2Mi01Mi45MDcgMTYtODIuMzA0IDEzLjI3LTc2Ljk3LTcuMTI1LTEzNy42NDMtNzAuMzE1LTEzNy42NDMtMTQ4Ljg2NGExNDkuMzMzIDE0OS4zMzMgMCAwIDEgMTQ5LjMzNC0xNDkuMzMzYzQ1Ljc4MSAwIDg5LjU1NyAyMC45MDYgMTE3LjI0OCA1MC4zMDR6bS00MjYuNjY3IDBjNDMuOTQ3IDQ2LjY3OCA2Ny41NDEgOTkuMDMgNjcuNTQxIDE4My44OTQgMCAxNDkuMzMzLTEwNC44MzIgMjgzLjE3OS0yNTcuMjggMzQ5LjM1NWwtMzguMTAxLTU4Ljc5NWMxNDIuMjkzLTc2Ljk3IDE3MC4xMTItMTc2Ljg1MyAxODEuMjA1LTIzOS44My0yMi45MTIgMTEuODYyLTUyLjkwNiAxNi04Mi4zMDQgMTMuMjctNzYuOTctNy4xMjUtMTM3LjYtNzAuMzE1LTEzNy42LTE0OC44NjRhMTQ5LjMzMyAxNDkuMzMzIDAgMCAxIDE0OS4zMzQtMTQ5LjMzM2M0NS43ODEgMCA4OS41NTcgMjAuOTA2IDExNy4yNDggNTAuMzA0eiIvPjwvc3ZnPg==');
}

/**
culture culture-timeline
**/

.culture-timeline .timeline-inner {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 400px;
    background-color: #fff;
}

.culture-timeline .timeline-container {
    margin-top: 36px;
    height: 100%;
    width: 100%;
    position: relative;
}

.culture-timeline .timeline-container .timeline-panel {
    width: 380px;
    transition: all 1s ease;
    position: absolute;
}

.culture-timeline .timeline-container .timeline-panel .panel-label {
    font-size: 30px;
    margin: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.culture-timeline .timeline-container .timeline-panel .panel-content {
    margin: 20px;
}

.culture-timeline .timeline-container .timeline-panel .panel-content li {
    margin-bottom: 10px;
}

.culture-timeline .slide-nav {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}

.culture-timeline .slide-nav a {
    cursor: pointer;
    display: inline-block;
    padding: 10px 16px;
    transition: all 0.5s ease;
}