        @charset "utf-8";
        * {
            padding: 0;
            margin: 0;
        }
        
        li {
            list-style: none;
        }
        
        a {
            text-decoration: none;
        }
        
        h2,
        h3,
        i,
        em {
            font-style: normal;
        }
        
        html,
        body {
            font-family: "微软雅黑";
        }
        
        input,
        img,
        a,
        button {
            outline: none;
            border: 0;
        }
        
        @font-face {
            font-family: "sisong";
            src: url(../style/sySong.woff);
            font-weight: normal;
            font-style: normal;
        }
        
        .clear {
            clear: both;
        }
        
        .pic {
            position: relative;
            overflow: hidden;
            padding-top: 75%;
        }
        
        .pic img {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            transition: all .3s;
  object-fit: cover;
	   display: block;
        }
        
        .pic:hover img {
            transform: scale(1.2);
        }
        
        .wp {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .l2 {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .l3 {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
        /* 搜索开始 */
        
        .search-dialog-box {
            position: fixed;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100vh;
            z-index: 1000000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.6s ease 0s;
        }
        
        .search-dialog-box.on {
            opacity: 1;
            visibility: visible;
        }
        
        .search-dialog-box a {
            position: absolute;
            width: 48px;
            height: 48px;
            z-index: 10;
            right: 25px;
            top: 25px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 100%;
        }
        
        .search-dialog-box a i {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            background-position: center center;
            background-repeat: no-repeat;
            background: url(../images/close.png) no-repeat center center;
            background-size: 20px auto;
            transition: all 0.6s ease 0s;
        }
        
        .search-dialog-box a i:hover {
            transform: rotate(180deg);
        }
        
        .search-dialog-box.on .search-bg {
            height: 100vh;
        }
        
        .search-dialog-box .search-bg {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 0px;
            margin: 0px;
            background: 0% 0% / cover no-repeat rgba(0, 0, 0, 0.7);
            transform-origin: center center;
            transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s;
        }
        
        .search-dialog {
            position: absolute;
            left: 0px;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            z-index: 2;
        }
        
        .search-dialog .search-inner {
            overflow: hidden;
            margin-top: 0px;
        }
        
        .search {
            position: relative;
            max-width: 900px;
            width: 100%;
            padding-right: 100px;
            margin: 0px auto;
            background-color: rgba(255, 255, 255, 0.1);
            box-sizing: border-box;
            transition: all 0.3s ease 0s;
        }
        
        .search input[type="text"] {
            width: 100%;
            height: 70px;
            background-color: rgb(255, 255, 255);
            font-size: 20px;
            color: #666;
            transition: all 0.3s ease 0s;
            padding: 0px 20px;
            box-sizing: border-box;
        }
        
        .search span {
            position: absolute;
            width: 100px;
            top: 0;
            bottom: 0;
            right: 0;
            background: #055ead;
        }
        
        .search span input[type="image"] {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        /* 搜索结束 */
        
        .header {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            background: #055ead;
            padding: 10px 0;
            z-index: 99;
        }
        
        .head-l {
            float: left;
            font-size: 0;
        }
        
        .head-l a {
            display: block;
        }
        
        .head-l a img {
            display: block;
        }
        
        .head-r {
            position: relative;
            float: right;
            text-align: right;
        }
        
        .nav {
            display: inline-block;
            vertical-align: middle;
        }
        
        .nav>ul>li {
            position: relative;
            display: inline-block;
            margin-right: 20px;
            position: relative;
            text-align: center;
        }
        
        .nav>ul>li:after {
            content: "";
            position: absolute;
            bottom: 7px;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-bottom: 5px solid #fff;
            display: none;
        }
        
        .nav>ul>li.on:after {
            display: block;
        }
        
        .nav>ul>li>a {
            position: relative;
            padding: 0 20px;
            line-height: 69px;
            display: block;
            font-size: 18px;
            color: #fff;
            font-weight: bold;
        }
        
        .nav>ul>li.on>a {
            background: url(../images/ej.png) no-repeat right center;
        }
        
        .nav>ul>li:hover>a {
            font-weight: bold;
        }
        
        .nav>ul>li ul {
            position: absolute;
            top: 90%;
            width: 130px;
            left: 50%;
            margin-left: -65px;
            border-top: 2px solid #6ab1ff;
            background-color: rgba(255, 255, 255, 0.87);
            box-shadow: 0 3px 3px #999;
            padding: 5px 0;
            display: none;
            z-index: 999;
        }
        
        .nav>ul>li ul li {
            line-height: 38px;
            text-align: center;
        }
        
        .nav>ul>li ul li a {
            font-size: 15px;
            color: #333;
            font-family: "pf";
        }
        
        .nav>ul>li ul li:hover {
            background-color: #a7caf0;
        }
        
        .sousuo {
            display: inline-block;
            vertical-align: middle;
            cursor: pointer;
        }
        
        .banner a {
            position: relative;
            display: block;
        }
        
        .banner a img {
            display: block;
            width: 100%;
        }
        
        .banner .slick .slick-prev {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            left: 50px;
            border: 1px solid #fff;
            background: url(../images/banner-l.png) no-repeat center center;
        }
        
        .banner .slick .slick-prev::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            border-radius: 50%;
            background: #fff url(../images/banner-l.png) no-repeat center center;
            transition: all .3s;
        }
        
        .banner .slick .slick-prev:hover::after {
            transform: translate(7px, -7px);
        }
        
        .banner .slick .slick-next {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            right: 50px;
            background: url(../images/banner-r.png) no-repeat center center;
            border: 1px solid #fff;
        }
        
        .banner .slick .slick-next:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            border-radius: 50%;
            background: #fff url(../images/banner-r.png) no-repeat center center;
            transition: all .3s;
        }
        
        .banner .slick .slick-next:hover::after {
            transform: translate(-7px, -7px);
        }
        
        .footer {
            position: relative;
            margin-top: -140px;
            padding-bottom: 140px;
            background: url(../images/footer-bg.png) no-repeat center top;
            background-size: cover;
            z-index: 3;
        }
        
        .foot {
            position: relative;
            padding-top: 180px;
        }
        
        .ft-l {
            float: left;
            width: 66%;
        }
        
        .ft-l-top {
            padding-bottom: 45px;
            border-bottom: 1px solid rgba(255, 255, 255, .5);
            overflow: hidden;
        }
        
        .flt-l {
            float: left;
            width: 310px;
        }
        
        .flt-r {
            overflow: hidden;
            padding-left: 45px;
        }
        
        .flt-r ul {
            font-size: 0;
        }
        
        .flt-r>ul>li {
            display: inline-block;
            vertical-align: top;
        }
        
        .flt-r>ul>li:first-child {
            float: left;
            width: 46%;
        }
        
        .flt-r>ul>li:nth-child(2) {
            float: right;
            width: 41%;
        }
        
        .flt-r>ul>li h2 {
            font-size: 18px;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .flt-r>ul>li p,
        .flt-r>ul>li>ul>li>a {
            line-height: 26px;
            font-size: 14px;
            color: #fff;
        }
        
        .flt-r>ul>li>ul {
            font-size: 0;
        }
        
        .flt-r>ul>li>ul>li {
            display: inline-block;
            min-width: 50%;
        }
        
        .flt-r ul li.cintent .ft-r {
            position: absolute;
            right: 0;
        }
        
        .ft-l-down {
            padding-top: 15px;
        }
        
        .ft-l-down p {
            line-height: 26px;
            font-size: 14px;
            color: #fff;
        }
        
        .ft-r {
            position: absolute;
            right: -55px;
            top: -60px;
            width: 536px;
            height: 536px;
            padding-top: 110px;
            background: url(../images/ft-gz.png) no-repeat center center;
            box-sizing: border-box;
            text-align: center;
        }
        
        .ft-r h2 {
            font-size: 34px;
            color: #111;
            font-weight: normal;
        }
        
        .ft-r>ul>li {
            position: relative;
            display: inline-block;
            margin: 0 13px;
            margin-top: 30px;
            padding-bottom: 20px;
            cursor: pointer;
        }
        
        .ft-r>ul>li .icon {
            position: relative;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-left: auto;
            margin-right: auto;
            background: #ebf8fd;
        }
        
        .ft-r>ul>li:hover:nth-child(1) .icon,
        .ft-r>ul>li.on:nth-child(1) .icon {
            background: #e2640c;
        }
        
        .ft-r>ul>li:hover:nth-child(2) .icon,
        .ft-r>ul>li.on:nth-child(2) .icon {
            background: #82d269;
        }
        
        .ft-r>ul>li:hover:nth-child(3) .icon,
        .ft-r>ul>li.on:nth-child(3) .icon {
            background: #000;
        }
        
        .ft-r>ul>li .icon img {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }
        
        .ft-r>ul>li .icon img.ewm-icon {
            z-index: 6;
        }
        
        .ft-r>ul>li .icon img.ewm-icon-other {
            z-index: -1;
        }
        
        .ft-r>ul>li:hover .icon img.ewm-icon,
        .ft-r>ul>li.on .icon img.ewm-icon {
            z-index: -1;
        }
        
        .ft-r>ul>li:hover .icon img.ewm-icon-other,
        .ft-r>ul>li.on .icon img.ewm-icon-other {
            z-index: 6;
        }
        
        .ft-r>ul>li::after {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            border: 5px solid transparent;
            border-bottom: 10px solid #ebf8fd;
            display: none;
        }
        
        .ft-r>ul>li:hover::after,
        .ft-r>ul>li.on::after {
            display: block;
        }
        
        .ft-r>ul>li .ewm {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 100%;
            padding: 5px;
            background-color: #ebf8fd;
            border-radius: 5px;
            display: none;
        }
        
        .ft-r>ul>li:hover .ewm,
        .ft-r>ul>li.on .ewm {
            display: block;
        }
        /* 移动端头部 */
        
        .wap {
            display: none;
        }
        
        .top {
            max-width: 1920px;
            margin: 0 auto;
            position: fixed;
            right: 10px;
            top: 18px;
            width: 25px;
            height: 25px;
            z-index: 9999;
        }
        
        .top>img {
            display: block;
            width: 100%;
        }
        
        .wap-menu {
            position: absolute;
            top: 0;
            right: 0;
            z-index: 99999;
            font-size: 0;
        }
        
        .wap-menu img {
            height: 25px;
        }
        
        .close-menu {
            display: none;
            position: absolute;
            right: 0;
            top: 0;
        }
        
        @media screen and (max-width:1400px) {
            .wp {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
        
        @media screen and (max-width:1320px) {
            .ft-r {
                position: static;
                margin-left: auto;
                margin-right: auto;
            }
            .ft-l {
                float: none;
                width: 100%;
            }
        }
        
        @media screen and (max-width:1024px) {
            body {
                padding-top: 60px !important;
            }
            .header {
                display: none !important;
            }
            .wap {
                display: block !important;
            }
            .m-head {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                background: #055ead;
                z-index: 999;
                padding: 10px;
            }
            .m-logo {
                font-size: 0;
            }
            .m-logo a {
                font-size: 0;
                line-height: 40px;
                display: block;
            }
            .m-logo img {
                max-height: 40px;
                max-width: 80%;
                vertical-align: middle;
            }
            .m-tlink {
                padding: 10px 15px 0 15px;
            }
            .m-tlink a {
                font-size: 12px;
                margin-right: 5px;
                color: #fff;
                display: inline-block;
                line-height: 24px;
                background: #fff;
                color: #304174;
                line-height: 24px;
                padding: 0 15px;
                border-radius: 5px;
            }
            .m-search {
                margin: 0 15px;
                padding-right: 50px;
                padding-left: 10px;
                padding-top: 5px;
                padding-bottom: 5px;
                position: relative;
                line-height: 35px;
                /* background: #fff; */
                margin-top: 15px;
                border: 1px solid #fff;
            }
            .m-search input[type="text"] {
                display: block;
                width: 100%;
                line-height: 25px;
                background: none;
                color: #fff;
            }
            .m-search input[type="text"]::placeholder {
                color: #fff;
            }
            .m-search input[type="image"] {
                position: absolute;
                right: 10px;
                top: 10px;
                height: 15px;
            }
            .m-nav {
                position: fixed;
                top: 60px;
                right: -100%;
                bottom: 0;
                z-index: 999;
                background: #085fad;
                overflow-y: scroll;
                width: 100%;
                max-width: 375px;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
            }
            .m-nav ul {
                padding: 0 15px;
                /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
            }
            .m-nav ul li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                position: relative;
            }
            .m-nav ul li>span.on {
                transform: rotateZ(90deg);
            }
            .m-nav ul li ul {
                display: none;
            }
            .m-nav ul li ul li {
                border: none;
            }
            .m-nav>ul>li a {
                display: block;
                font-size: 14px;
                line-height: 20px;
                padding: 15px 0;
                position: relative;
                color: #fff;
            }
            .m-nav>ul>li ul li a {
                padding: 10px 0;
            }
            .m-nav>ul>li>span {
                position: absolute;
                width: 20px;
                height: 20px;
                background: url(../images/m-nav_down.png) no-repeat;
                background-size: 14px 14px;
                background-position: center center;
                right: 0;
                top: 15px;
                cursor: pointer;
                display: block;
                color: #fff;
                transition: all 0.3s;
            }
            .banner .return {
                display: none;
            }
            .banner::after {
                display: none;
            }
        }
        
        @media screen and (max-width:1000px) {
            .foot {
                padding-top: 60px;
            }
            .flt-l {
                float: none;
                width: 100%;
            }
            .flt-l a {
                display: block;
            }
            .flt-l a img {
                display: block;
                margin-left: auto;
                margin-right: auto;
            }
            .flt-r {
                padding-left: 0;
                margin-top: 15px;
            }
            .footer {
                padding-bottom: 20px;
            }
        }
        
        @media screen and (max-width:700px) {
            .banner .slick .slick-prev {
                left: 10px;
                width: 35px;
                height: 35px;
                background-size: 10px auto;
            }
            .banner .slick .slick-prev::after {
                background-size: 10px auto;
            }
            .banner .slick .slick-next {
                right: 10px;
                width: 35px;
                height: 35px;
                background-size: 10px auto;
            }
            .banner .slick .slick-next::after {
                background-size: 10px auto;
            }
            .ft-r {
                width: 300px;
                height: 300px;
                background-size: 300px auto;
                padding-top: 40px;
            }
            .ft-r h2 {
                font-size: 22px;
            }
            .ft-r>ul>li {
                margin: 0 5px;
                margin-top: 15px;
            }
            .flt-r>ul>li:first-child {
                float: none;
                width: 100%;
            }
            .flt-r>ul>li:nth-child(2) {
                float: none;
                width: 100%;
                margin-top: 15px;
            }
            .flt-r>ul>li h2 {
                margin-bottom: 5px;
            }
            .ft-l-top {
                padding-bottom: 15px;
            }
            .foot {
                padding-top: 30px;
            }
        }