html {
    font-size: 12px;
    overflow-x: hidden;
}
html, body {
    position: relative;
    /*height: 100%;*/

}

a {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    text-decoration: none !important;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

em {
    font-style: normal;
}

ol,ul{list-style:none}

li{display:list-item}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video, xmp {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 100%;
}

body, button, input, select, textarea {
    font: 14px/1 Microsoft YaHei;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

.containers {
    width: 1500px;
    margin: 0 auto;
}

.headers {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #E2E5EA;
    background: rgba(0,0,0,0.1);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers.bg {
    background: rgba(0,0,0,0.7);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headers .header .logo {
    /* width: 142px; */
    height: 60px;
}
.headers .header .logo img {
    /* width: 142px; */
    height: 60px;
}
.headers .header .navs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.headers .header .navs .nav {
    height: 70px;
    line-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.headers .header .navs .nav .nav-item {
    height: 70px;
    line-height: 70px;
    padding: 0 20px;
    font-size: 18px;
    /* font-weight: bold; */
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .nav .nav-item {
    /*color: #000;*/
}
.headers .header .navs .nav:hover::before,.headers .header .navs .nav.active::before {
    content: '';
    position: absolute;
    left: 20px;
    top: calc(100% - 2px);
    width: calc(100% - 40px);
    height: 4px;
    background: #FE6B03;
    border-radius: 2px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .nav .children {
    position: absolute;
    left: 0;
    top: 69px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #fff;
    border-radius: 5px;
}
.headers .header .navs .nav:hover .children  {
    display: flex;
}
.headers .header .navs .nav .children .child-link {
    height: 40px;
    line-height: 40px;
    color: #333;
    width: 100%;
    text-align: center;
}
.headers .header .navs .nav .children .child-link:hover {
    background: #f2f2f2;
}

.headers .header .navs .tel {
    display: flex;
    align-items: center;
    justify-content: center;
	border: 1px solid #fff;
	padding:5px 20px;
	border-radius: 20px;
}
.headers .header .navs .tel img {
    width: 22px;
    height: 22px;
}
.headers .header .navs .tel span {
	font-size:18px;
	color: #fff;
}
.banners {
    width: 100%;
}

.banners .banner {
    min-height: 900px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.banners .banner .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.banners .banner .swiper-wrapper .swiper-slide .image {
    position: absolute;
    left: 0;
    top: 0;
}
.banners .banner .swiper-wrapper .swiper-slide .banner-box {
    position: absolute;
    left: 0;
    top: 180px;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.banners .banner .swiper-wrapper .swiper-slide .banner-box a {
    background: #FE6B03;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
	letter-spacing: 2px;;
    padding: 10px 30px;
    border-radius: 30px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
	position: relative;
	margin-top:260%;
}
.banners .banner .swiper-wrapper .swiper-slide .banner-box a img {
	position: absolute;
	left: 170px;
	top: 20px;
	width: 40px !important;
	animation: jump 1s infinite; 
}
.banners .banner .swiper-wrapper .swiper-slide .banner-box a:hover {
    background: #D75D06;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.banners .banner .swiper-wrapper .swiper-slide a {
    display: inline-block;
    height: 100%;
}
.banners .banner .swiper-wrapper .swiper-slide a img {
    width: auto !important;
}
@keyframes jump {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}


.banners .banner .swiper-pagination-banner {
    position: absolute;
    z-index: 999;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0;
    bottom: 15px;
}

.banners .banner .swiper-pagination-banner .swiper-pagination-bullet{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin: 0 0.5em;
    outline: none;
    width: 1em;
    height: 1em;
    border-radius: 0.5rem;
    border: 1px solid #4F5668;
    background-color: #4F5668;
    opacity : 1;
}

.banners .banner .swiper-pagination-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background:#FE6B03;
    border: 1px solid #FE6B03;
}




.banners .banner  .swiper-button-next {
    right: 10px;
    left: unset;
    top: 50%;
    bottom:unset;
    border: none;
    background-color: rgba(255,255,255,0);
    width: 22px;
    height: 36px;
    background-image: url("../images/b_r.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


.banners .banner  .swiper-button-prev {
    right: unset;
    left: 10px;
    top: 50%;
    bottom: unset;
    border: none;
    background-color: rgba(255,255,255,0);
    width: 22px;
    height: 36px;
    background-image: url("../images/b_l.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.banners .banner  .swiper-button-next:hover,.banners .banner  .swiper-button-prev:hover {
    background-position: -22px 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.banners .banner  .swiper-button-next:after,.banners .banner .swiper-button-prev:after {
    display: none;
}







.search-box {
    display: inline-block;
    width: 100%;
    height: 60px;
    background: #F6F8FA;
}
.search-box .search-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.search-box .search-container .l {
    border: 1px solid #000;
    height: 36px;
    line-height: 36px;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.search-box .search-container .l .search-input {
    width: calc(100% - 30px);
    height: 32px;
    line-height: 32px;
    padding: 3px 10px;
    outline: unset;
    background: none;
    font-size: 14px;
    color: #000;
    border: 1px solid #eee;
    border: none;
}
.search-box .search-container .l .search-input::placeholder {
    color: #000;
}
.search-box .search-container .l .search-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: unset;
    border: unset;
    background: #FE6B03;
}
.search-box.search-box-bg .search-container .l .search-icon-box {
    background: #fff;
}
.search-box .search-container .l .search-icon-box img {
    width: 16px;
    height: 15px;
}
.search-box .search-container .r {
    height: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.search-box .search-container .r .hot-icon {
    width: 19px;
    height: 23px;
    margin-right: 8px;
}
.search-box .search-container .r .lab {
    font-size: 16px;
    color: #000;
}

.search-box .search-container .r a {
    font-size: 16px;
    color: #000;
}
.search-box .search-container .r a:hover {
    color: #FE6B03;
}
.search-box .search-container .r em {
    width: 1px;
    height: 14px;
    background: #888;
    margin: 0 8px;
}

.G-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
}

.G-title .GT-name {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 4px;
    z-index: 2;
}
.G-title .GT-name span {
    z-index: 1;
}
.G-title .GT-name .c-black {
    color: #333;
}
.G-title .GT-name .c-blue {
    color: #FE6B03;
}
.G-title .GT-name .c-white {
    color: #fff;
}
.G-title .GT-name .yuan {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    margin: 0 5px 0 2px;
}
.G-title .GT-name:before {
	position: absolute;
	left: -30px;
	bottom: -50px;
	content: '';
	width:50px;
	height: 6px;
	background-color: #FE6B03;
}
.G-title .GT-name .line {
    position: absolute;
    left: -30px;
    bottom: -50px;
    width: calc(100% + 60px);
	height: 2px;
	background-color: #FE9448;
    text-align: center;
    font-size: 50px;
    z-index:1;
    color: #F3F3F3;
    font-weight: bold;
}
.G-title .G-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
}
.G-title .G-tip .G-text {
    font-size: 20px;
    color: #111;
    margin: 0 20px;
    letter-spacing: 2px;
}
.G-title .G-tip .c-black {
    color: #333;
}
.G-title .G-tip .c-white {
    color: #fff;
}
.G-title .G-tip .c-blue {
    color: #FE6B03;
}
.services-section {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.services-section .services .boxs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 40px;
}
.services-section .services .boxs .box {
    width: 742px;
	height: 360px;
    margin-right: calc(100% - 1484px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    background: #DBDCE0;
    position: relative;
	overflow: hidden;
}
.services-section .services .boxs .box .image {
    max-width:742px;
	max-height:360px;
}
.services-section .services .boxs .box .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index:1;
	background:rgba(0,0,0,0);
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.services-section .services .boxs .box.active .bg {
	background:rgba(0,0,0,0.5);
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.services-section .services .boxs .box .box-content {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index:2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.services-section .services .boxs .box .box-content .num {
    width: 77px;
    height: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.services-section .services .boxs .box .box-content .num .icon {
    width: 77px;
    height: 83px;
}
.services-section .services .boxs .box .box-content .num span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    padding-left: 8px;
    padding-top: 2px;
}
.services-section .services .boxs .box .box-content .tit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 34px;
    color: #fff;
    font-weight: bold;
    margin: 20px 0 30px;
}
.services-section .services .boxs .box .box-content .more {
    /*width: 200px;*/
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    background: #FE6B03;
    padding: 5px 30px;
    border-radius: 30px;
}
.services-section .services .boxs .box .box-content .more .icon1 {
    width: 22px;
    margin-left: 20px;
}
.services-section .services .boxs .box.active .box-content {
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.services-section .services .boxs .box .bottom-title {
	position: absolute;
	left: 0;
	bottom:0;
	background-color: #FE6B03;
	color: #fff;
	font-size:20px;
	padding:10px 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.services-section .services .boxs .box.active .bottom-title {
	bottom:-100%;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.services-section .services .boxs .box:nth-child(2n) {
    margin-right: 0;
}

.section-wheres {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-image: url("../images/tt_bg_1.png");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
}

.wheres {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wheres .left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.wheres .left .t {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 4px;
}
.wheres .left .t .s1 {
    font-size: 48px;
    margin-top:-11px;
}
.wheres .left .zx {
    background: #FE6B03;
    color: #fff;
    border: 1px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 30px;
    border-radius: 30px;
    margin: 20px 0 40px 40px;
    cursor: pointer;
}
.wheres .left .zx span {
    font-size: 32px;
    padding: 0 5px;
    font-weight: bold;
}
.wheres .left .zx .icon {
    margin-left:40px;
    width: 36px;
}
.wheres .left .qr {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.wheres .left .qr .image {
    width: 150px;
    height: 150px;
    margin-right: 20px;
}
.wheres .left .qr .dh {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.wheres .left .qr .dh .tn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #333;
}
.wheres .left .qr .dh .tn .hour {
    margin-right: 10px;
}
.wheres .left .qr .dh .tels {
    font-size: 44px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}
.wheres .right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.wheres .right .bx {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-left: 40px;
    cursor: pointer;
}
.wheres .right .bx .yuan {
    width: 126px;
    height: 126px;
    border: 1px solid #FE6B03;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wheres .right .bx .yuan span {
    width: 120px;
    height: 120px;
    background: #FE6B03;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wheres .right .bx .text {
    font-size: 22px;
    color: #333;
    background: none;
    border: 1px solid #FE6B03;
    padding: 5px 25px;
    border-radius: 30px;
    margin-top: 30px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.wheres .right .bx.active .text {
    color: #fff;
    background: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}


.section-hot-class {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;

}
.hot-class .hot-class-box {
    display: inline-block;
    width: 100%;
    background: #fff;
    margin-top: 60px;
    position: relative;
}
.swiper-hot-class {
    width: 100%;
    height: 640px;
    overflow: hidden;
}
.swiper-hot-class .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    background: #F6F8FA;
}
.swiper-hot-class .swiper-wrapper .swiper-slide .image {
    width: 750px;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.swiper-hot-class .swiper-wrapper .swiper-slide .image img {
    width: 750px;
    height: 640px
}
.swiper-hot-class .swiper-wrapper .swiper-slide .cont {
    width: calc(100% - 750px - 80px);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    height: 640px;
}
.swiper-hot-class .swiper-wrapper .swiper-slide .cont h6 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #FE6B03;
}
.swiper-hot-class .swiper-wrapper .swiper-slide .cont .intro {
    font-size:18px;
    color: #000;
    line-height: 32px;
    max-height: 256px;
    overflow: hidden;
    margin: 30px 0 100px;
}
.swiper-hot-class .swiper-wrapper .swiper-slide .cont .more {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.swiper-hot-class .swiper-wrapper .swiper-slide .cont .more .a-link {
    font-size: 24px;
    color: #fff;
    background: #FE6B03;
    border: 1px solid #FE6B03;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 25px;
    border-radius: 30px;
}
.swiper-hot-class .swiper-wrapper .swiper-slide .cont .more .a-link:first-of-type {
    margin-right: 40px;
}
.swiper-hot-class .swiper-wrapper .swiper-slide .cont .more .a-link img {
    margin-left: 10px;
}
.swiper-hot-class .swiper-wrapper .swiper-slide .cont .more .a-link.a-link-all {
    border: 1px solid #333;
    color: #333;
    background: none;
}
.swiper-hot-class .swiper-wrapper .swiper-slide .cont .more .a-link img {

}
.hot-class-box .swiper-button-next {
    right: 50px;
    left: unset;
    top: unset;
    bottom:20px;
    border: none;
    background: none;
    width: 30px;
    height: 29px;
}
.hot-class-box .swiper-button-next img {
    width: 30px;
}

.hot-class-box .swiper-button-prev {
    right: 90px;
    left: unset;
    top: unset;
    bottom: 20px;
    border: none;
    background: none;
    width: 30px;
    height: 29px;
}
.hot-class-box .swiper-button-prev img {
    width: 30px;
}

.hot-class-box .swiper-button-next:after,.hot-class-box .swiper-button-prev:after {
    display: none;
}
.section-freedom {
    padding: 10px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.section-freedom.p70 {
    padding-bottom: 70px;
}
.freedom {
    background-image: url("../images/freedom_bg.png");
    box-shadow: 0 0 30px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.freedom .tit {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    font-size: 48px;
    color: #FE6B03;
    font-weight: bold;
    letter-spacing: 4px;
    position: relative;
}
.freedom .tit em {
    width: 12px;
    height: 12px;
    background: #FE6B03;
    border-radius: 50%;
    margin: 0 5px 0 2px;
}
.freedom .tit:before {
    content: '';
    width: 70px;
    height: 6px;
    background: #FE6B03;
    position: absolute;
    left: calc(50% - 35px);
    bottom: -20px;

}
.freedom .sm-tit {
    font-size: 22px;
    color: #333;
    margin-top: 40px;
}
.freedom .sm-tit em {
    color: #FE6B03;
}
.freedom .lists {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(100% - 140px);
    margin: 40px 70px 60px;
}
.freedom .lists .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 400px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    background: #fff;
}
.freedom .lists .item .image {
    width: 400px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.freedom .lists .item .image img {
    width: 400px;
    height: 200px;
    border-radius: 10px 10px 0 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.freedom .lists .item:hover .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.freedom .lists .item h4 {
    font-size: 28px;
    color: #333;
    margin: 15px 0;
    font-weight: bold;
}
.freedom .lists .item span {
    font-size: 22px;
    color: #333;
    background: none;
    padding: 6px 50px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.freedom .lists .item.active span {
    color: #fff;
    background: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}



.section-solution {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.solution {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.solution .lists {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 60px;
}
.solution .lists .list-menu {
    width: 280px;
    background: #F6F8FA;
    border: 1px solid #ddd;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin-right: 10px;
}
.solution .lists .list-menu .mbox {
    width: 100%;
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
}
.solution .lists .list-menu .mbox:last-of-type {
    border-bottom: none;
}
.solution .lists .list-menu .mbox .icon {
    width: 60px;
    height: 60px;
    margin: 0 20px;
    background-repeat: no-repeat;
    background-position: 0 0;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .list-menu .mbox.on {
    background: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .list-menu .mbox.on .icon {
    background-position: -60px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .list-menu .mbox .icon.icon1 {
    background-image: url("../images/icon_08.png");
}
.solution .lists .list-menu .mbox .icon.icon2 {
    background-image: url("../images/icon_09.png");
}
.solution .lists .list-menu .mbox .icon.icon3 {
    background-image: url("../images/icon_10.png");
}
.solution .lists .list-menu .mbox .icon.icon4 {
    background-image: url("../images/icon_11.png");
}
.solution .lists .list-menu .mbox .icon.icon5 {
    background-image: url("../images/icon_12.png");
}
.solution .lists .list-menu .mbox .icon.icon6 {
    background-image: url("../images/icon_13.png");
}
.solution .lists .list-menu .mbox .icon.icon7 {
    background-image: url("../images/icon_48.png");
}
.solution .lists .list-menu .mbox .icon.icon8 {
    background-image: url("../images/icon_49.png");
}
.solution .lists .list-menu .mbox .icon.icon9 {
    background-image: url("../images/icon_50.png");
}
.solution .lists .list-menu .mbox .icon.icon10 {
    background-image: url("../images/icon_51.png");
}
.solution .lists .list-menu .mbox .icon.icon11 {
    background-image: url("../images/icon_52.png");
}
.solution .lists .list-menu .mbox .icon.icon12 {
    background-image: url("../images/icon_53.png");
}
.solution .lists .list-menu .mbox .name{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.solution .lists .list-menu .mbox .name .cn {
    font-size: 24px;
    color: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .list-menu .mbox .name .en {
    font-size: 16px;
    margin-top: 5px;
    color: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .list-menu .mbox.on .name .cn {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .list-menu .mbox.on .name .en {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .list-menu .mbox.on:before {
    content: '';
    position: absolute;
    right: -16px;
    top: 45px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 16px solid #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .show-list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 292px);
}
.solution .lists .show-list .show-li {
    width: 100%;
    height: 690px;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
}
.solution .lists .show-list .show-li.on {
    display: flex;
}
.solution .lists .show-list .show-li .image {
    width: 100%;
    height: 690px;
}
.solution .lists .show-list .show-li .more {
    position: absolute;
    right: 40px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: #FE6B03;
    padding: 5px 25px;
    border-radius: 30px;
}
.solution .lists .show-list .show-li .more .icon {
    margin-left:10px; ;
}

.section-product {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.product .lists {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-top: 60px;
}
.product .lists .left {
    width: 280px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.product .lists .pro-nav {
    width: 280px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    border-left: 1px solid #FE6B03;
}
.product .lists .left .pro-nav {
    border: 1px solid #ddd;
}
.product .lists .pro-nav .t {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #FE6B03;
    width: 100%;
    padding: 30px 0;
}
.product .lists .pro-nav .t .icon {
    width: 60px;
}
.product .lists .pro-nav .t h3 {
    font-size: 44px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 5px;
    margin: 10px 0;
}
.product .lists .pro-nav .t em {
    font-size: 20px;
    color: #fff;
}
.product .lists .pro-nav .cate {
    margin-top: 15px;
    background: #FE6B03;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 50px;
    width: 100%;
    padding: 0 20px;
}
.product .lists .pro-nav .cate .icon {
    width: 25px;
    margin-right: 10px;
}
.product .lists .pro-nav .cate span {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
.product .lists .pro-nav .children {
    margin-top: 13px;
    background: #F6F8FA;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    width: 100%;
    padding: 0 20px;
}
.product .lists .pro-nav .children span {
    color: #000;
    font-size: 18px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-nav .children .icon {
    width: 16px;
}
.product .lists .pro-nav .children:hover span {
    color: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-nav .lianxi {
    background: #FE6B03;
    padding: 20px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.product .lists .pro-nav .lianxi .wz {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    font-style: italic;
}
.product .lists .pro-nav .lianxi .num {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    font-style: italic;
}
.product .lists .pro-lists {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 300px);
}
.product .lists .pro-lists .list {
    width: 390px;
    height: 440px;
    margin-right: calc((100% - (390px * 3)) / 2);
    margin-top: 20px;
    background: #F6F8FA;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .list:hover {
    background: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .list:nth-child(1),.product .lists .pro-lists .list:nth-child(2),.product .lists .pro-lists .list:nth-child(3){
    margin-top: 0;
}
.product .lists .pro-lists .list:nth-child(3n){
    margin-right: 0;
}
.product .lists .pro-lists .list .image {
    width: 390px;
    height: 390px;
    overflow: hidden;
}
.product .lists .pro-lists .list .image img {
    width: 390px;
    height: 390px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .pro-lists .list:hover .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .pro-lists .list .name {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    width: calc(100% - 30px);
    position: relative;
    height: 50px;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .list .name span {
    display: inline-block;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 18px;
    color: #000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .list .name img {
    position: absolute;
    right: -100px;
    top: 18px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .list:hover .name {
    justify-content: space-between;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .list:hover .name span {
    max-width: calc(100% - 50px);
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .list:hover .name img {
    right: 15px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.section-experience {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #F6F8FA;
}
.experience {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.experience .left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    max-width: 850px;
}
.experience .left .title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 850px;
    background: linear-gradient(to right, rgba(247,227,213,0), rgba(247,227,213,1),rgba(247,227,213,0));
    padding: 10px 0;
    margin-bottom: 15px;
}
.experience .left .box {
    display: flex;
    flex-wrap: wrap;
}
.experience .left .box .bx {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
    width: 400px;
    background: #fff;
    margin-right: 30px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(254,107,3,0.3);
}
.experience .left .box .bx:nth-child(2n){
    margin-right: 0;
}
.experience .left .box .bx .icon {
    margin-right: 10px;
}
.experience .left .box .bx span {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    letter-spacing: 3px;
}
.experience .left .bt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0 30px;
}
.experience .left .bt em {
    width:280px;
    height: 2px;
    background: #eee;
}
.experience .left .bt .n {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    letter-spacing: 3px;
    font-weight: bold;
    font-style: italic;
}
.experience .left .bt .n span {
    color: #FE6B03;
}
.experience .left .boxx {
    display: flex;
    align-items: center;
    justify-content: center;
}
.experience .left .boxx .bxx {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #fff;
    border: 1px solid #eee;
    width: 120px;
    height: 160px;
    margin-right: 25px;
    position: relative;
}
.experience .left .boxx .bxx:last-of-type {
    margin-right: 0;
}
.experience .left .boxx .bxx:before {
    position: absolute;
    content: "";
    width: 40px;
    background: #FFBC8D;
    height: 2px;
    left: 40px;
    bottom: 15px;

}
.experience .left .boxx .bxx span {
    font-size: 18px;
    font-weight: bold;
    margin-top: 8px;
}
.experience .left .more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.experience .left .more a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: #FE6B03;
    padding: 5px 25px;
    border-radius: 30px;
    margin-top: 30px;
    /*width: 170px;*/
    position: relative;
}
.experience .left .more a:before {
    animation: wipes 1.6s infinite;
    background-image: linear-gradient(45deg,#fff0 40%,#fff9,#fff0 60%);
    background-size: 300%;
    border-radius: 30px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.experience .left .more a img {
    margin-left:10px; ;
}

.experience .mes {
    width: 400px;
    height: 580px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.experience .mes  .mes-title {
    color: #000;
    font-size: 28px;
    font-weight: bold;
    padding: 50px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.experience .mes  .mes-title em {
    color: #FE6B03;
}
.experience .mes .mes-input {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 0 30px;
}
.experience .mes .mes-input .inputs {
    border: 1px solid #ddd;
    height: 50px;
    line-height: 50px;
    padding: 10px 10px;
    outline: none;
    font-size: 18px;
    width: 100%;
}
.experience .mes .mes-input .inputs::placeholder {
    color: #999;
}
.experience .mes .mes-input .textarea {
    border: 1px solid #ddd;
    height: 120px;
    line-height: 20px;
    padding: 10px 10px;
    outline: none;
    font-size: 18px;
    width: 100%;
    resize:none;
}
.experience .mes .mes-input .textarea.textarea1 {
    height: 200px;
}
.work .work-box .work-message .work-mes-input .textarea::placeholder {
    color: #999;
}
.experience .mes .mes-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    padding: 0 15px;
}
.experience .mes .mes-btn button {
    background: #FE6B03;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 12px 40px;
    border-radius: 40px;
    border: none;
    position: relative;
}
.experience .mes .mes-btn button img {
    position: absolute;
    right: -25px;
    top: 15px;
    animation: jump 1s infinite;
}

.section-student {
    padding: 70px 0 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.student {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.student .student-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #fff;
    margin-top: 60px;
    position: relative;
}
.swiper-student {
    width: 100%;
    height: 510px;
    overflow: hidden;
}
.swiper-student .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 365px;
    height: 250px;
    background: #F6F8FA;
}
.swiper-student .swiper-wrapper .swiper-slide .imagex {
    width: 100%;
    height: 215px;
    overflow: hidden;
    display: flex;
}
.swiper-student .swiper-wrapper .swiper-slide .imagex img {
    width: 100%;
    height: 215px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.swiper-student .swiper-wrapper .swiper-slide:hover .imagex img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.swiper-student .swiper-wrapper .swiper-slide .cont {
    width: 100%;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #000;
    font-size: 18px;
    text-align: center;
}
.student-box .swiper-button-next {
    right: -50px;
    left: unset;
    top: 260px;
    bottom:unset;
    background: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.student-box .swiper-button-next img {
    width: 24px;
}

.student-box .swiper-button-prev {
    right: unset;
    left: -50px;
    top: 260px;
    bottom: unset;
    background: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.student-box .swiper-button-prev img {
    width: 24px;
}

.student-box .swiper-button-next:after,.student-box .swiper-button-prev:after {
    display: none;
}
.student-box .more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: #FE6B03;
    padding: 5px 25px;
    border-radius: 30px;
    margin-top: 30px;
    /*width: 170px;*/
    position: relative;
}
@keyframes wipes{0%{background-position:150% 150%}to{background-position:-150% -150%}}
.student-box .more:before {
    animation: wipes 1.6s infinite;
    background-image: linear-gradient(45deg,#fff0 40%,#fff9,#fff0 60%);
    background-size: 300%;
    border-radius: 30px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.student-box .more img {
    margin-left:10px; ;
}
.section-faculty {
    padding: 30px 0 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.faculty {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.faculty .hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.faculty .hd .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.faculty .hd .title .line {
    width: 8px;
    height: 42px;
    background: #FE6B03;
    margin-right: 10px;
}
.faculty .hd .title h3 {
    font-size: 44px;
    color: #333;
    font-weight: bold;
    letter-spacing: 3px;
}
.faculty .hd .title .xian {
    width: 50px;
    height: 1px;
    background: #333;
    margin: 0 10px;
}
.faculty .hd .title h6 {
    font-size: 20px;
    color: #555;
    font-weight: normal;
}
.faculty .hd a {
    color: #555;
    font-size:24px;
    text-decoration: underline !important;
}
.faculty .hd a:hover {
    color: #FE6B03;
}
.faculty .box {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.faculty .box .bx {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;

}
.faculty .box .bx .avatar {
    border: 1px solid #FE6B03;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 488px;
    height: 680px;
    margin-right: 20px;
}
.faculty .box .bx .avatar img {
    width: 486px;
    height: 610px;
}
.faculty .box .bx .avatar .name {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FE6B03;
}
.faculty .box .bx .avatar .name h3 {
    font-size: 40px;
    color:#fff;
    margin-right: 20px;
}
.faculty .box .bx .avatar .name em {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faculty .box .bx .info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 508px);
    padding-top: 10px;
}
.faculty .box .bx .info .line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 5px 0;
}
.faculty .box .bx .info .line img {
    width: 42px;
    margin-right: 20px;
}
.faculty .box .bx .info .line span {
    width:calc(100% - 62px);
    font-size: 20px;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.faculty .box .bx .info .more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: #FE6B03;
    padding: 5px 25px;
    border-radius: 30px;
    margin-top: 20px;
    /*width: 170px;*/
    position: relative;
}
.faculty .box .bx .info .more:before {
    animation: wipes 1.6s infinite;
    background-image: linear-gradient(45deg,#fff0 40%,#fff9,#fff0 60%);
    background-size: 300%;
    border-radius: 30px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.faculty .box .bx .info .more img {
    margin-left:10px; ;
}
.swiper-faculty {
    width: calc(100% - 508px);
    /*height: 640px;*/
    overflow: hidden;
    position: absolute;
    left: 508px;
    top: 338px;
}
.swiper-faculty .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.swiper-faculty .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 345px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.swiper-faculty .swiper-wrapper .swiper-slide .image img {
    width: 100%;
    height: 345px
}

.faculty .box .swiper-button-next {
    right: 50px;
    left: unset;
    top: 290px;
    bottom:unset;
    border: none;
    background: none;
    width: 30px;
    height: 29px;
}
.faculty .box .swiper-button-next img {
    width: 30px;
}

.faculty .box .swiper-button-prev {
    right: 90px;
    left: unset;
    top: 290px;
    bottom: unset;
    border: none;
    background: none;
    width: 30px;
    height: 29px;
}
.faculty .box .swiper-button-prev img {
    width: 30px;
}

.faculty .box .swiper-button-next:after,.faculty .box .swiper-button-prev:after {
    display: none;
}

.section-abouts {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}

.abouts {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.abouts .left {
    width: 540px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;

}
.abouts .left .line-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
}
.abouts .left .line-box .name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #333;
}
.abouts .left .line-box .name .icon {
    margin: 0 5px;
}
.abouts .left .line-box .en {
    font-size: 24px;
    color: #555;
    margin-top: 15px;
}

.abouts .left .intro {
    font-size: 18px;
    color: #333;
    margin-top: 50px;
    line-height: 32px;
    max-height: 224px;
    overflow: hidden;
}
.abouts .left a {
    margin-top: 40px;
}
.q-more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff !important;
    background: #FE6B03;
    padding: 8px 20px;
    border-radius: 30px;
    position: relative;
}
.q-more:before {
    animation: wipes 1.6s infinite;
    background-image: linear-gradient(45deg,#fff0 40%,#fff9,#fff0 60%);
    background-size: 300%;
    border-radius: 30px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.q-more .icon {
    margin-left:10px; ;
}

.abouts .about-image {
    max-width:  calc(100% - 560px);
}
.abouts .about-image img {
    max-width: 100%;
}

.section-news {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #F6F8FA;
}
.news {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.news .new-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-top: 60px;
    width: 100%;
}
.news .new-box .hd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fff;
}
.news .new-box .hd .name {
    width: calc(100% / 4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #333;
    background: none;
    padding: 18px 0;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.news .new-box .hd .name.active {
    background: #FE6B03;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.news .new-box .hd .name img {
    margin-right: 20px;
    height: 22px;
    display: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.news .new-box .hd .name.active img {
    display: flex;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.news .new-box .hd em {
    width: 1px;
    height: 32px;
    background: #ddd;
}
.news .new-box .new-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.news .new-box .new-content .new-list {
    display: none;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}
.news .new-box .new-content .new-list.on {
    display: flex;
}
.news .new-box .new-content .new-list  .l {
    width: 720px;
    margin-right: 20px;
}
.news .new-box .new-content .new-list  .l .photo-list {
    width: 720px;
    /*height: 420px;*/
}
.news .new-box .new-content .new-list  .l .photo-list a {
    width: 720px;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.news .new-box .new-content .new-list  .l .photo-list a img {
    width: 720px;
    height: 420px;
    border-radius: 20px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.news .new-box .new-content .new-list  .l .photo-list a:hover img{
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.news .new-box .new-content .new-list  .l .tops {
    background-color: #fff;
    border-radius: 10px;
    display: inline-block;
    padding: 20px;
    margin-top: 20px;
    width: 100%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.news .new-box .new-content .new-list  .l .tops .title {
    display: inline-block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    color: #222;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.news .new-box .new-content .new-list  .l .tops .intro {
    display: inline-block;
    width: 100%;
    line-height: 24px;
    max-height: 48px;
    font-size: 16px;
    color: #555;
    overflow: hidden;
}
.news .new-box .new-content .new-list  .l .tops .time {
    margin-top: 10px;
    display: inline-block;
    font-size: 15px;
    color: #555;
}
.news .new-box .new-content .new-list .l .tops:hover .title {
    color: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.news .new-box .new-content .new-list  .r {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 740px);
}
.news .new-box .new-content .new-list .r .li {
    width: 100%;
    background-color: #d9d9d9;
    height: 186px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.news .new-box .new-content .new-list .r .li:last-of-type {
    margin-bottom: 0;
}

.news .new-box .new-content .new-list .r .li a {
    display: inline-block;
    height: 173px;
    width: calc(100% - 2px);
    margin: 1px 1px 0 1px;
    background-color: #fff;
    border-radius: 10px;
    padding:15px 10px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.news .new-box .new-content .new-list .r .li a .title {
    display: inline-block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    color: #222;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.news .new-box .new-content .new-list .r .li a .intro {
    display: inline-block;
    width: 100%;
    line-height: 24px;
    max-height: 48px;
    font-size: 16px;
    color: #555;
    overflow: hidden;
}
.news .new-box .new-content .new-list .r .li a .btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}
.news .new-box .new-content .new-list .r .li a .btm .time {
    color: #555;
}
.news .new-box .new-content .new-list .r .li a .btm span {
    color: #FE6B03;
    font-size: 16px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.news .new-box .new-content .new-list .r .li a:hover .title,.news .new-box .new-content .new-list .r .li a:hover .btm span {
    color: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.section-news .link {
    position: relative;
    margin: 60px auto 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.section-news .link .tit {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    left: 00px;
    top: 5px;
}
.section-news .link .tit .cn {
    background: #FE6B03;
    color: #fff;
    font-size: 20px;
    padding: 3px 5px;
    letter-spacing: 3px;
}
.section-news .link .tit .en {
    color: #333;
    font-size: 20px;
    margin-top: 2px;
    letter-spacing: 2px;
}
.section-news .link .link-list {
    width: 100%;
    margin-left: 40px;
    background: #fff;
    padding: 20px 10px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.section-news .link .link-list a {
    display: inline-block;
    font-size: 18px;
    color: #333;
}
.section-news .link .link-list em {
    width: 1px;
    height: 18px;
    background: #555;
    margin: 0 15px;
}
.section-news .link .link-list a:hover {
    color: #FE6B03;
}
.footers {
    background: #333 ;
    padding: 0;
}
.footers .footer {
    padding: 0;
}
.footers .footer.fb{
    border-bottom: 1px solid #fff;
}
.footers .footer.bbg{
    background: #232325;
}
.footers .footer.mt20{
    margin-top: 20px;
}
.footers .footer .bottom-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}
.footers .footer .bottom-menu a {
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    height: 60px;
    line-height: 60px;
    position: relative;
    padding: 0 20px;
}
.footers .footer .bottom-menu a em {
    width: 1px;
    height: 20px;
    background: #fff;
}
/*.footers .footer .bottom-menu a:hover,.footers .footer .bottom-menu a.active {*/
/*    background: #FE6B03;*/
/*    -webkit-transition: all .5s;*/
/*    -o-transition: all .5s;*/
/*    transition: all .5s*/
/*}*/
.footers .footer .bottom-menu a:hover:before,.footers .footer .bottom-menu a.active:before {
    content: '';
    position: absolute;
    left: 20px;
    top: calc(100% - 2px);
    width: calc(100% - 40px);
    height: 4px;
    background: #FE6B03;
    border-radius: 2px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footers .footer .bottom-menu em {
    margin: 0 10px;
    width: 1px;
    height: 12px;
    background: #FFF;
}
.footers .footer .bottom-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px 30px;
}

.footers .footer .bottom-info .bottom-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    padding-left: 40px;
    width: calc(100% - 540px);
}
.footers .footer .bottom-info .bottom-list .line {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.footers .footer .bottom-info .bottom-list .line img {
    margin-right: 10px;
    width: 51px;
}

.footers .footer .bottom-info .bottom-list .line .line-li {
    display: inline-block;
    font-size: 20px;
    color:#fff;
    line-height: 30px;
    margin-top:6px;
}
.footers .footer .bottom-info .bottom-qrcode {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.footers .footer .bottom-info .bottom-qrcode img {
    width: 140px;
    height: 140px;
}
.footers .footer .bottom-info .bottom-qrcode span {
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}
.footers .footer .copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.footers .footer .copyright .cov {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #232325;
    padding: 15px 5px;
}
.footers .footer .copyright p {
    text-align: center;
    color: #777;
    font-size: 16px;
    line-height: 28px;
}
.footers .footer .copyright p a {
    color: #777;
}
.footers .footer .copyright p a:hover {
    color: #FE6B03;
}
.footers .footer .copyright .cov p {
    color: #fff;
}
.footers .footer .copyright .cov p a {
    color: #fff;
}

.modal-header-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-header-message::before,.modal-header-message::after {
    display: none;
}

.modal-dialog-message {
    width:540px;
}
.form-message .form-group label {
    margin-bottom: 10px;
}
.form-message .form-group .code-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.form-message .form-group .code {
    width: 200px;
    margin-right: 10px;
}
.form-message .form-group .codeimg {
    height: 30px;
}
.form-message .message-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 30px 0 10px;
}


.page-banners .page-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    width: 100%;
    position: relative;
}
.page-banners .page-banner .image {
    width: auto;
    max-width: 100%;
}

.section-caac {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #F6F8FA;
    /*background-image: url(../image/work_bg.jpg);*/
    /*background-position: left top;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
}
.caac {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.caac .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    margin-top: 80px;
}
.caac .box .box-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}
.caac .box .box-line:first-of-type {
    margin-bottom: 60px;
}
.caac .box .box-line .bx {
    width: 210px;
    height: 210px;
    border:1px solid #FE6B03;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.caac .box .box-line .bx .s-bx {
    width: 200px;
    height: 200px;
    background: #FE6B03;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    border-radius: 50%;
}
.caac .box .box-line .bx .s-bx img {
    margin-bottom: 15px;
}
.caac .box .box-line .bx .s-bx span {
    font-size: 20px;
    color: #fff;
}
.caac .box .box-line .bx .s-bx span:first-of-type {
    margin-bottom: 10px;
}
.caac .box .box-line .dian {
    display: flex;
    align-items: center;
    justify-content: center;
}
.caac .box .box-line .dian em {
    width: 10px;
    height: 10px;
    border: 1px solid #FE6B03;
    background: #fff;
    margin-right: 5px;
    border-radius: 50%;
}
.caac .box .box-line .dian em.b {
    background: #FE6B03;
}
.caac .box .box-line .dian em:last-of-type {
    margin-right: 0;
}
.caac .box .more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: #FE6B03;
    padding: 5px 25px;
    border-radius: 30px;
    margin-top: 50px;
    /*width: 170px;*/
    position: relative;
}
@keyframes wipes{0%{background-position:150% 150%}to{background-position:-150% -150%}}
.caac .box .more:before {
    animation: wipes 1.6s infinite;
    background-image: linear-gradient(45deg,#fff0 40%,#fff9,#fff0 60%);
    background-size: 300%;
    border-radius: 30px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.caac .box .more img {
    margin-left:10px; ;
}
.section-certs {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.certs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.certs .cert-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 60px;
}
.certs .cert-image img {
    max-width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.section-xuanze {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #F6F8FA;
}
.xuanze {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.xuanze .lists {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.xuanze .lists .box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: calc(50% - 25px);
    margin-right: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.xuanze .lists .box:nth-child(1),.xuanze .lists .box:nth-child(2) {
    margin-bottom: 50px;
}
.xuanze .lists .box:nth-child(2n) {
    margin-right: 0;
}
.xuanze .lists .box .l {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 368px);
    height: 276px;
    position: relative;
    background: #fff;

}

.xuanze .lists .box .l .bg {
    position: absolute;
    left: -16px;
    top: 20px;
    z-index: 1;
}
.xuanze .lists .box .l .active-bg {
    position: absolute;
    left: -16px;
    top: 20px;
    display: none;
    z-index: 1;
}
.xuanze .lists .box.active .l .bg {
    display: none;
}
.xuanze .lists .box.active .l .active-bg {
    display: flex;
}
.xuanze .lists .box .l .ta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 40px 0 0 20px;
}
.xuanze .lists .box .l .ta .num {
    width: 34px;
    height: 25px;
    overflow: hidden;

    background-position: 0 0;
    background-repeat: no-repeat;
    margin-right: 10px;
    margin-top: 2px;
}
.xuanze .lists .box .l .ta .num.num1 {
    background-image: url("../images/h_1.png");
}
.xuanze .lists .box .l .ta .num.num2 {
    background-image: url("../images/h_2.png");
}
.xuanze .lists .box .l .ta .num.num3 {
    background-image: url("../images/h_3.png");
}
.xuanze .lists .box .l .ta .num.num4 {
    background-image: url("../images/h_4.png");
}

.xuanze .lists .box.active .l .ta .num {
    background-position: -34px 0;
}
.xuanze .lists .box .l .ta .text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    font-size: 26px;
    letter-spacing: 2px;
    color: #333;
    font-weight: bold;
}
.xuanze .lists .box.active .l .ta .text {
    color: #fff;
}
.xuanze .lists .box .l .ta .text span:first-of-type {
    margin-bottom: 5px;
}
.xuanze .lists .box .l .tc {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin: 60px 0 0 50px;
    font-size: 22px;
    line-height: 40px;
    color: #333;
}
.section-page-position {
    padding: 20px 0;
}

.page-position {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page-position .icon-home {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.page-position span {
    color: #333;
    font-size: 15px;
}
.page-position a {
    font-size: 15px;
    color: #333;
}
.cons .page-position a:hover {
    color: #FE6B03;
}
.page-position .icon-r {
    width: 18px;
    height: 18px;
    margin: 0 5px;
}
.section-detail {
    padding:0 0 70px;
}
.section-detail .product .lists {
    margin-top: 0;
}
.product .lists .left .boxs {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    margin-top: 20px;
}
.product .lists .left .boxs .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #FE6B03;
    padding: 15px 20px;
}
.product .lists .left .boxs .title h1 {
    font-size: 30px;
    color: #fff;
    letter-spacing: 2px;
}
.product .lists .left .boxs .title h6 {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
}
.product .lists .left .boxs .list {
    border: 1px solid #ddd;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    padding: 0 20px;
    margin-top: 10px;
}
.product .lists .left .boxs .list a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 15px 15px;
}
.product .lists .left .boxs .list a:last-of-type {
    border-bottom: none;
}
.product .lists .left .boxs .list a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-right: 5px;
}

.product .lists .left .boxs .list a span {
    font-size: 18px;
    color: #333;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .left .boxs .list a:hover span {
    color: #FE6B03;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .left .boxs .contact {
    border: 1px solid #ddd;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 20px 20px;
}
.product .lists .left .boxs .contact p {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}
.product .lists .left .boxs .contact .qr {
    width: 154px;
    height: 154px;
    margin-top: 15px;
}
.product .lists .left .boxs .contact .sao {
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
    width: 100%;
    color: #555;
}
.section-detail .gl-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    margin-top: 50px;
}
.section-detail .gl-box.mt50 {
    margin-bottom: 50px;
}
.section-detail .gl-box .gl-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    border: 1px solid #ddd;
    border-right:2px solid #FE6B03;
    border-bottom: 2px solid #FE6B03;
}
.section-detail .gl-box .gl-title .name {
    background: #FE6B03;
    color: #fff;
    font-size: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-detail .gl-box .gl-title .name img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    /*margin-right: 5px;*/
}
.section-detail .gl-box .gl-title .more {
    font-size: 16px;
    margin-right: 10px;
    color: #888;
}
.section-detail .gl-box .gl-title .more:hover {
    color: #FE6B03;
}
.section-detail .gl-box .gl-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.section-detail .gl-box .gl-contact img {
    width: 100%;
}
.section-detail .gl-box .gl-pro-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
}
.section-detail .gl-box .gl-pro-list .pro {
    width: 390px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-right: calc((100% - (390px * 3)) / 2);
    border: 1px solid #ddd;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro:hover {
    border: 1px solid #FE6B03;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro:last-of-type {
    margin-right: 0;
}
.section-detail .gl-box .gl-pro-list .pro .image {
    width: 390px;
    height: 390px;
    overflow: hidden;
}
.section-detail .gl-box .gl-pro-list .pro .image img {
    width: 390px;
    height: 390px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro:hover .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro .name {
    height: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    background:#DDDDDD;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro .name .text {
    display: inline-block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro .name .icon {
    width: 0px;
    height: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro:hover .name{
    background: #FE6B03;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro:hover .name .text {
    width: calc(100% - 44px);
    color: #fff;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    text-align: left;

}
.section-detail .gl-box .gl-pro-list .pro:hover .name .icon {
    width: 44px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-new-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
}
.section-detail .gl-box .gl-new-list .newsx {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(50% - 10px);
    border-bottom: 1px solid #ddd;
    margin-right: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.section-detail .gl-box .gl-new-list .newsx:nth-child(2n){
    margin-right: 0;
}
.section-detail .gl-box .gl-new-list .newsx .text {
    width: calc(100% - 90px);
    font-size: 18px;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-new-list .newsx .time {
    text-align: right;
    width:90px;
    font-size: 16px;
    color: #666;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-new-list .newsx:hover .text {
    color: #FE6B03;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-new-list .newsx:hover .time {
    color: #FE6B03;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.section-detail .contact-title h1 {
    font-size:44px;
    font-weight: bold;
    color: #333;
}
.section-detail .contact-title .line {
    width: 400px;
    height: 1px;
    position: relative;
    background-color: #ddd;
    margin: 15px 0;
}
.section-detail .contact-title .line em {
    position: absolute;
    width: 20px;
    height: 5px;
    border: 1px solid #FE6B03;
    left: calc((100% - 22px) / 2);
    top: -2px;
}
.section-detail .contact-title h6 {
    font-size: 18px;
    color: #333;
}
.section-detail .contact-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}
.section-detail .contact-box .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: calc((100% - 40px) / 3);
    border: 1px solid #FE6B03;
    border-radius: 5px;
}
.section-detail .contact-box .box .name {
    width: 100%;
    font-size: 18px;
    color: #fff;
    background: #FE6B03;
    text-align: center;
    padding: 15px 0;
}
.section-detail .contact-box .box .infos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 20px 0;
}
.section-detail .contact-box .box .infos .icon {
    width: 44px;
    height: 44px;
    margin: 15px 0;
}
.section-detail .contact-box .box .infos p {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 28px;
    width: 100%;
    padding: 0 10px;
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}
.section-detail .contact-box .box .infos p.num {
    font-size: 22px;
}

.services-apps {
    padding: 70px 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.apps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.apps .boxs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 60px;
}
.apps .boxs .box {
    width:360px;
    height: 410px;
    margin-right: calc((100% - (360px * 4)) / 3);
    background: #F2F2F2;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box:hover {
    background: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box:nth-child(4n){
    margin-right: 0;
}
.apps .boxs .box .image {
    width: 360px;
    height: 360px;
    overflow: hidden;
    position: relative;
}

.apps .boxs .box .image img {
    width: 360px;
    height: 360px;
}
.apps .boxs .box .image .bg {
    position: absolute;
    left: 0;
    top: 0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box:hover .image .bg {
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box .image .more {
    width: 160px;
    height: 160px;
    border: 1px solid #FE6B03;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 100px;
    top: 100px;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box:hover .image .more {
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box .image .more .s-more {
    width: 150px;
    height:150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #FE6B03;
    border-radius: 50%;
    font-size: 22px;
    color: #fff;
    line-height: 28px;
}
.apps .boxs .box .bottom-title {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #333;
    font-size: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box:hover .bottom-title {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.services-yyal {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #F6F8FA;
}

.yyal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.yyal .boxs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 60px;
}
.yyal .boxs .box {
    width:488px;
    height: 426px;
    margin-right: calc((100% - (488px * 3)) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-bottom: 20px;
}
.yyal .boxs .box:nth-child(3n){
    margin-right: 0;
}
.yyal .boxs .box .image {
    width:488px;
    height: 376px;
}
.yyal .boxs .box .bottom-title {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #333;
    font-size: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: #fff;
}
.yyal .boxs .box:hover .bottom-title {
    background: #FE6B03;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.yyal .boxs .more {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.section-cooperation {
    padding: 70px 0 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.cooperation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.cooperation .cooperation-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #fff;
    margin-top: 60px;
    position: relative;
}
.swiper-cooperation {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.swiper-cooperation .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    height: 200px;
    background: #F6F8FA;
}
.swiper-cooperation .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 150px;
}
.swiper-cooperation .swiper-wrapper .swiper-slide .cont {
    width: 100%;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #000;
    font-size: 18px;
    text-align: center;
}
.cooperation-box .swiper-button-next {
    right: -50px;
    left: unset;
    top: 100px;
    bottom:unset;
    background: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.cooperation-box .swiper-button-next img {
    width: 24px;
}

.cooperation-box .swiper-button-prev {
    right: unset;
    left: -50px;
    top: 100px;
    bottom: unset;
    background: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.cooperation-box .swiper-button-prev img {
    width: 24px;
}

.cooperation-box .swiper-button-next:after,.cooperation-box .swiper-button-prev:after {
    display: none;
}

.services-abs {
    padding: 70px 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.abs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.abs .boxs{
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.abs .boxs .video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.abs .boxs .video .video-image {
    width: 100%;
    cursor: pointer;
}
.abs .boxs .ab-title {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.abs .boxs .ab-title em {
    width: calc((100% - 132px) / 2);
    height: 1px;
    background: #ddd;
}
.abs .boxs .ab-title .icon {
    margin: 0 20px;
}
.abs .boxs .ab-intro {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 36px;
    font-size: 18px;
    color: #333;
}
.abs .boxs .ab-list {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.abs .boxs .ab-list .bx {
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #F6F8FA;
}
.abs .boxs .ab-list .bx .image {
    width: 132px;
    height: 121px;
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.abs .boxs .ab-list .bx .image.image1 {
    background-image: url("../images/icon_45.png");
}
.abs .boxs .ab-list .bx .image.image2 {
    background-image: url("../images/icon_46.png");
}
.abs .boxs .ab-list .bx .image.image3 {
    background-image: url("../images/icon_47.png");
}
.abs .boxs .ab-list .bx.active .image {
    background-position: -132px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.abs .boxs .ab-list .bx h3 {
    font-size: 28px;
    color:#333;
    font-weight: bold;
    margin: 20px 0 40px;
    width: 100%;
    text-align: center;
}
.abs .boxs .ab-list .bx .t {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    font-size: 22px;
    color: #333;
    line-height: 32px;
}

    /* ----- PB分页数字条效果 结束 ----- */
.pagebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.pagebar .pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.pagination a {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
    font-size: 18px;
    padding: 10px 14px;
    margin: 0 5px;
    border-radius: 3px;
}
.pagination span {
    color: #000;
    font-size: 14px;
    padding: 8px 2px;
    margin: 0 5px;
    border-radius: 3px;
}
.pagination a:hover {
    color: #FE6B03;
    border: 1px solid #FE6B03;
}
.pagination a.page-num-current {
    color: #fff;
    background: #FE6B03;
    border: 1px solid #FE6B03;
}
/* ----- PB分页数字条效果 结束 ----- */

.pro-detail {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 300px);
}
.pro-detail .boxs {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.pro-detail .boxs .photos{
    width: 500px;
    position: relative;
    display: inline-block;
    float: left;
}
.pro-detail .boxs .photos .photos-box{
    overflow: hidden;
    position: relative;
    width: 500px;
    height: 500px;
}
.pro-detail .boxs .photos .photos-box .images-cover{
    height: 100%;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}
.pro-detail .boxs .photos .photos-box .images-cover img {
    padding: 1px;
    display: inline-block;
    float: left;
    border: 1px solid #cfcfcf;
    box-sizing: border-box;
    position: absolute;
}
.pro-detail .boxs .photos .photos-box .move-view{
    width: 100px;
    height: 100px;
    position: absolute;
    background-image: url('../images/move-box.png');
}
.pro-detail .boxs .photos .magnifier-assembly {
    height: 92px;
    overflow: hidden;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}
.pro-detail .boxs .photos .magnifier-assembly .magnifier-btn {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -40px;
}
.pro-detail .boxs .photos .magnifier-assembly .magnifier-btn span {
    line-height: 75px;
    height: 75px;
    width: 20px;
    background: #FE6B03;
    color: #ffffff;
    display: block;
    z-index: 9998;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: background ease .5s;
    -webkit-transition: background ease .5s;
}
.pro-detail .boxs .photos .magnifier-assembly .magnifier-btn .magnifier-btn-left {
    float: left;
}
.pro-detail .boxs .photos .magnifier-assembly .magnifier-btn .magnifier-btn-right{
    float: right;
}
.pro-detail .boxs .photos .magnifier-assembly .magnifier-line {
    position: relative;
    overflow: hidden;
    height: 92px;
}
.pro-detail .boxs .photos .magnifier-assembly .magnifier-line ul {
    overflow: hidden;
    margin: 0 auto;
    display: block;
    font-size: 0;
    width: 10000%;
    position: absolute;
    left: 0;
    z-index: 997;
}
.animation03 {
    transition: all .3s ease-in .1s;
    -ms-transition: all .3s ease-in .1s;
    -moz-transition: all .3s ease-in .1s;
    -webkit-transition: all .3s ease-in .1s;
    -o-transition: all .3s ease-in .1s;
}
.clearfix:after, .clearfix:before {
    display: table;
    line-height: 0;
    content: "";
}
.pro-detail .boxs .photos .magnifier-assembly .magnifier-line ul li {
    list-style: none;
    cursor: pointer;
    float: left;
    width: 115px;
    height: 99px;
}
.pro-detail .boxs .photos .magnifier-assembly .magnifier-line ul li img {
    padding: 1px;
    display: inline-block;
    float: left;
    border: 1px solid #cfcfcf;
    box-sizing: border-box;
}
.small-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 78px;
    width: 78px;
    padding: 1px;
    margin: 5px;
    overflow: hidden;
    text-align: center;
}
.small-img img {
    width: 100%;
    height: 100%;
}
.active {
    transition: .3s;
}
.magnifier-view {
    width: 100%;
    height: 100%;
    position: absolute;
    right: -105%;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    display: none;
    overflow: hidden;
}
.magnifier-view img {
    display: block;
}
.pro_tinfo_r {
    display: inline-block;
    float: left;
    width: calc(100% - 530px);
}
.pro_tinfo_r .tit {
    color: #222222;
    line-height: 39px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 20px;
    display: block;
    width: 100%;
}
.pro_tinfo_r p {
    color: #424242;
    font-size: 18px;
    line-height: 30px;
    margin-top: 23px;
}
.cpdh {
    font-size: 33px;
    color: #000;
    margin-top: 26px;
    /*line-height: 45px;*/
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.cpdh span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    color: #666;
}
.cpdh span img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.cpdh em {
    padding-top:20px;
}
.diysr {
    line-height: 49px;
    color: #ffffff;
    font-size: 23px;
    padding-left: 50px;
    background: #FE6B03;
    font-weight: initial;
    position: relative;
    height: 49px;
    overflow: hidden;
    border-radius: 0px;
    width: 100%;
    margin-top: 30px;
}
.diysr i {
    font-size: 14px;
    font-family: arial;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
    padding-left: 5px;
}
.i-isdbt:after, .diysr:after {
    width: 47px;
    height: 48px;
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background: url('../images/sanjiao2.png') no-repeat 9px 5px;
    background-size: 40px;
}
.cp-body {
    margin-top: 20px;
    line-height: 28px;
    width: 100%;
}
.cp-body img {
    max-width: 100%;
}


.product .lists .pro-lists .listx {
    width: 280px;
    height: 330px;
    margin-right: calc((100% - (280px * 4)) / 3);
    margin-top: 20px;
    background: #F6F8FA;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .listx.stu {
    height: 232px;
}
.product .lists .pro-lists .listx:hover {
    background: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .listx:nth-child(1),.product .lists .pro-lists .listx:nth-child(2),.product .lists .pro-lists .listx:nth-child(3),.product .lists .pro-lists .listx:nth-child(4){
    margin-top: 0;
}
.product .lists .pro-lists .listx:nth-child(4n){
    margin-right: 0;
}
.product .lists .pro-lists .listx .image {
    width: 280px;
    height: 280px;
    overflow: hidden;
}
.product .lists .pro-lists .listx.stu .image {
    height: 188px;
}
.product .lists .pro-lists .listx .image img {
    width: 280px;
    height: 280px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .pro-lists .listx.stu .image img {
    height: 188px;
}
.product .lists .pro-lists .listx:hover .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .pro-lists .listx .name {
    display: inline-block;
    text-align: center;
    padding: 0 15px;
    width: calc(100% - 30px);
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .listx:hover .name {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.product .lists .pro-lists .listxx {
    width: 280px;
    height: 380px;
    margin-right: calc((100% - (280px * 4)) / 3);
    margin-top: 20px;
    background: #F6F8FA;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .listxx:hover {
    background: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .listxx:nth-child(1),.product .lists .pro-lists .listxx:nth-child(2),.product .lists .pro-lists .listxx:nth-child(3),.product .lists .pro-lists .listxx:nth-child(4){
    margin-top: 0;
}
.product .lists .pro-lists .listxx:nth-child(4n){
    margin-right: 0;
}
.product .lists .pro-lists .listxx .image {
    width: 280px;
    height: 330px;
    overflow: hidden;
}
.product .lists .pro-lists .listxx .image img {
    width: 280px;
    height: 330px;
    object-fit: contain;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .pro-lists .listxx:hover .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .pro-lists .listxx .name {
    display: inline-block;
    text-align: center;
    padding: 0 15px;
    width: calc(100% - 30px);
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-lists .listxx:hover .name {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}


.news-detail {
    width: calc(100% - 300px);
}
.news-detail .d-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #222;
    margin-top: 30px;
}
.news-detail .d-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: #888;
    font-size: 14px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 20px;
}
.news-detail .d-tag span {
    margin-right: 20px;
}
.news-detail .detail {
    margin: 40px 0;
    line-height: 36px;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}
.news-detail .detail img {
    max-width: 100%;
}
.gduo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.gduo .pg {
    width: 48%;
}

 .news-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 300px);
}
 .news-list .box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #EEE;
    margin-bottom: 30px;
}
 .news-list .box .image {
    width: 282px;
    height: 182px;
    overflow: hidden;
    margin-right: 20px;
    border: 1px solid #DDD;
}
 .news-list .box .image img {
    width: 280px;
    height: 180px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
 .news-list .box .info {
    width: calc(100% - 302px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
 .news-list .box .info h1 {
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #333;
    font-weight: 700;
    font-size: 20px;
    line-height: 55px;
    width: 100%;
}
 .news-list .box .info .tag {
    display: block;
    font-size: 16px;
    width: 100%;
    line-height: 28px;
    height: 86px;
    overflow: hidden;
    margin-top: 0;
    text-indent: 2rem;
    color: #888;
}
 .news-list .box .info .time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}
 .news-list .box .info .time .t {
    color: #ccc;
}
 .news-list .box .info .time .g {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
}
 .news-list .box .info .time .g img {
    width: 22px;
    margin-top: 1px;
}
.smen {
    display: inline-block;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
    line-height: 40px;
    width: 100%;
    background: #FE6B03;
    border-radius: 5px;
    margin-bottom: 20px;
}
.plc {
    background: url(/images/nav-map.png) no-repeat 8px 8px #ffffff;
    background-size: 23px;
}
.plc, .plc2 {
    height: 40px;
    line-height: 40px;
    padding-left: 40px;
    position: relative;
    color: #666;
    overflow: hidden;
    font-size: 16px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
    font-family: "Microsoft Yahei", "微软雅黑";
    border-radius: 5px;
}
.plc-so {
    background: url(/images/so.png) no-repeat 12px 11px;
    background-size: 21px;
    width: 100%;
}
.plc span, .plc2 .red_x {
    color: #000 !important;
    font-weight: 700;
    font-size: 16px;
}
.plc-so .red_x {
    color: #ffffff !important;
    display: inline;
    font-family: "Microsoft YaHei";
    font-size: 16px;
}

#toolbar {
    position: fixed;
    z-index: 999;
    right: 2px;
    top: 20%;
    background: #f8f8f8;
    width: 148px;
    padding: 20px 10px;
    border-radius: 5px;
    border: 1px solid #FE6B03;
}
#toolbar ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
#toolbar li {
    margin-bottom: 3px;
    font-size: 0;
    width: 57px;
    /*height: 57px;*/
    right: 0;
    position: relative;
}
#toolbar li.tool-logo {
    width: 94px;
    /*height: 40px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
#toolbar li.tool-logo img {
    width: 94px;
}
#toolbar li.tool-message {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    cursor: pointer;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
#toolbar li.tool-message img {
    /*width: 28px;*/
    /*height: 28px;*/
    /*margin-bottom: 2px;*/
    margin-bottom: 10px;
}
#toolbar li.tool-message .span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: inherit;
    color: #555;
    letter-spacing: 1px;
    /*padding-left: 5px;*/

}
#toolbar li.tool-message .spanx {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #FE6B03;
    /*padding-left: 5px;*/

}
#toolbar li.tool-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    cursor: pointer;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
#toolbar li.tool-btn .span {
    width: 90%;
    font-size: 15px;
    color: #fff;
    background: #FE6B03;
    border-radius: 30px;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
#toolbar li.tool-btn .span:hover {
    background: #D85E08;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
#toolbar li.tool-btn .span1 {
    width: 90%;
    font-size: 15px;
    color: #FE6B03;
    background: none;
    border-radius: 30px;
    padding: 10px 0;
    text-align: center;
    border: 1px solid #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
#toolbar li.tool-btn .span1:hover {
    border: 1px solid #D85E08;
    color: #D85E08;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
#toolbar li.tool-qrcode {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    cursor: pointer;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
#toolbar li.tool-qrcode.no-back {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
#toolbar li.tool-qrcode img {
    width: 100%;
}
#toolbar li.tool-qrcode span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: inherit;
    color: #555;
    margin-top: 5px;
}


#toolbar li.backtop {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    cursor: pointer;
}
#toolbar li.backtop.no-back {
    display: none;
}
#toolbar li.backtop img {
    width:50px;
}
