 *{
     -moz-user-select:none; /* Firefox */
     -webkit-user-select:none; /* WebKit内核 */
     -ms-user-select:none; /* IE10及以后 */
     -khtml-user-select:none; /* 早期浏览器 */
     -o-user-select:none; /* Opera */
     user-select:none; /* CSS3属性 */
  } 
body {
    height: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: FZXiaoBiaoSong-B05S,Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}

label {
    font-weight: 700;
}

html {
    height: 100%;
    box-sizing: border-box;
}

#app {
    height: 100%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
   vertical-align: middle;
}

a:focus,
a:active {
    outline: none;
}

a,
a:focus,
a:hover {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

div:focus {
    outline: none;
}

.clearfix :after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.app-container {
    padding: 20px;
}

.container {
    width: 1200px;
    margin: auto;
}

.container {
    width: 100%;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}


.bounce-enter-active {
    animation: bounce-in .5s;
}

.bounce-leave-active {
    animation: bounce-in .5s reverse;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }

    10% {
        transform: scale(0.1);
    }

    20% {
        transform: scale(0.2);
    }

    30% {
        transform: scale(0.3);
    }

    40% {
        transform: scale(0.4);
    }

    50% {
        transform: scale(0.5);
    }

    60% {
        transform: scale(0.6);
    }

    70% {
        transform: scale(0.7);
    }

    80% {
        transform: scale(0.8);
    }

    90% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

/* <!--------------------------------------------------------------------------------------------------> */
/* 页头 */

.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    height: 60px;
    /*background-color: rgb(30, 30, 31);*/
    background-color:#485178;
    color: rgb(255, 255, 255);
	opacity:0.95;
}
.header .header-center {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    height: 40px;
    background-color: #232323;
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
     font-size:12px;
   font-weight:bold;
}

.header .header-center  .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .header-center .left{
    width:280px;
    text-align: center;
    align-items: center;
}
.header .header-center .right{
    display: flex;
    align-items: center;
}

.header .header-center .right .header-search{
    display: flex;
    align-items: center;
}

.header .header-center .right .header-search input{
    background: #2e2e2e;
    height: 25px;
    color: #fff;
    border: none;
    padding: 0 20px 0 12px;
    font-size: 12px;
    outline: none;
}
.header .header-center .right .header-search form {
    height: 40px;
    display: flex;
    align-items: center;
}

.header .header-center .right .header-search span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #909399;
    color: #ccc;
    background: #2e2e2e;
    cursor:Pointer;
}

.header>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.header .container .left-header {
    font-size: 18px;
    padding-left: 1px;
}
.header .container .left-header img {
   width:280px;
   padding:5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.header .container .center-header {
    display: flex;
    align-items: center;
    justify-content:center;
    text-align:center;
    flex: 1;
}

.header .container .center-header a {
    display: block;
    width: 105px;
    font-size: 16px;
    font-weight:bold;
}

.header .container .center-header a.active {
    color: #1B83D4;
}

.header .container .center-header a:hover {
    color: #2f54eb;
}

.header .container .center-header-model {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .container .center-header-model .showIcon {
    font-size: 30px;
}

.header .container .center-header-model .noneList-model {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.header .container .center-header-model .noneList {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.header .container .center-header-model .noneList a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background: #fff;
    color: #000;

}

.header .container .right-header {
    font-size: 14px;
    color: #fff;
}

/* <!--------------------------------------------------------------------------------------------------> */
/* 页脚 */
.footer {
 /*background-color: rgb(30, 30, 31);*/
    background-color:#43484C;
}

.footer .content {
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .footer-header {
    flex: 1;
    padding-top: 50px;
    padding-left:20px;
    padding-right:20px;
    display: flex;
    justify-content: space-between;

}

.footer .footer-header .footer-header-left {
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.footer .footer-header .footer-header-left .box {
    display: flex;
    flex-direction: column; 
    font-size: 16px;
     color: #f5f7fa;
    line-height: 3;
}

.footer .footer-header .footer-header-left .box span:nth-child(1) {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: bold;
}

.footer .footer-header .footer-header-left .box i {
    color: #fff;
    margin-right: 4px;
    font-size: 18px;
}

.footer .footer-header .footer-header-right {
    width: 15%;
    display: flex;
 
    justify-content: space-around;
    color: rgb(136, 136, 136);
}

.footer .footer-header .footer-header-right p {
    font-size: 14px;
    padding:5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 2;
}
.footer .footer-bottom .footer-bottom-text-one{
    display: flex;
    align-items: center;
}

.footer .footer-bottom {
    border-top: 1px solid #34373a;
    color: rgb(61, 65, 68);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
}

.footer .footer-bottom>p{
    font-size: 14px; 
    color: rgb(204, 204, 204)
}

.footer .footer-bottom>p>span{ 
   text-transform: uppercase;
   padding:5px;
}

.footer .footer-bottom a:last-child  img{
    height: 18px;
}

.footer .footer-bottom  a{
    /*color: rgb(147, 147, 147);*/
    display: flex;
    align-items: center;
}

.swiper-slide>div {
    margin: 0 10px !important;
    padding: 10px !important;
    border: 1px dotted #bad9ff !important;
    box-shadow: rgb(233 233 233) 0px 0px 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-slide>img{
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center top;
}
.pc-swiper-slide {
    width: 357px !important;
    height: 340px !important;
}

.modelH5-swiper-slide {
    width: 100px !important;
    height: 60px !important;
}
/*联系我们*/
.text-improtant{
 color:red;
}

.msgbox >div{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.info-name{
    text-align: right;
     width: 80px;
    max-width: 100px;
}

.info-input input{
 height: 30px;
  width: 90%;
  outline: none;
  border: 1px solid  #d7e1f6;
}

.info-lo-input input{
  height: 30px;
  width: 90%;
  outline: none;
  border: 1px solid  #d7e1f6;
}

.info-text textarea{
  border: 1px solid  #d7e1f6;
  outline: none;
  height:130px; 
}

.td-padding{
    padding: 5px;
    margin-right: 25px;
    width: 180px;

}

.info-yanz input{
  height: 30px;
  width: 60px;
  outline: none;
  border: 1px solid #d7e1f6;
}

.info-yanz img{
  height: 30px;
}
.abtn-box{
   margin: 20px;
    padding-left: 40px;
}

.sub [type="button"], [type="reset"], [type="submit"]{
   height: 30px;
   outline: none;
   background: #d3daea;
   color: #fff;
   border: 1px solid #b1acac;
   border-radius: 4px;padding: 0 20px;
} 
 
.message_btn {
  border: 1px solid #fff1f1;
}

.main-right{
   margin-top:100px;
   margin-left:10px;
   margin-right:10px;
}

.message_txt{
 
}

.fl{
float:left;
}

.fr{
float:right;
}

.overflow{
  overflow:hidden;
   display: flex;
  align-items:center;
}
.overflow >a{
  width:75%;
  line-height: 25px;
 }

.time  { 
right:5px;
top:0;
}

.wzzcipv6  {
    width: 100px;
    height: 24px;
    border-radius: 15px;
    background: rgb(58 142 230);
    color: #f5f7fa;
    align-items: center;
    text-align: center;
    line-height: 26px;
    margin-left: 30px;
}
.topdate{
     width:200px; 
    align-items: center;
    text-align: center;
}