.ele_icon {
    transform: translateX(0) !important;
    filter: none !important;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.container_header {
    margin: auto;
    width: 100%;
}

.container_header .line {
    position: absolute;
    width: 2px;
    height: 2px;
    border-right: 0px solid transparent;
    border-left: 2px solid transparent;
    border-top: 300px solid #efefef;
    overflow: hidden;

    right: 40px;
    content: "";
    box-shadow: 0 0 5px 1px rgba(0, 104, 216, 0.57);
    ;
    animation: toheight 1s linear forwards;
}

.bottle {
    transform: translateX(-50%);
    position: absolute;
    top: 350px;
    left: 50%;
}

.container_header .subtitle {
    padding-top: 20px;
    color: #fff;
    font-family: GOTHAM-BLACK, "微软雅黑";
    line-height: 48px;
    font-size: 16px;
    text-align: center;
}

.container_header .title {
    font-size: 45px;
    display: block;
    letter-spacing: 10px;
    position: absolute;
    color: rgba(255, 255, 255, 0.25);
    left: 50%;
    text-align: center;
    margin-left: -160px;
    width: 320px;
    font-weight: 600;
    transform: translate(-50%, -50%);
}

.container_header .title span {
    display: inline-block;
    margin-left: 10px;
    height: 10px;
}

.index_main {
    background: #002348;
    overflow: hidden;
}

.index_main .section {

    overflow: hidden;
    position: relative;
}

.index_main .section1 {
    position: relative;
    height: 100vh
}

.index_main .section1 .index_banner .item {
    background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
}

.index_main .section1 .index_banner .item.slick-current .scaleBg {
    visibility: visible;
    -webkit-animation: scale-bg 6s linear forwards;
    animation: scale-bg 6s linear forwards;
}

.index_main .section1 .index_banner .items {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

}



.index_main .section1 .index_banner .item .inner .block_txt {
    position: absolute;
    top: 33%;
    right: 10px;
    left: 10px;
    opacity: 0;
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.index_main .section1 .index_banner .item.active .inner .block_txt {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}

.index_main .section1 .index_banner .item .inner .block_txt h4 {
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-family: 'COCO';
    margin: 20px auto
}

.index_main .section1 .index_banner .item .inner .block_txt h2 {
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 5px;
}

.index_main .section1 .index_banner .item .inner .block_txt h2 span {
    color: #d6af96;
    display: inline-block;
    letter-spacing: 5px;
}

.index_main .section1 .index_banner .item .inner .block_txt h3 {
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    margin: 20px auto;
}

.index_main .section1 .slick_txt {
    width: 30%;
    height: 100%;
    background-color: transparent;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    font-size: 0;
    outline: none;
    border: 0;
}

.index_main .section1 .left {
    left: 0;
}

.index_main .section1 .right {
    right: 0;
}

.index_main .section1 .slick_txt:hover .slick_arrow {
    opacity: 1;
    visibility: visible;
}

.index_main .section1 .slick_txt .slick_arrow {
    width: 20px;
    height: 36px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -18px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.index_main .section1 .slick_txt .prev {
    background-image: url(../image/ban_prev.png);
    left: 60px;
}

.index_main .section1 .slick_txt .next {
    background-image: url(../image/ban_next.png);
    right: 60px;
}

.index_main .section1 .slick_txt .prev:hover {
    background-image: url(../image/ban_prev_hover.png);
}

.index_main .section1 .slick_txt .next:hover {
    background-image: url(../image/ban_next_hover.png);
}

.index_main .section1 .number {
    position: absolute;
    bottom: 8%;
    left: 50%;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: table;
    padding: 0 20px;
    width: auto;
    text-align: center;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.index_main .section1 .number span {
    font-family: "Myriad Pro", "Microsoft YaHei";
    font-size: 14px;
    color: #fff;
    margin-right: 50px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}

.index_main .section1 .number span:last-child {
    margin-right: 0;
}

.index_main .section1 .number span:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    bottom: -20px;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}

.index_main .section1 .number span.active:after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.index_main .section2 {
    padding-top: 30px;
    background-size: 360px;
    background-repeat: no-repeat;
    background-position: center 100px;

}

.index_main .section2 h3 {
    text-align: center;
}

.index_main .section3,
.index_main .section6 {
    padding-top: 30px;

}

.index_main .section3 .hongrendiv {

    background: url(/images/liuxing.png);
    background-size: 350px;
    background-repeat: no-repeat;
    background-position: right 0;

}

.index_main .section3 {

    background-size: 450px;
    background-repeat: no-repeat;
    background-position: left 800px;

}

.index_main .section4 {
    padding-top: 30px;
}


.index_main .section6 {
    padding-bottom: 20px;
}


.index_main .section3 h3 {
    text-align: center;
}



.section4 {

    background-size: auto 100%;

}


.box {
    width: 100%;

}

.box .desc {
    padding: 10px;
    margin: 20px auto;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
}

@media (max-width: 1550px) {
    .home .clear-space .design-lists {
        margin: 186px auto 0 !important;
    }
}


.home .home-lists {
    position: relative;
    width: 100%;
}

.home .home-lists::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
}

.home .home-lists .content-right {

    margin: auto;
    position: relative;
}

.home .home-lists .content-right img {
    display: block;
    border-radius: 50%;
}


.home .home-lists .content-left .content-warp {
    max-width: 360px;
    margin: 0 auto;
    overflow: hidden;
}

.home .home-lists .content-left .content-warp h3 {
    font-size: 14px;
    color: #8C8889;
    line-height: 150%;
    padding-left: 16px;
}

.home .home-lists .content-left .content-warp h4 {
    font-size: 40px;
    color: #000000;
    line-height: 150%;
    padding-left: 16px;
    margin: 0 0 30px;
    font-weight: 600;
}


.home .home-lists .content-left .content-warp ul li {
    cursor: default;
    transition: 0.2s;
    padding: 0 0 0 5px;
    border-radius: 4px;
}

.home .home-lists #home-list1-text2 li {
    margin-bottom: 60px;

}

.home .home-lists .content-left .content-warp ul li .center {
    padding: 2px 10px;
    margin: auto;
    overflow: hidden;
}


.home .home-lists .content-left .content-warp ul li.active {
    background: #F8F6F6;
}

.comm {
    color: #fff;
    font-size: 24px;
    top: -4px;
    position: relative;
    margin-left: 7px;


}

.home .home-lists .content-left .content-warp ul li span {
    display: block;
    color: #8cbdd9;
    font-weight: 600;
    text-align: center;
    font-style: italic;
}

.home .home-lists .content-left .content-warp ul li span .timer {
    color: #8cbdd9;
}

.home .home-lists .content-left .content-warp ul li span .normal {
    font-style: italic;
}

.home .home-lists .content-left .content-warp ul li span .whitecolor {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    margin-left: 5px
}

.home .home-lists .content-left .content-warp ul li p {
    line-height: 17px;
    margin-bottom: 10px;
    text-align: left;
    color: #fff;
    font-size: 14px;
    position: relative;
}



.home .home-lists .content-left .content-warp a {
    width: 120px;
    height: 40px;
    font-size: 14px;
    color: #ffffff;
    background: #FE4066;
    border-radius: 6px;
    display: inline-block;
    vertical-align: top;
    line-height: 40px;
    text-align: center;
    margin: 30px 0 0 16px;
    transition: 0.3s ease-in;
}


.home .home-lists .content-left .content-warp a i {
    font-size: 18px;
    color: #FE4066;
    margin-right: 7px;
}

.home .home-lists .content-left .content-warp a:hover {
    opacity: 0.8;
}

.home .home-lists .content-left .content-warp .video-href {
    color: #5C5758;
    width: 118px;
    height: 38px;
    line-height: 38px;
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    margin-left: 8px;
    cursor: pointer;
}

.home .home-lists .content-left .content-warp .mockplus-more {
    color: #8C8889 !important;
    margin-top: 20px !important;
}

.home .home-lists .content-left .content-warp .mockplus-more:hover {
    color: #FF5476 !important;
}

.home .home-lists-two .content-right {
    float: left;
}

.home .home-lists-two .content-left .content-warp .content-warp-two {
    float: right;
}

.in-total li span {
    display: block;
    font-size: 18px;
}

.in-total li strong {
    font-size: 16px;
    position: relative;
    display: inline-block;
}

.in-total li strong:before {
    position: absolute;
    content: '+';
    right: -16px;
    top: 3px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

.in-total .nobefor strong:before {
    content: '+';

}


.in-total li p {
    margin: 10px 0 0;
    font-size: 18px;
}

.scrollleft li {
    margin: 0;
    display: inline;
    text-align: center;
    box-sizing: border-box;
}

.scrollleft img {
    width: 100%;
}


.section-title {
    margin-bottom: 40px;
    text-align: left;
    font-size: 32px;
}

.section-title p {
    margin: 0;
    font-size: 0;
    position: relative;
}

.section-title strong {
    color: #c2a28f
}

.section-title span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}



.section-title i {
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    font-style: normal;
    /*background-color:rgb(194, 162, 143);*/
    padding: 0;
    color: #fff;
}

.section-title small {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #999;
}

.section-title-1 i {
    font-size: 28px;
}

.content-right .hongren_swiper0 {
    width: 100%;

}

.content-right .brand_swiper {
    width: 100%;
    overflow: hidden;
}


@keyframes move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-7140px, 0);
    }
}



.brandlist {
    text-align: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin: auto;
    padding: 10px;
    margin-bottom: 0;
}


.brandimg {
    border-radius: 50%;
    padding: 5px;

    background-size: cover;
    background-position: center;
    text-align: center;

}

.brandimg img {
    background: #fff;
    border-radius: 50%
}



.hongrenlist .descimg {
    width: 90px;
    height: 30px;
    display: flex;
    margin: auto;
}



.brand_swiper .hongrenlist .descimg {
    height: 30px;
    display: block;
    margin: auto;
}


.hongrenlist .descimg a {
    display: inline-block;
}

.brand_swiper .hongrenlist .descimg img {
    width: 25px;
    margin: 0 2px;
    border-radius: 2px !important;
}

.brand_swiper .content-right .hongren li {
    overflow: hidden;
}



.brand_swiper .hongrenlist .descimg {
    width: 90px;
    height: 30px;
    display: flex;
    margin: auto;
}

.content-right .hongren li {
    overflow: hidden;
}

.content-right .hongren a {

    flex: 1;
}


.hongrenlist .descimg a {
    display: inline-block;
}

.hongrenlist .descimg img {
    width: 25px;
    margin: 0 auto;
    border-radius: 2px !important;
}


.hongrenlist {
    text-align: center;
    margin: auto;
    padding: 10px;
    background-size: 100%;
    margin-bottom: 0;
    background-position: top;
    background-repeat: no-repeat;
}

.hongrenimg {
    background-size: cover;
    background-position: center;

}
.hongrenlist .name {
    text-overflow:ellipsis;white-space:nowrap;
    text-align: center;
    color: #fff;
    line-height: 18px;
    font-size: 14px;
    font-weight: 800;
    height: 20px;
    overflow: hidden;
    margin-top: 19px;
 
}

.hongrenlist .info {
    margin-top: 5px;
    text-align: center;
    color: #fafafa;
    line-height: 18px;
    font-size: 14px;
    overflow: hidden;
    height: 42px;
    font-size: 12px;
}

.scrollleft .hongren li {
    overflow: hidden;
    display: block;
}

#interactive {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#interactive:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 89, 181, 0.4);

}

#interactive canvas {
    margin-top: 0;
    height: 100vh !important;
}

.aboutus .info_b .title {
    font-size: 14px;
    line-height: 16px;
    margin-top: 50px;
    font-weight: bold;

    padding: 20px 0;
    text-align: center;
    overflow: hidden;
}

.aboutus .info_b .intro {
    font-size: 14px;
    line-height: 26px;
    color: #3a3a3a;
    padding: 20px 0;
}


/*外面的盒子*/

.box>.out {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transform: translate(-50%, -50%);
    /*调用动画*/
    animation: mofan 5s linear 0s infinite normal;
    color: white;

}




.index_main .section4 .box1 {
    position: absolute;
    height: 100%;
    top: 560px;
}


.index_main .section4 .item {
    height: 180px;
    width: 180px;
    cursor: pointer;
    float: left;
    position: relative;

    margin: 30px;
    text-align: center;
    line-height: 30px;
    display: box;
    display: -webkit-box;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-pack: center;
    /* IE 10 */

    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    /* IE 11+,Firefox 22+,Chrome 29+,Opera 12.1*/

    /* 垂直居中 */
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-align: center;
    /* IE 10 */

    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}

.index_main .section4 .item:hover:before {
    animation-play-state: paused;


}


@-webkit-keyframes animal {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes fanimal {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}

.index_main .section4 .item .title {
    display: block;
}

.index_main .section4 .item .text {}

.section5 {
    margin: 30px auto;
    padding-bottom: 1px;
}

.section5 .licheng-bg {
    top: 330px;
    width: 100%;
    margin: auto;
    position: relative;
}

.section5 .licheng-bg .warper {
    height: 100%;
}

.section5 .licheng-bg img {
    height: 518px;
    width: 100%;
    position: absolute;
    bottom: 75px;
    left: 0;
}

.section5 .ny-title {
    padding-top: 80px;
    visibility: hidden
}

.ny-title .title-en {
    font-size: 36px;
    color: #b4b4b4;
    font-family: arial;
    line-height: 36px;
    font-weight: normal;
}

.ny-title .title-ch {
    font-size: 26px;
    color: #333333;
    margin: 15px 0;
    font-weight: normal;
}

.ny-title i {
    display: block;
    width: 42px;
    height: 1px;
    background-color: #b5b5b5;
}

.section5 .licheng-content {
    position: absolute;
    width: 100%;
    height: 100%;
}

.section5 .licheng-content .swiper-wrapper,
.section5 .licheng-content .swiper-slide,
.section5 .licheng-content ul {
    width: 100%;
    height: 100%;
}

.section5 .licheng-content ul li {
    width: 20%;
    float: left;
    height: 100%;
}

.section5 .licheng-content ul li a {
    display: block;
    width: 100%;
    position: relative;
    height: 320px
}

.section5 .licheng-content ul li .date {
    color: #fff;
    font-size: 30px;
}

.section5 .licheng-content ul li.item1 .line,
.section5 .licheng-content ul li.item3 .line,
.section5 .licheng-content ul li.item5 .line {
    margin-bottom: 30px;
}

.section5 .licheng-content ul li.item2 .line,
.section5 .licheng-content ul li.item4 .line {
    margin-top: -40px;
}

.section5 .licheng-content ul li.item1 .line:after,
.section5 .licheng-content ul li.item3 .line:after,
.section5 .licheng-content ul li.item5 .line:after {
    width: 88px;
    height: 113px;
    background: url(/images/yuan.png) no-repeat;
    display: block;
    content: "";
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    position: absolute;
}

.section5 .licheng-content ul li.item2 .line:before,
.section5 .licheng-content ul li.item4 .line:before {
    width: 114px;
    height: 102px;
    background-image: url(/images/yuan.png);
    display: block;
    content: "";
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    position: absolute;
}

.section5 .licheng-content ul li .lc-left {
    position: absolute;
}

.section5 .licheng-content ul li .line {
    height: 220px;
    width: 1px;
    display: block;
    background-color: #fff;
    position: relative;
    left: 30px;
}

.section5 .licheng-content ul li .lc-right {
    position: absolute;
    left: 30px;
    width: 400px;
    height: 100%;
    display: table;
}

.section5 .licheng-content ul li.item5 .lc-right {
    width: 200px;
}

.section5 .licheng-content ul li.item2 .lc-right,
.section5 .licheng-content ul li.item4 .lc-right {
    width: 400px;
}

.section5 .licheng-content ul li .lc-right .right-text {
    padding: 20px;
    display: table-cell;
    vertical-align: middle;
}

.section5 .licheng-content ul li.item1 a {
    top: -6px;
}

.section5 .licheng-content ul li.item1 .lc-left .line:after {
    bottom: -77px;
    left: -52px;
}

.section5 .licheng-content ul li.item1 .lc-right {
    bottom: 68px;
}

.section5 .licheng-content ul li.item2 a {
    top: 300px;
}

.section5 .licheng-content ul li.item2 .lc-left .line:before {
    top: -61px;
    left: -50px;
}

.section5 .licheng-content ul li.item2 .lc-right {
    top: -25px;
}

.section5 .licheng-content ul li.item3 a {
    top: 120px;
}

.section5 .licheng-content ul li.item3 .lc-left .line:after {
    bottom: -76px;
    left: -51px;
}

.section5 .licheng-content ul li.item3 .lc-right {
    bottom: 100px;
}

.home .home-lists .content-right .ywupic {

    width: 150px;

}

.section5 .licheng-content ul li.item4 a {
    top: 266px;
}

.section5 .licheng-content ul li.item4 .lc-left .line:before {
    top: -64px;
    left: -50px;
}

.section5 .licheng-content ul li.item4 .lc-right {
    top: -45px;
}

.section5 .licheng-content ul li.item5 a {
    top: 160px;
}

.section5 .licheng-content ul li.item5 .lc-left .line:after {
    bottom: -56px;
    left: -50px;
}

.section5 .licheng-content ul li.item5 .lc-right {
    bottom: 100px;
}

.section5 .licheng-content .right-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 36px;
    color: #fff
}

.section5 .licheng-content .right-text p {
    font-size: 14px;
}

.lc-swiper-btn {
    width: 100%;
    position: absolute;
    top: 370px;
}

.lc-swiper-btn a {
    display: block;
    position: absolute;
}

.lc-swiper-btn .btn-prev {
    position: absolute;
    left: 15px;
    top: 50px;
}

.lc-swiper-btn .btn-next {
    position: absolute;
    right: 0;
    top: 50px;
}

.lc-swiper-btn .iconfont {
    font-size: 30px;
}


#mcontact .contactinfo .contact_name {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
    font-weight: 100;
    color: #fff;
    font-weight: 600;
     text-align: center;
}

#mcontact .contactinfo p {
    font-size: 12px;
    line-height: 30px;
    margin: 0 !important;
    color: #585858;
}

#mcontact .contactinfo img {
    width: 12px;
    margin-right: 12px;
    margin-top: -4px;

}

#mcontact .contactinfo p.title2 {
  
    font-size: 14px;
    width: 36px;
    display: block;
    height: 80px;
    margin-top: 34px;
    line-height: 32px;
    color: #3c3c3c;
    margin-top: 20px;
    padding-top: 15px;
}

#mcontact .ff_social {
    position: relative;
}

#mcontact .ff_social a {
    width: 30px;
    height: 30px;
    display: block;
    font-size: 14px;
    text-align: center;
    line-height: 28px;
    border-radius: 15px;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    color: #b3b3b3;
    background: rgba(255, 0, 0, 0);
    margin-right: 20px
}

#mcontact .ff_social a:hover {
    color: #fff;
    background: #5c5c5c
}



#mcontact .contactform .contactform_content textarea {
    resize: none;
    overflow: hidden;
    margin-top: 19px;
    min-height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

}

#mcontact .contactform .contactform_content textarea:hover {

    border: 2px solid rgba(255, 255, 255, 0.8);
}

#mcontact .contactform .inputtxt {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border: 0;
    border-bottom: rgba(255, 255, 255, 0.25) 2px solid;
    width: 150px;
    height: 30px;
    line-height: 30px;
    padding: 10px 20px;
    margin-bottom: 10px;
    transition: all .3s ease-out 0s;
    border-bottom-color: rgba(255, 255, 255, 0.25);
    padding: 10px 0;
    text-indent: 30px
}




#mcontact .contactform .inputtxt.submit {
    height: 45px;
    line-height: 33px;

    width: 100%;
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .2);
    background-color: #c2a28f;
    width: 43%;
    text-align: center;
    text-indent: 0;
}

#mcontact .contactform .inputtxt.submit:hover {
    background-color: #c2a28f;
    border-color: #c2a28f
}




#mcontact .contactform .inputtxt:hover {
    border-color: rgba(255, 255, 255, 0.8);
}




#mcontact .contactform,
.ff_indexPage .news .content_wrapper.slider .item_block,
.ff_indexPage .team .tab_button .owl-item .item_block {
    animation-name: fadeInRight
}

#mcontact .contactform {

    margin-top: 30px;
}

#mcontact .ff_social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 0
}

#mcontact .ff_social a:hover {
    background-color: #d39673
}

.point,
.point::before,
.point::after {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    content: '';
}

.point::before {
    animation: scale 2s infinite;
}

.point::after {
    animation: scale2 2s infinite;
}

@keyframes scale {
    0% {
        transform: scale(1);
        opacity: .9
    }

    100% {
        transform: scale(6);
        opacity: 0;
    }
}

@keyframes scale2 {
    0% {
        transform: scale(1);
        opacity: .9;
    }

    100% {
        transform: scale(12);
        opacity: 0;
    }
}


.point2 {
    top: 210px;
    left: 110px;
}

.point,
.point::before,
.point::after {
    /* 设置颜色 */
    background-color: rgba(241, 34, 30, .9);
}

.point2,
.point2::before,
.point2::after {
    /* 设置颜色 */
    background-color: rgb(54, 151, 255);
}



#allmap {
    margin-top: 20px;
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.anchorBL {
    display: none;
}

#changecolor {
    width: 200px
}


#mnews .module_container:before {
    background-color: #255eae !important;
}

#mcontact .module_container:before {
    background: linear-gradient(to bottom right, #92715e, #d39673) !important;
}

#mcontact .contactinfo p {
    color: #fff !important
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #fff !important;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff !important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #fff !important;
}

#fixed_mp {
    position: absolute;
    z-index: 9999;
    top: -89px;
    left: 50px;
    width: 200px;
    height: 200px;
    text-align: center;
    display: none
}

#fixed_mp .fixed-container {
    height: auto;
    padding: 20px 20px 0 20px;
    background: #fff;
    margin: auto;
}

#fixed_mp .fixed-container p {
    width: 100%;
    padding: 0;
    display: inline-block;
}

#openAssist {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 99;
    background-color: #3b3b3b;
    border-radius: 25px;
    text-align: center;
    display: none
}

#shares {
    position: fixed;
    right: 0;
    bottom: 63px;
    z-index: 99;
    height: 124px
}

#shares a {
    width: 40px;
    height: 40px;
    border: 1px solid #e6e6e6;
    display: block;
    font-size: 14px;
    text-align: center;
    position: relative;
    transition: all .3s ease-out 0s;
    background-color: #fff
}

#shares a .fa {
    padding-left: 0
}

#shares a#sweixin {
    top: -1px
}

#shares a#gotop {
    margin-top: -2px;
    font-size: 22px
}

#shares a#gotop i {
    margin-top: 6px
}

#shares a:hover {
    border-color: #b97047;
    z-index: 1;
    background-color: #b18268;
}

#shares a:hover i {
    color: #fff
}

#shares a i {
    margin-top: 12px;
    transition: all .3s ease-out 0s
}

#shares a i.fa.fa-mobile {
    font-size: 24px;
    margin-top: 8px
}

.fixed {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(37, 94, 174, 0.5);
    overflow-y: auto;
    z-index: 100;
    display: none
}

.fixed.show {
    display: block
}

#fixed_weixin {
    position: fixed;
    z-index: 9999;
    bottom: 32px;
    right: 61px;
    width: 200px;
    height: 210px;
    text-align: center;
}

#fixed_weixin .fixed-container {
    height: auto;
    padding: 20px 20px 0 20px;
    background: #fff;
    margin: auto;
}

#fixed_weixin .fixed-container div {
    height: 220px
}

#fixed_weixin .fixed-container p {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #000
}

#contactlist {
    margin: 10px auto;
    padding: 10px;
    overflow: hidden;
}

#contactinfo i {
    margin-right: 5px;
    width: 18px
}

#contactform .fa {
    color: #fff;
    float: left;
    line-height: 38px;
}

#contactform .fa img {
    margin-right: 10px;
    margin-bottom: 8px;
}



.boxed {
    position: relative;
    width: calc((100vh - 550px)/5);
    height: calc((100vh - 550px)/5);
    margin: 10px;
    margin-top: 0;
    padding: 5px;
    display: flex;
    font-size: 12px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.boxed.a {
    background: linear-gradient(-45deg, rgb(236, 218, 195), rgb(239, 177, 107), rgb(152, 115, 68), rgb(204, 170, 129), rgba(232, 141, 32, 0.74));
    color: #fff;
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.boxed.a:hover {
    background: #d09b5d;
}

.boxed.b {
    background: linear-gradient(107deg, #3c1f69, #cab7e8);
    background-size: 600% 600%;
    animation: GradientBackground 5s ease infinite;
}

.boxed.b:hover {
    background: linear-gradient(107deg, #3c1f69, #cab7e8);
}

.boxed.c {
    background: linear-gradient(107deg, #6bbcd1, #c4ebf5);
    background-size: 600% 600%;
    animation: GradientBackground 5s ease infinite;
}

.boxed.c:hover {
    background: linear-gradient(107deg, #6bbcd1, #c4ebf5);
}

.boxed.d {
    background: linear-gradient(107deg, #657370, #e4f7f4);
    background-size: 600% 600%;
    animation: GradientBackground 5s ease infinite;
}

.boxed.d:hover {
    background: linear-gradient(107deg, #657370, #e4f7f4);
}

.boxed.e {
    background: linear-gradient(107deg, #27a342, #b2edbf);
    background-size: 600% 600%;
    animation: GradientBackground 5s ease infinite;
}

.boxed.e:hover {
    background: linear-gradient(107deg, #27a342, #b2edbf);
}

.boxed.f {
    background: linear-gradient(107deg, #b0288e, #f0c7e6);
    background-size: 600% 600%;
    animation: GradientBackground 5s ease infinite;
}

.boxed.f:hover {
    background: linear-gradient(107deg, #b0288e, #f0c7e6);
}

.boxed.g {
    background: linear-gradient(107deg, #f54c4c, #d79797);
    background-size: 600% 600%;
    animation: GradientBackground 5s ease infinite;
}

.boxed.g:hover {
    background: linear-gradient(107deg, #f54c4c, #d79797);
}


.scrollleft ul.big {
    position: absolute;
    height: 719px;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    width: 3840px;
    overflow: hidden;
    animation-fill-mode: forwards;
}

.scrollleft ul.big li {
    float: left;
}

.content-right .big:hover {
    -webkit-animation-play-state: paused;
    /*动画暂停播放*/
}

@keyframes moveone {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(-1920px);
    }
}

.scrollleft ul li dl {
    position: relative;
    padding: 5px;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
    border-right: 1px solid #b6b7b9;
    border-bottom: 1px solid #b6b7b9;
    float: left;
}

.scrollleft ul li dl a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-box-pack: center;
}

.scrollleft .type-1-1 {

    width: 120px;
    height: 120px;
}

.scrollleft .type-2-1 {

    width: 240px;
    height: 120px;
}

.scrollleft .type-2-2 {

    width: 240px;
    height: 240px;
}

.scrollleft .type_3-1 {
    width: 360px;
    height: 120px;
}

.scrollleft .type_3 {
    width: 360px;
}

.scrollleft .type_5 {
    width: 600px;
}

.scrollleft .type-1-1 .pic1,
.scrollleft .type-1-1 .pic2 {

    width: 110px;
}

.scrollleft .type-2-1 .pic1,
.scrollleft .type-2-1 .pic2 {

    width: 220px;
}

.scrollleft .type-2-2 .pic1,
.scrollleft .type-2-2 .pic2 {

    width: 220px;
}

.scrollleft .big dl .pic1,
.scrollleft .big dl .pic2 {

    position: absolute;
    transition: all 1s ease-in-out;
    z-index: 100
}


.scrollleft .big dl .logo1,
.scrollleft .big dl .logo2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
}


.scrollleft .big dl .pic1 {
    transition: all 1s ease-in-out;
}

.scrollleft .big dl .pic1 img {
    margin-left: 240px;
    filter: drop-shadow(-240px 0 0 #fff);
    opacity: 1;
    transition: none;


}

.scrollleft .big dl .logo1 .pic1 img,
.scrollleft .big dl .logo2 .pic1 img {

    transform: scale(0) translateX(240px);
    opacity: 0;
    margin-left: 0;

    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    filter: drop-shadow(-240px 0 0 #fff);
}

/*
.scrollleft .big dl:hover .pic1 {
    -webkit-transform: rotateY(180deg) translateY(-50%);
    -moz-transform: rotateY(180deg);
}
*/
.scrollleft .big dl .pic2 {
    display: none;

}


#contactinfo #mpbtn {
    position: relative;
}

#contactinfo #mpbtn:hover #fixed_mp {
    display: block;
}

#contactinfo .ff_social i {
    margin: 0 !important;
    height: 40px;
    line-height: 40px;
    color: #585858;
    position: relative;
}

#contactinfo .ff_social a:hover i {
    color: #fff
}

.index_main .section1 .index_banner .item .inner .block_txt h2 span {
    background: #d6af96 -webkit-linear-gradient(left, #d6af96, #8a5736 50%, #f9f7f7 99%, #ffffff) no-repeat 100% 0;
    background-size: 34% 100%;
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


.index_main .section1 .index_banner .item .inner .block_txt h2 span {
    -webkit-animation: slideShine 4s linear infinite;
    animation: slideShine 4s linear infinite;
}

@-webkit-keyframes slideShine {

    0% {

        background-position: 0 0;

    }

    100% {

        background-position: 100% 100%;

    }

}

@keyframes slideShine {

    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 100%;
    }

}

#btnRefresh {
    text-align: center;
    transition: .3s linear;
    background-color: #fff;
}

.iconRefresh {
    width: 28px;
    height: 28px;
    background: url("../img/refresh.png");
    margin: 32px auto 0;
}

#btnRefresh:hover {
    color: #fff;
    background-color: #dd2727;
    transition: 0s;
}

#btnRefresh:hover .iconRefresh {
    background: url("../img/refresh-white.png");
}

/*二、3D反转区域处理 */
.img-back,
.img-front {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    width: 121px;
    height: 108px;
    text-align: center;
    line-height: 108px;
}

li img {
    vertical-align: middle;
}


.img-3d {
    transform-style: preserve-3d;
}

.img-back {
    transform: rotateY(180deg);
}

.contact_wx {
    margin-top: 70px;
}

.contact_wx li {
    width: 50%;
    float: left;
}

.contact_wx li .title {
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.contact_wx li .title a{
    color: #fff
}
.contact_wx li .img {
    text-align: center;
    padding: 10px;
}

.contact_wx li .img img {
    width: 140px;
    height: 140px
}

.contact_wx li img {
    width: 50px;
    height: 50px;
    padding: 11px;
}


.contact_wx li canvas {
    border: 10px solid #fff;

}


.content-yewu .yewu {
    margin-top: 50px;
    overflow: hidden;
}

.content-yewu .yewu li {
    text-align: center;
        width: 50%;
            padding-bottom: 15px;
            float: left;
}

.content-yewu .yewu li .ywupic {
    width: 100%;
    padding: 15px;
    display: block;
    margin: auto;
}

.content-yewu .yewu li .ywupic img {
    width: 90%:
}

.content-yewu .yewu li p {
    line-height: 18px;
    display: block;
    font-size: 12px;
    height: 30px;
    color: #fff;
    width: 100px;
    margin: auto;
}

.content-yewu .yewu li .title {
    font-size: 14px;
}

.content-yewu .yewu li .yewuico {
     width: 25px;
    height: 25px;
    margin: 15px auto;
}

.content-anli {
    width: 320px;
    margin: auto;

}

.content-anli .title {
    color: #92a7ca;
    font-size: 21px;
    line-height: 30px;
    text-align: center;

}

.content-anli p {
    margin: 20px auto;
    color: #fff;
    font-size: 14px;
    line-height: 24px;

}

.content-anli .num {
    margin-top: 10px
}
.content-anli .num p{
    margin: 5px auto
}



.content-anli .anliright img {
    width: 100%
}



.main-timeline:after {
    top: auto;
    bottom: -10px;
}

.main-timeline .timeline {
    padding: 30px 0;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.main-timeline .timeline:before,
.main-timeline .timeline:after {
    content: '';
    height: 100%;
    width: 50%;
  
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}


.main-timeline .timeline:before{    border-right: 2px solid #90d5ff;
}




.main-timeline .timeline:after {
    width: 10px;
    height: 10px;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -8px;
    background: #fff;
    border-radius: 50%;

}

.main-timeline .timeline-content {
    display: inline-block;
    width: 100%
}

.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.main-timeline .timeline-year {
     float: left;
    color: #fff;
    background: #92cde9;
    border-radius: 50%;
    display: inline-block;
    font-size: 12px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    flex-shrink: 0;
    position: absolute;
    margin-left: 10px;
        top: 50%;
  
    transform: translateY(-50%);
}

.main-timeline .timeline-icon {
    color: #65C7D0;
    font-size: 80px;
    display: inline-block;
    transform: translateY(-50%);
    position: absolute;
    left: 34%;
    top: 50%;
}

.main-timeline .content {
    position: relative;
    color: #909090;
    width: 50%;
    line-height: 35px;
    display: inline-block;
    float: right;
}

.main-timeline .title {
    color: #65C7D0;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

.main-timeline .description {
    color: #fbfdff;
    font-size: 12px;
    line-height: 22px;
        padding-left: 55px;
}
.section5 .row {margin: 0}


.main-timeline .timeline:nth-child(even): {

}
.main-timeline .timeline:nth-child(even) .description {
    padding-left: 0;
    padding-right: 55px;
}

.main-timeline .timeline:nth-child(odd) .description {
        padding-top: 14px;
}

.main-timeline .timeline:nth-child(even) .content {

    float: left;
}
.main-timeline .timeline:nth-child(even) .timeline-year {
    float: right
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
    left: auto;
    right: 32%;
}


.main-timeline .timeline:nth-child(2) .timeline-year {
    background: #6fa7d1
  
}

.main-timeline .timeline:nth-child(3) .timeline-year {
   background: #578cbf
 
}

.main-timeline .timeline:nth-child(4) .timeline-year {
    background: #3f72af
}

.main-timeline .timeline:nth-child(5) .timeline-year {
    background: #00458e
}
.main-timeline .timeline:nth-child(6) .timeline-year {
    background: #00458e
}
@media screen and (max-width:479px) {
    .main-timeline .timeline-icon {
        font-size: 50px;
        transform: translateY(0);
        top: 25%;
        left: 10%;
    }

 
    .main-timeline .content {
        width: 50%;
    }

    .main-timeline .title {
        font-size: 18px;
    }

    .main-timeline .timeline:nth-child(even) .timeline-icon {
        right: 10%;
    }

    .main-timeline .timeline:nth-child(even) .timeline-year {
        right: 0%;
            margin-right: 10px;
    }
}
.contactcontent{
    background: #133f88;
    border-radius: 15px;
    overflow: hidden;
    margin: 10px 0;
        padding: 5px;
    }
.contactcontent .left {
    float: left;
    text-align: center;
    padding-left: 15px;
    width: 80px;
}
  .contactcontent .left p{    font-size: 18px;}
 .contactcontent .right{float: right; width: 218px}