@import url('./base.css');
@import url('./animate.min.css');
@import url('./slick.css');
@import url('./menu.css');

html,
body {
    margin: 0;
    padding: 0;
}

/* 公用 */
#superContainer {
    height: 100%;
    position: relative;
}

.section {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.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.table,
.slide.table {
    display: table;
    width: 100%;
}

.tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.slidesContainer {
    float: left;
    position: relative;
}

.controlArrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
}

.controlArrow.prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}

.controlArrow.next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}

.scrollable {
    overflow: scroll;
}

.easing {
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}

#fullPage-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
}

#fullPage-nav.right {
    right: 17px;
}

#fullPage-nav.left {
    left: 17px;
}

.fullPage-slidesNav {
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}

.fullPage-slidesNav.bottom {
    bottom: 17px;
}

.fullPage-slidesNav.top {
    top: 17px;
}

#fullPage-nav ul,
.fullPage-slidesNav ul {
    margin: 0;
    padding: 0;
}

#fullPage-nav li,
.fullPage-slidesNav li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position: relative;
}

.fullPage-slidesNav li {
    display: inline-block;
}

#fullPage-nav li a,
.fullPage-slidesNav li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#fullPage-nav li .active span,
.fullPage-slidesNav .active span {
    background: #333;
}

#fullPage-nav span,
.fullPage-slidesNav span {
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    border: 1px solid #000;
    background: rgba(0, 0, 0, 0);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.fullPage-tooltip {
    position: absolute;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    top: -2px;
}

.fullPage-tooltip.right {
    right: 20px;
}

.fullPage-tooltip.left {
    left: 20px;
}

#menu {
    position: fixed;
    right: 20px;
    top: 40%;
    z-index: 10;
    list-style-type: none;
}

#menu li {
    width: 90px;
    height: 27px;
    margin-top: 7px;
    overflow: hidden;
}

#menu a {
    display: block;
    height: 27px;
    padding-right: 30px;
    line-height: 27px;
    background: url(../../img/dot.png) right 0 no-repeat;
    color: #fff;
    text-align: right;
    text-shadow: 1px 1px 0px #333;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s ease-in 0s;
}
#menu a::after{
    position: absolute;
    right: 9px;
    margin-top: -17px;
    content: ".";
    color: #fff;
    font-size: 14px;
}
#menu li:last-child a::after{    
    content: "";
}
#menu span {
    display: block;
    width: 60px;
    height: 27px;
    font-size: 12px;
    text-indent: 200px;
    opacity: 0.6;
    filter: alpha(opacity=60);
    overflow: hidden;
}

#menu a:hover span {
    text-indent: 0;
}

#menu .active a {
    background-position: right 0;
    background: url(../../img/dot_hover.png) right 0 no-repeat;
    transition: all 0.5s ease-in 0s;
}

.section {
    position: relative;
    overflow: hidden;
}

.section .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.middle {
    position: relative;
    width: 1000px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.viewport-cont{
    position: absolute;
    width: 1200px;
    margin-left: -600px;
    top: 0;
    left: 50%;
    height: 100%;
 }
/* 动画 */
.p3_02 img,
.p4_02 img,
.p2_07 img,
.p1_04 img {
    animation: circle1 6s infinite linear;
    /*匀速 循环*/
}
@keyframes circle1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}
.p4_02 img,
.p4_03 img,
.p2_09 img,
.p1_05 img {
    animation: circle2 3s infinite linear;
    /*匀速 循环*/
}
@keyframes circle2 {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
.p2_04 img {
    animation: circle3 8s infinite linear;
    /*匀速 循环*/
}
@keyframes circle3 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.p2_08 img,
.p2_05 img {
    animation: circle4 5s infinite linear;
    /*匀速 循环*/
}
@keyframes circle4 {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* section1 */
.section1 {
    background:#011f39 url(../../img/bg1.jpg) 0 0 repeat-x !important;
}
.p1_01 {
    width: 610px;
    height: 230px;
    text-align: center;
    top: 40px;
    left: 40px;
    opacity: 0;
    position: absolute;
    transition: all 0.5s;
}
.p1_02 {
    width: 400px;
    height: 84px;
    top: 690px;
    left: 150px;
    opacity: 0;
    transition: all 0.5s;
    position: absolute;
}
.active .p1_01{
    top: 240px;
    opacity: 1;
    transition-duration: 1s;
    transition-delay: 1.5s;
}
.active .p1_02{
    top: 490px;
    opacity: 1;
    transition-duration: 1s;
    transition-delay: 1.5s;
}

.section2 {
    background:#061f3c url(../../img/bg2.jpg) 0 0 repeat-x !important;
}
.p2_01 {
    width: 500px;
    height: 70px;
    top: 60px;
    left: 0px;
    opacity: 0;
    position: absolute;
    transition: all 0.5s;
}
.p2_02 {
    width: 520px;
    font-size: 13px;
    line-height: 26px;
    color: #bbddfd;
    margin-left: 30px;
    text-align: left;
    top: 500px;
    left: 0px;
    opacity: 0;
    position: absolute;
    transition: all 0.5s;
}
.p2_03 {
    text-align: left;
    top: 600px;
    left: 0px;
    opacity: 0;
    position: absolute;
    transition: all 0.5s;
}
.p2_03 a.add {
    border: #ec6941 2px solid;
    background: #ec6941;
    text-align: center;
    margin-top: 30px;
    width: 158px;
    display: block;
    height: 40px;
    padding-top: 12px;
    color: #113358;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    height: 66px;
}
.p2_03 a.add:hover{
   border: #bbddfd 2px solid;
   background:none;
   color:#fff;
}
.p2_05 {width:490px; height:490px; top:240px; right:0px; opacity:0; position:absolute;}
.p2_06 {
    width: 490px;
    height: 570px;
    top: 200px;
    right: 0px;
    opacity: 0;
    position: absolute;
}
.p2_07 {width:36px; height:36px; top:650px; right:70px; opacity:0; position:absolute;}
.p2_09 {width:28px; height:28px; top:670px; right:45px; opacity:0; position:absolute;}

.p2_10 {width:124px; height:124px; top:388px; right:248px; opacity:0; position:absolute;}
.p2_11 {width:100px; height:100px; top:400px; right:260px; opacity:0; position:absolute;}
.p2_13 {width:90px; height:90px; top:405px; right:265px; opacity:0; position:absolute;}

.active .p2_01{
    top: 260px;
    opacity: 1;
    transition-duration: 1s;
    transition-delay: 1.5s;
}
.active .p2_02{
    top: 390px;
    opacity: 1;
    transition-duration: 1s;
    transition-delay: 1.5s;
}
.active .p2_03 {
    opacity: 1;
    transition-duration: 1s;
    transition-delay: 1.5s;
}
.active .p2_05{
    opacity: 1;
}
.active .p2_06{
    opacity: 1;
}
.active .p2_07{
    opacity: 1;
}
.active .p2_09 {
    opacity: 1;    
}
.active .p2_10 {
    top: 290px;
    right: 410px;
    opacity: 1;
    transition-duration: 1.5s;
    transition-delay: .5s;
    transition-timing-function: ease-out;
}
.active .p2_11 {
    top: 310px;
    right: -50px;
    opacity: 1;
    transition-duration: 1.5s;
    transition-delay: .5s;
    transition-timing-function: ease-out;
}
.active .p2_13 {
    top: 630px;
    right: 300px;
    opacity: 1;
    transition-duration: 1.5s;
    transition-delay: .5s;
    transition-timing-function: ease-out;
}
.p2_10 img,.p2_11 img,.p2_13 img{    
    transition: all 0.6s;
}
.p2_10 img:hover,.p2_11 img:hover,.p2_13 img:hover{
    transform: rotate(360deg);
    transition-duration: 0.6s; 
}
/* section3 */

.section3 {
    background:#0f3357 url(../../img/bg3.jpg) 0 0 repeat-x !important;
}
.p3 {
    width: 100%;
    height: 100%;
}
.p3_01 {
    width: 480px;
    height: 70px;
    top: 900px;
    right: 50px;
    opacity: 0;
    position: absolute;
    transition: all 0.5s;
}
.p3_03 {
    width: 100%;
    height: 280px;
    top: 0;
    left: 40px;
    opacity: 0;
    position: absolute;
    transition: all 0.5s;
}

.active .p3{
    position: relative;
    top: 0px;
}
.active .p3_01{
    top: 500px;
    opacity: 1;
    transition-duration: 1s;
    transition-delay: 1.2s; 
}
.active .p3_03{
    top: 160px;
    opacity: 1;
    transition-duration: 1s;
    transition-delay: .5s;
}

.proshow .card {
    border: none;
    background: rgba(47, 152, 231, 0);
}

.proshow .card .card-body {
    overflow: hidden;
    padding: 0;
}

.proshow .card-body ul {
    height: 288px;
    overflow: hidden;
    zoom: 1;
}

.proshow .card-body ul li {
    float: left;
    padding: 0 1em;
}

.proshow .card-body ul li a {
    display: block;
}

.proshow .card-body ul li a .img {
    width: 267px;
    height: 200px;
    padding: .2em;
    display: block;
    overflow: hidden;
    background-color: #fff;
    border: 2px solid #d8d8d8;
}

.proshow .card-body ul li a .img img {
    max-width: 100%;
    max-height: 100%;
}

.proshow .card-body ul li a .txt {
    position: relative;
    display: block;
    line-height: 40px;
    max-width: 267px;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #f1f0ee;
    border: 1px solid #cdcdcd;
    border-top: none;
}

.proshow .card-body ul li a:hover .txt {
    color: #e83e8c;
}
/* section4 */
.section4 {
    background:#05305b url(../../img/bg4.jpg) 0 0 repeat-x!important;
}
.p4 {
    width: 100%;
    height: 100%;
}
.p4_01 {
    width: 580px;
    height: 120px;
    top: -140px;
    left: 310px;
    opacity: 0;
    position: absolute;
    transition: all 0.5s;
}
.p4_02 {
    width: 50px;
    height: 50px;
    top: 380px;
    right: 70px;
    opacity: 0;
    position: absolute;
    transition: all 0.5s;
}
.p4_03 {
    width: 80px;
    top: 220px;
    right: 300px;
    opacity: 0;
    position: absolute;
    text-align: left;
    transition: all 0.5s;
}
.p4_04 {
    width: 500px;
    top: 960px;
    left: 100px;
    opacity: 0;
    position: absolute;
    text-align: left;
}
.p4_05 {
    width: 600px;
    top: 910px;
    right: 40px;
    opacity: 0;
    position: absolute;
    text-align: left;
    transition: all 0.5s;
}
.active .p4{
    position: relative;
    top: 0px;
}
.active .p4_01{
    top: 160px;
    opacity: 1;
    transition-duration: 1s;
    transition-delay: 1.2s; 
}
.active .p4_02{
    opacity: 1;
    top: 180px;
    transition-duration: 1s;
    transition-delay: 1.2s; 
}
.active .p4_03{
    right: 0px;
    opacity: 1;
    transition-duration: 1s;
    transition-delay: 1.2s; 
}
.active .p4_04{
    top: 560px;
    opacity: 1;
}
.active .p4_05{
    opacity: 1;
    top: 510px;
    transition-duration: 1s;
    transition-delay: 1.2s; 
}
.columnSpace {
    padding: 0px;
}
.FrontNews_list01-d1_c1_01 {
    width: 100%;
    margin: 0 auto;
    clear: both;
    text-align: left;
}
.FrontNews_list01-d1_c1_01 .comstyle {
    width: 100%;
    overflow: hidden;
}
.FrontNews_list01-d1_c1_01 .content {
    float: left;
    overflow: hidden;
    height: 24px;
    line-height: 24px;
    width: 100%;
    _height: 22px;
    _line-height: 22px;
    padding: 0px 0px;
    padding-top: 0px;
}
.FrontNews_list01-d1_c1_01 .newstitle {
    width: 100%;
    overflow: hidden;
}
.FrontNews_list01-d1_c1_01 .newstitle ul {
    width: 100%;
    clear: both;
    text-align: left;
    font-size: 13px;
    font-family: '微软雅黑', '黑体';
}
.FrontNews_list01-d1_c1_01 .newstitle li {
    float: left;
    padding-right: 0px;
    text-align: left;
    white-space: nowrap;
    height: 22px;
    line-height: 22px;
    _height: 20px;
    _line-height: 20px;
}
.FrontNews_list01-d1_c1_01 .newstitle .title {
    float: left;
}
.FrontNews_list01-d1_c1_01 .newstitle .date {
    float: right;
    font-weight: normal;
    color: #bbddfd;
}
.FrontNews_list01-d1_c1_01 .newstitle li h3 {
    display: inline;
    font-weight: normal;
    font-size: 14px;
}
.FrontNews_list01-d1_c1_01 .newstitle li span {
    color: #bbddfd;
}
.FrontNews_list01-d1_c1_01 a:link {
    color: #bbddfd;
    text-decoration: none;
}

/* section5 */
.section5 {
    background: #042642 url(../../img/bg5.jpg) 0 0 repeat-x!important;
}
.p5_01 {
    width: 580px;
    height: 120px;
    top: 0px;
    left: 610px;
    opacity: 0;
    position: absolute;
    text-align: center;
    line-height: 60px;
    font-size: 13px;
    color: #bbddfd;
    transition: all 0.5s;
}
.active .p5_01{
    left: 310px;
    opacity: 1;
    transition-duration: 1s;
    transition-delay: 1.2s; 
}
.p5_03 {
    width: 600px;
    top: 180px;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: left;
    transition: all 0.5s;
}
.active .p5_03{
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    opacity: 1;
    transition-duration: 1s;
    transition-delay: 1.2s; 
}
.p5_04 {
    width: 600px;
    top: 520px;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: left;
    transition: all 0.5s;
}
.active .p5_04{
    top: 220px;
    opacity: 1;
    transition-duration: 1s;
    transition-delay: .5s; 
}
.right5 {
    width: 600px;
    top: 180px;
    left: 900px;
    position: absolute;
    transition: all 0.5s;
}
.active .right5{
    opacity: 1;
    left: 600px;
    transition-duration: 1s;
    transition-delay: .5s;
}
.zhong5 {
    z-index: 100;
    position: absolute;
    width: 1140px;
    margin-left: 50%;
    top: 140px !important;
    left: -520px;
}
.active .zhong5{
    position: relative;
    top: 0px;
}
.submitForm .m-form .m-form__group .col-form-label{
    color: #ccc;
}
.submitForm .m-form .m-form__group {
    padding-top: 5px;
    padding-bottom: 5px;
}
.submitForm .m-form .m-form__group .form-control {
    padding: .5em 1em;
}