﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    word-break: break-word;
}

*:not(.fa) {
    font-family: Arial, Helvetica, sans-serif;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    vertical-align: top;
    outline-width: 0ch;
}

 :root {
    --main-color: #f18a3e;
    --main-color-white: #ffffff;
    --main-color-555: #555555;
    --main-color-333: #333333;
    --main-color-888: #888888;
    --main-color-666: #666666;
    --main-color-999: #999999;
    --main-transition: all ease 0.4s;
    --main-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media only screen and (min-width: 996px) {
    .pchead {
        height: 120px;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        background-color: var(--main-color-white);
        box-shadow: 1px 0 4px rgba(0, 0, 0, .15);
    }
    .pcheader {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        height: 120px;
        align-items: center;
        justify-content: space-between;
    }
    .pclogo img {
        height: 80px;
    }
    .pc_top {
        display: flex;
        align-items: center;
        margin-top: 15px;
        justify-content: flex-end;
    }
    .ptItem {
        display: flex;
        align-items: center;
        border-radius: 3px;
        border: 1px solid #d9d9d9;
        margin-left: 15px;
    }
    .ptItemLeft {
        width: 30px;
        height: 32px;
        text-align: center;
        line-height: 32px;
        color: var(--main-color);
        border-right: 1px solid #d9d9d9;
    }
    .ptItemRight {
        width: calc(100% - 30px);
        padding: 0 15px;
        color: #3c4451;
        font-size: 16px;
    }
    .pcnav {
        display: flex;
        align-items: center;
    }
    .pcnav>li>a {
        height: 65px;
        line-height: 65px;
        padding: 0 10px;
        color: #000;
        font-size: 16px;
        transition: var(--main-transition);
    }
    .pcnav>li {
        position: relative;
    }
    .pcdrop {
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        width: 240px;
        display: none;
        z-index: 99;
    }
    .pcdrop a {
        display: block;
        color: #8c8c8c;
        font-size: 16px;
        padding: 0 20px;
        height: 50px;
        background-color: var(--main-color-white);
        border-bottom: 1px solid #ececec;
        line-height: 50px;
        transition: var(--main-transition);
    }
    .pc_right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        position: relative;
    }
    .pcnav>li>a:hover {
        color: var(--main-color) !important;
    }
    .pcdrop a:hover {
        background-color: #3c4451;
        color: var(--main-color-white);
    }
    .pcnav>li:hover .pcdrop {
        display: block;
    }
    .pcnav>li:hover>a {
        color: var(--main-color);
    }
    .pc_bot {
        display: flex;
        align-items: center;
        position: relative;
    }
    .pc_bot i {
        color: var(--main-color-333);
        font-size: 16px;
        margin-left: 20px;
        cursor: pointer;
    }
    .pcsearch {
        width: 230px;
        height: 50px;
        position: absolute;
        right: -10px;
        top: 60px;
        background-color: #fff;
        box-shadow: var(--main-shadow);
        border-radius: 4px;
        display: none;
    }
    .p_sou {
        width: 100%;
        height: 100%;
        position: relative;
        padding: 7px;
    }
    .p_sou input {
        background-color: #f9f9f9;
        padding-left: 15px;
        width: 100%;
        border: 1px solid #efefef;
        height: 100%;
        outline: none;
    }
    .p_sou::after {
        background-color: #fff;
        border: 5px solid inherit;
        border-bottom: 0;
        border-right: 0;
        content: "";
        height: 8px;
        right: 17px;
        top: -4px;
        transform: rotate(45deg);
        width: 8px;
        z-index: 1;
        position: absolute;
    }
    .ml_mb_head {
        display: none;
    }
    .ml_mb_nav {
        display: none;
    }
    .ml_banner {
        width: 100%;
        margin-top: 120px !important;
    }
    .ml_banner img {
        width: 100%;
    }
    .bannerpos {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, .4);
    }
    .bannerCon {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    .bannerCon strong {
        display: block;
        color: var(--main-color-white);
        font-size: 52px;
    }
    .bannerCon p {
        margin: 30px 0 20px 0;
        font-size: 16px;
        font-weight: bold;
        max-width: 420px;
        line-height: 25px;
        color: var(--main-color-white);
    }
    .bannerCon a {
        display: block;
        background-color: var(--main-color);
        color: var(--main-color-white);
        width: 145px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        font-size: 14px;
        border-radius: 4px;
        font-weight: bold;
    }
    .bannerbtn {
        background-image: none !important;
        width: 40px !important;
        height: 40px !important;
        text-align: center !important;
        line-height: 40px !important;
        border-radius: 50% !important;
        background: rgba(0, 0, 0, .8) !important;
        color: var(--main-color-white) !important;
    }
    .bannerbtn i {
        font-size: 20px !important;
        font-weight: bold;
    }
    .con1 {
        padding: 60px 0;
    }
    .con1con {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .con1left {
        font-size: 19px;
        color: #0a0a0a;
        width: 75%;
        line-height: 30px;
    }
    .con1right a {
        display: block;
        color: var(--main-color-white);
        background-color: var(--main-color);
        border-radius: 5px;
        width: 187px;
        height: 53px;
        line-height: 53px;
        text-align: center;
    }
    .Title {
        position: relative;
        padding-left: 38px;
        margin-bottom: 45px;
    }
    .Title::after {
        content: "";
        left: 0;
        position: absolute;
        transform: skew(-25deg, 0);
        transform-origin: left bottom;
        width: 8px;
        background-color: #f18a3e;
        bottom: 5px;
        top: 4px;
    }
    .Title em {
        font-style: normal;
        font-size: 14px;
        color: #000;
    }
    .Title strong {
        display: block;
        color: #000;
        font-size: 20px;
    }
    .con2 {
        padding: 55px 0;
        background-color: #f8f9f9;
    }
    .con2con {
        max-width: 1200px;
        margin: 0 auto;
    }
    .con2con ul {
        display: flex;
        flex-wrap: wrap;
    }
    .con2con ul li {
        width: calc((100% - 60px) / 3);
        margin-right: 30px;
        margin-bottom: 30px;
        overflow: hidden;
        padding-bottom: 72px;
        position: relative;
        border: 1px solid #e7e7e7;
    }
    .con2con ul li img {
        width: 100%;
    }
    .con1pos {
        position: absolute;
        width: 100%;
        transition: var(--main-transition);
        height: 100%;
        left: 0;
        top: calc(100% - 72px);
        background-color: var(--main-color-white);
    }
    .con1pos p {
        height: 72px;
        font-size: 18px;
        border-top: 4px solid var(--main-color);
        padding: 0 30px;
        line-height: 72px;
        color: #3c4451;
        font-size: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .con2con ul li:hover .con1pos {
        top: 0;
    }
    .con1pos span {
        display: block;
        padding: 0 30px;
        font-size: 16px;
    }
    .con1pos a {
        display: block;
        padding: 0 30px;
        font-size: 14px;
        color: var(--main-color-555);
        margin-top: 20px;
    }
    .con2con ul li:nth-child(3n) {
        margin-right: 0;
    }
    .con3 {
        padding: 80px 0;
    }
    .con3con {
        max-width: 1200px;
        margin: 0 auto;
    }
    .con3Box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .con3Item {
        width: calc((100% - 140px) / 3);
        margin-right: 70px;
    }
    .con3Item:nth-child(3n) {
        margin-right: 0;
    }
    .con3Item img {
        width: 100%;
    }
    .con3Item p {
        font-size: 15px;
        color: #000;
        line-height: 25px;
    }
    .con4 {
        padding: 150px 0;
        background-image: url(../images/bg1.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }
    .con4con {
        max-width: 1200px;
        margin: 0 auto;
    }
    .con4con strong {
        display: block;
        color: var(--main-color-white);
        font-size: 40px;
        font-weight: normal;
        margin-bottom: 30px;
    }
    .con4con a {
        display: block;
        color: var(--main-color-white);
        font-size: 14px;
        text-align: center;
        border-radius: 4px;
        background-color: var(--main-color);
        width: 130px;
        height: 40px;
        line-height: 40px;
    }
    .foot {
        padding: 60px 0;
        background-color: #f8f9f9;
    }
    .footer {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footleft {
        width: 48%;
    }
    .footright {
        width: 48%;
    }
    .footleft a img {
        height: 80px;
        margin-bottom: 30px;
    }
    .footleft ul li {
        display: flex;
        padding: 10px 0;
    }
    .footleft ul li i {
        font-size: 14px !important;
        width: 20px;
        text-align: center;
    }
    .footleft ul li p {
        width: calc(100% - 20px);
        margin-left: 20px;
        font-size: 14px;
        color: #3c4451;
        padding-left: 10px;
        border-left: 1px solid var(--main-color-333);
    }
    .f_title strong {
        display: block;
        font-size: 18px;
        color: #262626;
        position: relative;
        margin-bottom: 35px;
        font-weight: normal;
    }
    .f_title strong::after {
        position: absolute;
        width: 75px;
        height: 3px;
        background-color: var(--main-color);
        content: '';
        left: 0;
        bottom: -10px;
    }
    .fritem ul {
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
    }
    .fritem ul li {
        width: 48%;
        margin-bottom: 20px;
    }
    .fritem ul li a {
        font-size: 14px;
        color: #81929e;
    }
    .fritem ul li a:hover {
        color: var(--main-color-333);
    }
    .fritem {
        margin-bottom: 40px;
    }
    .fnItem a {
        font-size: 15px;
        color: var(--main-color-333);
        display: block;
    }
    .fnItem span {
        display: block;
        margin-top: 10px;
        font-size: 14px;
        color: var(--main-color-555);
    }
    .fnItem {
        margin-bottom: 30px;
    }
    .fnItem span i {
        margin-right: 10px;
    }
    .copy {
        padding: 25px 0;
        background-color: #f8f9f9;
        border-top: 1px solid #2e2e2e;
    }
    .copycon {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        color: var(--main-color-333);
        font-size: 15px;
    }
    .bread {
        width: 100%;
        margin-top: 120px;
        padding: 20px 0;
        border-bottom: 1px solid #e7e7e7;
    }
    .breadcon {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
    }
    .breadcon a {
        color: var(--main-color-333);
        font-size: 14px;
    }
    .breadcon i {
        margin: 0 10px;
        color: var(--main-color-666);
        display: block;
    }
    .breadcon span {
        font-size: 14px;
        color: var(--main-color-999);
    }
    .ab1 {
        padding: 60px 0;
    }
    .ab1con {
        max-width: 1200px;
        align-items: center;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .ab1left {
        width: 48%;
    }
    .ab1right {
        width: 48%;
    }
    .ab1right img {
        width: 100%;
    }
    .ab1left p {
        font-size: 15px;
        color: var(--main-color-333);
        line-height: 25px;
    }
    .ab2 {
        background-color: #f8f9f9;
    }
    .ab3 {
        padding: 80px 0;
    }
    .ab3con {
        max-width: 1200px;
        margin: 0 auto;
    }
    .TimeItem {
        display: flex;
        margin-bottom: 40px;
    }
    .TimeItem span {
        display: block;
        margin-right: 35px;
        font-size: 24px;
        color: #3c4451;
    }
    .TiRight {
        flex: 1;
        padding-left: 45px;
        position: relative;
    }
    .TiRight strong {
        font-weight: normal;
        font-size: 18px;
        color: #000;
        display: block;
        margin-bottom: 20px;
    }
    .TiRight p {
        font-size: 15px;
        color: #000;
    }
    .TiRight::before {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--main-color);
        position: absolute;
        content: '';
        top: 5px;
        left: -8px;
    }
    .TimeLine {
        position: relative;
    }
    .TimeLine::after {
        position: absolute;
        width: 2px;
        height: 100%;
        content: '';
        left: 83px;
        z-index: -1;
        top: 0;
        background-color: #e4e4e4;
    }
    .ab4 {
        padding: 80px 0;
    }
    .ab4con {
        max-width: 1200px;
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        align-items: center;
        justify-content: space-between;
    }
    .ab4left {
        width: 48%;
    }
    .ab4left img {
        width: 100%;
        border-radius: 5px;
    }
    .ab4right {
        width: 48%;
    }
    .ab4right p {
        font-size: 15px;
        line-height: 25px;
        color: #000;
    }
    .ab5 {
        background-color: #f8f9f9;
    }
    .ab5top {
        max-width: 1200px;
        margin: 0 auto;
        margin-bottom: 45px;
    }
    .ab5top p {
        font-size: 15px;
        color: #000;
        line-height: 25px;
    }
    /*  */
    .ab6 {
        padding: 55px 0;
        background-color: #f8f9f9;
    }
    .ab6con {
        max-width: 1200px;
        margin: 0 auto;
    }
    .ab6con ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .ab6con ul li {
        width: 48%;
        margin-bottom: 30px;
        overflow: hidden;
        padding-bottom: 72px;
        position: relative;
        border: 1px solid #e7e7e7;
    }
    .ab6con ul li img {
        width: 100%;
    }
    .ab6pos {
        position: absolute;
        width: 100%;
        transition: var(--main-transition);
        height: 100%;
        left: 0;
        top: calc(100% - 72px);
        background-color: var(--main-color-white);
    }
    .ab6pos p {
        height: 72px;
        font-size: 18px;
        border-top: 4px solid var(--main-color);
        padding: 0 30px;
        line-height: 72px;
        color: #3c4451;
        font-size: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .ab6con ul li:hover .ab6pos {
        top: 0;
    }
    .ab6pos span {
        display: block;
        padding: 0 30px;
        font-size: 15px;
    }
    .ab6pos a {
        display: block;
        padding: 0 30px;
        font-size: 14px;
        color: var(--main-color-555);
        margin-top: 20px;
    }
    /*  */
    .honor {
        padding: 30px 0;
    }
    .honorcon {
        max-width: 1200px;
        margin: 0 auto;
    }
    .honor ul {
        display: flex;
        flex-wrap: wrap;
    }
    .honor ul li {
        width: calc((100% - 105px) / 4);
        margin-bottom: 35px;
        margin-right: 35px;
    }
    .honor ul li:nth-child(4n) {
        margin-right: 0;
    }
    .honor ul li img {
        width: 100%;
        margin: 0 auto;
        display: block;
        height: 380px;
        object-fit: cover;
    }
    .honor ul li p {
        text-align: center;
        font-size: 14px;
        margin-top: 10px;
    }
    .sus1 {
        padding: 40px 0;
    }
    .sus1con {
        max-width: 1200px;
        margin: 0 auto;
    }
    .sus1con p {
        font-size: 16px;
        color: #000;
        line-height: 25px;
    }
    .newBox {
        width: 100%;
        padding: 80px 0;
    }
    .newBoxcon {
        max-width: 1200px;
        margin: 0 auto;
    }
    .newItem {
        border: 1px solid #e5e5e5;
        margin-bottom: 55px;
    }
    .newTitle {
        padding: 15px;
        border-bottom: 1px solid #e5e5e5;
    }
    .newTitle a {
        font-size: 22px;
        color: #000;
    }
    .newDate {
        padding: 10px 15px;
    }
    .newDate i {
        color: var(--main-color-555);
        margin-right: 10px;
        font-size: 15px;
    }
    .newDate span {
        font-size: 15px;
        color: var(--main-color-555);
    }
    .newContent {
        padding: 15px;
    }
    .newContent img {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
    .newContent p {
        margin: 15px 0;
        font-size: 15px;
        line-height: 25px;
        color: #898989;
    }
    .inside {
        width: 100%;
        padding: 80px 0;
    }
    .insidecon {
        max-width: 1200px;
        margin: 0 auto;
    }
    .insidecon p {
        font-size: 14px;
        color: var(--main-color-333);
    }
    .contact {
        padding: 60px 0;
    }
    .contactcon {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .contactleft {
        width: 67%;
    }
    .contactright {
        width: 30%;
    }
    .forms a {
        display: block;
        width: 145px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        background-color: var(--main-color);
        color: var(--main-color-white);
    }
    .formItem {
        margin-bottom: 20px;
    }
    .formItem p {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 3px;
        color: #000;
    }
    .formItem input {
        display: block;
        padding-left: 15px;
        height: 55px;
        outline: none;
        width: 100%;
        border: 1px solid #e5e5e5;
    }
    .formItem textarea {
        display: block;
        padding-left: 15px;
        padding-top: 15px;
        height: 100px;
        outline: none;
        width: 100%;
        border: 1px solid #e5e5e5;
    }
    .contactright table {
        border-collapse: collapse;
        margin-bottom: 30px;
        border: 1px solid #e5e5e5;
    }
    .contactright table td {
        padding: 15px 22px;
        font-size: 15px;
        color: #000;
    }
    .contactright table td i {
        font-size: 25px !important;
        text-align: center;
        width: 25px !important;
        color: var(--main-color-555);
    }
    .prodetail {
        padding: 80px 0;
    }
    .detailcon {
        max-width: 1200px;
        margin: 0 auto;
    }
    .detail_info {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .infoLeft {
        width: 48%;
    }
    .infoRight {
        width: 48%;
    }
    .lar_img img {
        width: 100%;
    }
    .thumb {
        margin-top: 20px;
    }
    .thumb ul {
        display: flex;
    }
    .thumb ul li {
        /* flex: 1; */
        margin: 0 5px;
        border: 2px solid transparent;
        transition: var(--main-transition);
        cursor: pointer;
        width: 25%;
    }
    .lar_img {
        width: 100%;
    }
    .thumb ul li img {
        width: 100%;
    }
    .thumbavtive {
        border-color: var(--main-color) !important;
    }
    .infoRight p {
        font-size: 15px;
        color: #000;
        line-height: 25px;
    }
    .infoRight a {
        display: block;
        color: var(--main-color-white);
        margin-top: 20px;
        background-color: var(--main-color);
        display: inline-block;
        padding: 7px 10px;
        border-radius: 5px;
        font-size: 14px;
    }
    .detail2 {
        background-color: #f8f9f9;
        margin: 60px auto;
    }
    .acco {
        padding: 50px 0;
    }
    .accocon {
        max-width: 1200px;
        margin: 0 auto;
    }
}

.accordion-container {
    width: 100%;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-item {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 24px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #f8fafc;
}

.accordion-title {
    font-size: 18px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.4;
}

.accordion-icon {
    transition: transform 0.3s;
    color: #64748b;
    font-size: 20px;
    flex-shrink: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
}

.accordion-content p {
   
    line-height: 1.7;
    color: #475569;
    /* border-top: 1px solid #e2e8f0; */
    font-size: 16px;
}


/* 展开状态 */

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

@media only screen and (max-width: 996px) {
    .acco {
        padding: 30px 15px;
    }
    .accocon {
        margin: 0 auto;
    }
    .accordion-container {
        border-radius: 12px;
    }
    .accordion-header {
        padding: 20px 16px;
    }
    .accordion-title {
        font-size: 16px;
    }
    .accordion-icon {
        font-size: 18px;
    }
    .accordion-content p {
        padding: 12px 0 20px;
        font-size: 14px;
    }
    .detail2 {
        background-color: #f8f9f9;
        padding: 30px 15px;
    }
    .prodetail {
        padding: 30px 15px;
    }
    .detailcon {
        margin: 0 auto;
    }
    .detail_info {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .infoLeft {
        width: 100%;
        margin-bottom: 20px;
    }
    .infoRight {
        width: 100%;
    }
    .lar_img img {
        width: 100%;
    }
    .thumb {
        margin-top: 20px;
    }
    .thumb ul {
        display: flex;
    }
    .thumb ul li {
        flex: 1;
        margin: 0 5px;
        border: 2px solid transparent;
        transition: var(--main-transition);
        cursor: pointer;
    }
    .lar_img {
        width: 100%;
    }
    .thumb ul li img {
        width: 100%;
    }
    .thumbavtive {
        border-color: var(--main-color) !important;
    }
    .infoRight p {
        font-size: 15px;
        color: #000;
        line-height: 25px;
    }
    .infoRight a {
        display: block;
        color: var(--main-color-white);
        margin-top: 20px;
        background-color: var(--main-color);
        display: inline-block;
        padding: 7px 10px;
        border-radius: 5px;
        font-size: 14px;
    }
    .contact {
        padding: 30px 15px;
    }
    .contactcon {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .contactleft {
        width: 100%;
        margin-bottom: 20px;
    }
    .contactright {
        width: 100%;
    }
    .forms a {
        display: block;
        width: 145px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        background-color: var(--main-color);
        color: var(--main-color-white);
    }
    .formItem {
        margin-bottom: 20px;
    }
    .formItem p {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 3px;
        color: #000;
    }
    .formItem input {
        display: block;
        padding-left: 15px;
        height: 55px;
        outline: none;
        width: 100%;
        border: 1px solid #e5e5e5;
    }
    .formItem textarea {
        display: block;
        padding-left: 15px;
        padding-top: 15px;
        height: 100px;
        outline: none;
        width: 100%;
        border: 1px solid #e5e5e5;
    }
    .contactright table {
        border-collapse: collapse;
        margin-bottom: 30px;
        border: 1px solid #e5e5e5;
    }
    .contactright table td {
        padding: 15px 22px;
        font-size: 15px;
        color: #000;
    }
    .contactright table td i {
        font-size: 25px !important;
        text-align: center;
        width: 25px !important;
        color: var(--main-color-555);
    }
    .inside {
        width: 100%;
        padding: 30px 15px;
    }
    .insidecon {
        margin: 0 auto;
    }
    .insidecon p {
        font-size: 14px;
        color: var(--main-color-333);
    }
    .newBox {
        width: 100%;
        padding: 30px 15px;
    }
    .newBoxcon {
        margin: 0 auto;
    }
    .newItem {
        border: 1px solid #e5e5e5;
        margin-bottom: 35px;
    }
    .newTitle {
        padding: 10px;
        border-bottom: 1px solid #e5e5e5;
    }
    .newTitle a {
        font-size: 16px;
        color: #000;
    }
    .newDate {
        padding: 6px 10px;
    }
    .newDate i {
        color: var(--main-color-555);
        margin-right: 10px;
        font-size: 13px;
    }
    .newDate span {
        font-size: 13px;
        color: var(--main-color-555);
    }
    .newContent {
        padding: 10px;
    }
    .newContent img {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
    .newContent p {
        margin: 10px 0;
        font-size: 14px;
        line-height: 25px;
        color: #898989;
    }
    .sus1 {
        padding: 30px 15px;
    }
    .sus1con {
        margin: 0 auto;
    }
    .sus1con p {
        font-size: 14px;
        color: #000;
        line-height: 25px;
    }
    .honor {
        padding: 30px 15px;
    }
    .honorcon {
        margin: 0 auto;
    }
    .honor ul {
        display: flex;
        flex-wrap: wrap;
    }
    .honor ul li {
        width: 100%;
        margin-bottom: 25px;
    }
    .honor ul li img {
        width: 70%;
        margin: 0 auto;
        display: block;
    }
    .honor ul li p {
        text-align: center;
        font-size: 14px;
        margin-top: 10px;
    }
    /*  */
    .ab6 {
        padding: 30px 15px;
        background-color: #f8f9f9;
    }
    .ab6con {
        margin: 0 auto;
    }
    .ab6con ul {
        display: flex;
        flex-wrap: wrap;
    }
    .ab6con ul li {
        width: 100%;
        margin-bottom: 30px;
        border: 1px solid #e7e7e7;
    }
    .ab6con ul li img {
        width: 100%;
    }
    .ab6pos {
        width: 100%;
        transition: var(--main-transition);
        background-color: var(--main-color-white);
        padding: 20px;
        border-top: 4px solid var(--main-color);
    }
    .ab6pos p {
        font-size: 16px;
        color: #3c4451;
        font-size: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .ab6pos span {
        display: block;
        font-size: 15px;
        margin-top: 20px;
        line-height: 25px;
    }
    .ab6pos a {
        display: block;
        font-size: 14px;
        color: var(--main-color-555);
        margin-top: 20px;
    }
    /*  */
    .ab5 {
        background-color: #f8f9f9;
    }
    .ab5top {
        max-width: 1200px;
        margin: 0 auto;
        margin-bottom: 25px;
    }
    .ab5top p {
        font-size: 15px;
        color: #000;
        line-height: 25px;
    }
    .ab4 {
        padding: 30px 15px;
    }
    .ab4con {
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        align-items: center;
        justify-content: space-between;
    }
    .ab4left {
        width: 100%;
        margin-bottom: 20px;
    }
    .ab4left img {
        width: 100%;
        border-radius: 5px;
    }
    .ab4right {
        width: 100%;
    }
    .ab4right p {
        font-size: 14px;
        line-height: 25px;
        color: #000;
    }
    .ab3 {
        padding: 30px 15px;
    }
    .ab3con {
        margin: 0 auto;
    }
    .TimeItem {
        display: flex;
        margin-bottom: 40px;
    }
    .TimeItem span {
        display: block;
        margin-right: 20px;
        font-size: 16px;
        color: #3c4451;
    }
    .TiRight {
        flex: 1;
        padding-left: 25px;
        position: relative;
    }
    .TiRight strong {
        font-weight: normal;
        font-size: 16px;
        color: #000;
        display: block;
        margin-bottom: 15px;
    }
    .TiRight p {
        font-size: 14px;
        color: #000;
    }
    .TiRight::before {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--main-color);
        position: absolute;
        content: '';
        top: 5px;
        left: 0px;
    }
    .TimeLine {
        position: relative;
    }
    .TimeLine::after {
        position: absolute;
        width: 2px;
        height: 100%;
        content: '';
        left: 58px;
        z-index: -1;
        top: 0;
        background-color: #e4e4e4;
    }
    .ab1 {
        padding: 30px 15px;
    }
    .ab1con {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        justify-content: space-between;
    }
    .ab1left {
        width: 100%;
        margin-top: 20px;
    }
    .ab1right {
        width: 100%;
    }
    .ab1right img {
        width: 100%;
    }
    .ab1left p {
        font-size: 15px;
        color: var(--main-color-333);
        line-height: 25px;
    }
    .bread {
        width: 100%;
        margin-top: 60px;
        padding: 15px;
        border-bottom: 1px solid #e7e7e7;
    }
    .breadcon {
        display: flex;
        align-items: center;
    }
    .breadcon a {
        color: var(--main-color-333);
        font-size: 14px;
    }
    .breadcon i {
        margin: 0 10px;
        color: var(--main-color-666);
        display: block;
    }
    .breadcon span {
        font-size: 14px;
        color: var(--main-color-999);
    }
    .foot {
        padding: 30px 15px;
        background-color: #f8f9f9;
    }
    .footer {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footleft {
        width: 100%;
    }
    .footright {
        margin-top: 20px;
        width: 100%;
    }
    .footleft a img {
        height: 40px;
        margin-bottom: 30px;
    }
    .footleft ul li {
        display: flex;
        padding: 5px 0;
    }
    .footleft ul li i {
        font-size: 14px !important;
        width: 20px;
        text-align: center;
    }
    .footleft ul li p {
        width: calc(100% - 20px);
        margin-left: 20px;
        font-size: 14px;
        color: #3c4451;
        padding-left: 10px;
        border-left: 1px solid var(--main-color-333);
    }
    .f_title strong {
        display: block;
        font-size: 18px;
        color: #262626;
        position: relative;
        margin-bottom: 35px;
        font-weight: normal;
    }
    .f_title strong::after {
        position: absolute;
        width: 75px;
        height: 3px;
        background-color: var(--main-color);
        content: '';
        left: 0;
        bottom: -10px;
    }
    .fritem ul {
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
    }
    .fritem ul li {
        width: 48%;
        margin-bottom: 20px;
    }
    .fritem ul li a {
        font-size: 14px;
        color: #81929e;
    }
    .fritem ul li a:hover {
        color: var(--main-color-333);
    }
    .fritem {
        margin-bottom: 40px;
    }
    .fnItem a {
        font-size: 15px;
        color: var(--main-color-333);
        display: block;
    }
    .fnItem span {
        display: block;
        margin-top: 10px;
        font-size: 14px;
        color: var(--main-color-555);
    }
    .fnItem {
        margin-bottom: 30px;
    }
    .fnItem span i {
        margin-right: 10px;
    }
    .copy {
        padding: 15px;
        background-color: #f8f9f9;
        border-top: 1px solid #2e2e2e;
    }
    .copycon {
        text-align: center;
        color: var(--main-color-333);
        font-size: 12px;
    }
    .con4 {
        padding: 50px 15px;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .con4con strong {
        display: block;
        color: var(--main-color-white);
        font-size: 25px;
        font-weight: normal;
        margin-bottom: 30px;
    }
    .con4con a {
        display: block;
        color: var(--main-color-white);
        font-size: 14px;
        text-align: center;
        border-radius: 4px;
        background-color: var(--main-color);
        width: 120px;
        height: 35px;
        line-height: 35px;
    }
    .con3 {
        padding: 30px 15px;
    }
    .con3Box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .con3Item {
        width: 100%;
        margin-bottom: 20px;
    }
    .con3Item img {
        width: 100%;
    }
    .con3Item p {
        font-size: 14px;
        color: #000;
        line-height: 25px;
    }
    .Title {
        position: relative;
        padding-left: 25px;
        margin-bottom: 25px;
    }
    .Title::after {
        content: "";
        left: 0;
        position: absolute;
        transform: skew(-25deg, 0);
        transform-origin: left bottom;
        width: 5px;
        background-color: #f18a3e;
        bottom: 5px;
        top: 4px;
        height: 25px;
    }
    .Title em {
        font-style: normal;
        font-size: 14px;
        color: #000;
    }
    .Title strong {
        display: block;
        color: #000;
        font-size: 16px;
    }
    .con2 {
        padding: 30px 15px;
        background-color: #f8f9f9;
    }
    .con2con {
        margin: 0 auto;
    }
    .con2con ul {
        display: flex;
        flex-wrap: wrap;
    }
    .con2con ul li {
        width: 100%;
        margin-bottom: 30px;
        border: 1px solid #e7e7e7;
    }
    .con2con ul li img {
        width: 100%;
    }
    .con1pos {
        width: 100%;
        transition: var(--main-transition);
        background-color: var(--main-color-white);
        padding: 20px;
        border-top: 4px solid var(--main-color);
    }
    .con1pos p {
        font-size: 16px;
        color: #3c4451;
        font-size: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .con1pos span {
        display: block;
        font-size: 15px;
        margin-top: 20px;
        line-height: 25px;
    }
    .con1pos a {
        display: block;
        font-size: 14px;
        color: var(--main-color-555);
        margin-top: 20px;
    }
    .con1 {
        padding: 30px 15px;
    }
    .con1con {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .con1left {
        font-size: 16px;
        color: #0a0a0a;
        width: 100%;
        line-height: 25px;
    }
    .con1right a {
        display: block;
        color: var(--main-color-white);
        background-color: var(--main-color);
        border-radius: 5px;
        width: 100%;
        height: 40px;
        line-height: 40px;
        text-align: center;
        font-size: 14px;
        margin-top: 20px;
    }
    .con1right {
        width: 100%;
    }
    .ml_banner {
        width: 100%;
        margin-top: 60px !important;
    }
    .ml_banner img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .bannerpos {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, .4);
    }
    .bannerCon {
        width: 75%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        padding: 25px 20px;
    }
    .bannerCon strong {
        display: block;
        color: var(--main-color-white);
        font-size: 30px;
    }
    .bannerCon p {
        margin: 20px 0 15px 0;
        font-size: 16px;
        font-weight: bold;
        line-height: 25px;
        color: var(--main-color-white);
    }
    .bannerCon a {
        display: block;
        background-color: var(--main-color);
        color: var(--main-color-white);
        width: 130px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        font-size: 12px;
        border-radius: 4px;
        font-weight: bold;
    }
    .bannerbtn {
        background-image: none !important;
        width: 40px !important;
        height: 40px !important;
        text-align: center !important;
        line-height: 40px !important;
        border-radius: 50% !important;
        background: rgba(0, 0, 0, .8) !important;
        color: var(--main-color-white) !important;
    }
    .bannerbtn i {
        font-size: 20px !important;
        font-weight: bold;
    }
    .ptItem {
        width: 90%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        border-radius: 3px;
        border: 1px solid #d9d9d9;
        margin-top: 15px;
    }
    .ptItemLeft {
        width: 30px;
        height: 32px;
        text-align: center;
        line-height: 32px;
        color: var(--main-color);
        border-right: 1px solid #d9d9d9;
    }
    .ptItemRight {
        width: calc(100% - 30px);
        padding: 0 15px;
        color: #3c4451;
        font-size: 14px;
    }
    .msearch {
        padding: 7px;
        width: 90%;
        margin: 0 auto;
        background-color: #efefef;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .msearch input {
        width: 90%;
        height: 35px;
        padding-left: 15px;
        outline: none;
        border: 1px solid #efefef;
    }
    .msearch a {
        width: 10%;
        height: 35px;
        line-height: 35px;
        text-align: center;
        line-height: 35px;
        color: var(--main-color-white);
        background-color: var(--main-color);
        display: block;
    }
    .msearch a i {
        font-size: 14px !important;
    }
    .pchead {
        display: none;
    }
    .ml_mb_arrowChange {
        transform: rotate(90deg);
    }
    .ml_mbnav_3 {
        display: none;
    }
    .ml_mbnav_3_item {
        display: flex;
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
        background-color: #efefef;
    }
    .ml_mbnav_3_item>a {
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        color: var(--main-color-333);
        font-size: 14px;
        padding-left: 35px;
    }
    .ml_mb_nav i {
        font-size: 22px !important;
        transition: var(--main-transition);
    }
    .ml_mbnav_2_item {
        display: flex;
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
        background-color: #e3e3e3;
    }
    .ml_mbnav_2_item>a {
        display: block;
        height: 40px;
        width: 100%;
        line-height: 40px;
        color: var(--main-color-333);
        font-size: 14px;
        padding-left: 20px;
    }
    .ml_mbnav_2 {
        display: none;
    }
    .ml_mbnav_1_item>a {
        display: block;
        height: 40px;
        line-height: 40px;
        color: var(--main-color-333);
        font-size: 14px;
        width: 100%;
    }
    .ml_mbnav_1_item {
        display: flex;
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
    }
    .ml_mb_nav {
        width: 100%;
        height: calc(100% - 60px);
        position: fixed;
        top: 60px;
        right: -100%;
        background-color: var(--main-color-white);
        z-index: 100;
        border-top: 1px solid #ccc;
        overflow: scroll;
        padding: 20px 0;
        transition: var(--main-transition);
    }
    .mb_navShow {
        right: 0 !important;
    }
    .hb_fadeout {
        opacity: 0 !important;
    }
    .change2 {
        transform: translateY(-10px) rotate(-45deg);
    }
    .change1 {
        transform: translateY(10px) rotate(45deg);
    }
    .hb span {
        display: block;
        width: 30px;
        height: 1px;
        background-color: var(--main-color-333);
        transition: var(--main-transition);
    }
    .hb {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        height: 20px;
        flex-direction: column;
    }
    .ml_mb_logo img {
        height: 50px;
    }
    .ml_mb_head {
        display: flex;
        height: 60px;
        padding: 0 20px;
        background-color: var(--main-color-white);
        position: fixed;
        top: 0;
        left: 0;
        align-items: center;
        justify-content: space-between;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        width: 100%;
        z-index: 99;
    }
    .ml_pcheader {
        display: none;
    }
}