@charset "UTF-8";
/* CSS Document */

/*
-----------------------------首页样式start-----------------------------
*/
/* 遮罩层 */
.fade {
    position: fixed;
    z-index: 999999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fadeTop, .fadeBottom {
    position: absolute;
    width: 100%;
    height: 50%;
    background: #f9f6ec url(../images/bodybg.png) left top repeat;
    left: 0;
}

.fadeLogo {
    text-align: center;
    width: 100%;
}

.fadeC {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -57px;
    text-align: center;
}

.fadeTop {
    top: 0;
}

.fadeBottom {
    bottom: 0;
}

.fadeLoading {
    display: inline-block;
    font-size: 0px;
    padding: 0px;
}

.fadeLoading span {
    vertical-align: middle;
    border-radius: 100%;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 3px 2px;
    -webkit-animation: loader1 0.8s linear infinite alternate;
    animation: loader1 0.8s linear infinite alternate;
}

.fadeLoading span:nth-child(1) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    background: rgba(190, 170, 131, 0.6);
}

.fadeLoading span:nth-child(2) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
    background: rgba(190, 170, 131, 0.8);
}

.fadeLoading span:nth-child(3) {
    -webkit-animation-delay: -0.26666s;
    animation-delay: -0.26666s;
    background: rgba(190, 170, 131, 1);
}

.fadeLoading span:nth-child(4) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
    background: rgba(190, 170, 131, 0.8);
}

.fadeLoading span:nth-child(5) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    background: rgba(190, 170, 131, 0.4);
}

@keyframes loader1 {
    from {
        transform: scale(0, 0);
    }
    to {
        transform: scale(1, 1);
    }
}

@-webkit-keyframes loader1 {
    from {
        -webkit-transform: scale(0, 0);
    }
    to {
        -webkit-transform: scale(1, 1);
    }
}

/*头部开始*/

.top {
    position: fixed;
    width: 100%;
    height: 100px;
    left: 0;
    top: 0;
    background: url(../images/topbg.png) center center no-repeat;
    background-size: cover;
    z-index: 999;
    min-width: 1280px;
}

.topL {
    margin-left: 1.5625%;
}

.logo {
    padding-top: 23px;
    height: 53px;
    line-height: 53px;
}

.logo img {
    display: block;
    height: 53px;
    line-height: 53px;
}

.toprBtn {
    position: relative;
}

.toprBtnT {
    width: 100px;
    height: 100px;
    background: #428a7b;
    position: relative;
}

.toprBtnT a {
    display: block;
    height: 100%;
    line-height: 100%;
    background: url(../images/search.png) center center no-repeat;
}

.toprBtnB {
    position: absolute;
    right: 0;
    top: 100px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    visibility: hidden;
    opacity: 0;
}

.search {
    width: 250px;
    overflow: hidden;
    height: 40px;
    line-height: 40px;
}

.search a {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    background: #428a7b;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 15px;
    color: #fff;
}

.search .topIpt {
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    background: #fff;
}

.search .topIpt input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: none;
    outline: none;
    font-size: 15px;
    color: #666;
}

.toprBtn:hover .toprBtnB {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

/*头部结束*/

/*menu开始*/

.menuDl {
    position: relative;
}

.menuDl:after {
    display: block;
    content: "";
    clear: both;
}

.menuDl dd {
    display: inline;
    float: left;
    margin: 0 3px;
    position: relative;
    z-index: 3;
}

.menuDl dd span.ejSpan {
    display: block;
    position: relative;
}

.menuDl dd span a {
    display: block;
    height: 100px;
    overflow: hidden;
    line-height: 100px;
    color: #000;
    font-weight: bold;
    font-size: 15px;
    position: relative;
    padding: 0 16px;
    z-index: 5;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.menuDl dd span.ejSpan:before {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 23px;
    left: 0;
    top: 25px;
    background: url(../images/topt.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

.menuDl dd span.ejSpan:after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 23px;
    left: 0;
    bottom: 25px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    visibility: hidden;
    opacity: 0;
    background: url(../images/topb.png) center center no-repeat;
}

.menuDl dd.hover span.ejSpan:before {
    top: 17px;
    visibility: visible;
    opacity: 1;
}

.menuDl dd.hover span.ejSpan:after {
    bottom: 17px;
    visibility: visible;
    opacity: 1;
}

.menuDl dd.hover span a {
    color: #428a7b;
}

.menuDl dd .div_a {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 102px;
    left: 0;
    z-index: 99;
    background: #fff;
    display: none;
}

.menuDl dd .div_a a {
    display: block;
    height: 35px;
    overflow: hidden;
    text-align: center;
    line-height: 35px;
    text-align: center;
    color: #333333;
    font-size: 14px;
}

.menuDl dd .div_a a.hover {
    background: #fff
}

.menuDl dd .div_a a:hover {
    background: #fff
}

.subMenuDiv {
    display: none;
    width: 100%;
    position: absolute;
    /*left: 0px;*/
    top: 100px;
    /*opacity: 0;*/
    z-index: 1;
}

.menuDl dd.hover .subMenuDiv {
    z-index: 3;
}

.menuDl dt {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 2;
}

.subMenu_ul {
    width: 1000px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.subMenuShadow {
    height: 100%;
    overflow: hidden;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    left: 50%;
    top: 0px;
    z-index: 1;
    width: 50000px;
    margin-left: -25000px;
}

.subMenu_ul li {
    overflow: hidden;
    height: 50px;
    line-height: 50px;
    position: relative;
    z-index: 2;
    float: left;
    display: inline;
    margin: 0px 15px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.menuDl dd.hover .subMenu_ul li {
    opacity: 0;
    -webkit-animation: liMove 0.3s linear forwards;
    -o-animation: liMove 0.3s linear forwards;
    animation: liMove 0.3s linear forwards;
}

@keyframes liMove {
    0% {
        transform: translateY(-110%);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.menuDl dd.hide .subMenu_ul li {
    opacity: 1;
    -webkit-animation: liHIde 0.3s linear forwards;
    -o-animation: liHIde 0.3s linear forwards;
    animation: liHIde 0.3s linear forwards;
}

@keyframes liHIde {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }
    100% {
        transform: translateY(110%);
        opacity: 0;
    }
}

.subMenu_ul li a {
    display: block;
    overflow: hidden;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.subMenu_ul li a:hover {
    color: #fff;
}

.half .subMenu_ul li a {
    font-size: 14px;
}

.subMenu_ul li a span {
    position: relative;
}

.subMenu_ul li:hover a span {
    font-weight: bold;
    color: #f3e9d5;
}

.subMenu_ul li a span em {
    display: block;
    width: 2px;
    height: 10px;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -5px;
    background: #d6000f;
}

.subMenuR {
    width: 50%;
    overflow: hidden;
    padding: 20px 0px;
}

.menuTop {
    height: 40px;
    line-height: 40px;
    display: block;
    overflow: hidden;
    font-size: 24px;
    color: #555;
    padding-left: 50px;
}

.subMenuCont {
    overflow: hidden;
    position: relative;
    margin-right: 15px;
}

.listBg {
    width: 0px;
    height: 0px;
    overflow: hidden;
    background: #fff;
    position: absolute;
    left: 0px;
    top: 0px;
}

.subMenuTop {
    height: 40px;
    line-height: 40px;
    display: none;
    font-size: 16px;
    color: #888;
    overflow: hidden;
    padding: 15px 0px 10px 50px;
}

.half {
    float: left;
    display: inline;
    width: 50%;
}

.half .subMenuTop {
    display: block;
}

.subMenuL {
    width: 50%;
    padding: 20px 0px;
}

.subMenuTxt {
    height: 250px;
    overflow: hidden;
    padding: 20px;
    margin: 0px 20px;
}

.subMenuLTop {
    display: none;
    text-align: center;
    font-size: 34px;
    color: #333;
    overflow: hidden;
}

.subMenuIntr {
    display: none;
    overflow: hidden;
    font-size: 14px;
    color: #404040;
    line-height: 25px;
}

.menuBg {
    display: none;
    width: 100%;
    height: 50px;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 100px;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.subMenuDiv.showMenu {
    -webkit-animation: showMenu 0.5s linear forwards;
    -o-animation: showMenu 0.5s linear forwards;
    animation: showMenu 0.5s linear forwards;
}

@keyframes showMenu {
    0% {
        opacity: 0.5
    }
    100% {
        opacity: 1
    }
}

.subMenuDiv.hideMenu {
    -webkit-animation: hideMenu 0.5s linear forwards;
    -o-animation: hideMenu 0.5s linear forwards;
    animation: hideMenu 0.5s linear forwards;
}

@keyframes hideMenu {
    0% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

.topHide {
    position: relative;
    width: 100%;
    height: 100px;
}

/*menu结束*/
.sectionCon {
    position: relative;
    height: calc(100% - 100px);
    padding-top: 100px;
}

/*indexBanner star*/
.indexBanner {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.indexBanner .swiper-slide {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indexBanner .con {
    position: relative;
    height: 100%;
    width: 100%;
}

/* 云 */
.cloudWave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/cloudwave1.png) left top no-repeat;
    background-size: contain;
    -webkit-animation: cloud 100s linear infinite;
    -moz-animation: cloud 100s linear infinite;
    -o-animation: cloud 100s linear infinite;
    animation: cloud 100s linear infinite;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.cloudWave.cloudWave2 {
    background: url(../images/cloudwave2.png) center center no-repeat;
    background-size: contain;
}

@keyframes cloud {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(1920px);
    }
}

.indexBannerText {
    position: absolute;
    z-index: 5;
    width: 1200px;
    height: 500px;
    left: 50%;
    top: 50%;
    margin-left: -600px;
    margin-top: -250px;
}

.indexBannerText img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.indexBanner .indexDot {
    bottom: 20px !important;
    height: 30px;
    line-height: 30px;
}

.indexBanner .indexDot span {
    width: 35px;
    height: 30px;
    opacity: 1;
    background: url(../images/banner.png) center center no-repeat;
}

.indexBanner .indexDot span.swiper-pagination-bullet-active {
    background: url(../images/banner1.png) center center no-repeat;
}

/*indexBanner end*/

/*fullPage的样式start*/

#fullPage2 {
    /*transition: all 1s cubic-bezier(0.6, 0, 0, 0.6) !important;
    transition-delay: 0.2s !important;*/
}
.index-banner{
    height: 100% !important;
}

.section {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    perspective: 1000px;
}

.columnBox {
    overflow: hidden;

}

.slide {
    float: left;
}

.slide,
.slidesContainer {
    height: 100%;
    display: block;
}

.slides {
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

/*.section.fp-table,
.slide.fp-table {
	display: table;
	width: 100%;
	position: relative;
}

.fp-tableCell {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}*/

.slidesContainer {
    float: left;
    position: relative;
}

.animHide {
    opacity: 0;
}

/*fullPage 结束*/
/*关于bg start*/

.col1BgBox {
    position: absolute !important;
    width: 105%;
    height: 105%;
    left: -2.5% !important;
    top: -2.5% !important;
}

.col1Bg {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
}

/*第一通栏start*/
.section {
    background: #000;
}

.coumn1 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.colubg1 {
    display: none;
    /*display: block;*/
    content: "";
    position: absolute;
    width: 15.1042%;
    height: 62.8435%;
    left: 0;
    bottom: 0;
    z-index: 4;
    background: url(../images/index1.png) center bottom no-repeat;
    background-size: contain;
}

.colubg2 {
    display: none;
    /*display: block;*/
    content: "";
    position: absolute;
    width: 20.20833%;
    height: 45.0418%;
    right: 0;
    bottom: 0;
    z-index: 4;
    background: url(../images/index2.png) center bottom no-repeat;
    background-size: contain;
}

.column1Con {
    overflow: hidden;
}

.commonTitle {
    overflow: hidden;
    height: 105px;
    line-height: 105px;
    font-size: 32px;
    color: #000;
    background: url(../images/titlebg.png) center center no-repeat;
    text-align: center;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
}

.commonTitle3 {
    overflow: hidden;
    height: 105px;
    line-height: 105px;
    font-size: 32px;
    color: #000;
    background: url(../images/titlebg.png) center center no-repeat;
    text-align: center;
}

.commonTitle.show {
    opacity: 1;
    transform: translateY(0);
}

.columnCl1 {
    width: 520px;
    margin-right: 35px;
}

.column1Video {
    position: relative;
}

.column1Video:after {
    display: block;
    content: "";
    padding-top: 67.3077%;
}

.videoBox {
    position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.columnCr1 {
    overflow: hidden;
}

.column1Title {
    height: 76px;
    line-height: 76px;
    font-size: 28px;
    color: #000;
    text-align: left;
    margin-bottom: 16px;
}

.column1Itro {
    height: 84px;
    line-height: 28px;
    font-size: 14px;
    color: #666;
    text-align: left;
    overflow: hidden;
}

.column1Dl {
    overflow: hidden;
    width: 500px;
}

.column1Dl dd {
    float: left;
    display: inline;
    width: 80px;
    margin-right: 32px;
}

.column1Dl dd .wicon {
    height: 60px;
    margin-bottom: 10px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.column1Dl dd .con:hover .wicon {
    transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
}

.column1Dl dd.dd1 .wicon {
    background: url(../images/wicon11.png) center center no-repeat;
}

.column1Dl dd.dd2 .wicon {
    background: url(../images/wicon12.png) center center no-repeat;
}

.column1Dl dd.dd3 .wicon {
    background: url(../images/wicon13.png) center center no-repeat;
}

.column1Dl dd.dd4 .wicon {
    background: url(../images/wicon14.png) center center no-repeat;
}

.column1Dl dd.dd1 .con:hover .wicon {
    background: url(../images/wicon11_h.png) center center no-repeat;
}

.column1Dl dd.dd2 .con:hover .wicon {
    background: url(../images/wicon12_h.png) center center no-repeat;
}

.column1Dl dd.dd3 .con:hover .wicon {
    background: url(../images/wicon13_h.png) center center no-repeat;
}

.column1Dl dd.dd4 .con:hover .wicon {
    background: url(../images/wicon14_h.png) center center no-repeat;
}

.column1Dl dd .text {
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.commonMore {
    width: 150px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.8s linear;
    -webkit-transition: all 0.8s linear;
    opacity: 0;
    transform: translateY(200px);
    -webkit-transform: translateY(200px);
    border: 1px solid #b68d6b;
}

.commonMore a {
    display: block;
    font-size: 14px;
    color: #b68d6b;
}

.commonMore a span {
    display: inline-block;
    padding-right: 15px;
    background: url(../images/icon5j.png) right center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.commonMore:hover {
    background: #b68d6b;
    border-color: #b68d6b;
}

.commonMore:hover a {
    color: #fff;
}

.commonMore:hover span {
    padding-right: 20px;
    background: url(../images/icon5b.png) right center no-repeat;
}

.commonMore.show {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.commonMore.white {
    border-color: #ccc;
}

.commonMore.white a {
    color: #ccc;
}

.commonMore.white span {
    background: url(../images/icon5b.png) right center no-repeat;
}

.commonMore.white:hover {
    border-color: #beaa83;
}

.commonMore.white:hover a {
    color: #fff;
}

.commonMore3.white {
    width: 150px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.8s linear;
    -webkit-transition: all 0.8s linear;
    border: 1px solid #b68d6b;
}

.commonMore3 a {
    display: block;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #b68d6b;
}

.commonMore3 a span {
    display: inline-block;
    padding-right: 15px;
    background: url(../images/icon5j.png) right center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.commonMore3:hover {
    background: #beaa83;
}

.commonMore3:hover a {
    color: #fff;
}

.commonMore3:hover span {
    padding-right: 20px;
    background: url(../images/icon5b.png) right center no-repeat;
}

/*第一通栏end*/

/*第二通栏start*/

.column2 {
    position: relative;
    height: 100%;
    width: 100%;
}

.commonTitle.white {
    background: url(../images/titlebg2.png) center center no-repeat;
    color: #f3e9d5;
}

/*第二通栏end*/

/*
*第三通栏start fpx 2018
*/
.column2 {
    position: relative;
    overflow: hidden;
}

.column2SwperCon {
    width: 1320px;
    position: relative;
    margin: 0 auto;
}

.column2Swiper {
    max-width: 100%;
    padding: 40px 0;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.column2Swiper .swiper-slide {
    position: relative;
    height: 300px;
    transform: scale(0.8) translateY(-100px);
    -webkit-transform: scale(0.8) translateY(-100px);
    opacity: 1 !important;
}

.column2Swiper .swiper-slide.swiper-slide-active {
    z-index: 1000;
}

.column2Swiper .swiper-slide .con {
    margin: 0 8px;
    position: relative;
    background: #f3e9d5 url(../images/conbg.png) center center no-repeat;
    background-size: contain;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    box-shadow: -1px 19px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
}

.column2Swiper .swiper-slide .con:after {
    display: block;
    content: "";
    padding-top: 131.8182%;
}

.column2Swiper .swiper-slide .con .slideCon {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 10%;
    transition: all 0.8s linear;
    -webkit-transition: all 0.8s linear;
}

.column2Swiper .swiper-slide .con:before {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.column2Swiper .swiper-slide .con .pic {
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

/*.column2Swiper .swiper-slide .con .pic img{
	object-fit: contain;
}*/
.column2Swiper .slideCon .title {
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    color: #b68d6b;
    text-align: center;
}

.slieLine {
    height: 45px;
    line-height: 45px;
    width: 1px;
    margin: 0 auto;
    background: #cdb584;
}

/*.column2Swiper .swiper-slide.swiper-slide-active .con{
	margin-top: -15%;
	transform: scale(1)
}
.column2Swiper .swiper-slide.swiper-slide-active .con:after{
	padding-top: 150%;	
}
.column2Swiper .swiper-slide.swiper-slide-active .con:before{
	display: none;
}
.column2Swiper .swiper-slide.swiper-slide-active .con .slideCon{
	transform: scale(1.5);
	-webkit-transform: scale(1.5);
}
.column2Swiper .swiper-slide.swiper-slide-active:hover .con .slideCon{
	transform: scale(1.5);
	-webkit-transform: scale(1.5);
}
.column2Swiper .swiper-slide:hover .con{
	transform: translateY(-5px);
	-webkit-transform: translateY(-5px);
}
.column2Swiper .swiper-slide:hover .con .slideCon{
	transform: scale(1);
	-webkit-transform: scale(1);
}
.column2Swiper .swiper-slide:hover .con .slideCon .pic{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.column2Swiper .swiper-slide:hover .con:before{
	background: none;
}*/
.column2Swiper .swiper-slide:hover .con {
    margin-top: -15%;
    transform: scale(1)
}

.column2Swiper .swiper-slide:hover .con:after {
    padding-top: 150%;
}

.column2Swiper .swiper-slide:hover .con:before {
    display: none;
}

.column2Swiper .swiper-slide:hover .con .slideCon {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.column2Swiper .swiper-slide:hover .con .slideCon {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.column2Swiper .swiper-slide:hover .con {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}

/*.column2Swiper .swiper-slide:hover .con .slideCon{
	transform: scale(1);
	-webkit-transform: scale(1);
}
.column2Swiper .swiper-slide:hover .con .slideCon .pic{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.column2Swiper .swiper-slide:hover .con:before{
	background: none;
}*/
.swiperNext {
    position: absolute;
    width: 38px;
    height: 38px;
    right: 0;
    top: 50%;
    margin-top: -19px;
    background: #ede0c6 url(../images/swipernext.png) center center no-repeat;
    border-radius: 100%;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
    z-index: 5;
}

.swiperPrev {
    position: absolute;
    width: 38px;
    height: 38px;
    left: 0;
    top: 50%;
    margin-top: -19px;
    background: #ede0c6 url(../images/swiperprev.png) center center no-repeat;
    border-radius: 100%;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
    z-index: 5;
}

.swiperNext:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    box-shadow: 3px 7px 9px rgba(0, 0, 0, 0.08);
}

.swiperPrev:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    box-shadow: 3px 7px 9px rgba(0, 0, 0, 0.08);
}

/*.commonMore.commonMore1{
	background: url(../images/morebg2.png) center center no-repeat;
}*/
/*第三通栏end*/

/*第四通栏end*/
.column4 {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/*.column4 .wrap{
	height: 100%;
}*/
.column2Dl {
    overflow: hidden;
    height: 100%;
}

.column2Dl dd {
    float: left;
    display: inline;
    width: 14.28%;
    height: 100%;
    position: relative;
    border-left: 1px solid #cbb6a5c9;
    box-sizing: border-box;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.column2Dl dd:last-child {
    border-right: 1px solid #cbb6a5c9;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.column2Dl dd.dd1 {
    animation-delay: 0;
}

.column2Dl dd.dd2 {
    animation-delay: 0.1s;
}

.column2Dl dd.dd3 {
    animation-delay: 0.3s;
}

.column2Dl dd .con {
    height: 100%;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.conTable .tilte {
    height: 100px;
    line-height: 100px;
    font-size: 80px;
    color: #fff;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    text-align: center;
}

.column4Line {
    position: relative;
    height: 0;
    margin-bottom: 10px;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
}

.column4Line:after {
    display: block;
    content: "";
    padding-top: 0%;
}

.column2Dl dd .con:hover .column4jj {
    display: block;
}

.column4jj{
    display: none;
    font-size: 16px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
    padding-top: 72px;
}
.column4Line i {
    position: absolute;
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
}

.column4Wicon {
    width: 115px;
    height: 115px;
    /*border: 1px solid #8c603c;*/
    border-radius: 115px;
    margin: 0 auto 25px;
}

.column2Dl dd.dd1 .column4Wicon {
    background: url(../images/wicon111.png) center center no-repeat;
}

.column2Dl dd.dd2 .column4Wicon {
    background: url(../images/wicon112.png) center center no-repeat;
}

.column2Dl dd.dd3 .column4Wicon {
    background: url(../images/wicon113.png) center center no-repeat;
}
.column2Dl dd.dd4 .column4Wicon {
    background: url(../images/wicon114.png) center center no-repeat;
}
.column2Dl dd.dd5 .column4Wicon {
    background: url(../images/wicon115.png) center center no-repeat;
}
.column2Dl dd.dd6 .column4Wicon {
    background: url(../images/wicon116.png) center center no-repeat;
}
.column2Dl dd.dd7 .column4Wicon {
    background: url(../images/wicon117.png) center center no-repeat;
}
.column4Text .title {
    height: 36px;
    line-height: 36px;
    font-size: 24px;
    color: #FFFFFF;
    padding-top: 30px;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    text-align: center;
}

.column4Text .title1 {
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
    padding-top: 12px;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    text-align: center;
}

.column2Dl dd:hover .con {
    /*background: rgba(6, 138, 123, 1)*/
    
}
/*.column2Dl dd.dd1 .con:hover */
/*.column2Dl dd.dd1 .con:hover .column2Dl{*/
/*    background: url(../images/bg1.png) center center no-repeat;*/
/*}*/

.column2Dl dd .con:hover .column4Wicon {
    border-color: #fff;
}

.column2Dl dd .con:hover .tilte {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
}

.column2Dl dd .con:hover .column4Line {
    height: 125px;
}

.column2Dl dd.dd1 .con:hover .column4Wicon {
    background: url(../images/wicon111.png) center center no-repeat;
}

.column2Dl dd.dd2 .con:hover .column4Wicon {
    background: url(../images/wicon112.png) center center no-repeat;
}

.column2Dl dd.dd3 .con:hover .column4Wicon {
    background: url(../images/wicon113.png) center center no-repeat;
}

.column2Dl dd.dd4 .con:hover .column4Wicon {
    background: url(../images/wicon114.png) center center no-repeat;
}

.column2Dl dd.dd5 .con:hover .column4Wicon {
    background: url(../images/wicon115.png) center center no-repeat;
}

.column2Dl dd.dd6 .con:hover .column4Wicon {
    background: url(../images/wicon116.png) center center no-repeat;
}

.column2Dl dd.dd7 .con:hover .column4Wicon {
    background: url(../images/wicon117.png) center center no-repeat;
}

.column2Dl dd.dd3 .con:hover .column4Wicon:after {
    padding-top: 31.75%;
}

.column2Dl dd .con:hover .column4Text .title {
    color: #fff;
    padding-top: 0;
}

.column2Dl dd .con:hover .column4Text .title1 {
    color: #fff;
    padding-top: 0;
}

.column4More {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin-top: 13.4054%;
    background: url(../images/morebg3.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

.column4More a {
    color: #fff;
    text-align: center;
}

.column2Dl dd .con:hover .column4More {
    visibility: visible;
    opacity: 1;
}

/*第四通栏end*/

/*第五通栏start*/
.column5 {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.column5Swiper {
    width: 1320px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.swiperColumn5C {
    overflow: hidden;
    margin: 0 -10px;
}

.swiperColumn5C .con {
    margin: 0 10px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.swiperColumn5C .text {
    height: 150px;
    background: #fff;
}

.swiperColumn5C .textBox2 {
    height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.swiperColumn5C .textBox1 {
    padding: 0 20px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.swiperColumn5C .textBox1 .sortBox {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
}

.swiperColumn5C .textBox1 .sortBox .sortTitle {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin-right: 25px;
    color: #9f885a;
    margin-bottom: 12px;
}

.swiperColumn5C .textBox1 .sortBox .sortTime {
    font-size: 14px;
    color: #999;
}

.swiperColumn5C .textBox1 .textBoxTitle {
    height: 60px;
    line-height: 30px;
    font-size: 16px;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.swiperColumn5C .textBox2 .title {
    height: 34px;
    line-height: 34px;
    font-size: 16px;
    color: #f3d087;
    overflow: hidden;
}

.swiperColumn5C .textBox2 .time {
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    color: #dabf8a;
    margin-bottom: 5px;
}

.swiperColumn5C .textBox2 .textC {
    height: 48px;
    line-height: 24px;
    font-size: 14px;
    color: #dec48d;
    overflow: hidden;
}

.swiperColumn5C .con:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    box-shadow: 3px 7px 9px rgba(255, 255, 255, 0.1)
}

.swiperColumn5C .con:hover .text {
    background: #428a7b;
}

.swiperColumn5C .con:hover .text .textBox1 {
    height: 0;
    overflow: hidden;
}

.swiperColumn5C .con:hover .text .textBox2 {
    height: auto;
    overflow: hidden;
}

.column5Next {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: 50%;
    margin-top: -20px;
    border-radius: 100%;
    background: #e0d1b4 url(../images/swipernext.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
}

.column5Prev {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    top: 50%;
    margin-top: -20px;
    border-radius: 100%;
    background: #e0d1b4 url(../images/swiperprev.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
}

.column5Prev:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    background: #428a7b url(../images/swiperprev_h.png) center center no-repeat;
}

.column5Next:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    background: #428a7b url(../images/swipernext_h.png) center center no-repeat;
}

/*第五通栏end*/

/*底部开始*/

.footer {
    background: rgba(32, 31, 31, 1) url(../images/footerbg.png) left bottom no-repeat;
}

.footerC {
    margin: 0 5.2083%;
    overflow: hidden;
}

.footerEwm {
    overflow: hidden;
}

.footerEwm dd {
    float: left;
    display: inline;
    position: relative;
    width: 109px;
    overflow: hidden;
    margin-left: 20px;
}

.footerEwm dd .con {
    padding: 7px;
}

.footerEwm dd img {
    display: block;
    width: 95px;
    height: 95px;
}

.footerEwm dd span {
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #d3ccbe;
    font-size: 12px;
}

.footerMenu {
    overflow: hidden;
}

.footerMenu dd {
    float: left;
    display: inline;
    margin-right: 43px;
}

.footerMenu dd em {
    font-style: normal;
    display: block;
    line-height: 45px;
    height: 45px;
    overflow: hidden;
    margin-bottom: 8px;
}

.footerMenu dd em a {
    font-size: 14px;
    color: #d3ccbe;
}

.footerMenu dd em a:hover {
    color: #428a7b;
}

.footerMenu dd span {
    font-style: normal;
    display: block;
    line-height: 20px;
    padding: 5px 0;
    overflow: hidden;
}

.footerMenu dd span a {
    font-size: 14px;
    color: #d3ccbe;
}

.footerMenu dd span a:hover {
    color: #428a7b;
}

.footerR {
    padding-top: 15px;
}

.footerwayDl dd .con {
    line-height: 20px;
    padding: 5px 0;
    font-size: 16px;
    color: #d3ccbe;
    overflow: hidden;
}

.footerwayDl dd .con .textC {
    overflow: hidden;
}

.footerwayDl dd .con .title {
    padding-left: 28px;
}

.footerwayDl dd.dd1 .con .title {
    background: url(../images/wicon1.png) left center no-repeat;
}

.footerwayDl dd.dd2 .con .title {
    background: url(../images/wicon2.png) left center no-repeat;
}

.footerwayDl dd.dd3 .con .title {
    background: url(../images/wicon3.png) left center no-repeat;
}

.footerwayDl dd.dd4 .con .title {
    background: url(../images/wicon4.png) left center no-repeat;
}

.footerwayDl dd.dd2 .con .title {
    padding: 5px 0 5px 28px;
}

.footerwayDl dd .con span {
    display: inline-block;
    font-size: 16px;
    padding: 5px 0;
}

.formBottom {
    height: 52px;
    line-height: 52px;
    background: #161616;
}

.formBottom a {
    color: #d3ccbe;
}

.formBottom a:hover {
    color: #fff;
}

.js {
    font-size: 14px;
    color: #d3ccbe;
}

.beian span {
    font-size: 14px;
    color: #d3ccbe;
    margin-right: 5px;
    padding: 5px 0;
}

.beian span.span1 {
    padding-left: 25px;
    background: url(../images/wicon5.png) left center no-repeat;
}

/*底部结束*/

/*subBanner start*/

.subBox {
    height: 500px;
    overflow: hidden;
}

.subBanner {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
}

/*subBanner end*/

/*
-----------------------------首页样式end-----------------------------
*/

/*
-----------------------------频道页start-----------------------------
*/

/*
-----------------------------频道页end-----------------------------
*/

/*内页框架开始*/

/*内页外结构开始*/
.minH600 {
    min-height: 600px;
    height: auto !important;
    height: 600px;
}

.subPage {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: url(../images/bodybg1.jpg) bottom left no-repeat;
    background-attachment: fixed;
}

.subPage:after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: url(../images/bodybg.png) top left repeat; */
    z-index: 2;
}

.subPageC {
    position: relative;
    z-index: 6;
}

/*内页外结构结束*/

/*当前位置开始*/

.location {
    height: 60px;
    line-height: 60px;
    position: relative;
    z-index: 5;
}

.location:after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #dfcea4;
    left: 0;
    bottom: 0;
}

.locationDl {
    overflow: hidden;
}

.locationDl dd {
    float: left;
    display: inline;
    position: relative;
    height: 60px;
    padding: 0 20px;
}

.locationDl dd a {
    position: relative;
    z-index: 5;
    display: block;
    font-size: 14px;
    color: #b68d6b;
}

.locationDl dd:after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: #428a7b;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
}

.locationDl dd:hover a {
    color: #fff;
}

.locationDl dd.hover a {
    color: #fff;
}

.locationDl dd:hover:after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
}

.locationDl dd.hover:after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
}

.locationR {
    overflow: hidden;
    margin-right: -20px;
}

.locationR span {
    float: left;
    display: inline;
    font-size: 14px;
    color: #8f8773;
    padding: 0 2px;
}

.locationR span.locaLog {
    display: block;
    padding-left: 30px;
    height: 60px;
    background: url(../images/home1.png) left center no-repeat;
}

.locationR span.span1 {
    font-size: 14px;
    color: #b68d6b;
}

.locationR span.span1 i {
    padding: 0 2px;
    font-weight: lighter;
}

.locationR span.span1 a {
    color: #b68d6b;
}

.locationR span.span1.span2 a {
    color: #b68d6b
}

.location1 {
    height: 50px;
    line-height: 50px;
    background: #fafafa;
}

/*当前位置结束*/

/*页码开始*/

.page {
    padding: 30px 0;
    text-align: center;
    clear: both;
    font-size: 14px;
}

.page a {
    display: inline-block;
    overflow: hidden;
    padding: 6px 12px;
    color: #999999;
    border-radius: 3px;
    background: #fff;
    margin: 0 3px;
}

.page span {
    display: inline-block;
    padding: 6px 2px;
    position: relative;
    top: -15px;
}

.page a:hover {
    background: #428a7b;
    color: #fff;
}

.page a.hover {
    background: #428a7b;
    color: #fff;
}

.page input {
    display: inline-block;
    vertical-align: middle;
    height: 22px;
    border: 1px solid #e6e6e6;
    position: relative;
    top: -2px;
}

.page input.pageDetail {
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 3px;
    color: #999999;
    position: relative;
    top: -13px;
}

.page label {
    color: #999999;
    position: relative;
    top: -11px;
}

.page input.page_bnt {
    border: none;
    width: 30px;
    height: 25px;
    cursor: pointer;
    background: none;
    color: #999999;
    position: relative;
    top: -13px;
}

.page a div {
    width: 11px;
    height: 19px;
    background-position: center center;
    background-repeat: no-repeat;
}

.page a.firstPage div {
    background-image: url(../images/firstpage.png)
}

.page a.prevPage div {
    background-image: url(../images/prevpage.png)
}

.page a.nextPage div {
    background-image: url(../images/nextpage.png)
}

.page a.lastPage div {
    background-image: url(../images/lastpage.png)
}

.page a.firstPage:hover div {
    background-image: url(../images/firstpageh.png)
}

.page a.prevPage:hover div {
    background-image: url(../images/prevpageh.png)
}

.page a.nextPage:hover div {
    background-image: url(../images/nextpageh.png)
}

.page a.lastPage:hover div {
    background-image: url(../images/lastpageh.png)
}

.page a.firstPage.disabled {
    background: #E2E2E2;
}

.page a.prevPage.disabled {
    background: #E2E2E2;
}

.page a.nextPage.disabled {
    background: #E2E2E2;
}

.page a.lastPage.disabled {
    background: #E2E2E2;
}

.page a.firstPage.disabled div {
    background-image: url(../images/firstpage.png)
}

.page a.prevPage.disabled div {
    background-image: url(../images/prevpage.png)
}

.page a.nextPage.disabled div {
    background-image: url(../images/nextpage.png)
}

.page a.lastPage.disabled div {
    background-image: url(../images/lastpage.png)
}

/*页码结束*/

/*内页框架结束*/

/*综合页start*/
/*关于云植start*/
.aboutUsPic {
    height: 200px;
    text-align: center;
    vertical-align: middle;
}

.aboutUsPic img {
    display: block;
}

.aboutUsItro {
    height: 84px;
    overflow: hidden;
    line-height: 28px;
    font-size: 14px;
    color: #333;
    text-align: left;
}

.evenTextBox.white:before {
    background: #fff;
}

.evenTextBox.white .evenText .textC {
    color: #fff;
}

.setInYz {
    overflow: hidden;
}

.setInYz .pic {
    width: 600px;
}

.setInYz .pic:before {
    padding-top: 53.333%;
}

.setInYz .text {
    overflow: hidden;
    padding: 53px 35px 49px;
}

.setInYz .text .title {
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    color: #333;
}

.setInYz .text .title a {
    color: #333;
}

.setInYz .text .textC {
    line-height: 28px;
    height: 84px;
    font-size: 16px;
    color: #666;
    padding-top: 23px;
    overflow: hidden;
}

.setInYz .text .more {
    height: 36px;
    line-height: 36px;
    width: 110px;
    border-radius: 3px;
    background: #428a7b;
}

.setInYz .text .more a {
    display: block;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

/*.commonMore.blank{
	background: url(../images/moreshen.png) center center no-repeat;
}
.commonMore.blank a{
	color: #dacdb2;
}*/
.honorCon {
    position: relative;
}

.slider {
    position: relative;
    width: 900px;
    margin: 0px auto;
    height: 300px;
}

.slider .bt {
    display: block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    border-radius: 40px;

}

.slider .prev {
    left: -160px;
    background: #e0d1b4 url(../images/swiperprev.png) no-repeat center center;
}

.slider .prev:hover {
    background: #428a7b url(../images/swiperprev_h.png) no-repeat center center;
}

.slider .next {
    right: -160px;
    background: #e0d1b4 url(../images/swipernext.png) no-repeat center center;
}

.slider .next:hover {
    background: #428a7b url(../images/swipernext_h.png) no-repeat center center;
}

#img-slider {
    height: 300px;
}

#img-slider li {
    width: 460px;
    height: 300px;
    position: relative;
}

#img-slider li img {
    display: block;
    width: 100%;
}

.roundabout-in-focus .honorName {
    display: block;
}

.honorName {
    display: none;
    overflow: hidden;
    font-size: 16px;
    color: #666;
    text-align: center;
    padding-top: 10px;
}

.dhjd_dl {
    overflow: visible !important;
}

#articleContent .center {
    width: 1920px;
    overflow: hidden;
    position: relative;
    left: 50%;
    margin-left: -960px;
}

.sliderText {
    height: 75px;
    line-height: 75px;
    text-align: center;
    font-size: 16px;
    color: #d4c48b;
    padding-top: 50px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.roundabout-moveable-item.roundabout-in-focus img {
    -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent),
    color-stop(70%, transparent), to(rgba(250, 250, 250, 0.2)));
}

.roundabout-moveable-item.roundabout-in-focus .sliderText {
    padding-top: 0;
    visibility: visible;
    opacity: 1;
}

.column6 {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.column6swiper {
    width: 1320px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.column6SwiperCon {
    overflow: hidden;
    margin: 0 -9px;
    padding: 10px 0;
}

.column6SwiperCon .con {
    margin: 0 9px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.column6SwiperCon .text {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    color: #666;
    text-align: center;
    background: #fff;
    padding: 0 10px;
}

.column6SwiperCon .con:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.column6SwiperCon .con:hover .text {
    color: #428a7b;
}

/*关于云植end*/

/*新闻中心 start*/
.newsDl {
    overflow: hidden;
    margin: 0 -10px;
}

.newsDl dd {
    float: left;
    display: inline;
    width: 50%;
    padding: 10px 0;
}

.newsDl dd .con {
    margin: 0 10px;
    overflow: hidden;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.newsTimeBox {
    padding: 27px 0;
    width: 113px;
    position: relative;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.newsTimeBox:after {
    display: block;
    content: "";
    position: absolute;
    width: 1px;
    top: 27px;
    bottom: 27px;
    right: 0;
    background: #ccc;
}

.newsTime {
    height: 46px;
    line-height: 46px;
    font-size: 36px;
    color: #a17807;
    text-align: center;
    overflow: hidden;
}

.newsYear {
    height: 22px;
    line-height: 22px;
    font-size: 16px;
    color: #b79025;
    text-align: center;
}

.newsDl dd .con .text {
    overflow: hidden;
    padding: 27px 30px;
}

.newsDl dd .con .text .title {
    height: 46px;
    line-height: 46px;
    font-size: 18px;
    color: #444;
}

.newsDl dd .con .text .textC {
    height: 22px;
    line-height: 22px;
    font-size: 14px;
    color: #888;
    overflow: hidden;
}

.newsDl dd .con:hover {
    box-shadow: 0 10px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}

.newsDl dd .con:hover .newsTimeBox {
    background: #428a7b;
}

.newsDl dd .con:hover .newsTimeBox:after {
    background: #428a7b;
}

.newsDl dd .con:hover .newsTime {
    color: #fff;
}

.newsDl dd .con:hover .newsYear {
    color: #fff;
}

.newsDl dd .con:hover .text .title {
    color: #428a7b;
}

.honorCon1 {
    position: relative;
}

.slider1 {
    position: relative;
    width: 900px;
    margin: 0px auto;
    height: 450px;
}

#img-slider1 {
    height: 450px;
}

#img-slider1 li {
    width: 680px;
    height: 455px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

#img-slider1 li img {
    display: block;
    width: 100%;
}

.sliderText1 {
    position: absolute;
    width: 100%;
    height: 50px;
    line-height: 50px;
    left: 0;
    bottom: -50px;
    text-align: center;
    font-size: 4px;
    color: #fff;
    background: rgba(0, 0, 0, 0.78);
    z-index: 6;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.roundabout-moveable-item1.roundabout-in-focus:after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.1)
}

.roundabout-moveable-item1 i {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    margin-top: -60px;
    left: 50%;
    margin-left: -40px;
    background: url(../images/play1.png) center center no-repeat;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.roundabout-moveable-item1.roundabout-in-focus i {
    margin-top: -40px;
    visibility: visible;
    opacity: 1;
}

.roundabout-moveable-item1.roundabout-in-focus img {
    -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent),
    color-stop(70%, transparent), to(rgba(250, 250, 250, 0)));
}

.roundabout-moveable-item1.roundabout-in-focus .sliderText1 {
    bottom: 0;
}

/*新闻中心 end*/

/*云植原料药 start*/
.swiperColumn6C {
    overflow: hidden;
    margin: 0 -10px;
    padding: 10px 0;
}

.swiperColumn6C .con {
    margin: 0 10px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.swiperColumn6C .con a {
    display: block;
}

.swiperColumn6C .con .pic {
    background: #f0e1b4 url(../images/productbg.png) center center no-repeat;
}

.swiperColumn6C .con .pic:before {
    padding-top: 128.8889%;
}

.swiperColumn6C .con .text {
    display: block;
    position: relative;
    height: 65px;
    line-height: 65px;
    font-size: 14px;
    color: #333;
    background: #fff;
    padding: 15px 5px 0;
    text-align: center;
}

.swiperColumn6C .con .text:after {
    display: block;
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    left: 50%;
    margin-left: -24px;
    top: -24px;
    background: url(../images/wicon7.png) center center no-repeat;
}

.swiperColumn6C .con:hover {
    box-shadow: 3px 7px 9px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}

.swiperColumn6C .con:hover .text {
    color: #428a7b;
}

.column30 {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.pdcBtn {
    text-align: center;
    margin-bottom: 22px;
}

.pdcBtn a {
    display: inline-block;
    height: 45px;
    line-height: 45px;
    background: #fff;
    padding: 0 50px;
    border-radius: 4px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    font-size: 14px;
    color: #bf974a;
}

.pdcCon {
    line-height: 20px;
    padding: 5px 0;
    font-size: 14px;
    color: #a48f65;
    text-align: center;
}

.pdcBtn a:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    box-shadow: 4px 4px 8px 2px rgba(164, 143, 101, 0.5);
}

/*云植原料药 end*/

/*品牌产品start*/
.minH1500 {
    min-height: 1500px;
    height: auto !important;
    height: 1500px;
}

.brandBannerBox {
    position: relative;
}

.brandBannerBox .brandBanner {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.brandBg {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: url(../images/brandbg.jpg) bottom left no-repeat;
    background-attachment: fixed;
}

.brandSwiperBox {
    position: relative;
}

.brandSwiper {
    position: relative;
    overflow: hidden;
}

.brandSwiper .bd {
    padding: 5px 0;
    margin-right: -30px;
}

.brandSwiper .bd .swiper-slide {
    float: left;
    width: 33.3333%
}

.brandSwiper .bd .swiper-slide a {
    display: block;
}

.brandCon {
    margin: 0 30px 0 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.brandCon:hover .brandpicBox {
    box-shadow: 3px 7px 9px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}

.brandpicBox {
    padding: 30px;
    background: linear-gradient(60deg, #8f8f8f, #c2c2c2 50%, #e7e7e7);
    border-radius: 10px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.brandpicBox .pic:before {
    padding-top: 100%;
}

.brandNext {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -70px;
    top: 50%;
    margin-top: -20px;
    border-radius: 100%;
    background: #e0d1b4 url(../images/swipernext.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
}

.brandPrev {
    position: absolute;
    width: 40px;
    height: 40px;
    left: -70px;
    top: 50%;
    margin-top: -20px;
    border-radius: 100%;
    background: #e0d1b4 url(../images/swiperprev.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
}

.brandPrev:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    background: #428a7b url(../images/swiperprev_h.png) center center no-repeat;
}

.brandNext:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    background: #428a7b url(../images/swipernext_h.png) center center no-repeat;
}

.brandText {
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.brandCon:hover .brandText {
    color: #428a7b;
}

.brandSwiper1 {
    position: relative;
    overflow: hidden;
}

.brandSwiper1 .bd {
    padding: 5px 0;
    margin-right: -30px;
}

.brandSwiper1 .bd .swiper-slide {
    float: left;
    width: 33.3333%
}

.brandSwiper1 .bd .swiper-slide a {
    display: block;
}

.brandSwiper2 {
    position: relative;
    overflow: hidden;
}

.brandSwiper2 .bd {
    padding: 5px 0;
    margin-right: -30px;
}

.brandSwiper2 .bd .swiper-slide {
    float: left;
    width: 33.3333%
}

.brandSwiper2 .bd .swiper-slide a {
    display: block;
}

.brandNext1 {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -70px;
    top: 50%;
    margin-top: -20px;
    border-radius: 100%;
    background: #e0d1b4 url(../images/swipernext.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
}

.brandPrev1 {
    position: absolute;
    width: 40px;
    height: 40px;
    left: -70px;
    top: 50%;
    margin-top: -20px;
    border-radius: 100%;
    background: #e0d1b4 url(../images/swiperprev.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
}

.brandPrev1:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    background: #428a7b url(../images/swiperprev_h.png) center center no-repeat;
}

.brandNext1:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    background: #428a7b url(../images/swipernext_h.png) center center no-repeat;
}

.brandNext2 {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -70px;
    top: 50%;
    margin-top: -20px;
    border-radius: 100%;
    background: #e0d1b4 url(../images/swipernext.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
}

.brandPrev2 {
    position: absolute;
    width: 40px;
    height: 40px;
    left: -70px;
    top: 50%;
    margin-top: -20px;
    border-radius: 100%;
    background: #e0d1b4 url(../images/swiperprev.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
}

.brandPrev2:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    background: #428a7b url(../images/swiperprev_h.png) center center no-repeat;
}

.brandNext2:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    background: #428a7b url(../images/swipernext_h.png) center center no-repeat;
}

.brandSwiper3 {
    position: relative;
    overflow: hidden;
}

.brandNext3 {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -70px;
    top: 50%;
    margin-top: -20px;
    border-radius: 100%;
    background: #e0d1b4 url(../images/swipernext.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
}

.brandPrev3 {
    position: absolute;
    width: 40px;
    height: 40px;
    left: -70px;
    top: 50%;
    margin-top: -20px;
    border-radius: 100%;
    background: #e0d1b4 url(../images/swiperprev.png) center center no-repeat;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    cursor: pointer;
}

.brandPrev3:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    background: #428a7b url(../images/swiperprev_h.png) center center no-repeat;
}

.brandNext3:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    background: #428a7b url(../images/swipernext_h.png) center center no-repeat;
}

/*品牌产品end*/

/*综合页end*/


/*动画预备处理start */


/*首页的预备动画start*/
.coumn1.columnBox {
    opacity: 0.5;
    transform: scale(0.9);
}

.column2.columnBox {
    opacity: 1;
    transform: scale(0.9) translateY(100px);
}

.column3.columnBox {
    opacity: 0.5;
    transform: perspective(600px) rotateX(3deg) rotateY(-3deg) scale(0.9);
    transform-origin: 100% 100%;
}


/*综合页动画开始*/
.column10 {
    position: relative;
    height: 100%;
    width: 100%;
}

.column10.columnBox {
    opacity: 0.5;
    transform: rotateX(-120deg) scale(0.9);
    transform-origin: 50% 0px;
}

.column11 {
    position: relative;
    height: 100%;
    width: 100%;
}

.column11.columnBox {
    opacity: 0.5;
    transform: scale(0.9) translateY(100px);
}

.column12 {
    position: relative;
    height: 100%;
    width: 100%;
}

.column12.columnBox {
    opacity: 0.5;
    transform: rotateY(120deg) scale(0.9);
    transform-origin: 0px 0px;
}


/*侧边浮框start*/
.floatRight {
    position: fixed;
    height: 386px;
    width: 40px;
    right: 30px;
    top: 50%;
    z-index: 999;
    margin-top: -193px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.floatBox dd {
    padding: 6px 0;
}

.floatBox dd .con {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 4px;
    background: #beaa83;
    box-shadow: 2px 0px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.floatIcon .wicon {
    width: 65px;
    height: 36px;
    border-radius: 4px;
}

.floatIcon .text {
    line-height: 25px;
    height: 25px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.smallApplet .floatIcon .wicon {
    background: url(../images/xinxi.png) bottom center no-repeat;
}

.onlineSever .floatIcon .wicon {
    background: url(../images/wchart.png) bottom center no-repeat;
}

.onlinmessage .floatIcon .wicon {
    background: url(../images/kf.png) bottom center no-repeat;
}

.backTop .floatIcon .wicon {
    background: url(../images/zd.png) bottom center no-repeat;
}

.smallApplet .floatIcon .wicon {
    background: url(../images/xinxi.png) bottom center no-repeat;
}

.tzgg .floatIcon .wicon {
    background: url(../images/public.png) bottom center no-repeat;
}

.floatBox dd.ypblfy .floatIcon .wicon {
    background: url(../images/blfy.png) bottom center no-repeat;
    background-size: auto 25px;
}

.smallMessage .floatIcon .wicon {
    background: url(../images/ly1.png) bottom center no-repeat;
}

.floatBox dd.smallApplet {
    padding: 16px 0;
}

.floatBox dd.smallApplet .con {
    width: auto;
    height: 46px;
    padding-right: 15px;
    background: #2f2e28;
}

.floatBox dd.smallApplet:hover .con {
    background: #2f2e28;
}

.floatBox dd.smallApplet .floatIcon {
    overflow: hidden;
}

.floatBox dd.smallApplet .floatIcon .wicon {
    float: left;
    display: inline;
    width: 50px;
    height: 46px;
    background: url(../images/xinxi.png) no-repeat center center;
}

.floatBox dd.smallApplet .floatIcon .text {
    overflow: hidden;
    height: 46px;
    line-height: 46px;
}

.floatPosition {
    position: absolute;
    width: 120px;
    height: 120px;
    right: 85px;
    top: -30px;
    box-shadow: 1px 2px 9px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    visibility: hidden;
    opacity: 0;
    border-radius: 5px;
}

.floatPosition:after {
    display: block;
    content: '';
    border: 8px solid transparent;
    border-left-color: #fff;
    position: absolute;
    right: -8px;
    top: 50%;
    margin-top: -8px;
}

.floatPosition i {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fff;
    right: -8px;
    transform: rotateZ(45deg);
    top: 50%;
    margin-top: -8px;
    box-shadow: 1px 2px 9px rgba(0, 0, 0, 0.2);
}

.floatImg {
    padding: 5px;
    width: 110px;
    height: 110px;
    background: #fff;
    position: relative;
    border-radius: 5px;
}

.floatImg img {
    display: block;
    height: 110px;
    width: 110px;
    position: relative;
    z-index: 5;
}

.floatPosition1 {
    position: absolute;
    right: 80px;
    top: 10px;
    box-shadow: 1px 2px 9px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

.floatPosition1 i {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotateZ(45deg);
    top: 50%;
    margin-top: -5px;
    right: -5px;
    box-shadow: 1px 2px 9px rgba(0, 0, 0, 0.5);
}

.floatImg1 {
    width: 80px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    text-align: center;
    border-radius: 3px;
    position: relative;
    z-index: 5;
}

.floatPosition2 {
    position: absolute;
    width: 190px;
    right: 80px;
    top: -25px;
    box-shadow: 1px 2px 9px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

.floatPosition2 i {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotateZ(45deg);
    top: 15%;
    margin-top: -5px;
    right: -5px;
    box-shadow: 1px 2px 9px rgba(0, 0, 0, 0.5);
}

.floatImg2 {
    padding: 10px 0px;
    position: relative;
    z-index: 5;
    background: #fff;
    border-radius: 10px;
}

.floatImg2 .folatTitle {
    padding: 0 20px;
    /* border-bottom: 1px solid #f0f0f0; */
}

.floatImg2 span {
    display: block;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
    color: #858585;
}

.floatImg2 span.span1 {
    color: #428a7b;
}

.floatImg2 .floatCon {
    padding: 0 20px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    color: #858585;
}

.backTop:hover .floatPosition1 {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.onlineSever:hover .floatPosition {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.onlinmessage:hover .floatPosition2 {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.floatBox dd:hover .con {
    background: #428a7b;
}


/*自适应start*/
.wrap1 {
    width: 1200px;
    margin: 0 auto;
    clear: both;
}

.section4 .wrap1{
    width: 100%;
}
@media screen and (max-width: 1440px) {
    .footerMenu dd {
        margin-right: 25px;
    }
}

@media screen and (max-width: 1366px) {
    .wrap1 {
        width: 1000px;
    }

    .column5Swiper {
        width: 1100px;
    }

    .commonTitle {
        height: 70px;
        line-height: 70px;
        font-size: 24px;
        background-size: contain;
    }

    .commonTitle.white {
        background-size: contain;
    }

    .column6swiper {
        width: 1100px;
    }

    .slider1 {
        position: relative;
        width: 600px;
        margin: 0px auto;
        height: 300px;
    }

    #img-slider1 {
        height: 300px;
    }

    #img-slider1 li {
        width: 450px;
        height: 300px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .sectionCon {
        /*transform: scale(.9);*/
        /*-webkit-transform: scale(.9);*/
    }

    .eventSection .sectionCon {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    .footerMenu dd {
        margin-right: 10px;
    }
}
@media screen and (max-width:1024px){
   /*.top{*/
   /*    display: none;*/
   /*}*/
   /*.section{*/
   /*    background: none;*/
   /*}*/
   .top{
       display: none;
   }
   /*右侧导航*/
    .floatRight{
        display: none;
    }
   /*关于我们*/

   .footerC{
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       background: #161616;
       margin: 0;
       padding: 0 15px;
   }
   
   .footerR{
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
   }
   .formBottom{
    height: auto;    
   }
   .beian span{
       display: flex;
       justify-content: center;
       align-items: center;
       padding: 0;
       white-space: nowrap;
       text-overflow: hidden;
       overflow: hidden;
       /*flex-direction: column;*/
       
   }
   /*.beian span*/
   .beian span .footer_a1{
        line-height:2.5;
        /*padding: 25px 0;*/
        display: block;
          white-space: nowrap;
       text-overflow:ellipsis;
       overflow: hidden;
   }
   /*.beian span .footer_a1*/
   .beian span.span1{
       display: block;
        height: 23px;
       background-size:100% 100% ;
   }
   .js{
       padding-top:25px;
       line-height:0;
    white-space: nowrap;
   }
   .footerEwm{
       display:flex ;
       justify-content: center;
       align-items: center;
       
   }
   .footerMenu{
       display: flex;
       justify-content: center;
       /*align-items: center;*/
   }
   /*人才招聘*/
   .subPage{
       width: 100%;
       /*padding: 0 15px;*/
       /*background: pink;*/
   }
   .subPage .page{
       display: block;
   }
   .location{
       width: auto;
       padding: 0 15px;
   }
   /*.honorD_x .honor_dd:nth-child(1){*/

   /*    order: 1;*/
   /*}*/
   /*.honorD_x .honor_dd:nth-child(2){*/
     
   /*    order: 3;*/
   /*}*/
   /* .honorD_x .honor_dd:nth-child(3){*/
       
   /*    order: 2;*/
   /*}*/
   /*  .honorD_x .honor_dd:nth-child(4){*/
   /*    order: 4;*/
   /*}*/
   /*产品中心*/
   .minH600{
       min-height: auto;
       height: auto;
       margin-top: 50px;
       width: auto;
       padding:  0 15px;
   }
   .wrap1{
       width: auto!important;
       display: flex;
       justify-content: space-between;
       flex-direction: column;
       /*margin-bottom: 30px;*/
       
   }
   .locationR span.span1.span2 a{
       white-space: nowrap;
       text-overflow: ellipsis;
       overflow: hidden;
        display: block;
       
   }
   .locationR span a{
       white-space: nowrap;
       text-overflow: ellipsis;
       overflow: hidden;
       display: block;
   }
   .locationR{
       width: 100%;
       order: 1;
       display: flex;
       /*background: red;*/
   }
   .locationDl{
       order: 2;
       display: flex;
       justify-content: space-between;
       align-items: center;
       flex: 1;
   }
   .locationDl dd{
       width: 33.3%;
        /*margin: 0 5px;*/
       padding:0 ;
       display: flex;
       justify-content: center;
       
   }
   .locationDl dd.hover a{
       white-space: nowrap;
       text-overflow: ellipsis;
       overflow: hidden;
       display: block;
   }
   .locationDl dd a{
        white-space: nowrap;
       text-overflow: ellipsis;
       overflow: hidden;
       display: block;
   }
   .wrap1 .clear{
       display: none;
   }
   .wrap .articleBox{
       padding: 0!important;
   }
   /*首页*/
   .column1Itro{
       text-align: justify;
   }
   .column1Con{
       display: flex;
       flex-direction: column;
   }
   .column1Video{
       display: none;
   }
   .fadeInLeft {
       width: 100%;
       order: 2;
   }
   .fadeInRight{
       order: 1;
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       padding: 0 15px;
   }
   .column1Dl{
       display: flex;
       width: 100%;
       justify-content: center;
       align-items: center;
   }
   .column1Dl dd{
       flex: 1;
        /*width: 25%;*/
       display: flex!important;
       justify-content: center;
       /*justify-content: space-between;*/
       align-items: center;
       margin: 0;
       
   }
   .col1BgBox{
       width: 100!important;
       height: 100!important;
       position: absolute!important;;
       left: 0!important;
       top: 0!important;
   }
    .tableCell .columnC{
       width:100%!important;
       /*height: 100%;*/
        /*background: pink;*/
        display: flex;
        flex-direction: column;
        justify-content: center;
   }
   .commonTitle.white{
       width: 100%;
       display: flex;
       justify-content: center;
   }
   .column2SwperCon .fadeInLeft{
       /*width: auto!important;*/
       display: none;
   }
   .column2SwperCon .fadeInRight{
       display: none;
   }
   .sectionCon .table{
       display: flex;
   }
   .sectionCon .tableCell{
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
   }
   
   .column2SwperCon{
       width: 100%;
   }
   .column2Swiper .swiper-slide .con{
       margin: 0!important;
   }
   .column4Text .title{
       width: 100%;
       height: 120px!important;
       display: flex;
       justify-content: center;
       align-items: center;
       writing-mode: tb-rl;
       -webkit-writing-mode: tb-rl;
       letter-spacing: 3px;
       font-size: 18px;
       
   }
   .column4Text .title1{
       display: none;
   }
   /*.swiper-wrapper .swiper-slide{*/
   /*    width: 50%!important;*/
       
   /*}*/
 .column2Swiper .swiper-slide .con{
     height: 100%;
 }
 
 /*.column2Swiper .swiper-slide{*/
 /*    height:100px!important;*/
 /*}*/
 
 
 
 .column5Swiper .swiper-slide{
     width: 100%!important;
     /*display: none!important;*/
 }
 .column5Swiper .swiper-slide:nth-child(2){
     display: none;
 }
  .column5Swiper .swiper-slide:nth-child(3){
     display: none;
 }
.column5Swiper{
    width: auto!important;
    padding: 0 15px!important;
    /*background: #fff;*/
}
 .swiperColumn5C .con{
     flex-direction: column;
     margin: 0!important;
 }
 .swiperColumn5C .textBox1{
     padding: 0px 15px!important;
 }
   .swiperColumn5C{
       margin: 0!important;
   }
   
   
 
   
   
   .column5Swiper .fadeInRight,.fadeInLeft{
       display: none;
   }
   .swiperColumn5C .textBox1 .textBoxTitle{
       text-align: justify;
   }
   
   
   .imghover .pic img{
       display: block;
   }
    /*.honno_1{*/
    /*    justify-content: flex-start;*/
    /*    margin-left: 1.33%;*/
    /*    background: red;*/
    /*}*/
   
   /*实力展示*/
   .subPageC{
       margin-top: 75px;
   }
   .subPageC .honorDl{
       justify-content: space-between;
       margin-right: 0;
       
   }
   .subPageC .honorDl dd{
       margin-right: 0!important;
   }
   .subPageC .honorDl dd:nth-child(1){
       order:4;
   }
    .subPageC .honorDl dd:nth-child(2){
       order:1;
   }
   .subPageC .honorDl dd:nth-child(3){
       order:2;
   }
   .subPageC .honorDl dd:nth-child(4){
       order:3;
   }
    .subPageC .honorDl dd:nth-child(5){
       order:5;
   }
    .subPageC .honorDl dd:nth-child(6){
       order:6;
   }
   
}