/*flex布局*/
.m_flex_box{
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;
}
.m_flex{
    -webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;         /* OLD - Firefox 19- */
    -webkit-flex: 1;          /* Chrome */
    -ms-flex: 1;              /* IE 10 */
    flex: 1;
}

/* 父元素-水平居中（主轴是横向才生效） */
.flex_hc {
    /* 09版 */
    -webkit-box-pack: center;
    /* 12版 */
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    /* 其它取值如下：
        align-items     主轴原点方向对齐
        flex-end        主轴延伸方向对齐
        space-between   等间距排列，首尾不留白
        space-around    等间距排列，首尾留白
     */
}
.flex_he {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
}

.flex_jz{
    /*-webkit-box-pack: space-between;*/
    /* 12版 */
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}
.flex_ar{
    /*-webkit-box-pack: space-between;*/
    /* 12版 */
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}
/* 父元素-纵向排列（主轴） */
.flex_v {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */

    /* 09版 */
    -webkit-box-orient: vertical;
    /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
/* 父元素-纵向换行 */
.flex_vw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
/* 父元素-竖直居中（主轴是横向才生效） */
.flex_vc {
    /* 09版 */
    -webkit-box-align: center;
    /* 12版 */
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.flex_vb {
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
}
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex_1 {
    -webkit-box-ordinal-group: 1;   /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-ordinal-group: 1;      /* OLD - Firefox 19- */
    -ms-flex-order: 1;              /* TWEENER - IE 10 */
    -webkit-order: 1;               /* NEW - Chrome */
    order: 1;                       /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex_2 {
    -webkit-box-ordinal-group: 2;   /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-ordinal-group: 2;      /* OLD - Firefox 19- */
    -ms-flex-order: 2;              /* TWEENER - IE 10 */
    -webkit-order: 2;               /* NEW - Chrome */
    order: 2;                       /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 父元素-横向换行 */
.flex_hw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex_scale1{
    -webkit-flex-grow:1;
    flex-grow:1;
}
.flex_scale2{
    -webkit-flex-grow:2;
    flex-grow:2;
}
.flex-1{
    flex: 1;
    -moz-box-flex:1.0; /* Firefox */
    -webkit-box-flex:1.0; /* Safari 和 Chrome */
    box-flex:1.0;
}
.flex-2{
    flex: 2;
    -moz-box-flex:2.0; /* Firefox */
    -webkit-box-flex:2.0; /* Safari 和 Chrome */
    box-flex:2.0;
}
.flex-3 {
    flex: 3;
    -moz-box-flex: 3.0; /* Firefox */
    -webkit-box-flex: 3.0; /* Safari 和 Chrome */
    box-flex: 3.0;
}
.cover{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    display: none;
}
.cover-out{
    width: 100%;
    height: 100%;
}
.cover-box{
    background-color: #e0e0e0;
    position: relative;
    /* width: 400px; */
    width: 600px;
    min-height: 400px;
    text-align: center;
}
.cover-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #0ba1e4;
    cursor: pointer;
}
.cover-title{
    color: #0ba1e4;
    padding: 30px;
    font-size: 20px;
}
.cover-box-img{
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
}

.cover-img{
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
   
}
.cover-img1{
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
}

.version{
    margin-top: -15px;
    color: #000;
}

#header{
    padding-top: 80px;
}
#header .navbar-default {
    border: 0;
    margin-bottom: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
}

 .navbar-default .navbar-nav > .active > a, #header .navbar-default .navbar-nav > .active > a:hover, #header .navbar-default .navbar-nav > .active > a:focus {
    color: #0ba1e4;
    background-color: rgba(255, 255, 255, 0);
}

#header .navbar-default .navbar-nav > li > a {
    font-size: 16px;
    padding: 16px 25px 5px !important;
}

#header .navbar-default .navbar-nav > li .line-top {
    border-top: 1px solid #0ba1e4;
    width: 18px;
    margin: auto;
}
#header .project-name{
    color: #333;
    padding-left: 5px;
    font-weight: bold;
    font-size:25px;
}
#header  .logo{
    height: 58px;
}
.container_fix{
	margin-left: auto;
	margin-right: auto;
	padding-left: 5px;
	padding-right: 5px;
}
#rich{
    /* text-align: center; */
	padding: 0.1px 0.1px;
}
#rich img{
    max-width: 100%;
    height: auto;
}
.error{
    width: 100vw;
    height: 100vh;
    text-align: center;
}
.error-out{
    position: relative;
    width: 160px;
    height: 120px;
    margin-bottom: 30px;
}
.error-round{
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.error-round1{
    left: 0;
    top: 0;
    background-color: rgba(182, 206, 253, 0.5);
}
.error-round2{
    left: 10px;
    top: 0;
    background-color: rgb(182, 206, 253);
}
.error-round3{
    left: 20px;
    top: 0;
    font-weight: bold;
    font-size: 52px;
    color: #fff;
    background-image: linear-gradient(#e8eeff, #387bf5, #3583f0);
    line-height: 120px;
    text-align: center;
    letter-spacing: 3px;
    z-index: 99;
}
.error-round4{
    left: 30px;
    top: 0;
    background-color: rgb(182, 206, 253);
}
.error-round5{
    left: 40px;
    top: 0;
    background-color: rgba(182, 206, 253, 0.5);
}
.error-back{
    background-color: #3685f9;
    text-align: center;
    width: 160px;
    height: 44px;
    line-height: 44px;
    border-radius: 22px;
    color: #fff;
    margin-top: 80px;
}
.main-content{
    min-height: -webkit-calc(100vh - 330px);
    min-height: calc(100vh - 330px);
}
.main-content2{
    min-height: -webkit-calc(100vh - 675px);
    min-height: calc(100vh - 675px);
}
.index-row {
    padding: 40px 0;
}

.main-title {
    text-align: center;
    color: #777;
}
.introduce{
    overflow: hidden;
}
.introduce-title{
    color: #006cb9;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
}
.introduce-remark{
    color: #757575;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}
.introduce-img{
/*     width: 140%;
    max-width: 140%;
    margin: 10px 0 10px -20%; */
    width: 100%;
    max-width: 100%;
}
.case-title{
    color: #fff;
    background-color: #006cb9;
    padding: 15px;
    font-size: 24px;
}
.case-more{
    display: block;
    font-size: 16px;
    margin-right: 10px;
    cursor: pointer;
    color: #fff;

}
a:hover{
    color: #fff;
    text-decoration: none;
}
.case-item{
    padding:30px 20px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}
.case-pic{
    min-width: 200px;
    width: 200px;
    height: 120px;
    margin-right: 10px;
    object-fit: cover;
}
.case-name{
    font-size: 18px;
    margin-bottom: 8px;
}
.case-info{
    color: #757575;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.case-btn{
    color: #fff;
    background-color: #006cb9;
    height: 32px;
    line-height: 32px;
    width: 105px;
    min-width: 105px;
    margin-left: 10px;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 88px;
}
.product-item{
    padding: 15px 0;
    cursor: pointer;
    text-align: center;
}
.product-btn{
    color: #fff;
    background-color: #006cb9;
    height: 28px;
    line-height: 28px;
    width: 105px;
    min-width: 105px;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 8px;
    display: block;
}
.product-btn:hover{
    color: #fff;
    text-decoration: none;
}
.our-client-item{
    overflow:hidden !important;
}
.our-client-item .our-client-logo{
    text-align: center;
    margin: 20px auto;
    overflow: hidden;
    border:1px solid #fff;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.our-client-logo .img-responsive{
    height: 150px;
    object-fit: contain;
}
.our-client-item .our-client-logo:hover{
    background-color: #fafafa;
    border:1px solid #0ba1e4;
    box-shadow: 0 0 10px 0 rgba(45,183,245,.5);
    color: #0ba1e4;
}
.our-client-logo p{
    font-size: 18px;
}
.product-pic{
    height: 130px;
    object-fit: cover;
}
.product-name{
    color: #0ba1e4;
    margin: 6px 0;
    font-size: 18px;
}
.product-remark{
    color: #757575;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
}
#product{
    padding: 80px 0 30px;
}
.pointer{
    cursor: pointer;
}
.banner{
    width: 100%;
    height: 479px !important;
    object-fit: cover;
}
.login{
    display: block;
    color: #fff !important;
    background-color: #00649e;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    height: 34px;
    line-height: 34px;
    padding: 0 18px !important;
    border-radius: 17px;
}
#copyright {
    background-color: #5e6664;
    color: #cdcdcd;
    padding: 40px 0;
}
#copyright .code{
    width: 110px;
    height: 110px;
    min-width: 110px;
    min-height: 110px;
    margin-right: 10px;
    margin-top: 5px;
}
#copyright p a{
	color: #cdcdcd;
	margin-left: 5px;
}
#copyright .glyphicon{
	top: 8px;
	margin-top: 6px;
	display: block;
}

.top-nav{
    background-color: #006cb9;
    color: #fff;
    font-size:18px;
    padding: 15px 0;
}
.top-nav a{
    color: #fff;
}
@media (max-width: 768px) {
    .introduce-title {
        font-size: 18px;
        margin-top: 30px;
    }
    .index-row{
        padding: 20px 0;
    }

    .main-title h3{
        font-size: 18px;
    }
    .case-item{
        padding: 15px 10px;
    }
    .case-pic{
        min-width: 140px;
        width: 140px;
        height: 90px;
    }
    .case-name{
        margin-bottom: 3px;
    }
    .case-btn{
        margin-top: 5px;
        margin-left: 0;
        width: 80px;
        min-width: 80px;
        font-size: 12px;
    }
    .product-name{
        font-size: 14px;
    }
    .product-remark{
        font-size: 12px;
    }
    .product-btn{
        margin-top: 5px;
        margin-left: 0;
        width: 80px;
        min-width: 80px;
        font-size: 12px;
    }
    #product{
        padding: 30px 0;
    }
    .banner{
        height: 150px !important;
    }
    .main-content{
        min-height: -webkit-calc(100vh - 440px);
        min-height: calc(100vh - 440px);
    }
    #header  .logo{
    	height: 35px;
	}
}
@media (min-width: 768px) {
    #header .navbar {
        border-radius: 0;
        padding: 15px 0;
    }

    #header .navbar-nav > li > a {
        padding: 15px 0;
    }
}

/* @media (min-width: 992px) {
    .container {
        width: 970px;
    }
} */

@media (min-width:1080px) {
    .container {
        width: 1080px;
    }
}
