.flex {
    display: flex;
    flex-wrap: wrap;
}

.effect {
    background-color: #fff !important;
    color: blue;
}

.show {
    display: block !important;
}

.nav > li {
    cursor: pointer;
}

.ellipsis {
    white-space: pre-wrap;
    overflow: hidden; /* 超过部分隐藏 */
    text-overflow: ellipsis; /* 超过部分隐藏 */
    display: -webkit-box;
    -webkit-line-clamp: 2; /*这就是几行的意思  可以自己设定自己要几行展示*/
    -webkit-box-orient: vertical;
    min-height: 33px; /*   设置最小高度      */
    /*max-width: 400px;*/
}

/*设置透明度*/
.opacity {
    opacity: 75%;
}

.no-opacity {
    opacity: 100%;
}


/* 鼠标滑过会悬浮 */
.box2 {
    /*height: 86px;*/
    cursor: pointer;
    border-radius: 4px;
    padding: 0px 30px 0px 30px;
    /*background-color: #fff;*/
    /*border-radius: 4px;*/
    border: 1px solid #e4ecf3;
    margin: 20px 0 0 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box2:hover {
    transform: translateY(-6px);
    /*-webkit-transform: translateY(-6px);*/
    /*-moz-transform: translateY(-6px);*/
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box2-style {
    width: 21%;
    border: 20px;
    min-height: 220px;
    margin: 0 2% 4%;
"
}

.vertical {
    display: table-cell;
    vertical-align: middle;
    width: 100%
}

.outer {
    height: 100%;
    padding: 100px 0 0;
    box-sizing: border-box;
}

.head1 {
    height: 100px;
    margin: -100px 0 0;
}

.head2 {
    height: 100%;
}

.page-description {
    margin: 0;
    font-size: 2rem;
    line-height: 1.5em;
    font-weight: 400;
    letter-spacing: .01rem;
    font-family: "Merriweather", "Open Sans", "Microsoft Jhenghei", "Microsoft Yahei", sans-seri;
    color: rgba(255, 255, 255, 0.8);
    -webkit-animation: fade-in-down .9s;
    animation: fade-in-down .9s both;
    -webkit-animation-delay: .1s;
    animation-delay: .3s;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    display: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden
}

.page-author {
    margin: 0;
    font-size: 1.4rem !important;
    line-height: 1.3em;
    font-weight: 400;
    letter-spacing: .01rem;
    font-family: "Merriweather", "Open Sans", "Microsoft Jhenghei", "Microsoft Yahei", sans-seri;
    color: rgba(255, 255, 255, 0.8);
    -webkit-animation: fade-in-down .9s;
    animation: fade-in-down .9s both;
    -webkit-animation-delay: .1s;
    animation-delay: .3s;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    display: none
}

.page-title-index, .sb-title {
    margin: 10px 0 10px 0;
    letter-spacing: -1px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    -webkit-animation: fade-in-down 1s;
    animation: fade-in-down 1s both;
    -webkit-animation-delay: .6s;
    animation-delay: .5s;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3)
}

.page-title-index {
    font-size: 5rem
}

.center-title {
    margin-bottom: 5%;
    text-align: center;
}

/*!* 遮罩 *!*/
/*.mask {*/
/*    display: none;*/
/*    background-color: rgba(0, 0, 0, 0.8);*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*!* 搜索框 *!*/
/*.search-box {*/
/*    display: none;*/
/*    position: fixed;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    z-index: 9999;*/
/*    color: #fff;*/
/*    text-align: center;*/
/*}*/

/*.search-box input {*/
/*    padding: 10px;*/
/*    font-size: 18px;*/
/*    border-radius: 4px;*/
/*    border: none;*/
/*    margin-right: 10px;*/
/*    width: 60%;*/
/*    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);*/
/*}*/

/*.search-box button {*/
/*    background-color: #fff;*/
/*    color: #111;*/
/*    padding: 10px 20px;*/
/*    font-size: 18px;*/
/*    border-radius: 4px;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);*/
/*}*/

.index_highlight{
    font-family: Arial, sans-serif;
    font-weight: bold;
    color:  #00AEEC !important;
}

