/* 互通的样式 */

/* 过长文字省略号 */

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 圆形头像 */

.portrait {
    border-radius: 50px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    background-color: #eee;
    margin: auto;
}

/* 导航触碰触发 */

.nav>li:hover .dropdown-menu {
    display: block;
}

/* 手机版导航按钮 */

.guide span:nth-child(1)::before {
    content: '';
}

.navbar-toggle {
    background-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggle .icon-bar {
    background-color: rgba(255, 255, 255, 0.5);
}

/* 下级横列 */

.row-flex {
    display: flex;
}

@media (max-width: 768px) {
    .row-flex {
        display: block;
    }
    .mobile-none {
        display: none;
    }
}

/* 列表加头 */

.list-style-type {}

/* ●◆■▲★ */

.list-style-type-circular::before {
    content: '●';
    margin-right: 5px;
}

.list-style-type-diamond::before {
    content: '◆';
    margin-right: 5px;
}

.list-style-type-square::before {
    content: '■';
    margin-right: 5px;
}

.list-style-type-triangle::before {
    content: '▲';
    margin-right: 5px;
}

.list-style-type-star::before {
    content: '★';
    margin-right: 5px;
}

/* 幻灯片 -------------------------------------------------------------------------------------------------------*/

.carousel-inner {
    height: 100%;
}

.carousel-inner .item {
    height: 100%;
}

.carousel-inner .item img {
    min-width: 100%;
    min-height: 100%;
}

/* 导航 */

.guide span::before {
    content: '>';
    margin-right: 5px;
    color: #e4e4e4;
}

.guide span:nth-child(1)::before {
    content: '';
}

/* 横竖tab -------------------------------------------------------------------------------------------------------*/

.tab .nav-tabs>li {}

.tab .nav-tabs>li>a {
    border-radius: unset;
}

.nav-tabs {}

.tab .nav-tabs>li.active>a, .tab .nav-tabs>li.active>a:hover, .tab .nav-tabs>li.active>a:focus {
    border-top: 4px solid #ff9900;
}

.tab .tab-content {}

.tab .tab-content>div {}

/* 板块 -------------------------------------------------------------------------------------------------------*/

.block {
    background-color: #fff;
    height: 100%;
}

.block>.tit {
    color: #333333;
    margin-bottom: 5px;
    padding: 5px 14px;
    font-size: 18px;
}

.block>.con {
    color: #6B6B6B;
    padding: 10px 20px;
    padding-top: 0;
}

.block>.con a {
    color: #6B6B6B;
}

.block>.con table tr td {
    border: 1px solid #d8d8d8;
    padding: 10px;
}

/* 板块阴影 */

.shadow {
    transition-duration: 0.5s;
}

.shadow:hover {
    box-shadow: 0px 0px 8px 4px #d0d0d0;
    /* transition-duration: 0.5s; */
}

/* 统一的 -------------------------------------------------------------------------------------------------------*/

body {
    line-height: 1.8;
}

input, select {
    outline: none;
}

a, a:hover {
    color: #333;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

ul, li, dl {
    margin: auto;
    list-style-type: none;
    padding: 0;
}

.page {
    text-align: center;
}

.page ul.pagination li.page-item * {
    padding: 6px 9px;
}

h1 {
    font-size: 20px;
    font-weight: bold;
}

article * {
    max-width: 100%;
}

img {
    max-width: 100%;
}

article {
    line-height: 2;
}

.mtop20 {
    margin-top: 20px;
}

.mbottom20 {
    margin-bottom: 20px;
}

.rowm {
    margin: 0;
}

/* input placeholder样式 */

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999;
    font-size: 12px;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
    font-size: 12px;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #999;
    font-size: 12px;
}

/* 滚动条凹槽的颜色，还可以设置边框属性 */

::-webkit-scrollbar-track-piece {
    background-color: #f8f8f8;
}

/* 滚动条的宽度 */

::-webkit-scrollbar {
    width: 8px;
    height: 9px;
}

/* 滚动条的设置 */

::-webkit-scrollbar-thumb {
    background-color: #dddddd;
    background-clip: padding-box;
    min-height: 28px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #bbb;
}

h6 {
    font-size: 16px;
    font-weight: bold;
}