.carousel-absolute {
    position: absolute;
    display: none;
}

.active .carousel-absolute {
    color: white;
    display: block;
}

.carousel-warpper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-image: url(/Image/Home/dotbg.png);
}

.carousel-title {
    font-size: 50px;
    font-weight: 700;
}

.carousel-subtitle {
    padding-top: 40px;
    font-size: 24px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .carousel-title {
        font-size: 25px;
    }

    .carousel-subtitle {
        padding-top: 10px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .carousel-title {
        font-size: 30px;
    }

    .carousel-subtitle {
        padding-top: 20px;
        font-size: 20px;
    }

}

@media (min-width: 992px) {
    .carousel-title {
        font-size: 40px;
    }

    .carousel-subtitle {
        padding-top: 25px;
        font-size: 25px;
    }

    .shortTextClass_0,.shortTextClass_1,.shortTextClass_2{
        top:25% !important;
    }

    .shortTextClass_1,.shortTextClass_2{
        left:31% !important;
    }

}

@media (min-width: 1367px) {
    .carousel-title {
        font-size: 50px;
    }

    .carousel-subtitle {
        font-size: 35px;
        padding-top: 35px;
    }

    .carousel-subtitle {
        padding-top: 25px;
        font-size: 25px;
    }
}

.light {
    animation: darktolight linear 2s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards; /*when the spec is finished*/
    -webkit-animation: darktolight linear 2s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-fill-mode: forwards; /*Chrome 16+, Safari 4+*/
    -moz-animation: darktolight linear 2s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -moz-animation-fill-mode: forwards; /*FF 5+*/
    -o-animation: darktolight linear 2s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -o-animation-fill-mode: forwards; /*Not implemented yet*/
    -ms-animation: darktolight linear 2s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
    -ms-animation-fill-mode: forwards; /*IE 10+*/
}




@-moz-keyframes darktolight {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 90;
    }
}

@-webkit-keyframes darktolight {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 90;
    }
}

@keyframes darktolight {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 90;
    }
}

.toptobottom {
    animation: top-bottom ease 1s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards; /*when the spec is finished*/
    -webkit-animation: top-bottom ease 1s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-fill-mode: forwards; /*Chrome 16+, Safari 4+*/
    -moz-animation: top-bottom ease 1s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -moz-animation-fill-mode: forwards; /*FF 5+*/
    -o-animation: top-bottom ease 1s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -o-animation-fill-mode: forwards; /*Not implemented yet*/
    -ms-animation: top-bottom ease 1s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
    -ms-animation-fill-mode: forwards; /*IE 10+*/
}




@keyframes top-bottom {
    0% {
        transform: translate(0px,-30px);
        opacity: 0;
    }

    100% {
        transform: translate(0px,0px);
        opacity: 100;
    }
}

@-moz-keyframes top-bottom {
    0% {
        -moz-transform: translate(0px,-30px);
        opacity: 0;
    }

    100% {
        -moz-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-webkit-keyframes top-bottom {
    0% {
        -webkit-transform: translate(0px,-30px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-o-keyframes top-bottom {
    0% {
        -o-transform: translate(0px,-30px);
        opacity: 0;
    }

    100% {
        -o-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-ms-keyframes top-bottom {
    0% {
        -ms-transform: translate(0px,-30px);
        opacity: 0;
    }

    100% {
        -ms-transform: translate(0px,0px);
        opacity: 100;
    }
}




.lefttoright {
    animation: left-right ease 1s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    -webkit-animation: left-right ease 1s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: left-right ease 1s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -o-animation: left-right ease 1s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -ms-animation: left-right ease 1s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
}

@keyframes left-right {
    0% {
        transform: translate(-63px,0px);
        opacity: 0;
    }

    100% {
        transform: translate(0px,0px);
        opacity: 100;
    }
}

@-moz-keyframes left-right {
    0% {
        -moz-transform: translate(-63px,0px);
        opacity: 0;
    }

    100% {
        -moz-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-webkit-keyframes left-right {
    0% {
        -webkit-transform: translate(-63px,0px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-o-keyframes left-right {
    0% {
        -o-transform: translate(-63px,0px);
        opacity: 0;
    }

    100% {
        -o-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-ms-keyframes left-right {
    0% {
        -ms-transform: translate(-63px,0px);
        opacity: 0;
    }

    100% {
        -ms-transform: translate(0px,0px);
        opacity: 100;
    }
}


/*right-left*/

.righttoleft {
    animation: right-left ease 1s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    -webkit-animation: right-left ease 1s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: right-left ease 1s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -o-animation: right-left ease 1s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -ms-animation: right-left ease 1s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
}

@keyframes right-left {
    0% {
        transform: translate(63px,0px);
        opacity: 0;
    }

    100% {
        transform: translate(0px,0px);
        opacity: 100;
    }
}

@-moz-keyframes right-left {
    0% {
        -moz-transform: translate(63px,0px);
        opacity: 0;
    }

    100% {
        -moz-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-webkit-keyframes right-left {
    0% {
        -webkit-transform: translate(63px,0px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-o-keyframes right-left {
    0% {
        -o-transform: translate(63px,0px);
        opacity: 0;
    }

    100% {
        -o-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-ms-keyframes right-left {
    0% {
        -ms-transform: translate(63px,0px);
        opacity: 0;
    }

    100% {
        -ms-transform: translate(0px,0px);
        opacity: 100;
    }
}

/*bottomtotop*/

.bottomtotop {
    animation: bottom-top ease 1s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    -webkit-animation: bottom-top ease 1s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: bottom-top ease 1s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -o-animation: bottom-top ease 1s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -ms-animation: bottom-top ease 1s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
}

@keyframes bottom-top {
    0% {
        transform: translate(-64px,0px);
        opacity: 0;
    }

    100% {
        transform: translate(0px,0px);
        opacity: 100;
    }
}

@-moz-keyframes bottom-top {
    0% {
        -moz-transform: translate(-64px,0px);
        opacity: 0;
    }

    100% {
        -moz-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-webkit-keyframes bottom-top {
    0% {
        -webkit-transform: translate(-64px,0px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-o-keyframes bottom-top {
    0% {
        -o-transform: translate(-64px,0px);
        opacity: 0;
    }

    100% {
        -o-transform: translate(0px,0px);
        opacity: 100;
    }
}

@-ms-keyframes bottom-top {
    0% {
        -ms-transform: translate(-64px,0px);
        opacity: 0;
    }

    100% {
        -ms-transform: translate(0px,0px);
        opacity: 100;
    }
}


.carousel-absolute {
    font-family: 'Open Sans', Arial, 'Hiragino Sans GB', 'Microsoft YaHei', 微软雅黑, STHeiti, 'WenQuanYi Micro Hei', SimSun, sans-serif;
    width:100%;text-align:center;
     top: 30%;
}

.shortTextClass_0{
   /** left: 28%;**/
    top: 35%;
}

.shortTextClass_1,.shortTextClass_2{
   /** left: 33%;**/
    top: 35%;
}


/*.navbar-inverse:hover {
    background-color: #00D5D5;/*鼠标移移动出现色板*/ 
}*/

.navbar-inverse .navbar-nav > .active > a {
    color: white;
}

.navbar-inverse .navbar-nav > .open > a {
    color: white;
}

 .navbar-inverse .navbar-nav > .open > a:hover {
        color: #FFFFFF;
 }

.white-navbar .navbar-inverse .navbar-nav > .open > a:focus {
    color: white;
}



.navbar-inverse:hover .navbar-nav > .active > a {
    color: #021b52;
}

.navbar-inverse:hover .navbar-nav > li > a {
    color: #white;
}

.navbar-inverse {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

body {
    font-family: 微软雅黑, Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, sans-serif,'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif,"DIN Condensed Bold",'Times New Roman','MS Gothic','Franklin Gothic Book';
}

.module {
    width: 100%; 
    font-weight: 600;
    color: #424242;
}

    .module h4 {
        font-size: 36px;
        color: #333;
        font-weight: 600;
    }

.bottom-nav {
    /*padding-top: 50px;
    /*background-image: -ms-linear-gradient(top, #222, #000);
    background-image: -moz-linear-gradient(top, #222, #000);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#000));
    background-image: -webkit-linear-gradient(top, #222, #000);
    background-image: -o-linear-gradient(top, #222, #000);
    background-image: linear-gradient(top, #222, #000);*/
}

    .bottom-nav a {
        color: #333333;
        text-decoration: none;
        font-size: 16px;
    }

        .bottom-nav a:hover, .bottom-nav a:focus {
            color: #FFF;
        }

    .bottom-nav .nav-head {
        font-size: 25px;
        color: white;
        padding-bottom: 10px;
    }

    .bottom-nav ul {
        padding-top: 10px;
        padding-left: 0px;
    }

    .bottom-nav li {
        list-style-type: none;
    }

.info {
    font-size: 12px;
    padding-bottom: 10px;
}

.white-navbar {
    background-color: #021b52; /*头部色板下拉换色*/
    box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    color: #FFFFFF !important;
}
/*.white-navbar .active a {
    color: black;
}*/
.white-navbar .line-wrapper .line{
       display: inline-block;
    width: 16px;
    border-top: 1.5px solid #000!important;
    padding-top: 23px;
}


.jh-dropdown-menu {
    display: none;
    width: 100%;
    background-color: #EEE;
    padding: 40px 0px;
}

    .jh-dropdown-menu ul {
        padding-left: 0px;
    }

    .jh-dropdown-menu li {
        text-decoration: none;
        list-style-type: none;
    }

    .jh-dropdown-menu.active {
        position: fixed;
        display: block;
        top: 50px;
        z-index: 10;
    }




.title-info {
    padding: 20px 20px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    font-family: 'Arial Negreta', 'Arial';
    font-style: normal;
}
.title_img {
    width: 100px;
    height: 100px;
}
.title-content {
    text-align: left;
    padding-top: 30px;
}
.thumbnail {
    text-align: center;
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.428571429;
    background-color: white;
    border-radius: 4px;
    border: none;
    -webkit-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
    margin-top: 43px;
}
p {
    margin: 0 0 10px;
    font-size: 13px;
}


.navbar-inverse .navbar-nav > li > a {
    color: #FFF;
}

.white-navbar.navbar-inverse .navbar-nav > li > a {
    color: #fff !important;
}
.white-navbar #blue-img {
    display:block !important;
}
.white-navbar #white-img {
    display: none !important;
}
.caption h3 {
    font-size: 29px;
}

.caption p {
    font-size: 18px;
}

.dropdown-menu a {
    font-size: 16px;
}
.ai-info {  
    text-align: left;
    padding-left: 60px;
}

.ai-info .ai-info-title{
    margin: 20px auto 20px;
}
.ai-info .ai-info-content{
    line-height: 20px;
    margin-bottom: 30px;

}
.ai-info .ai-info-title span{
    font-size: 16px;
    color: #000000;
    font-style: normal;
    font-weight: 700;
    font-family: '微软雅黑 Bold', '微软雅黑';
}