/*all*/
*,ul,p,dl,h1,h2,h3,h4,h5{
    text-decoration: none;
    padding: 0;
    margin: 0;
    list-style: none;
    outline: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    color: #000000;
}

input{
    border: 0;
    outline: none;
}
.container-fluid{
    position: relative;
    padding: 0;
}
.container{
    width: 1200px;
    padding: 0;
}
a{
    color: #333333;
}
a:hover{
    color: #02529f;
}
a:hover,a:active,a:link{
    text-decoration:none;
}
a{
    color: #000000;
}

/*PC*/
.pc .container{
    overflow: hidden;
    line-height: 100px;
}
.pc .logo{
    height: 80px;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}
.pc .navs{
    background-color: #02529f;
}
.pc .navs ul{
    overflow: hidden;
    width: 1200px;
    padding: 0;
    margin: 0 auto;
}
.pc .navs ul li{
    float: left;
    line-height: 40px;
}
.pc .navs ul li a{
    display: block;
    padding: 0 15px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    color: #ffffff;
}
.pc .navs ul li a:hover,.pc .navs ul li a.current{
    color: #ffffff;
    background-color: rgba(255,255,255,.2);
}



/*手机版*/
.phone{
    display: none;
    width: 100%;
}

/*logo*/
.phone .logo{
    float: left;
    margin: 5px 0 0 10px;
    height: 30px;
}

/*手机导航*/
.mobile-inner-header{
    width: 100%;
    overflow: hidden;
}
.mobile-inner-header-icon{
    color: #ffffff;
    height: 40px;
    font-size:20px;
    text-align: center;
    float:right;
    margin-right: 5px;
    width: 30px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}
.mobile-inner-header-icon:hover{
    /*background-color: rgba(255,255,255,0.2);*/
    cursor: pointer;
}
.mobile-inner-header-icon span{
    position: absolute;
    left: calc((100% - 20px) / 2);
    top: calc((100% - 1px) / 2);
    width: 20px;
    height: 1px;
    background-color: rgba(0,0,0,1);
}
.mobile-inner-header-icon span:nth-child(1){
    transform: translateY(4px) rotate(0deg);
}
.mobile-inner-header-icon span:nth-child(2){
    transform: translateY(-4px) rotate(0deg);
}





.mobile-inner-header-icon-click span:nth-child(1){
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}
.mobile-inner-header-icon-click span:nth-child(2){
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}



@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);

    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}



@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1){
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}
.mobile-inner-header-icon-out span:nth-child(2){
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}



@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav{
    background-color: rgba(2,82,159,0.9);
    width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    display: none;
    z-index: 999999;
}
.mobile-inner-nav a{
    display: block;
    font-size: 14px;
    line-height: 30px;
    text-decoration: none;
    text-align: center;
    color: #FFFFFF;
    /*border-bottom: solid 1px rgba(255,255,255,0.3);*/
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight:300;
}
.mobile-inner-nav a:hover{
    color: rgba(255,255,255,1);
    border-bottom: solid 1px rgba(255,255,255,0.9);
}

.mobile-inner-nav a{
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}


@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.phone .navs li:hover ul{
    display:inline;
    overflow: hidden;
}
.phone .navs ul{
    display: none;
}
.phone .navs ul li a{
    font-size: 12px;
    line-height: 26px;
    background-color: #02529f;
}




/*手机适配*/
@media (max-width:758px) {
    .container{
        width: auto;
        padding: 0 15px;
    }


    /*PC*/
    .pc{
        display: none;
    }
    /*PHONE*/
    .phone{
        display: inline;
    }


}





