/* 头部 */
header {
    background-color: #fff;
}

.header-box {
    padding: 20px 0;
}

.header-box .header-list {
    display: flex;
    align-items: center;
}

.header-box .logo {
    display: flex;
    align-items: center;
}

.header-box .logo .img-content {
    display: inline-block;
    height: 64px;
}

.header-box .logo h1 {
    display: inline-block;
    line-height: 24px;
    font-size: 22px;
    color: #333;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0 0 0 20px;
}

.header-box .logo h1 span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 6px;
    letter-spacing: 1px;
}

.header-box .logo h2 {
    display: inline-block;
    line-height: 32px;
    font-size: 26px;
    color: #333;
    font-weight: bold;
    padding: 0 0 0 20px;
    border-left: 1px solid #eaeaea;
    margin: 0 0 0 20px;
}

.header-box .logo h2 span {
    display: block;
    font-size: 18px;
    font-weight: normal;
}

.header-list .text-end {
    margin-left: auto;
}

.header-box .phone {
    display: inline-block;
    font-size: 26px;
    font-weight: bold;
    color: #333;
    line-height: 40px;
    height: 40px;
    padding: 0 0 0 50px;
    font-family: "DINOT";
    background: url(../images/tel.gif) no-repeat;
    margin-left: 30px;
}

@media (max-width:991px) {
    header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
        background-color: #fff;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 10%);
    }

    .header-box {
        padding: 0;
    }

    body {
        padding-top: 57px;
    }
}

.navbar-light .navbar-brand {
    padding: 0;
}

.navbar-light .navbar-brand img {
    height: 40px;
}

.navbar-light .navbar-brand h1 {
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
    margin: 0 0 0 10px;
}

.navbar {
    /* border-top: 1px solid #eaeaea; */
}

.navbar-nav {
    width: 100%;
}

.navbar-nav .nav-item {
    /* flex: 1; */
    /* border-right: 1px solid #eaeaea; */
}

.navbar-nav .nav-item:nth-last-child(1) {
    border-right: 0;
}

.navbar-nav .nav-item .nav-link {
    display: inline-block;
    padding: 0 15px;
    line-height: 60px;
    width: 100%;
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--css-color);
}

.dropdown {
    position: relative;
}

.dropdown ul {
    position: absolute;
    left: 0;
    min-width: 100%;
    top: 100%;
    z-index: 10;
    margin-top: 20px;
    transition: all 0.3s ease-in 0s;
    opacity: 0;
    transform: translateY(50px);
    visibility: hidden;
    text-align: left;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    padding: 0.5em 1em;
}

.dropdown ul::before {
    position: absolute;
    top: -20px;
    left: 0;
    height: 20px;
    width: 100%;
    display: inline-block;
    content: "";
}

.dropdown ul li {}

.dropdown ul li a {
    display: block;
    font-size: 14px;
    line-height: 3;
    color: #333;
    white-space: nowrap;
    padding: 0 10px;
}

.dropdown:hover ul {
    opacity: 1;
    transform: translateY(0%);
    visibility: visible;
}

.dropdown ul li a:hover {
    /* background-color: var(--css-color); */
    color: var(--css-color);
}

@media (max-width: 991px) {
    .navbar {
        /* box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 10%); */
    }

    .navbar-nav {
        overflow-y: scroll;
    }

    .navbar-nav .nav-item {
        border-right: 0;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        line-height: 1;
        padding: 14px 17px;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
        color: #333;
    }

    .navbar-light .navbar-nav .nav-link.active,
    .navbar-light .navbar-nav .show>.nav-link,
    .navbar-light .navbar-nav .nav-link:hover {
        background-color: var(--css-color);
        color: #fff;
    }

    .dropdown>.nav-link {
        position: relative;
    }

    .dropdown>.nav-link::before {
        content: "\f285";
        font-family: "bootstrap-icons";
        position: absolute;
        right: 10px;
        top: 0;
        bottom: 0;
        margin: auto;
        display: block;
        width: 16px;
        height: 16px;
        line-height: 16px;
        text-align: center;
        transition: all 0.3s;
    }

    .dropdown>.nav-link.active::before {
        transform: rotate(90deg);
    }

    .dropdown ul {
        position: relative;
        top: 0;
        display: block;
        padding: 10px 0;
        background: #fff;
        box-shadow: none;
        transition: none;
        opacity: 1;
        transform: translateY(0%);
        visibility: visible;
        margin: 0;
        border-radius: 0;
    }

    .dropdown ul::after {
        content: none;
    }

    .dropdown ul li {
        background: transparent;
    }

    .dropdown ul li:nth-child(1),
    .dropdown ul li:nth-last-child(1) {
        padding: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .dropdown ul li a {
        line-height: 1;
        padding: 10px 17px;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
        display: flex;
    }

    .dropdown ul li a::before {
        content: "\f135";
        font-family: bootstrap-icons !important;
    }

    .dropdown ul li:nth-last-child(1) a {
        border-bottom: 0;
    }

    .navbar-collapse.b .navbar-nav .nav-item .nav-link {
        color: #fff;
    }

    .navbar-collapse.b .navbar-nav .nav-link.active,
    .navbar-collapse.b .navbar-nav .show>.nav-link,
    .navbar-collapse.b .navbar-nav .nav-link:hover,
    .navbar-collapse.b .dropdown ul li a.active,
    .navbar-collapse.b .dropdown ul li a:hover {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .navbar-collapse.b {
        background-color: var(--css-color);
    }

    .navbar-collapse.b .dropdown ul {
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;

    }

    .navbar-collapse.b .dropdown ul li a {
        color: #fff;
    }
}

/* 尾部 */
.footer {
    padding: 50px 0 0 0;
    color: #052321;
    background-color: #191919;
}

.fonter-title {
    font-size: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 30px;
}

.fonter-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--css-color);
}

.footer-logo {
    height: 100%;
    text-align: center;
}

.footer-logo h1 {
    line-height: 24px;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    display: block;
    margin: 20px 0 10px;
}

.footer-logo span {
    line-height: 24px;
    font-size: 14px;
    color: #fff;
    display: block;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-nav {}

.footer-nav a {
    display: block;
    line-height: 2;
    background: url(../images/f_ico01.png) no-repeat 0 14px;
    overflow: hidden;
    padding: 0 0 0 20px;
    color: #fff;
}

.footer-nav a:hover {
    color: var(--css-color);
}

.fonter-img {
    width: 100px;
}

.fonter-img p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 0;
}

.footer-contact {}

.footer-contact p {
    padding: 0 0 0 0;
    color: #fff;
    line-height: 24px;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
}

.footer-contact p i {
    font-size: 16px;
    margin-right: 10px;
    width: 20px;
    color: var(--css-color);
}

.footer-contact p span {
    font-size: 1.6em;
    font-weight: bold;
    color: var(--css-color);
}

.footer-copyright {
    text-shadow: none;
    color: #c5c5c5;
    padding: 30px 0;
    margin: 20px 0 0 0;
    background: #191919;
    border-top: 1px solid #c5c5c5;
    font-size: 13px;
    text-align: center;
}

.footer-link a {
    margin-right: 5px;
}

@media (max-width: 576px) {
    .footer-copyright {
        height: 60px;
        overflow: hidden;
    }
}

.heading-section.a {
    margin-bottom: 3em;
    line-height: 40px;
}

.heading-section.bg {
    height: 85px;
    overflow: hidden;
    background: url(../images/cp_tline.png) no-repeat center 60px;
}

.heading-section.a h1 {
    color: #333;
    font-size: 30px;
    font-weight: bold;
}

.heading-section.a h1 span {
    color: var(--css-color);
}

.heading-section.a p {
    color: #333;
    display: block;
    font-size: 16px;
    font-weight: normal;
    padding: 6px 0 0;
    line-height: 1;
}

.heading-section.w h1,
.heading-section.w p {
    color: #fff;
}


@media (max-width: 991px) {
    .heading-section.a {
        /* margin-top: 2em; */
        margin-bottom: 1em;
        background-position-y: 43px;
    }

    .heading-section.a h1 {
        font-size: 28px;
    }

    .heading-section.a p {
        font-size: 16px;
    }
}

.header-top {
    background-color: var(--css-color);
    padding: 8px 0;
}

.header-top p {
    color: #fff;
    font-size: 13px;
}

.banner {
    position: relative;
}

.banner-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-text h3 {
    color: #fff;
    letter-spacing: 0px;
    margin-bottom: 20px;
    /* text-transform: uppercase; */
    font-size: 60px;
    font-weight: 700;
    text-shadow: -1px 1px 3px rgba(0, 0, 0, 0.44);
}

.banner-text h3 span {
    font-size: 0.44em;
    background-color: #d58d1f;
    padding: 5px 10px;
}

.banner-text p {
    margin: 12px 0 18px;
    font-size: 19px;
    font-weight: 400;
}


.indexA-list .icons {
    padding: 20px;
    width: 94px;
    /* height: 94px; */
    color: #fff;
    font-size: 42px;
    font-size: 38px;
    text-align: center;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 0;
    display: inline-table;
    color: #46bd55;
    background: transparent;
    border-radius: 0;
    background: #ffffff;
    border: none;
    width: 100%;
    border: 1px solid #ffffff;
    box-shadow: 0px -4px 5px 0px rgba(0, 0, 0, 0.28);
    border-bottom: 2px solid #46bd55;
}

.indexA-list h2 {
    padding-top: 20px;
    font-size: 36px;
    font-weight: 700;
}

.box-area {
    padding: 15px;
    background: #f7f7f7;
    /* margin-top: -21px; */
    border: none;
    color: #aaa;
    font-size: 13px;
    box-shadow: 0px -2px 1px rgba(0, 0, 0, 0.39);
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.box-area h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin: 20px 0;
}

.box-area p {
    text-align: left;
    color: #aaa;
    font-size: 13px;
    line-height: 1.6em;
}

.indexB .swiper-container {
    padding-bottom: 60px;
}

.indexB .swiper-pagination-bullet {
    border-radius: 0;
    width: 40px;
    background-color: var(--css-color);
}

.indexB-list {
    position: relative;
}

.indexB-list p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 0;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.60);
    transition: all 0.5s;
}

.indexC {
    background: url(../images/c_bg.jpg) no-repeat center;
}

.indexC .text p {
    color: #fff;
}

.indexD-list p {
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

.indexE-list {
    border: 1px solid #d9d9d9;
    padding: 20px;
}

.indexE-list:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.indexE-list h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.indexE-list h6 {
    font-size: 12px;
    color: #333;
    margin-bottom: 20px;
}

.indexE-list p {
    font-size: 13px;
    line-height: 1.8;
    font-weight: lighter;
    color: #656565;
}

footer .widget {
    color: #858585;
}

footer .widgetheading {
    width: 100%;
    padding: 0;
    font-weight: bold;
    color: var(--css-color);
    font-size: 14px;
    margin-bottom: 20px;
}

footer address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 2em;
    color: #fff;
    font-size: 13px;
}

footer .widget a {
    padding-right: 15px;
    line-height: 2em;
    font-size: 13px;
}