/*!
 * app.css for master
 * Author jsxgl.com
 * @Copyright 2005-2021 wzcoder.com (http://www.wzcoder.com)
 * @version 1.0
 * @date 2021-09-09-1:59 PM
 */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


.brd-r5 {
    border-radius: 5px;
}

.trans_03 {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.trans_10 {
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.shadow-hover:hover {
    box-shadow: 0px 0px 50px rgb(83 88 93 / 10%);
}

.href-url {
    font-size: 14px;
    color: var(--text-color-secondary);
    display: inline-block;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--primary-color);
    border-top-color: #d1e6f9;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.datepicker-dropdown {
    padding: 20px !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f1f7fd;
}

.section-title {
    text-align: center;
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
    text-transform: uppercase;
}

.section-title p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: var(--title-color);
}

@media (max-width: 768px) {
    .section-title p {
        font-size: 28px;
        line-height: 32px;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #f6f9ff;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info a {
    line-height: 1;
    color: #444444;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #1977cc;
}

#topbar .contact-info i {
    color: var(--primary-color);
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}

#topbar .social-links a {
    color: var(--primary-color);
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #1977cc;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header.header-scrolled {
    top: 0;
}

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 40px;
    box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .logo a {
    color: var(--primary-color);
}

#header .logo img {
    max-height: 40px;
}

@media (max-width: 768px) {
    #header {
        padding: 8px 0;
    }

    #header .logo img {
        max-height: 30px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar > ul > li {
    position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #37423b;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--primary-color);
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    left: 30px;
    height: 2px;
    bottom: 3px;
    background-color: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    width: 25px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: var(--primary-color);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #37423b;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(32, 38, 34, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile ul li {
    position: relative;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #37423b;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: var(--primary-color);
}


.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: var(--primary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    margin-bottom: -150px;
    padding: 0;
    position: relative;
}

#hero:before {
    content: "";
    background: rgba(5, 13, 24, 0.3);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

#hero .hero-wrapper {
    width: 100%;
    height: 90vh;
    background-position: top center;
    background-size: cover;
}

#hero .container {
    position: relative;
    z-index: 10;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    color: var(--bs-white);
}

#hero h2 {
    color: var(--bs-white);
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero h2 br {
    display: inline;
    line-height: 50px;
}

#hero .btn-get-started {
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 40px;
    margin-top: 30px;
    transition: 0.5s;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
}

#hero .btn-get-started:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);;
    color: #FFFFFF;
}

@media (min-width: 1024px) {
    #hero .hero-wrapper {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero .hero-wrapper {
        margin-bottom: 0;
        height: 100vh;
    }

    #hero .container {
        padding-bottom: 63px;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-height: 768px) {
    #hero .hero-wrapper {
        height: 110vh;
    }

    #hero h2 {
        font-size: 15px;
    }

    #hero h2 br {
        line-height: normal;
    }
}

/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
#service {
    position: relative;
    z-index: 20;
}

#service .service-wrapper {
    padding: 20px;
    background: #fff;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

#service .service-box {
    position: relative;
    overflow: hidden;
}


#service .service-box:hover img {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
}


#service .service-text {
    position: absolute;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--bs-white);
    bottom: -150px;
    z-index: 10;
}

#service .service-text:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    background: rgb(0 0 0 / 40%);
    z-index: -10;
}

#service .service-text h3 {
    margin-bottom: 20px;
}

#service .service-text p {
    min-height: 90px;
    overflow: hidden;
    font-size: 14px;
}

#service .service-text a {
    color: #fff;
}

#service .service-box:hover .service-text {
    bottom: -0px;
}

/*--------------------------------------------------------------
# case
--------------------------------------------------------------*/
#case {
    position: relative;
}

.index-case-box .post-thumbs {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 62.5%;
    height: 0;
}

.index-case-box .post-thumbs img {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-20px, 0, 0);
}


.index-case-box .post-thumbs:hover img {
    transform: translate3d(0, 0, 0);
    transition: opacity 0.35s, transform 0.35s;
}

.index-case-box .case-text .cagetory {
    display: inline-block;
    background: var(--primary-color);
    color: #FFFFFF;
    font-size: 14px;
    padding: 2px 5px;
    margin-bottom: 0;
}

.post-odd .case-text .cagetory {
    margin-top: 0.5rem;
}

.post-even a.href-url {
    margin-bottom: 0.5rem;
}

.index-case-box .case-text h2 {
    margin: 1rem 0;
    color: var(--title-color);
    font-size: 20px;
}

.index-case-box .case-text .description {
    color: var(--text-color-secondary);
}


.case .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.case .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 1px solid var(--primary-color);
}

.case .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.case .swiper-button-next, .case .swiper-button-prev {
    opacity: 0.2;
    color: var(--primary-color);
    z-index: 100;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.case:hover .swiper-button-next, .case:hover .swiper-button-prev {
    opacity: 1;
}

/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
#about {
    min-height: 50vh;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

#about:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#about .section-title p {
    color: #ffffff;
}

#about .section-title h2 {
    color: #f6f9ff;
}

.index-about-more {
    display: block;
    margin-bottom: 1rem;
}

.index-about-more .icon-box {
    padding: 30px 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid rgba(255, 255, 255, 1);
    height: 100%;
    text-align: center;

}

.index-about-more .icon-box i {
    font-size: 36px;
    line-height: 1;
    color: #FFFFFF;
    transition: ease-in-out 0.3s;
}

.index-about-more .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 20px;
    color: #fff;
    transition: ease-in-out 0.3s;
}

.index-about-more:hover .icon-box {
    background-color: rgba(255, 255, 255, 0.6);
}

.index-about-more:hover .icon-box i, .index-about-more:hover .icon-box h3 {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #f6f9ff;
    padding: 0 0 30px 0;
    font-size: 14px;
}

#footer .footer-top {
    background: white url(../img/footer-bg.png) no-repeat right top;
    background-size: contain;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-logo {
    max-width: 250px;
    display: inline-block;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
    color: #d0d4fc;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #ffc451;
    color: #151515;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;

    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #d0d4fc;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--primary-color);
}

#footer .footer-top .footer-qrcode li {
    display: inline-block;
    max-width: 110px;
    overflow: hidden;
    text-align: center;

}

#footer .footer-top .footer-qrcode li:not(:last-child) {
    margin-right: 15px;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .poweredby {
    text-align: center;
    font-size: 13px;
}

#footer .copyright p {
    margin-bottom: 0.5rem;
}

#footer .links {
    margin: 1rem 0;
}

/*--------------------------------------------------------------
# Page General
--------------------------------------------------------------*/
.banner-inner {
    height: 35vh;
    background-size: cover;
    background-position: top center;
    position: relative;
}

.banner-inner-wrapper {
    display: flex;
    justify-content: left;
    align-items: center;
    position: absolute;
    bottom: 50px;
    top: 180px;
    left: 50px;
    right: 50px;
    z-index: 2;
    text-transform: uppercase;
}

.banner-inner-wrapper h3 {
    display: inline-block;
    font-size: 26px;
    color: var(--title-color);
    position: relative;
    font-weight: 600;
}

.banner-inner-wrapper h3::after {
    content: '';
    position: relative;
    display: block;
    left: 0;
    top: 10px;
    width: 25%;
    border-bottom: 2px solid var(--primary-color);
}

.banner-inner-wrapper p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .banner-inner {
        margin-top: 100px;
        height: 20vh;
        background-position: top right;
    }

    .banner-inner-wrapper {
        top: 10vh;
        left: 0;
        right: 0;
    }

    .banner-inner-wrapper h3, .banner-inner-wrapper p {
        margin: 0;
        font-size: 14px;
    }

    .banner-inner-wrapper h3 {
        font-size: 18px;
        margin-bottom: 1rem;
    }

}

.page-nav {
    background: var(--light-bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}

.breadcrumb {
    margin-bottom: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    height: 40px;
    overflow: hidden;
    font-size: 14px;
}

.breadcrumb i {
    font-size: 25px;
    color: #dddddd;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    margin-right: 18px;
    padding: 0 8px;
}

.breadcrumb span.bi {
    font-size: 12px;
    margin: 0 4px;
}

.left-sidebar {
    margin-bottom: 30px;
}


.sidebar-nav h3 {
    font-size: 26px;
    color: var(--title-color);
}

.sidebar-nav h3:before {
    content: '';
    display: block;
    background: var(--primary-color);
    height: 2px;
    width: 60px;
    margin-bottom: 1rem;
}

.left-sidebar .sub-category {
    margin-top: 15px;
}

.left-sidebar .sub-category li {
    margin-bottom: 0.5rem;
}

.left-sidebar .sub-category li a {
    font-size: 16px;
    color: var(--text-color-secondary);
}

.list-pagination {
    margin-top: 20px;
}

/*--------------------------------------------------------------
# 党建
--------------------------------------------------------------*/
.dangjian, .rongyu {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.dangjian h3, .rongyu h3 {
    font-size: 22px;
    color: var(--title-color);
    margin-bottom: 1rem;
}

.rongyu .box-photo {
    position: relative;
    margin-bottom: 1.5rem;
}

.rongyu .box-photo a {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
}

.rongyu .box-photo:before {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
    background-image: linear-gradient(
            180deg, transparent, rgba(0, 0, 0, 0.2));
    z-index: 20;
}

.rongyu .box-photo .box-caption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    z-index: 30;
}

.rongyu .box-photo .box-caption h4 {
    margin-top: auto;
    color: #ffffff;
    margin-bottom: 0;
    font-size: 14px;
}


.rongyu .box-photo:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

/*--------------------------------------------------------------
# 文章列表
--------------------------------------------------------------*/
.post-lists-wrapper {
    margin-top: -20px;
}

.post-lists {
    border-bottom: 1px dashed #e0e3e5;
    padding: 20px 0;
}


.post-lists h3 > a {
    font-size: 18px;
    font-weight: 600;
}

.post-lists .post-date {
    font-size: 14px;
    color: var(--text-color-secondary);
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .post-lists {
        margin-right: 20px;
    }

    .post-lists-thumbs {
        margin-right: 0
    }
}


.post-lists-thumbs .post-thumbs {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 69.125%;
    height: 0;
}

.post-lists-thumbs .post-thumbs::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    z-index: 99;
    opacity: 0;
    transition: opacity 0.4s;
}

.post-lists-thumbs .post-thumbs img {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-20px, 0, 0);
}

@media (min-width: 992px) {
    .post-lists-thumbs .post-thumbs:hover::before {
        opacity: 0.3;
        transition: opacity 0.5s;
    }

    .post-lists-thumbs .post-thumbs:hover img {
        transform: translate3d(0, 0, 0);
        transition: opacity 0.35s, transform 0.35s;
    }
}

.article-post {
    margin-bottom: 3rem;
    line-height: 1.8;
}

.article-post h3 {
    font-size: 22px;
    color: var(--title-color);
    margin-bottom: 1rem;
}

.article-post img {
    max-width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# 文章详情
--------------------------------------------------------------*/
#article .article-head {
    border-bottom: 1px dashed #e0e3e5;;
}

#article .article-head h2 {
    font-size: 26px;
    color: var(--title-color);
    line-height: 38px;
}

#article .article-head .post-more {
    margin: 1rem 0;
}

#article .article-head .post-more li {
    display: inline-block;
    font-size: 14px;
    color: var(--text-color-secondary);
    margin-right: 10px;
}

#article .article-head .post-more li a {
    color: var(--text-color-secondary);
}

#article .article-head .post-more li span.bi {
    margin-right: 3px;
}

#article .article-body {
    padding: 20px 0;
}

#article .article-body img {
    max-width: 100% !important;
    height: auto !important;
}

#article .article-foot {
    border-top: 1px dashed #e0e3e5;;

}

#article .prev-next-wrapper {
    margin-top: 1rem;
    font-size: 14px;
}

#article .prev-next-wrapper .t-pn {
    margin-right: 5px;
}

#article .prev-next-wrapper a {
    font-size: 14px;
}

/*--------------------------------------------------------------
# 关于我们
--------------------------------------------------------------*/
.guanyu {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.guanyu h3 {
    font-size: 22px;
    color: var(--title-color);
    margin-bottom: 1rem;
}

.guanyu img {
    max-width: 100%;
    height: auto;
}

.guanyu em {
    font-weight: 600;
    font-style: normal;
    margin-right: 5px;
    min-width: 100px;
    display: inline-block;
}

#about-ry .rongyu p {
    position: relative;
    margin-bottom: 0.5rem;
}

#about-ry .rongyu p::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

#about-ry .rongyu p:hover::after {
    width: 100px;
    border-bottom: 1px solid var(--primary-color);
}

/*--------------------------------------------------------------
# 发展历程
--------------------------------------------------------------*/
.fzlc-wrapper {
    position: relative;
}

.fzlc-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    left: 15.89%;
    width: 3px;
    height: 100%;
    margin-left: -1px;
    background-color: var(--light-bg-color);
    z-index: 1;
}


.fzlc-wrapper li {
    margin-bottom: 1rem;
}

.lc-left {
    padding-right: 2.85714rem;
    padding-top: 1.42857rem;
    margin-bottom: 1.42857rem;
    text-align: right;
}

.lc-left h4 {
    font-size: 18px;
    font-weight: 600;
}

.lc-right {
    position: relative;
    padding-left: 2.85714rem;
}

.lc-right .icon {
    position: absolute;
    right: 100%;
    transform: translateX(50%);
    top: 1.5rem;
    z-index: 2;
    background: #ffffff;
}

.lc-right .icon i.rounded-circle {
    display: block;
    width: 18px;
    height: 18px;
    border: 3px solid var(--light-bg-color);
    border-radius: 50%;
}

.lc-detail {
    display: block;
    padding: 20px;
    position: relative;
    background: var(--light-bg-color);
}

.lc-detail .icon-left {
    position: absolute;
    z-index: 2;
    top: 1.14286rem;
    left: -14px;
    display: block;
}

.lc-detail .icon-arrow-left {
    border-width: 15px 15px 15px 0;
    border-style: solid;
    border-color: transparent;
    border-right-color: var(--light-bg-color) !important;
}

.lc-detail .icon-up {
    position: absolute;
    z-index: 2;
    left: 1.42857rem;
    top: -14px;
    display: block;
}

.lc-detail .icon-arrow-up {
    border-width: 0 15px 15px 15px;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: var(--light-bg-color) !important;
}

.lc-detail p {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .fzlc-wrapper::before {
        left: 24.12%;
    }
}

@media (max-width: 991px) {
    .fzlc-wrapper::before {
        left: 23.72%;
    }

    .lc-left {
        padding-right: 1rem;;
    }
}

@media (max-width: 768px) {

    .fzlc-wrapper li {
        margin-bottom: 1.42857rem;
    }

    .fzlc-wrapper::before {
        display: none;
    }

    .lc-left {
        text-align: left;
    }

    .lc-right {
        padding-left: calc(var(--bs-gutter-x) * .5)
    }
}

/*--------------------------------------------------------------
# 光盘复制
--------------------------------------------------------------*/
.section__inner {
    margin-bottom: 3rem;
    line-height: 1.8;
}

.section__inner h3 {
    font-size: 22px;
    color: var(--title-color);
    margin-bottom: 1rem;
}

.cd-dvd .box-first {
    margin-bottom: 30px;
}

.cd-dvd .icon-box {
    margin-top: 40px;
}


.cd-dvd .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 135px;
    background: #f1f7fb;
}

.cd-dvd .icon-box .title {
    margin-left: 160px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.cd-dvd .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
}


.cd-dvd .icon-box .description {
    margin-left: 160px;
    font-size: 14px;
    color: var(--text-color-secondary);
}

.tab-content {
    margin: 1rem 0;
}

.tab-content .tab-pane {
    padding: 0;
}

.tab-content .tab-pane img {
    margin-bottom: 1rem;
}

.nav-tabs.tab-line {
    border-bottom: 2px solid var(--border-color)
}

.nav-tabs.tab-line .nav-item {
    margin-bottom: -2px;
}

.nav-tabs.tab-line .nav-item:first-child .nav-link {
    padding-left: 0;
}

.nav-tabs.tab-line .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color-primary);
    border: transparent;
    margin-bottom: 0;
}


.nav-tabs.tab-line .nav-link.active {
    color: var(--primary-color);
    background: transparent;
    border-bottom: 2px solid var(--primary-color);
}


#post-59 p {
    position: relative;
    margin-bottom: 0.5rem;
}

#post-59 p::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

#post-59 p:hover::after {
    width: 100px;
    border-bottom: 1px solid var(--primary-color);
}

/*--------------------------------------------------------------
# 人力资源
--------------------------------------------------------------*/
article.hr {
    margin-bottom: 2rem;
    line-height: 1.8;
}

article.hr h3 {
    font-size: 22px;
    color: var(--title-color);
    margin-bottom: 1rem;
}

article.hr img {
    max-width: 100%;
    height: auto;
}

article.hr ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

article.hr ul > li > p {
    margin-bottom: 0.5rem;
}

.offer-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-box p {
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: var(--text-color-secondary);
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 40px 0;
}

.counts .count-box {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.counts [class*="col-"]:last-child .count-box {
    border-right: none;
}

.counts .count-box i {
    display: none;
}

.counts .count-box span.purecounter {
    font-size: 40px;
}

.counts .count-box p {
    font-size: 15px;
    color: var(--text-color-secondary);
    margin-bottom: 0;

}

/*--------------------------------------------------------------
# 健康教育照明
--------------------------------------------------------------*/
.product-box .thumbs {
    margin-bottom: 1rem;
}

.product-box .thumbs a {
    display: block;
}

.product-box h4.title {
    font-size: 18px;
    font-weight: 600;
}

.product-box .description {
    font-size: 14px;
    color: var(--text-color-secondary);
}

.post-swiper .swiper-pagination {
    position: relative;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}

#cate-28 .product-box img, #cate-30 .product-box img {
    padding: 10px;
}

/*--------------------------------------------------------------
# 联系我们
--------------------------------------------------------------*/
.contact-list article p {
    margin-bottom: 0
}

#baidu-maps {
    height: 400px;
}

.maps-detail {
    padding: 0 20px;
}

.maps-detail h4 {
    font-size: 18px;
    color: var(--title-color);
}

.maps-detail p {
    font-size: 14px;
    color: var(--text-color-secondary);
}

/*--------------------------------------------------------------
# 案例
--------------------------------------------------------------*/
.case-show .post-lists-thumbs .post-thumbs {
    padding-bottom: 62.5%;
}

.case-show .post-lists-thumbs p {
    font-size: 14px;
    color: var(--text-color-secondary);
}
