body {
    /* min-width: 1399px; */
    position: relative;
}

/* 头部 */
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;
    }
}

.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: 2px solid #eaeaea;
    background: #fff;
}

.navbar-nav {
    width: 100%;
    margin-top: -3px;
}

.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 10px;
    line-height: 60px;
    margin: 0 40px;
    border-top: 3px solid transparent;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link:hover {
    border-color: var(--css-color);
    color: var(--css-color);
}

.dropdown {
    position: relative;
}

.dropdown ul {
    position: absolute;
    left: 0;
    min-width: 100%;
    top: 100%;
    z-index: 10;
    padding-top: 20px;
    display: none;
}

.dropdown ul::after {
    position: absolute;
    top: 12px;
    left: calc(50% - 0.5em);
    /* right: 0; */
    /* margin: auto; */
    display: inline-block;
    content: "";
    border-top: 0;
    border-right: 0.5em solid transparent;
    border-bottom: 0.5em solid #fff;
    border-left: 0.5em solid transparent;
}

.dropdown ul li {
    background-color: #fff;
}

.dropdown ul li a {
    display: block;
    font-size: 14px;
    line-height: 3;
    color: rgba(0, 0, 0, .55);
    white-space: nowrap;
    padding: 0 10px;
}

.dropdown ul li:nth-child(1) {
    padding-top: 0.5em;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.dropdown ul li:nth-last-child(1) {
    padding-bottom: 0.5em;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.dropdown:hover ul {
    display: block;
}

.dropdown ul li a:hover {
    background-color: var(--css-color);
    color: #fff;
}

@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 {
        display: block;
        font-size: 16px;
        line-height: 1;
        padding: 14px 17px;
        margin: 0;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

    .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 ul {
        position: relative;
        top: 0;
        display: block;
        padding: 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.05);
        display: flex;
        background: #f7f7f7;
    }

    .dropdown ul li a::before {
        content: "\f135";
        font-family: bootstrap-icons !important;
    }

    .dropdown ul li:nth-last-child(1) a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
}

/* 尾部 */
.footer {
    background-color: #eee;
}

.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 {
    display: flex;
    text-align: center;
}

.footer-nav a {
    flex: 1;
    font-size: 16px;
    color: #333;
}

.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 {
    text-align: center;
}

.footer-contact p {
    font-size: 14px;
    line-height: 2;
    color: #333;
    font-weight: lighter;
}

.footer-copyright {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    opacity: 0.5;
}

.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: 36px;
    font-weight: bold;
}

.heading-section.a p {
    color: #333;
    display: block;
    font-size: 20px;
    font-weight: lighter;
    padding: 10px 0 0;
    line-height: 1;
}

.heading-section.a span {
    color: var(--css-color);
}

.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 */
.header {
    position: absolute;
    width: 100%;
    max-width: 1920px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 38px 150px 0 80px;
    display: flex;
    justify-content: space-between;
    z-index: 99;
    transition: all 0.3s;
    opacity: 1;
}

.header.active {
    opacity: 0;
}

.navdiv-t {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 23px;
}

.navdiv-t .b {
    font-size: 14px;
    color: #fff;
}

.navdiv-t .c {
    font-family: "default";
    font-size: 26px;
    letter-spacing: .5px;
    margin-left: 16px;
    color: #fff;
}

.navdiv-t .d {
    margin-left: 14px;
    font-size: 26px;
    color: #fff;
    transition: all 0.3s;
}

.navdiv-t .d:hover {
    color: #ff4343;
}

.navdiv-t .e {
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 24px;
    text-align: center;
    margin-left: 14px;
    color: #fff;
    border: 1px solid;
    border-radius: 100%;
    transition: all 0.3s;
}

.navdiv-t .e:hover {
    color: #ff4343;
}

.navdiv-t .f {
    margin-left: 14px;
    color: #fff;
    transition: all 0.3s;
}

.navdiv-b {
    display: flex;
    justify-content: flex-end;
}

.navdiv-b>ul {
    display: flex;
}

.navdiv-b>ul>li>a {
    padding-right: 26px;
    margin-left: 26px;
    border-right: 1px solid rgba(255, 255, 255, .2);
    font-size: 20px;
    color: #fff;
    position: relative;
    transition: all 0.3s;
}

.navdiv-b>ul>li:nth-last-child(1)>a {
    border-right: 0;
    padding-right: 0;
}

.navdiv-b>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 0;
    height: 1px;
    background-color: #ff4343;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    opacity: 0;
}

.navdiv-b a.active,
.navdiv-b a:hover {
    color: #ff4343;
}

.navdiv-b>ul>li>a.active::after,
.navdiv-b>ul>li>a:hover::after {
    width: 20px;
    opacity: 1;
}

.navdiv-b-two {
    position: relative;
}

.navdiv-b-two .two {
    position: absolute;
    z-index: 10;
    left: 25px;
    top: calc(100% + 15px);
    padding: 45px 30px;
    display: block;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.navdiv-b-two:hover .two {
    opacity: 1;
    visibility: visible;
}

.navdiv-b-two .two::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* filter: blur(4px); */
}

.navdiv-b-two .two h1 {
    width: 200px;
    display: block;
    font-size: 16px;
    color: #fff;
    position: relative;
    line-height: 20px;
    padding-bottom: 17px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.navdiv-b-two .two h1 img {
    width: 20px;
    margin-top: -1px;
    margin-right: 8px;
}

.navdiv-b-two .two li {
    display: block;
    font-size: 16px;
    color: #fff;
    position: relative;
    padding: 8px 0;
    opacity: .8;
}

.navdiv-b-two .two li a {
    transition: all 0.3s;
}

.banner {
    position: relative;
}

.banner .text {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner .text h2 {
    font-size: 28px;
    font-weight: bold;
    color: #5bc48a;
    letter-spacing: 2px;
    text-shadow: 1px 3px 2px #333;
    margin-bottom: 15px;
    text-decoration: dashed;
}

.banner .text h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 1px 6px 2px #333;
}

.indexA {
    background: url(../images/a_bg.jpg) no-repeat 100% bottom;
    background-size: cover;
}

.indexA-left h2 {
    font-size: 60px;
    color: #333;
    font-weight: bold;
    line-height: 1.3;
    margin-top: -0.3em;
}

.indexA-left h2 span {
    color: var(--css-color);
}

.indexA-right {
    position: relative;
    padding-top: 25px;
}

.indexA-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 78px;
    background-color: var(--css-color);
}

.indexA-list {
    border-top: 3px solid var(--css-color);
    display: flex;
}

.indexA-list>* {
    flex: 1;
    margin: 2px;
}

.indexA-list p {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    background-color: #f2f1f3;
    padding: 40px 0;
    text-align: center;
    transition: all 0.3s;
}

.indexA-list img {
    margin-right: 15px;
    transition: all 0.3s;
}

.indexA-list p:hover {
    background-color: var(--css-color);
    color: #fff;
}

.indexA-list p:hover img {
    filter: brightness(0) invert(1);
}

.indexB-right {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.indexB-right>* {
    display: inline;
}

.indexB-right h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--css-color);
    margin-bottom: 20px;
    text-indent: -0.4em;
}

.indexB-right p {
    font-size: 20px;
    font-weight: lighter;
    color: #333;
}

.indexB-right input,
.indexB-right input:focus {
    background-color: #f4f4f4;
    border: 0;
    border-radius: 0;
    margin-top: 30px;
    padding: 15px;
    max-width: 400px;
    font-size: 20px;
}

.indexB-right .twinkleBtn {
    width: 100%;
    max-width: 400px;
    font-size: 20px;
}

.indexC {
    background: url(../images/c_bg.jpg) no-repeat 100% bottom;
    background-size: cover;
}

.indexC-box {
    display: flex;
}

.indexC-box .a {
    flex: 1;
    text-align: center;
}

.indexC-box .a p {
    font-size: 20px;
    color: #fff;
    margin-top: 30px;
}

.indexC-box .a img {
    transition: all 0.6s;
}

.indexC-box .a:hover img {
    transform: rotateY(360deg);
}

.indexC-box .b {
    flex: 0;
    text-align: center;
    padding-top: 25px;
}

.indexD-top {
    height: 100%;
    background-color: var(--css-color);
}

.indexD-top .text {
    padding: 10%;
}

.indexD-list {
    position: relative;
    overflow: hidden;
}

.indexD-list .text {
    position: absolute;
    left: 0;
    top: calc(100% - 104px);
    width: 100%;
    height: 100%;
    background-color: rgba(2, 143, 64, 85%);
    padding: 20px;
    transition: all 0.3s;
}

.indexD-top .text h2,
.indexD-list .text h2 {
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
}

.indexD-list .text h2 {
    font-size: 20px;
    transition: all 0.3s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    /* padding: 20px; */
    /* margin: -104px 0 0; */
}

.indexD-top .text span,
.indexD-list .text span {
    font-size: 16px;
    font-weight: lighter;
    color: #fff;
    display: block;
    margin: 25px 0 30px;

}

.indexD-top .text span i,
.indexD-list .text span i {
    margin-right: 0.5em;
}

.indexD-top .text p,
.indexD-list .text p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: lighter;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
}

.indexD-list .text span,
.indexD-list .text p {
    /* padding: 0 20px; */
}

.indexD-list .text p {
    -webkit-line-clamp: 3;
}

.indexD-top .text b,
.indexD-list .text b {
    display: block;
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    color: #fff;
    padding-left: 2px;
    margin-top: 40px;
}


.indexD-list:hover .text {
    top: 0;
}

.indexD-list:hover .text h2 {
    /* margin-top: 0; */
    /* padding: 0; */
    /* background-color: transparent; */
}

.indexE {
    background: url(../images/e_bg.png) no-repeat 100% bottom;
}

.indexE-content {
    display: flex;
}

.indexE-content .left,
.indexE-content .right {
    flex: 0 0 auto;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0;
}

.indexE-content .center {
    flex: 0 0 auto;
    width: 40%;
    padding: 0;
}

.indexE-list {
    position: relative;
    width: 100%;
}

.right .indexE-list {
    display: flex;
    justify-content: flex-end;
}

.indexE-list::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--css-color);
    border-radius: 8px;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: -19%;
    margin: auto;
    visibility: hidden;
}

.indexE-list:nth-child(2)::after {
    right: -8px;
}

.right .indexE-list::after {
    right: auto;
    left: -19%;
}

.right .indexE-list:nth-child(2)::after {
    left: -8px;
}

.indexE-list .a {
    display: inline-flex;
    border-bottom: 2px solid var(--css-color);
    visibility: hidden;
}

.indexE-list .a p {
    font-size: 30px;
    color: #333;
    line-height: 1.3;
    margin: 0 30px 10px 0;
}

.indexE-list .b {
    min-width: 70%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
}

.right .indexE-list .b {
    left: auto;
    right: 0;
}

.indexE-list .b h2 {
    font-size: 24px;
    color: #333;
}

.indexE-list .b p {
    font-size: 16px;
    color: #333;
    font-weight: lighter;
    margin: 15px 0;
}

.indexE-list .b i {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    text-align: center;
    line-height: 32px;
    font-size: 20px;
    color: #000;
    background-color: #f2f1f3;
}

.indexE-list.active .a {
    visibility: visible;
}

.indexE-list.active .b {
    visibility: hidden;
}

.indexE-list.active::after {
    visibility: visible;
}

.indexE-box {
    width: 100%;
    padding-top: 100%;
    border: 1px solid #f2f1f3;
    border-radius: 100%;
    background-color: #fff;
    position: relative;
}

.indexE-box .box {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 80%;
    height: 80%;
    border-radius: 100%;
    overflow: hidden;
    visibility: hidden;
}

.indexE-box .box .img-content {
    position: absolute;
    top: 0;
    width: 100%;
    padding-top: 60%;
}

.indexE-box .box .box-top {
    position: relative;
    z-index: 1;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.indexE-box .box .box-top p {
    font-size: 30px;
    color: #fff;
    line-height: 1.3;
    font-weight: bold;
    margin-top: 30px;
}

.indexE-box .box .box-text {
    position: relative;
    z-index: 1;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.indexE-box .box .box-text p {
    font-size: 16px;
    color: #333;
    line-height: 2;
}

.indexE-box .box-number {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.indexE-box .box-number span {
    font-size: 16px;
    color: #333;
    font-weight: bolder;
}

.indexE-box .box-number span:nth-child(1) {
    color: var(--css-color);
}

.indexE-box .box-number hr {
    display: inline-block;
    width: 75px;
    color: #d2d2d2;
    opacity: 1;
    margin: 0 10px;
}

.indexE-box .box.active {
    visibility: visible;
}

.indexF {
    background: url(../images/f_3.jpg) no-repeat 100% bottom;
    background-size: cover;
    transition: all 0.6s;
}

.indexF-top {
    text-align: center;
    width: 600px;
    max-width: 100%;
    margin: auto;
    position: relative;
}

.indexF-top h2 {
    font-size: 24px;
    color: #fff;
    margin: 15px 0 25px;
}

.indexF-top p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.indexF-top .box {
    visibility: hidden;
}

.indexF-top .box:nth-child(n+2) {
    position: absolute;
    top: 0;
}

.indexF-top .box.active {
    visibility: visible;
}

.indexF-list {
    display: flex;
}

.indexF-list .list {
    flex: 1;
    position: relative;
}

.indexF-list .list .a {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 143, 64, 15%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.6s;
}

.indexF-list .list .b {
    position: relative;
    z-index: 1;
    background-color: rgba(2, 143, 64, 85%);
    padding: 60px;
    transition: all 0.6s;
    opacity: 0;
}

.indexF-list img {
    margin-bottom: 25px;
}

.indexF-list h2 {
    font-size: 24px;
    color: #fff;
}

.indexF-list hr {
    width: 44px;
    height: 2px;
    opacity: 1;
    color: #fff;
}

.indexF-list p {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    font-weight: lighter;
}

.indexF-list i {
    display: block;
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    color: #fff;
    padding-left: 2px;
    margin-top: 40px;
}


.indexF-list .list.active .a {
    opacity: 0;
}

.indexF-list .list.active .b {
    opacity: 1;
}

.indexG-list {
    background-color: #f2f1f3;
    transition: all 0.3s;
}

.indexG-list .text {
    padding: 20px;
}

.indexG-list h2 {
    font-size: 20px;

    margin-bottom: 25px;
}

.indexG-list p {
    font-size: 16px;
    line-height: 2;
    color: #999;
}

.indexG-list:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 30%);
}

.indexG-list:hover h2 {
    color: var(--css-color);
}

.indexH {
    padding-bottom: 100px;
}

.indexH-list {
    display: flex;
}

.indexH-list input {
    flex: 1;
    background-color: #f4f4f4;
    border: 0;
    border-radius: 0;
    padding: 15px;
    max-width: 400px;
    font-size: 20px;
    margin-right: 20px;
}

.indexH-list input:focus {
    background-color: #f4f4f4;
}

.indexH-list a {
    flex: 0.5;
    margin-top: 0;
    font-size: 20px;
    padding: 0;
    line-height: 60px;
}

.BNtop {
    font-size: 15px;
    font-weight: lighter;
}

.jiancai-box {
    background-color: #fff;
    padding: 0 35px 35px;
}

.jiancai-top {
    padding: 30px 10px;
    display: flex;
}

.jiancai-top>* {
    flex: 0 0 auto;
}

.jiancai-top .list {
    flex: auto;
    display: flex;
    flex-wrap: wrap;
}

.jiancai-top b {
    padding: 10px 0;
    margin-right: 50px;
}

.jiancai-top a {
    padding: 10px 20px;
}

.jiancai-top a:hover,
.jiancai-top a.active {
    color: var(--css-color);
}

.jiancai-list {
    display: flex;
    /* align-items: center; */
    padding: 30px 10px;
    border-top: 1px solid #f4f4f4;
}

.jiancai-list>.img-auto:nth-child(1) {
    flex: 0 0 auto;
    width: 110px;
    height: 110px;
    border: 1px solid var(--css-color);
    border-radius: 100%;
    overflow: hidden;
    padding: 5px;
}

.jiancai-list .text {
    margin-left: 20px;
    padding-right: 30px;
    flex: 0 0 auto;
    width: 280px;
}

.jiancai-list .text h2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
    padding-right: 10px;
}

.jiancai-list .text .a {
    font-size: 13px;
    line-height: 2;
    padding: 0 20px;
    display: inline-block;
    color: var(--css-color);
    border: 1px solid var(--css-color);
    border-radius: 6px;
    font-weight: lighter;
    position: relative;
    top: -3px;
    margin: 10px 0 0;
}

.jiancai-list .text .a:hover {
    background-color: var(--css-color);
    color: #fff;
}

.jiancai-list .text p {
    font-size: 14px;
    line-height: 2;
    font-weight: lighter;
}

.jiancai-list .text p span {
    /* font-size: 24px; */
    font-weight: normal;
}

.jiancai-img {
    flex: auto;
    display: flex;
}

.jiancai-img>* {
    flex: 0 0 auto;
    width: 33.3333%;
    padding: 0 10px;
}

.page-jiancai {
    display: flex;
    /* align-items: center; */
    padding: 50px 30px;
}

.page-jiancai .img-content {
    flex: 0 0 auto;
    width: 110px;
    height: 110px;
    border: 1px solid var(--css-color);
    border-radius: 100%;
    overflow: hidden;
    padding: 5px;
}

.page-jiancai-text {
    flex: auto;
    padding-left: 30px;
}

.page-jiancai-text h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.page-jiancai-text p {
    font-size: 14px;
    line-height: 2;
    font-weight: lighter;
    display: inline-block;
    margin-right: 30px;
}

.page-jiancai-text p span {
    font-size: 20px;
    font-weight: normal;
}

.page-jiancai-text .text {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}

.page-jiancai-text .text span {
    flex: 0 0 auto;
    width: 25%;
    padding: 0.5em 0;
}

.page-jiancai-text .text span i {
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 100%;
    background-color: var(--css-color);
    color: #fff;
    margin-right: 5px;
}

.page-jiancai-text .twinkleBtn {
    border-radius: 30px;
}

.page-contact {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 10%);
    padding-top: 50px;
    top: 45px;
    margin-top: 65px;
    z-index: 10;
}

.page-contact:nth-child(1) {
    margin-top: 0;
}

.page-contact-box {
    background-color: var(--css-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 90px;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.page-contact-box::before {
    content: url(../images/page-contact.png);
    position: absolute;
    left: -6px;
    top: -89px;
}

.page-contact-box h2 {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-contact-box p {
    font-size: 12px;
    font-weight: lighter;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.page-contact-box p::before,
.page-contact-box p::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    margin: auto 10px;
    width: 4em;
    height: 1px;
    background-color: #fff;
}

.page-contact-box p::after {
    left: auto;
    right: 100%;
}

.page-contact-box input,
.page-contact-box input:focus {
    background-color: #f4f4f4;
    border: 0;
    border-radius: 0;
    margin: 10px auto 0;
    padding: 10px;
    max-width: 80%;
    font-size: 12px;
}

.page-contact-box a {
    background-color: #fff;
    color: var(--css-color);
    border-radius: 100px;
}

.aboutA-list {
    display: flex;
}

.aboutA-list .list {
    flex: 1;
    position: relative;
}

.aboutA-list .a {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    opacity: 1;
}

.aboutA-list .a .img-content {
    height: 100%;
}

.aboutA-list .a .text {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aboutA-list .a .text img {
    height: 64px;
}

.aboutA-list .a .text h4 {
    color: #fff;
    margin-top: 10px;
}

.aboutA-list .b {
    background-color: #033519;
    padding: 30px;
    overflow: hidden;
    height: 100%;
    position: relative;
    transition: all 0.3s;
    opacity: 0;
}

.aboutA-list .b img {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    opacity: 0.2;
}

.aboutA-list .b .text {
    color: #fff;
}

.aboutA-list .b .text h3 {
    margin-bottom: 30px;
}

.aboutA-list .b .text p {
    font-size: 16px;
    font-weight: lighter;
    line-height: 2;
}

.aboutA-list .list:hover .a {
    opacity: 0;
}

.aboutA-list .list:hover .b {
    opacity: 1;
}

.heading-more {
    display: inline-block;
    padding: 5px 70px 5px 30px;
    border-left: 2px solid #aaa;
    text-align: left;
}

.heading-more h4 {
    font-size: 26px;
    font-weight: bold;
    transition: all 0.3s;
}

.heading-more p {
    font-size: 14px;
    color: #666;
}

.heading-more:hover h4 {
    color: var(--css-color);
}

.indexG-list.news h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    margin-bottom: 0;
}

.indexG-list.news span {
    font-size: 12px;
    font-weight: lighter;
    display: block;
    margin-top: 5px;
}

.indexG-list.news p {
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-top: 10px;
}

.contact-map {
    min-height: 100%;
    height: 300px;
}

/* 整合 */
.video_title {
    position: absolute;
    top: 55%;
    left: 78%;
    transform: translate(-50%, -50%);
    transition: all .4s ease 0s;
}

.video_title.active {
    opacity: 0;
}

.video_title .bn1 {
    margin-bottom: 26px;
    -webkit-animation: fadeInDown .7s ease both;
    animation: fadeInDown .7s ease both;
    animation-delay: 1.4s;
    position: relative;
    width: 100%;
    display: block;
    left: 0;
    top: 0;
}

.video_title .bn2 {
    -webkit-animation: fadeInLeft .7s ease both;
    animation: fadeInLeft .7s ease both;
    animation-delay: 1.4s;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
}

.video_title .bn3 {
    -webkit-animation: fadeInRight .7s ease both;
    animation: fadeInRight .7s ease both;
    animation-delay: 1.4s;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
}

.video_title .bn4 {
    -webkit-animation: fadeInUp .7s ease both;
    animation: fadeInUp .7s ease both;
    animation-delay: 1.4s;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
}

.video_title .num {
    position: absolute;
    top: 73px;
    left: 50%;
    width: 328px;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.video_title .bn5 {
    display: block;
    width: 100%;
    left: 0;
    top: 0;
    position: relative;
    -webkit-animation: fadeInUp .7s ease both;
    animation: fadeInUp .7s ease both;
    animation-delay: 0.2s;
}

.video_title .bn6 {
    display: block;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-animation: fadeInUp .7s ease both;
    animation: fadeInUp .7s ease both;
    animation-delay: 0.3s;
}

.video_title .bn7 {
    display: block;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-animation: fadeInUp .7s ease both;
    animation: fadeInUp .7s ease both;
    animation-delay: 0.4s;
}

.video_title .bn8 {
    display: block;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-animation: fadeInUp .7s ease both;
    animation: fadeInUp .7s ease both;
    animation-delay: 0.5s;
}

.video_title .num2 {
    position: absolute;
    top: 218px;
    left: 50%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.video_title .bn9 {
    animation: bounceInUp .9s ease both;
    animation-delay: 0.5s;
}

.video_title .num3 {}

.video_title .bn10 {
    -webkit-animation: fadeInUp 1s ease both;
    animation: fadeInUp 1s ease both;
    animation-delay: 1.8s;
    position: relative;
    width: 100%;
    display: block;
    left: 0;
    top: 0;
}

/* indexVideo */
.indexVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/indexbg.jpg);
    background-size: cover;
    z-index: -1;
}

.indexVideo::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(69, 69, 69, .3);
    z-index: 1;
}

.indexVideo video {
    min-width: 100%;
    min-height: 100%;
}

.indexVideo .swiper-container,
.indexVideo .swiper-wrapper,
.indexVideo .swiper-slide,
.indexVideo .img-content {
    height: 100%;
}

.banner .scfoll {
    width: 59px;
    height: 84px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: mymove0 1.2s infinite;
    cursor: pointer;
    z-index: 30;
    cursor: pointer;
}

.banner .scfoll img {
    width: 28px;
}

.banner .scfoll span {
    width: 100%;
    text-align: center;
    margin-top: 17px;
    display: block;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 2px;
}

/* indexBbox */
.indexBbox {
    position: relative;
    max-width: 1600px;
    margin-right: 50px;
    padding-left: 55px;
    background: #fff;
}

.indexBb-table {
    width: 100%;
    padding: 0 30px;
}

/* .indexBb-table>ul {
    column-count: 3;
    column-width: 3px;
} */

.indexBb-table>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* background: url(../images/b1.jpg) no-repeat 100% top; */
    background-size: cover;
    position: relative;
    margin: -8px;
}

.indexBb-table>ul::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: rgba(0, 0, 0, 0.5); */
}

/* .page .indexBb-table>ul {
    column-count: 2;
} */

/* .indexBb-table>ul>li {
    display: flex;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    background: #2a65b7;
    box-shadow: 2px 2px 6px 0px #295ba1;
} */
.indexBb-table>ul>li {
    flex: 0 25%;
    /* flex: 0 14.286%; */
    padding: 8px;
    /* border: 3px solid #739bd3; */
    position: relative;
    z-index: 1;
}

.page .indexBb-table>ul>li {
    flex: 0 25%;
}

/* .indexBb-table>ul>li+li {
    margin-top: 8px;
} */

.indexBb-table>ul>li>a {
    flex: 2;
    display: block;
    text-align: center;
    padding: 20px 20px 20px;
    /* border-right: 1px solid rgb(255 255 255 / 10%); */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    line-height: 1.6;
    box-sizing: content-box;
    /* height: 3.2em; */
    /* background-color: var(--css-color); */
    border-radius: 16px;
    /* background-color: rgba(0, 0, 0, 0); */
    position: relative;
    cursor: pointer;
    background: -webkit-linear-gradient(108deg, #2c5c9e 30%, #67a6ff);
}

.indexBb-table>ul>li>a p {
    margin-top: 1em;
    line-height: 1.3;
}

.page .indexBb-table>ul>li>a {
    height: 2.6em;
    line-height: 1.3;
}

.indexBb-table>ul>li>a::before {
    /* content: "more"; */
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 20px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    line-height: 20px;
    font-size: 12px;
    font-weight: lighter;
    transition: all 0.3s;
}

.indexBb-table>ul>li>a::after {
    /* content: "\f105"; */
    font-family: 'FontAwesome';
    font-weight: lighter;
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    line-height: 20px;
    border-radius: 100%;
    color: #fff;
    transition: all 0.3s;
    transform: translateX(20px);
}

.indexBb-table>ul>li>a:hover {
    background: #2c5999;
}

.indexBb-table>ul>li>a:hover::before {
    opacity: 1;
}

.indexBb-table>ul>li>a:hover::after {
    transform: translateX(25px);
}


.indexBb-table>ul>li>ul {
    flex: 3;
    display: flex;
    flex-direction: column;
    display: none;
}

.indexBb-table>ul>li>ul>li {
    color: #fff;
    padding: 12px 10px;
    height: 100%;
    display: flex;
    align-items: center;
    line-height: 1.3;
    font-size: 14px;
}

.indexBb-table>ul>li>ul>li+li {
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.indexBb-table>ul>li>ul>:nth-child(odd) {
    background-color: rgb(255 255 255 / 10%);
}

.indexBb-table>ul>li>ul>li:nth-child(even) {
    background-color: rgb(255 255 255 / 20%);
}

/* indexAa */
.indexAa-box {
    display: flex;
    width: 100%;
}

.indexAa-l {
    width: 60%;
    min-height: 100%;
}

.indexAa-l .swiper-container,
.indexAa-l .swiper-wrapper,
.indexAa-l .swiper-slide,
.indexAa-l .img-content {
    height: 100%;
}

.indexAa-r {
    width: 40%;
    min-height: 100%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.indexAa-text {
    padding: 69px 100px 20px 87px;
}

.indexAa-text h1 {
    font-weight: bold;
    font-size: 32px;
    color: #130f0e;
    display: block;
    margin-bottom: 50px;
    transition: all 0.3s;
}

.indexAa-text h2 {
    font-weight: bold;
    font-size: 20px;
    color: #464646;
    margin-bottom: 25px;
    transition: all 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.indexAa-text h1:hover,
.indexAa-text h2:hover {
    color: var(--css-color);
}

.indexAa-text .img {
    margin-bottom: 25px;
}

.indexAa-text .img img {
    height: 56px;
    max-width: 100%;
}

.indexAa-text p {
    margin-bottom: 50px;
    font-size: 16px;
    color: #848484;
    line-height: 1.8;
}

.indexAa-text i {
    font-size: 14px;
    color: #999999;
    font-style: normal;
    transition: all 0.3s;
}

.indexAa-text i span {
    margin-left: 10px;
}

.indexAa-text i:hover {
    color: var(--css-color);
}

.indexAa-r-btn {
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    position: relative;
}

.indexAa-r-btn-prev {
    flex: 1;
}

.indexAa-r-btn-prev .icon-toright {
    transform: rotate(180deg) translateY(50%);
}

.indexAa-r-btn-next {
    flex: 1;
}

.indexAa-r-btn-prev p,
.indexAa-r-btn-next p {
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    color: #848484;
    transition: all 0.3s;
    position: relative;
}

.indexAa-r-btn-prev p {
    border-right: 1px solid #e0e0e0;
}

.indexAa-r-btn-prev:hover p,
.indexAa-r-btn-next:hover p {
    color: var(--css-color);
}

.indexAa-r-btn-prev p i,
.indexAa-r-btn-next p i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 31px;
}

.indexAa-r-btn-next p i {
    left: auto;
    right: 31px;
}

.indexAa-r-pagination {
    font-family: "default";
    position: absolute;
    top: -35px;
    right: 28px;
    bottom: auto;
    left: auto;
    width: auto;
    color: #999999;
    font-size: 18px;
}

/* indexBb */
.indexBb {
    background: #e0e3e5;
}
.indexBb .index-heading h1{
    border-color: #333;
}
.indexBb-box {
    padding: 0 25px 70px;
    color: #fff;
    /* display: flex; */
    flex-direction: row;
    flex-wrap: nowrap;
}

.indexBb-l {
    flex: 1;
    max-width: 320px;
    padding-right: 20px;
}

.indexBb-l h1 {
    padding-bottom: 14px;
    vertical-align: top;
    font-size: 40px;
    color: #fff;
    border-bottom: 1px solid #e5e5e5;
    font-weight: bold;
}

.indexBb-l .list {
    font-size: 16px;
    line-height: 24px;
    padding: 20px 0;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .3s;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.indexBb-l .list:hover {
    color: rgba(255, 255, 255, 1);
}

.indexBb-l .list.active {
    transition: all 0s;
    /* font-size: 14px; */
    /* font-weight: bold; */
    color: rgba(255, 255, 255, 1);
}

.indexBb-r {
    flex: 1;
    padding: 0 15px;
    padding-top: 63px;
}

.indexBb-r .box {
    display: none;
}

.indexBb-r .box.active {
    display: block;
}

.indexBb-r ul {
    display: flex;
    flex-wrap: wrap;
}

.indexBb-r ul li {
    /* flex: 25%; */
    width: 25%;
}

.indexBb-r-list {
    padding-right: 15px;
    padding-left: 15px;
}

.indexBb-r-list .item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.indexBb-r-list:nth-child(-n+4) .item {
    margin-top: -1px;
    border-top: 1px solid rgba(255, 255, 255, .5);
}

.indexBb-r-list .left {}

.indexBb-r-list .left span:first-child {
    display: block;
    font-size: 20px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.indexBb-r-list .left span:last-child {
    display: block;
    font-size: 16px;
    margin-top: 1em;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.indexBb-r-list .right {
    position: relative;
    height: 55px;
    margin-top: 35px;
}

.indexBb-r-list .right img {
    /* height: 100%; */
    width: 120px;
    transition: all .3s ease 0s;
}

.indexBb-r-list:hover .right img {
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
}

/* indexCc */
.index-heading {
    padding-top: 66px;
    padding-right: 55px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
}

.index-heading h1 {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 11px;
    width: 320px;
    font-size: 40px;
    font-weight: bold;
}

.index-heading p {
    color: #000000;
}

.index-heading.w {
    color: #fff;
}

/* indexEe */
.indexEe-box {
    display: flex;
    flex-wrap: wrap;
}

.indexEe-list {
    width: 33%;
    position: relative;
    overflow: hidden;
    margin: 20px 0.5%;
    height: 500px;
}

.indexEe-list:nth-child(odd) {
    margin: 0 1% 30px 0;
}

.indexEe-list:nth-child(even) {
    margin: 0 0 30px 1%;
}

.indexEe-list:nth-child(2),
.indexEe-list:nth-child(3),
.indexEe-list:nth-child(6) {
    width: 65%;
}

.indexEe-list .img-content {
    height: 100%;
}

.indexEe-list .img-content::before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    content: " ";
    /* background-color: rgba(0, 0, 0, 0.2);*/
    transition: all 0.9s;
}

.indexEe-list::before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 0%;
    content: " ";
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.9s;
    z-index: 1;
}

.indexEe-list:hover::before {
    height: 100%;
}

.indexEe-list-area {
    position: absolute;
    bottom: 0;
    background-color: var(--css-color);
    padding: 30px 25px;
    left: 40px;
    right: 40px;
    bottom: -320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.9s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.indexEe-list-area .text {
    color: #fff;
}

.indexEe-list-area .text h4 {
    font-size: 22px;
    font-weight: bolder;
}

.indexEe-list:hover .indexEe-list-area {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
}

.indexEe-list-area .icon {
    width: 55px;
    height: 55px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--css-color);
    display: inline-block;
    text-align: center;
    font-size: 18px;
}

/*  */

/* indexFf */
.indexFf {
    background-color: #6F76AD;
    padding: 80px 50px;
}

.indexFf-box p {
    color: #fff;
    font-size: 18px;
    margin-top: 15px;
    letter-spacing: 3px
}

.indexFf-box p:nth-child(1) {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

/* indexGg */
.indexGg {}

.indexGg-box {
    padding: 0 120px 0 25px;
    margin: 120px 0 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.indexGg-l {
    flex: 1;
    max-width: 320px;
    padding-right: 20px;
}

.indexGg-l h1 {
    padding-bottom: 14px;
    vertical-align: top;
    font-size: 40px;
    border-bottom: 1px solid #e5e5e5;
    font-weight: bold;
}

.indexGg-l .list {
    font-size: 14px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.indexGg-l .list.active {
    transition: all 0s;
    font-size: 14px;
    color: var(--css-color);
}

.indexGg-r {
    padding: 62px 15px 0;
    margin-right: 20px;
    max-width: 40%;
    height: 600px;
    overflow-y: scroll;
}

.indexGg-r::-webkit-scrollbar {
    width: 6px;
}

.indexGg-r::-webkit-scrollbar-track {
    background-image: linear-gradient(90deg, transparent 30%, rgba(0, 0, 0, .15) 50%, transparent 70%)
}

.indexGg-r::-webkit-scrollbar-thumb {
    background-color: var(--css-color);
}

.indexGg-r .box {
    display: none;
}

.indexGg-r .box.active {
    display: block;
}

.indexGg-text {
    border-bottom: 1px solid #e5e5e5;
    padding: 30px 16px 30px 0;
    position: relative;
}

.indexGg-r li:nth-child(1) {
    border-top: 1px solid #e5e5e5;
}

.indexGg-text:after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0px;
    height: 1px;
    background-color: var(--css-color);
    transition: all .3s ease 0s;
}

.indexGg-text:hover:after {
    width: 100%;
}

.indexGg-text span {
    color: #999;
    font-size: 14px;
}

.indexGg-text h5 {
    line-height: 1.42;
    font-size: 16px;
    height: 44px;
    overflow: hidden;
    color: #464646;
    display: block;
    margin-top: 16px;
    margin-bottom: 28px;
    letter-spacing: .5px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.indexGg-text p {
    font-size: 14px;
    line-height: 1.75;
    color: #999999;
    margin-bottom: 25px;
    height: 48px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.indexGg-text a {
    transition: all 0.3s;
}

.indexGg-text:hover a {
    color: var(--css-color);
}

.indexGg-t {
    flex: 1;
}

.indexGg-t:hover img {
    transform: scale(1.2);
}

/* indexFfooter */
.indexFfooter {
    padding: 5rem 4rem 5rem 8rem;
    line-height: 88px;
    background: #f3f7f3;
}

.indexFfooter-t {
    /* height: 88px; */
    /* line-height: 88px; */
    /* text-align: end; */
}

.indexFfooter-t a {
    font-size: 18px;
    color: var(--css-color);
    transition: all 0.3s;
}

.indexFfooter-t a:hover {
    color: var(--css-color);
}

.indexFfooter-t .list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 1rem 0 0;
}

.indexFfooter-t .list li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}


.indexFfooter-t .list img {
    height: 48px;
}

.indexFfooter-t .list .text {
    margin-left: 10px;
}

.indexFfooter-t .list h1 {
    font-size: 16px;
    color: #999999;
}

.indexFfooter-t .list p {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.75;
    color: #666;
}


.indexFfooter-b {
    display: inline-block;
    width: 100%;
}

.indexFfooter-b h1 {
    margin-bottom: 2rem;
    font-size: 18px;
    color: var(--css-color);
    /* padding-left: 10px; */
    padding-right: 18px;
    cursor: pointer;
    font-family: initial;
}

.indexFfooter-b a {
    float: left;
    margin-bottom: 20px;
    padding: 0 10px;
    font-size: 16px;
    color: #ababab;
    transition: all 0.3s;
}

.indexFfooter-b a:nth-child(2) {
    padding-left: 0;
}

.indexFfooter-b a:hover {
    color: var(--css-color);
}

/* xiazai */
.xiazai-box {
    background-color: #fff;
    padding: 35px;
    display: flex;
    flex-wrap: wrap;
}

.xiazai-list {
    width: 32.333%;
    padding: 10px;
    border: 1px solid #f5f5f5;
    margin: 0.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.xiazai-cont {
    display: flex;
}

.xiazai-cont .img-content {
    width: 100px;
}

.xiazai-txt {
    margin-left: 10px;
}

.xiazai-txt h2 {
    font-size: 16px;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xiazai-txt p {
    font-size: 12px;
    color: #848484;
    margin-top: 12px;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

a.xiazai-btn {
    display: block;
    background-color: var(--css-color);
    color: #fff;
    text-align: center;
    line-height: 3;
    font-size: 13px;
    margin-top: 10px;
    transition: all 0.3s;
}

a.xiazai-btn:hover {
    background-color: #ff4343;
}

/* news-list */
.news-list {
    transition: all 0.2s;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    position: relative;
}

div:nth-child(1)>.news-list {
    border-top: 0;
}

.news-list>a {
    display: flex;
    padding: 20px;
}

.news-list>a .img-content {}

.news-list>a .text {
    flex: 0 0 auto;
    width: 78%;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 40px;
}

.news-list>a .text h2 {
    line-height: 1.42;
    font-size: 18px;
    overflow: hidden;
    color: #464646;
    display: block;
    letter-spacing: .5px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.news-list>a .text span {
    color: #999;
    font-size: 14px;
    margin: 10px 0 15px;
}

.news-list>a .text p {
    font-size: 14px;
    line-height: 1.75;
    color: #999999;
    height: 48px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.news-list:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 10%);
    z-index: 1;
}