* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

* :before,
* :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    /* font-size: 100px; */
    min-height: 100vh;
    width: 100%;
}

/* ---------------------------------------------------------------导航 */
@font-face {
    font-family: 'AlimamaShuHeiTi-Bold';
    font-family: 'youshebiaotihei';
    src: url('../UploadFiles/font/AlimamaShuHeiTi-Bold.ttf') format('woff2'), url('../UploadFiles/font/AlimamaShuHeiTi-Bold.ttf') format('woff');
    src: url('../UploadFiles/font/youshebiaotihei.ttf') format('woff2'), url('../UploadFiles/font/youshebiaotihei.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}


.w1200 {
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 50px
}

.header_box header {
    height: 105px;
    position: fixed;
    left: 0;
    right: 0;
    transition: .5s;
    background-color: #ffffff;
}

@media (max-width:1024px) {
    .header_box header {
        height: auto;
        position: fixed;
        left: 0;
        right: 0;
        transition: .5s;
        background-color: #fff;
    }
}

.header_box header:hover {
    transition: all 0.5s ease;
    background-color: #ffffff;
    top: 0;
}

.header_box header:hover .logo a .ll .img img:nth-child(1) {
    opacity: 0;
}

.header_box header:hover .logo a .ll .img img:nth-child(2) {
    opacity: 1;
}

.header_box header .w1200 {
    display: flex;
    justify-content: space-between;
    height: 100%;
    max-width: 1700px;
    padding: 0 15px;
}

@media (max-width:1024px) {
    .header_box header .w1200 {
        display: flex;
        justify-content: space-between;
        height: 100%;
        max-width: 1630px;
        padding: 0 15px;
        flex-wrap: wrap;
    }
}

.header_box header .logo {
    display: flex;
    align-items: center;
}

.header_box header .logo a {
    display: flex;
    align-items: center;
}

.header_box header .logo a .ll {
    overflow: hidden;
}

.header_box header .logo a .ll .img {
    height: 5.375rem;
    animation: mymove 3s infinite;
    -webkit-animation: mymove 3s infinite;
    image-rendering: auto;
    position: relative;
}

.header_box header .logo a .ll .img img:nth-child(1) {
    height: 100%;
    outline: 1px solid transparent;
    opacity: 1;
}

.header_box header .logo a .ll .img img:nth-child(2) {
    height: 100%;
    opacity: 0;
    outline: 1px solid transparent;
    position: absolute;
    content: "";
    top: 0;
    left: 0px;
}

@media (max-width:1024px) {
    .header_box header .logo a .ll .img img:nth-child(1) {
        height: 100%;
        outline: 1px solid transparent;
        opacity: 0;

    }

    .header_box header .logo a .ll .img img:nth-child(2) {
        height: 100%;
        opacity: 1;
        outline: 1px solid transparent;
        position: absolute;
        content: "";
        top: 0;
        left: 1px;

    }
}

.header_box header .right {
    display: flex;
    align-items: center
}

.header_box header .right1 {
    display: none;

}

@media (max-width:1024px) {
    .header_box header .right {
        display: none;
    }

    .header_box header .right1 {
        align-items: center;
        display: block;

    }
}

#nav {
    transition: .5s;
    display: inline-block;
    vertical-align: top;
    float: left;
}

#nav ul {
    font-size: 0;

}

#nav ul li {
    display: inline-block;
    position: relative;
    z-index: 0;
    text-align: center;
    margin-right: 3rem;
}

@media (max-width:1530px) {
    #nav ul li {
        display: inline-block;
        position: relative;
        z-index: 0;
        text-align: center;
        margin-right: 1rem;
    }
}
@media (max-width:1440px) {
    #nav ul li {
        display: inline-block;
        position: relative;
        z-index: 0;
        text-align: center;
        margin-right: 1.5rem;
    }
}
@media (max-width:1024px) {
    #nav ul {
        font-size: 0;
        padding-left: 40px;
    }

    #nav ul li {
        display: inline-block;
        position: relative;
        z-index: 0;
        text-align: center;
        margin-right: 3.5rem;
    }
}


#nav ul li:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 0;
    height: 2px;
    bottom: 0;
    transition: .6s;
}

#nav ul li.on:before,
#nav ul li:hover:before {
    left: 0;
    background: #007ddd;
    width: 100%;
}

@media (max-width:1024px) {

    #nav ul li.on:before,
    #nav ul li:hover:before {
        left: 0;
        background: #007ddd;
        width: 100%;
    }
}

#nav ul li a {
    display: flex;
    padding: 0;
    height: 60px;
    align-items: center;
}

#nav ul li h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    position: relative;
    transition: .36s;
    display: flex;
    align-items: center;
    height: 55px;
    text-align: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    #nav ul li h3 {
        font-size: 20px;
        color: #333;
        position: relative;
        transition: .36s;
        display: flex;
        align-items: center;
        height: 55px;
        text-align: center;
        justify-content: center;
    }
}

.header_box header:hover #nav ul li h3 {
    color: #333;
    transition: .36s;
}

.header_box header:hover #nav ul li.on:before,
#nav ul li:hover:before {
    background: #007ddd;
}

#nav ul li h3 img {
    margin: 0 0 0 .625rem
}

#nav ul li h3 img.img2 {
    display: none
}

#nav ul li a i {
    display: inline-block;
    width: 9px;
    height: 6px;
    background-size: contain;
    vertical-align: middle;
    margin-left: 8px;
}

#nav ul li .sub {
    position: absolute;
    top: 100%;
    background: #fff;
    
    width: auto;
    left: 50%;
    z-index: 10000;
    transform: scaleY(0) translateX(-50%);
    visibility: hidden;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    transition: .5s;
    transform-origin: top;
}

#nav ul li .sub .box {
    padding: 0;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

#nav ul li .sub a {
    padding: 10px 45px;
    line-height: 24px;
    transition: .6s;
    font-size: 15px;
    color: #666666;
    white-space: nowrap;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: center;
}

#nav ul li .sub a:hover {
    color: #fff;
    background: #007ddd;
}

#nav ul li:hover .sub {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateX(-50%);
}

#nav>ul>li.on h3,
#nav ul li:hover h3,
#header.xg #nav ul li.on a h3,
#header.xg #nav ul li:hover a h3 {
    width: 100%;
}

#nav>ul>li.on h3 img.img1,
#nav>ul>li:hover h3 img.img1 {
    display: none;
}

#nav>ul>li.on h3 img.img2,
#nav>ul>li:hover h3 img.img2 {
    display: inline-block;
}


.header_box header .tel {
    line-height: 90px;
    white-space: nowrap;
}

.header_box header .tel .tel_box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_box header .tel img {
    margin: 0;
}

.header_box header form {
    display: inline-block;
    width: 16.25rem;
    border: #d2d2d2 1px solid;
    overflow: hidden;
    background: #fff;
    border-radius: 21px;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px;
    margin-left: 1.75rem;
    padding: 0 .375rem 0 0;
}

.header_box header form input {
    width: calc(100% - 3rem);
    float: left;
    height: 42px;
    background: #fff;
    font-size: .875rem;
    color: #787b7d;
    padding-left: 1.25rem;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.header_box header .n_button {
    width: 3rem;
    height: 42px;
    font-size: 1.125rem;
    cursor: pointer;
    font-weight: bold;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_box header .n_button svg {
    width: 1rem;
    height: 1rem;
}

.header_box header.xg {
    background: rgba(255, 255, 255);
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
    top: 0;
}

.header_box header.xg .logo a .ll .img img:nth-child(1) {
    opacity: 0;
}

.header_box header.xg .logo a .ll .img img:nth-child(2) {
    opacity: 1;
}

.header_box header.xg #nav ul li h3 {
    color: #333;
}

.header_box header.xg #nav ul li.on:before {
    background: #007ddd;
}

.header_box header.xg #nav ul li:hover:before {
    background: #007ddd;
}

.header-right .bubbles-bg {
    opacity: 0;
    visibility: hidden;
    transition: all .5s .8s;
}

.header-right.is-open .bubbles-bg {
    visibility: visible;
    opacity: 1;
}

.header-right.is-open .search-btn .con-box {
    display: none;
}

.header-right.is-open .close-btn {
    display: block;
}

.header-right.is-open .item .search-bg {
    transform: scale(1);
}


.header_box {
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    top: 0;
    z-index: 1000;
}

/*手机导航开始*/
#m_header {
    display: none;
    height: 4.5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: 0s 1.5s;
    background: rgba(0, 0, 0, .8);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

#m_header .w1200 {
    position: relative;
    height: 100%;
}

.m_user {
    height: 4.5rem;
    line-height: 4.5rem;
    margin-right: 4rem;
    color: #999;
}

.m_user a {
    display: inline-block;
    margin: 0 .625rem;
    color: #666;
}

.m_user a svg {
    width: 16px;
}

.m_user a:hover {
    color: #007ddd;
}

.m_user a:hover svg path {
    fill: #007ddd;
}

#m_logo {
    transition: 0s 1.5s;
    height: 100%;
    visibility: visible;
    float: left;
}

#m_logo img {
    display: block;
    max-height: 3.5rem;
}

#m_logo .box_table {
    width: auto
}

/*导航按钮开始*/
#nav_btn_box {
    z-index: 999999999;
    margin-left: 20px;
    position: fixed;
    height: 4.5rem;
    right: 0;
    top: 0;
    display: none;
}

#nav_btn_box .w1200 {
    height: 100%
}

#nav_btn_box .box_table {
    width: auto
}

#nav_btn_box.on {
    background: none;
}

#nav_btn .point.on .navbtn::after,
#nav_btn .point.on .navbtn::before {
    background: #fff;
}

#nav_btn {
    cursor: pointer;
    text-align: center;
    z-index: 99999;
    padding-bottom: 4px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    outline: none;
    box-shadow: none;
}

#nav_btn .point {
    display: inline-block;
    width: 1.375rem;
    height: 22px;
    position: relative;
    outline: none;
}

#nav_btn .point:hover .navbtn,
#nav_btn .point:hover .navbtn::after,
#nav_btn .point:hover .navbtn::before {
    width: 1.375rem;
}

#nav_btn .navbtn {
    position: absolute;
    top: 12px;
    left: 0;
    display: inline-block;
    width: 1.375rem;
    height: 1px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    /* background: #333; */
}

#nav_btn .navbtn::after,
#nav_btn .navbtn::before {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 1.375rem;
    height: 3px;
    content: '';
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: #fff;
}

#nav_btn .navbtn::after {
    top: -5px;
}

#nav_btn .navbtn::before {
    top: 5px;
}

#nav_btn .point.on .navbtn {
    background: transparent;
}

#nav_btn .point.on .navbtn::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
}

#nav_btn .point.on .navbtn::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0px;
}

/*导航按钮结束*/
.m_nav_list {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    overflow: auto;
}

.m_nav_list::-webkit-scrollbar {
    display: none
}

#m_nav {
    z-index: 99999;
    position: fixed;
    background: rgba(0, 0, 0, .9);
    width: 100%;
    height: 100vh;
    right: -101vw;
    top: 0;
    display: none;
    padding: 50px 0 80px;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    -webkit-transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    -moz-transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    -ms-transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
    display: block;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

#m_nav.act {
    pointer-events: auto;
    right: 0;
}

#m_nav>ul>li {
    width: 100%;
    overflow: hidden;
    padding: 0 25px;
}

#m_nav>ul>li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#m_nav li .a h3 {
    line-height: 4.5rem;
    height: 4.5rem;
    color: #fff;
    padding: 0;
    font-size: 1.125rem;
    float: left;
}

#m_nav li .a span {
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
    width: 20px;
    height: 50px;
    text-align: center;
}

#m_nav li .a span i {
    font-size: 0;
}

#m_nav li {
    display: block;
    width: 100%;
}

.slide_nav {
    position: absolute;
    left: 0;
    height: 70px;
    z-index: 998;
    padding: 15px;
    top: 0;
    width: 100%;
}

#m_nav .title .list {
    display: none;
    position: relative;
    width: 100%;
    z-index: 9;
    left: 0;
    margin-left: 0;
    background: none;
    border: 0;
    clear: both;
    padding-bottom: 10px;
}

#m_nav .title .list span {
    background: none;
}

#m_nav .title .list span a:hover {
    color: #007ddd;
}

#m_nav .title .list a {
    display: block;
    font-size: 1rem;
    color: #fff;
    text-align: left;
    line-height: 35px;
    height: 35px;
    border: 0;
    font-weight: 300;
}

/*三级导航 开始*/
#m_nav .title .list .void>a {
    background-size: 10px;
    position: relative;
}

#m_nav .title .list .void>a:before {
    content: "·";
    position: absolute;
    left: -1em;
    font-size: 12px;
    font-weight: bold;
}

#m_nav .title .list span {
    position: relative;
    display: block;
}

#m_nav .title .list span .sub {
    position: static;
    width: 100%;
    display: block !important;
    overflow: hidden;
}

#m_nav .title .sub a {
    background: none;
    font-size: .875rem;
    opacity: .8;
    min-width: 50%;
    float: left;
    display: inline-block;
    color: #999;
}

.nav_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}
/* -------------------------------------------------------------------------------------------banner图 */
.rslides {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.rslides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}

.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}

.slide_container {
    position: relative;
    float: left;
    width: 100%;
    overflow: hidden;
}

@media (max-width:1024px) {
    .slide_container {
        position: relative;
        float: left;
        width: 100%;
        overflow: hidden;
        margin-top: 150px;
    }
}
@media (max-width:768px) {
    .slide_container {
        position: relative;
        float: left;
        width: 100%;
        overflow: hidden;
        margin-top: 100px;
    }
}
.slide {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.slide li {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.slide img {
    display: block;
    position: relative;
    z-index: 1;
    height: auto;
    width: 100%;
    border: 0;
}

.slide .caption {
    display: block;
    position: absolute;
    z-index: 2;
    font-size: 20px;
    text-shadow: none;
    color: #fff;
    background: #000;
    background: rgba(0, 0, 0, 0.8);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 20px;
    margin: 0;
    max-width: none;
}

.slide_nav {
    position: absolute;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 52%;
    left: -1%;
    opacity: 0.7;
    z-index: 3;
    text-indent: -9999px;
    overflow: hidden;
    text-decoration: none;
    height: 85px;
    width: 85px;
    background: transparent url(../UploadFiles/an.png) no-repeat left 23px top 19px;
    background-size: 110% 55%;
    margin-top: -45px;
    background-color: rgba(255, 255, 255, 0.192);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.slide_nav:hover {
    background-color: #007ddd;
    transition: all 0.5s ease;
}

.slide_nav:active {
    opacity: 1.0;
}

.slide_nav.next {
    left: auto;
    background-position: right 23px top 19px;
    right: -1%;

}

.slide_container .tu {
    width: 100%;
    height: 602px;

}
@media (max-width:768px) {
    .slide_nav {
        position: absolute;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        top: 60%;
        left: -4%;
        opacity: 0.7;
        z-index: 3;
        text-indent: -9999px;
        overflow: hidden;
        text-decoration: none;
        height: 20px;
        width: 20px;
        background: transparent url(../UploadFiles/an.png) no-repeat left 18px top 11px;
        background-size: 110% 55%;
        margin-top: -45px;
        background-color: rgba(255, 255, 255, 0.192);
        border-radius: 50%;
        transition: all 0.5s ease;
    }
    .slide_nav.next {
        left: auto;
        background-position: right 18px top 12px;
        right: -4%;
    }
}
/* ----------------------------------------------------服务项目 */
.fwxm {
    width: 100%;
    height: auto;
    background: url(/UploadFiles/pic/bj.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-bottom: 80px;
}
.fw_t {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.fw_t h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #007ddd;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.fw_t p {
    font-size: 1.5rem;
    text-align: center;
    color: rgb(189 189 189);
}
.fw_n {
    width: 90%;
    margin: 0 auto;
}
@media (max-width:1440px) {
    .fw_n {
        width: 95%;
        margin: 0 auto;
    }
}
.fw_n ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
}
.fw_n ul li {
    border-radius: 20px;
    margin: 10px;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-shadow: 0px 0px 10px 1px #999999;
    padding-bottom: 30px;
}
.fw_n li:hover .aq_t a img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}
.fw_n li:hover .xl_t a img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}
.fw_n li:hover .ts_t a img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}
.fw_n li:hover .yw_t a img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}
.fw_n ul li:nth-child(1) {
    background-color: #007ddd;
    
}
.fw_n ul li:nth-child(2) {
    background-color: #01aab1;
    
}
.fw_n ul li:nth-child(3) {
    background-color: #007ddd;
    
}
.fw_n ul li:nth-child(4) {
    background-color: #01aab1;
    
}

.aq_t {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.aq_t a {
    width: 100%;
    display: block;
    overflow: hidden;
}
.aq_t img {
    width: 100%;
    display: block;
    transition: all 0.5s ease;
}

.aq_d {
    width: 85%;
    margin: 0 auto;
}
.aq_d h2 a {
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.aq_d dl {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.aq_a {
    width: 50%;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 15px;
}
.aq_a:hover {
    color: #cccccc;
}




.xl_t {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.xl_t a {
    width: 100%;
    display: block;
    overflow: hidden;
}
.xl_t img {
    width: 100%;
    display: block;
    transition: all 0.5s ease;
}

.xl_d {
    width: 85%;
    margin: 0 auto;
}
.xl_d h2 a {
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.xl_d dl {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.xl_a {
    width: 50%;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 15px;
}
.xl_a:hover {
    color: #cccccc;
}



.ts_t {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.ts_t a {
    width: 100%;
    display: block;
    overflow: hidden;
}
.ts_t img {
    width: 100%;
    display: block;
    transition: all 0.5s ease;
}

.ts_d {
    width: 85%;
    margin: 0 auto;
}
.ts_d h2 a {
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.ts_d dl {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.ts_a {
    width: 50%;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 15px;
}
.ts_a:hover {
    color: #cccccc;
}


.yw_t {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.yw_t a {
    width: 100%;
    display: block;
    overflow: hidden;
}
.yw_t img {
    width: 100%;
    display: block;
    transition: all 0.5s ease;
}

.yw_d {
    width: 85%;
    margin: 0 auto;
}
.yw_d h2 a {
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.yw_d dl {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.yw_a {
    width: 50%;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 15px;
}
.yw_a:hover {
    color: #cccccc;
}


@media (max-width:1024px) {
    .fw_n ul {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .fw_n ul li {
        width: calc((100% - 8% ) / 2 );

    }
    .aq_d h2 a {
        width: 100%;
        display: block;
        font-size: 28px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    .aq_a {
        width: 50%;
        color: #ffffff;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
}
/* ----------------------------------------------------------关于我们 */
.gsjj {
    width: 100%;
    height: auto;
    background: url(/UploadFiles/pic/gsjj.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-bottom: 30px;
}
.gs_z {
    width: 80%;
    margin: 0 auto;
    height: auto;
    padding-top: 70px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.gs_l {
    width: 70%;
    height: auto;
}
.gs_l dl {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}
.gs_l dl:nth-child(1) h2 {
    font-size: 2rem;
    color: #007ddd;
    font-weight: 600;
    margin-bottom: 10px;
}
.gs_l dl:nth-child(1) p {
    font-size: 1.5rem;
    color: #007ddd;
    font-weight: 600;
    margin-bottom: 30px;
}
.gs_l dl:nth-child(1) span {
    width: 40px;
    height: 5px;
    background-color: #007ddd;
    display: block;
}
.gs_l dl:nth-child(2) p {
    font-size: 16px;
    letter-spacing: 1px;
    color: #333;
    line-height: 27px;
}
@media (max-width:1440px) {
    .gs_l dl:nth-child(2) p {
        font-size: 16px;
        letter-spacing: 1px;
        color: #333;
        line-height: 27px;
        overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    }
}
.gs_l a {
    width: 45px;
    height: 45px;
    display: block;
    border: 1px solid #007ddd;
    background-color: #007ddd;
    border-radius: 50%;
    transition: all 0.5s ease;
}
.gs_l a span {
    font-size: 25px;
    display: block;
    color: #fff;
    line-height: 39px;
    padding-left: 9px;
    transition: all 0.5s ease;
}
.gs_l a:hover {
    background-color: #01aab1;
    border: 1px solid #01aab1;
    transition: all 0.5s ease;
}
.gs_l a:hover span {
    color: #fff;
    transition: all 0.5s ease;
}
.gs_r {
    width: 15%;
    height: auto;
}
.gs_r dl {
    width: 100%;
    height: auto;
    position: relative;
}
.gs_r dl h2 {
    font-size: 2.5rem;
    color: #333;

}
.gs_r dl p {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
}
@media (max-width:1440px) {
    .gs_r dl p {
        font-size: 1.5rem;
        color: #333;
        font-weight: 600;
    }
}
.gs_r dl::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 189px;
    top: 220px;
    left: 40px;
    background-color: #333;
}





.gs_x {
    width: 90%;
    height: auto;
    padding-top: 50px;
    margin: 0 auto;

}

@media (max-width:1024px) {
    .gs_x {
        width: 90%;
        height: auto;
        padding-top: 10px;
        margin: 0 auto;

    }
}

.syfwlb {
	padding: 0 40px;
	box-sizing: border-box;
}

.syfwlb::before,
.syfwlb::after {
	content: "";
	position: absolute;
	width: 30px;
	height: 100%;
	top: 0;
	z-index: 10;
}

.syfwlb::before {
	left: -1px;
	/*background-color: #fff;*/
}

.syfwlb::after {
	right: -1px;
	/*background-color: #f3f3f3;*/
}

.syfwnr {
	width: 100%;
	display: block;
	overflow: hidden;
	position: relative;
	padding-bottom: 50px;
}

.sycplb {
	width: 100%;
	display: block;
	border: 1px solid #e9e9e985;
	box-sizing: border-box;
	transition: all 0.6s;
	margin-top: 10px;
	background-color: #fff;
}

.sycplb .sycplbtp {
	width: 100%;
	overflow: hidden;
}

.sycplb .sycplbtp img {
	width: 100%;
	display: block;
	transition: all 0.8s;
}

.sycplbbt {
	width: 100%;
	padding: 0px;
	box-sizing: border-box;
}

.sycplbbt p:nth-child(1) {
	font-size: 20px;
	line-height: 53px;
	text-align: center;
	color: #212121;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.sycplbbt p:nth-child(2) {
	font-size: 16px;
	line-height: 30px;
	color: #666;
	letter-spacing: 1px;
	margin-top: 16px;
	background-image: url("../../UploadFiles/bj/jt.png");
	background-size: 18px 16px;
	background-position: 100% 50%;
	background-repeat: no-repeat;
}

.sycplb:hover {
	box-shadow: 0 0px 16px 1px rgb(177 177 177 / 42%);
	margin-top: 4px;
	margin-bottom: 6px;
}

.sycplb:hover .sycplbtp img {
	transform: scale(1.2);
}

.sycplb:hover .sycplbbt p:nth-child(1) {
	color: #007ddd;
}
@media(max-width:1024px) {
	.syfw {
		width: 96%;
	}

	.sycplbbt p:nth-child(1) {
		font-size: 27px;
	}

	.sycplbbt p:nth-child(2) {
		font-size: 23px;
	}
}
.swiper-button-prev, .swiper-button-next {
	width: 60px;
	height: 80px;
	position: absolute;
	top: 55%;
	transform: translateY(-50%);
	z-index: 20;
	border-radius: 10px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.5s ease;
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E") no-repeat rgb(255,255,255);
}
.swiper-button-prev1, .swiper-button-next1 {
	width: 60px;
	height: 80px;
	position: absolute;
	top: 55%;
	transform: translateY(-50%);
	z-index: 20;
	border-radius: 10px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.5s ease;
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E") no-repeat rgb(255,255,255);
}









@media (max-width:1440px) {
    .gs_r {
        width: 18%;
        height: auto;
    }
}
@media (max-width:1024px) {
    .gs_x {
        width: 90%;
    }
    .gs_l dl:nth-child(2) p {
        font-size: 23px;
        letter-spacing: 1px;
        color: #333;
        line-height: 32px;
        overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    }
    .gs_z {
        width: 90%;
        margin: 0 auto;
        height: auto;
        padding-top: 70px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .gs_r {
        width: 26%;
        height: auto;
    }
}
/* ---------------------------------------------------新闻动态 */
.xwdt {
    width: 90%;
    height: auto;
    margin: 50px auto;
}
.xw_t {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.xw_t dl {
    width: 50%;
    height: auto;
}
.xw_t dl p {
    font-size: 18px;
    color: #333;
}
.xw_t dl h2 {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
}
.xw_t dl h2 span {
    color: #cccccc;
}
.xw_t a {
    width: 8%;
    height: 40px;
    line-height: 40px;
    display: block;
    background-color: #007ddd;
    border-radius: 30px;
    margin-top: 13px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    transition: all 0.5s ease;
}
.xw_t a:hover {
    background-color: #01aab1;
    transition: all 0.5s ease;
}
.xw_n {
    width: 100%;
    height: auto;
    display: flex;
}
.xwn_l {
    width: 30%;
    height: auto;
}
.xwn_l ul li {
    width: 100%;
    height: auto;
}
.xwn_l ul li:hover h3 img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}
.xwn_l ul li a {
    display: block;
    width: 100%;
}
.xwn_l li h3 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}
.xwn_l li h3 img {
    display: block;
    width: 100%;
    transition: all 0.5s ease;
}
.xwn_l li dl {
    width: 100%;
    height: auto;
    background-color: #007ddd;
    padding: 35px;
}
.xwn_l li dl dd {
    width: 20%;
    height: 30px;
    line-height: 30px;
    color: #007ddd;
    background-color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.xwn_l li dl h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.xwn_l li dl p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.xwn_l li dl span {
    display: block;
    width: 17%;
    font-size: 14px;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}
.xwn_r {
    width: 70%;
    height: auto;
}
.xwn_r ul {
    width: 100%;
    display: flex;
    
    flex-wrap: wrap;
}
.xwn_r ul li {
    width: calc((100% - 5% ) / 2 );
    height: auto;
    margin-left: 20px;
    margin-bottom: 20px;
}
.xwn_r li:nth-child(3) dl p {
    margin-bottom: 98px;
}
.xwn_r li:nth-child(4) dl p {
    margin-bottom: 98px;
}
.xwn_r li a {
    display: block;
    width: 100%;
}
.xwn_r li a:hover dl h2 {
    color: #007ddd;
    transition: all 0.5s ease;
}
.xwn_r li a:hover dl span {
    color: #007ddd;
    border-bottom: 1px solid #007ddd;
    transition: all 0.5s ease;
}
.xwn_r li dl {
    width: 100%;
    height: auto;
    background-color: #f9f9f9;
    padding: 35px;
}
.xwn_r li dl dd {
    width: 20%;
    height: 30px;
    line-height: 30px;
    color: #fff;
    background-color: #007ddd;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
@media (max-width:1440px) {
    .xwn_r li dl dd {
        width: 23%;
        height: 30px;
        line-height: 30px;
        color: #fff;
        background-color: #007ddd;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
    }
.xwn_l li dl dd {
    width: 27%;
    
}
    .xwn_r li:nth-child(3) dl p {
        margin-bottom: 40px;
    }
    .xwn_r li:nth-child(4) dl p {
        margin-bottom: 40px;
    }
}
.xwn_r li dl h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.5s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.xwn_r li dl p {
    font-size: 18px;
    color: #999999;
    margin-bottom: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.xwn_r li dl span {
    display: block;
    width: 17%;
    font-size: 14px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
    transition: all 0.5s ease;
}
@media (max-width:1440px) {
    .xwn_r li dl span {
        display: block;
        width: 23%;
        font-size: 14px;
        color: #333;
        padding-bottom: 10px;
        border-bottom: 1px solid #333;
        transition: all 0.5s ease;
    }
    .xwn_l li dl span {
        display: block;
        width: 25%;
        font-size: 14px;
        color: #fff;
        padding-bottom: 10px;
        border-bottom: 1px solid #fff;
    }
    .xwn_r li dl p {
    font-size: 15px;
    color: #999999;
    margin-bottom: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.xwn_r li:nth-child(2) dl p {
    margin-bottom: 35px;
}
}
.xw_a {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: #007ddd;
    margin-top: 20px;
    font-size: 16px;
    transition: all 0.5s ease;
}
.xw_a:hover {
    background-color: #01aab1;
    transition: all 0.5s ease;
    color: #fff;
}


@media (max-width:1024px) {
    .xwn_l {
        width: 50%;
        height: auto;
    }
    .xwn_r {
        width: 50%;
        height: auto;
    }
    .xwn_r ul li {
        width: 100%;
    }
    .xwn_r ul li:nth-child(3) {
        display: none;
    }
    .xwn_r ul li:nth-child(4) {
        display: none;
    }
    .xwn_r li dl p {
        font-size: 18px;
        color: #999999;
        margin-bottom: 47px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .xw_t a {
        width: 15%;
        height: 45px;
        line-height: 45px;
        display: block;
        background-color: #007ddd;
        border-radius: 30px;
        margin-top: 13px;
        text-align: center;
        color: #fff;
        font-size: 18px;
        transition: all 0.5s ease;
    }

}
/* --------------------------------------------------------底部 */
.dibu {
    width: 100%;
    height: auto;
    background-color: #007ddd;
    padding-top: 30px;
}
.dibu_t {
    width: 85%;
    margin: 0 auto;
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #fff;
    display: flex;
}
.dibu_t img {
    width: 21%;
    display: block;
}
@media (max-width:1440px) {
    .dibu_t {
        width: 90%;
        margin: 0 auto;
        padding: 0px 0px 10px 0px;
        border-bottom: 1px solid #fff;
        display: flex;
    }
    .dibu_t img {
        width: 25%;
        display: block;
    }
}
.dibu_t dl {
    display: flex;
}
.dibu_t dl p {
    display: flex;
    margin-left: 15px;
    align-items: flex-end;
    color: #fff;
    height: 70px;
    font-size: 16px;
    font-weight: 600;
}
.dibu_z {
    width: 85%;
    margin: 0 auto;
    padding: 35px 0px;
}
.dibu_z ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dibu_z ul li {
    width: calc((100% - 0% ) / 6 );
    text-align: center;
}
.dibu_z ul li a {
    font-size: 16px;
    color: #fff;
}
.dibu_d {
    width: 100%;
    height: auto;
    padding: 20px 60px 20px 60px;
    background-color: #46aeff;
}
.dibu_d ul {
    width: 100%;
}
.dibu_d ul li {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5px 0px;
}
.dibu_d li p {
    font-size: 16px;
    color: #fff;
}
.dibu_d li a {
    font-size: 16px;
    color: #fff;
    margin-left: 15px;
}
.ddd {
    width: 100%;
    padding: 15px 0px;
    height: auto;
    display: flex;
    justify-content: center;
}
.ddd img {
    width: 100%;
    display: block;
}
.ddd1 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #46aeff;
}
.ddd1 img {
    width: 100%;
    display: block;
}
.footbox{
	height: 11rem;
	background:rgb(4 77 152 / 52%);
	bottom: 0;
	z-index: 99;
	left: 0; 
	width: 100%;
	min-width: 375px; 
	position: fixed; 
	border-top:0;
	z-index: 1000;
}
.flexbox{
	margin-top:2px;
	text-align: center; 
	display: -webkit-box; 
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
}
.footbox ul li{
	-webkit-box-flex: 1; 
	-webkit-flex: 1; 
	-ms-flex: 1;
	flex: 1; 
	text-align:center;
}
.footbox ul li a{ 
	display:block;
	color:#fff;
	font-size:3rem;
	line-height:4rem;
	font-weight: 600;
}
.footbox ul li a img{ 
	display:block; 
	width:4rem; 
	height:4rem; 
	margin:5px auto;
}

@media(min-width:1000px){
	.footbox{
		display:none;
	}
}
.sjkx{
	display:block;
}
@media(min-width:1000px){
	.sjkx{
		display: none;
	}
}


@media (max-width: 1024px) {
    .dibu_t {
        width: 95%;
        margin: 0 auto;
        padding: 0px 0px 10px 0px;
        border-bottom: 1px solid #fff;
        display: flex;
    }
    .dibu_t img {
        display: none;
    }
    .dibu_t dl p {
        display: flex;
        margin-left: 20px;
        align-items: flex-end;
        color: #fff;
        height: 25px;
        font-size: 16px;
        font-weight: 600;
    }
    .dibu_z ul li a {
        font-size: 20px;
        color: #fff;
    }
    .dibu_d li p {
        font-size: 20px;
        color: #fff;
    }
    .dibu_d li a {
        font-size: 20px;
        color: #fff;
    }
    .ddd img {
        width: 125%;
        display: block;
    }
}


/* -----------------------------------------------------------------关于我们——栏目 */
.gywm {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 50px;
    justify-content: space-around;
}
.gywm_t {
    width: 20%;
    height: auto;
    margin-bottom: 50px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.gywm_t ul {
    width: 100%;
    background-color: #fff;
}
@media (max-width:1440px) {
    .gywm_t ul {
        width: 100%;
    }
}
.gywm_t ul li {
    width: 100%;
    height: 70px;
    line-height: 70px;
    transition: all 0.5s ease;
    padding-left: 50px;
    border-bottom: 1px solid #007ddd24;
}
.gywm_t ul dl {
    padding-left: 80px;
    background-color: #007ddd;
    height: 100px;
    line-height: 100px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.gywm_t li a {
    font-size: 18px;
    color: #333;
    display: block;
    transition: all 0.5s ease;
    background: url(/UploadFiles/pic/ico-17.png) no-repeat center right 30px;
}
.gywm_t ul dl a {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
}
.gywm_t ul dd {
    width: 100%;
    height: 50px;
    line-height: 50px;
    transition: all 0.5s ease;
    padding-left: 70px;
    
}
.gywm_t dd a {
    font-size: 18px;
    color: #333;
    display: block;
    transition: all 0.5s ease;
    background: url(/UploadFiles/pic/ico-17.png) no-repeat center right 30px;
    border-bottom: 1px solid #007ddd24;
}
.gywm_t ul li:hover a {
    background: url(/UploadFiles/pic/ico-17.png) no-repeat center right 45px;
    transition: all 0.5s ease;
    color: #fff;
}
.gywm_t ul dd:hover a {
    background: url(/UploadFiles/pic/ico-17.png) no-repeat center right 45px;
    transition: all 0.5s ease;
    color: #fff;
}
.gywm_t ul li:hover {
    background-color: #007ddd;
    transition: all 0.5s ease;
}
.gywm_t ul dd:hover {
    background-color: #007ddd;
    transition: all 0.5s ease;
}


.gywm_n {
    width: 70%;
    background-color: #fff;
    padding: 50px;
}
.gywm_n h3 {
    width: 100%;
    height: auto;
    text-align: center;
    color: #007ddd;
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(90, 90, 90);
}
@media (max-width:1024px) {
    .gywm_t ul {
        width: 100%;
    }
    .gywm_t {
        width: 30%;
        height: auto;
        margin-bottom: 50px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .gywm_n {
        width: 60%;
        background-color: #fff;
        padding: 50px;
    }
}
/* -----------------------------------------------------文章通用-栏目 */
.wzty {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 50px;
    justify-content: space-around;
}



.wzty_n {
    width: 70%;
    background-color: #fff;
    padding: 0px 50px;
}
.wzty_n ul {
    width: 100%;
    height: auto;
}
.wzty_n ul li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #999999;
    padding: 50px 0px;
}
.wzty_n li a {
    width: 100%;
    display: block;
}
.wzty_n li h3 {
    font-size: 23px;
    color: rgb(36, 36, 36);
    margin-bottom: 20px;
    transition: all 0.5s ease;
}
.wz_bt {
    display: flex;
    margin-bottom: 20px;
}
.wz_bt p {
    font-size: 18px;
    color: #999999;
}
.wz_bt dd {
    font-size: 18px;
    color: #999999;
    margin-left: 20px;
}
.wz_xbt {
    width: 85%;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media (max-width:1440px) {
    .wz_xbt {
        width: 95%;
        
    }
    
}
.wzty_n li dl {
    width: 10%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #999999;
    font-size: 16px;
    border: 1px solid #9999997c;
    border-radius: 5px;
    transition: all 0.5s ease;
}
.wzty_n li a:hover h3 {
    color: #007ddd;
    transition: all 0.5s ease;
}
.wzty_n li a:hover dl {
    background-color: #007ddd;
    color: #fff;
    transition: all 0.5s ease;
    border: 1px solid #007ddd;
}
@media (max-width:1024px) {
    .wzty_n {
        width: 65%;
        background-color: #fff;
        padding: 0px 35px;
    }
    .wz_xbt {
        width: 95%;
        font-size: 18px;
    }
    .wzty_n li h3 {
        font-size: 26px;

    }
    .wz_bt dd {
        font-size: 22px;
        color: #999999;
        margin-left: 20px;
    }
    .wzty_n li dl {
        width: 15%;
        
    }
}
/* ---------------------------------------------------图片通用-栏目 */
.pic {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 50px;
    justify-content: space-around;
}

.pic_t {
    width: 20%;
    height: auto;
    margin-bottom: 50px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.pic_t ul {
    width: 100%;
    background-color: #fff;
}
@media (max-width:1440px) {
    .pic_t ul {
        width: 100%;
    }
}
.pic_t ul li {
    width: 100%;
    height: 70px;
    line-height: 70px;
    transition: all 0.5s ease;
    padding-left: 50px;
    border-bottom: 1px solid #007ddd24;
}
.pic_t ul dl {
    padding-left: 80px;
    background-color: #007ddd;
    height: 100px;
    line-height: 100px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.pic_t li a {
    font-size: 18px;
    color: #333;
    display: block;
    transition: all 0.5s ease;
    background: url(/UploadFiles/pic/ico-17.png) no-repeat center right 30px;
}
.pic_t ul dl a {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
}
@media (max-width:1440px) {
    .pic_t ul dl {
        padding-left: 60px;
        background-color: #007ddd;
        height: 100px;
        line-height: 100px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .pic_t ul dl a {
        font-size: 1.5rem;
        color: #fff;
        font-weight: 600;
    }
}

.pic_t ul li:hover a {
    background: url(/UploadFiles/pic/ico-17.png) no-repeat center right 45px;
    transition: all 0.5s ease;
    color: #fff;
}

.pic_t ul li:hover {
    background-color: #007ddd;
    transition: all 0.5s ease;
}





.pic_n {
    width: 70%;
    height: auto;
}
.pic_n ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.pic_n ul li {
    width: calc((100% - 13% ) / 4 );
    height: auto;
    margin: 20px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}
@media (max-width:1440px) {
    .pic_n ul li {
        width: calc((100% - 16% ) / 4 );
        height: auto;
        margin: 20px;
        background-color: #fff;
        border-radius: 5px;
        overflow: hidden;
    }
}
.pic_n li a {
    display: block;
    width: 100%;
}
.pic_n li a:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}
.pic_n li h3 {
    width: 100%;
    overflow: hidden;
}
.pic_n li h3 img {
    display: block;
    width: 100%;
    transition: all 0.5s ease;
}
.pic_n li dl {
    width: 100%;
    height: auto;
    padding: 20px 0px;
    text-align: center;
    font-size: 18px;
    color: #333;
    border-top: 1px solid #007ddd57;
    transition: all 0.5s ease;
}
.pic_n li a:hover dl {
    background-color: #007ddd;
    color: #fff;
    transition: all 0.5s ease;
}
@media (max-width:1024px) {
    .pic_t {
        width: 30%;
        height: auto;
        margin-bottom: 50px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .pic_t ul {
        width: 100%;
    }
    .pic_n ul li {
        width: calc((100% - 15%) / 2);
        height: auto;
        margin: 20px;
        background-color: #fff;
        border-radius: 5px;
        overflow: hidden;
    }
    .pic_n {
        width: 60%;
        height: auto;
    }
}
/* ----------------------------------------------------联系我们 */
.lxwm {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 50px;
    justify-content: space-around;
}

.lxwm_n {
    width: 70%;
    background-color: #fff;
    padding: 50px;
}
.lxwm_n h3 {
    width: 100%;
    height: auto;
    text-align: center;
    color: #007ddd;
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(90, 90, 90);
}
.lxwm_n ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.lxwm_n ul li {
    width: calc((100% - 5% ) / 2 );
    padding: 20px 0px;
    border-bottom: 1px solid #999999;
    margin: 20px;
    display: flex;
    align-items: center;
}
@media (max-width:1440px) {
    .lxwm_n ul li {
        width: calc((100% - 8% ) / 2 );
        padding: 20px 0px;
        border-bottom: 1px solid #999999;
        margin: 20px;
        display: flex;
        align-items: center;
    }
}
.lxwm_n ul li h2 {
    width: 10%;
}
.lxwm li h2 img {
    width: 60%;
}
.lxwm li p {
    font-size: 18px;
    color: #333;
}
@media (max-width:1024px) {
    .lxwm_n ul li {
        width: 100%;
        padding: 20px 0px;
        border-bottom: 1px solid #999999;
        margin: 20px;
        align-items: center;
    }
    .lxwm_n ul li h2 {
        width: 15%;
    }
    
    
    .lxwm_n {
        width: 60%;
        background-color: #fff;
        padding: 50px;
    }
}