* {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-family: "Microsoft YaHei","Hiragino Sans GB","Hiragino Sans GB W3","WenQuanYi Micro Hei",sans-serif;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
#floating-button {
    position: fixed;
    top: 50%;
    right: 30px;
    height: 130px;
    width: 50px;
    font-size: 20px;
    background-color: #af261a;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    writing-mode: vertical-rl; /* 设置竖排，从右向左排列 */
    text-align: center;
}

.button-text {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

#side-nav {
    position: fixed;
    top: 40%;
    right: -50px;
    width: 100px;
    height: auto;
    border: 1px solid #af261a;
    background-color: white;
    transition: all 0.3s;
    z-index: 1000;
    border-radius: 5px;
}

#side-nav.hidden {
    right: -100px;
}

#side-nav.visible {
    right: 30px;
}

.side-nav-item {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #af261a;
    position: relative;
    cursor: pointer;
}

.side-nav-item:last-child {
    border-bottom: none;
}

.side-nav-item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.side-nav-item-icon img {
    width: 40px;
    height: auto;
}

.side-nav-item-text {
    color: #af261a;
}

.side-nav-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.side-nav-item:hover {
    background-color: #af261a;
}

.side-nav-item:hover .side-nav-item-text {
    color: white;
}

.hover-icon {display: none;
}

.side-nav-item:hover .hover-icon {
display: block;
}

.side-nav-item:hover .default-icon {
display: none;
}

.close-btn {
    background-color: #af261a;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.close-btn .side-nav-item-text {
color: white;
}

.image-popup {
    display: none;
    position: absolute;
    right: 100px;
    top: -50px;
    padding: 10px;
    background: white;
    border: 1px solid #af261a;
}

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

a:hover {
   color: #af261a;
}

li {
    list-style: none;
}

.main {
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 1400px;
    min-width: 980px;
    padding: 0 50px;
}

.hidden {
    display: none;
}

.header {
    width: 100%;
    height: 110px;
    background: #fff;
    min-width: 980px;
}

.header-top {
    width: 100%;
    height: 40px;
    background: #f5f5f5;
    line-height: 40px;
    font-size: 12px;
    color: #666;
}

.header-top a {
    color: #666;
    margin-right: 20px;
    transition: all 0.3s;
}

.header-top a:hover {
    color: #af261a;
}

.logo {
    width: 324px;
    height: 65px;
    float: left;
    padding-top: 22px;
}

.logo img {
    width: 324px;
    height: 65px;
}

.search {
    width: 405px;
    height: 50px;
    float: right;
    padding-top: 30px;
}

.search input {
    width: 300px;
    height: 50px;
    border: 1px solid #81291f;
    padding: 0 10px;
    float: left;
}

.search button {
    width: 100px;
    height: 50px;
    border: 1px solid #81291f;
    background: #81291f;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    float: left;
     transition: all 0.3s;
}

.search button:hover {
    background: #af261a;
    color: #fff;
}

.nav {
    width: 100%;
    height: 80px;
    min-width: 980px;
    background: url("/static/image/web/nav_bg.png") repeat-x;

}

.nav-item-warp {
    position: relative;
}

.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.banner-fixed {
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 999;
}

.nav .nav-item {
    height: 80px;
    line-height: 80px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    padding: 0 30px;
    float: left;
    transition: background 0.3s;
}

.nav .nav-item:hover {
    background: #af261a;
    color: #fff;
}
.nav .active {
    background: #af261a;
    color: #fff;
}

.nav-item-list {
    width: 900px;
    height: 160px;
    display: none;
    overflow: hidden;
    padding: 20px;
    position: absolute;
    z-index: 1000;
    top: 80px;
    background: #fff;
    background-size: contain;
    -webkit-box-shadow: 0 0 10px #ccc;
    -moz-box-shadow: 0 0 10px #ccc;
    box-shadow: 0 0 10px #ccc;
}

.nav-item-list .nav-item-list-items {
    width: 600px;
    height: auto;
    overflow: hidden;
    padding-left: 20px;
    padding-top: 20px;
    float: left;

}

.nav-item-list .nav-item-list-items div{
    width: 33.33%;
    height: 20px;
    margin-bottom: 20px;
    float: left;
}

.nav-item-list .nav-item-list-items div a {
    position: relative;
}

.nav-item-list .nav-item-list-items div>a:before {
    content: " ";
    width: 4px;
    height: 4px;
    background: #ccc;
    position: absolute;
    left: -11px;
    top: 9px;
    border-radius: 50%;
}

.nav-item-list .nav-item-list-cover {
    width: 250px;
    float: right;
}

.nav-item-list .nav-item-list-cover img {
    width: 100%;
    height: auto;
}

.banner {
    width: 100%;
    min-width: 980px;
}

.banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 1;
    border-radius: 50%;
}

.banner .swiper-pagination-bullet-active {
    background: #af261a;
}


.content {
    width: 100%;
    background: #fff;
    min-width: 980px;
    /*margin-top: 500px;*/
    overflow: hidden;
    position: relative;
    z-index: 999;
}

.news {
    width: 100%;
    height: 560px;
    overflow: hidden;
    padding-top: 50px;
    margin-top: 50px;
}

.news-col {
    width:50%;
    height: auto;
    overflow: hidden;
    float: left;
}

.last-new {
    height: auto;
    overflow: hidden;
    padding-left: 40px;
}

.news-title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #af261a;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.news-title span {
    font-size: 14px;
    font-weight: normal;
    color: #333;
    float: right;
}

.news-title span:hover {
    color: #af261a;
    transition: color 0.3s;
}

.news-list {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.news-list .news-item {
    width: 100%;
    height: 60px;
    overflow: hidden;
    border-bottom: 1px dotted #ccc;
    position: relative;
    cursor: pointer;
}

.news-list .news-item:hover {
    height: 80px;
    border-bottom: 1px solid #af261a;
    font-weight: bold;
}

.news-list .news-item:hover   .news-item-time {
    height: 80px;
    line-height: 80px;
    transition: all 0.3s;
}

.news-list .news-item:hover  .news-item-title {
    height: 80px;
    line-height: 80px;
    transition: all 0.3s;
    color: #af261a;
}

.news-list .news-item .news-item-time {
    width: 100px;
    height: 60px;
    line-height: 60px;
    position: absolute;
    overflow: hidden;
    left: 0;
    color: #af261a;
    font-size: 14px;
    transition: all 0.3s;
}

.news-list .news-item .news-item-title {
    width: 100%;
    padding-left: 100px;
    height: 60px;
    line-height: 60px;
    float: left;
    color: #333;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s;
}

.footer-top {
    width: 100%;
    min-width: 980px;
    background: #f1f1f1;
    position: relative;
    z-index: 999;
    height: 230px;
    padding-top: 20px;
}

.footer {
    width: 100%;
    min-width: 980px;
    height: 80px;
    background: url("/static/image/web/nav_bg.png") repeat-x;
    z-index: 999;
    position: relative;
}


.footer .main {
    padding-top: 15px;
}

.footer .main div {
    width: 100%;
    line-height: 25px;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

.news-list-mix {
    width: 100%;
    height: auto;
    min-height: 200px;
    overflow: hidden;
}

.news-list-mix-item {
    width: 50%;
    padding-right: 20px;
    height: auto;
    min-height: 200px;
    overflow: hidden;
    float: left;
    cursor: pointer;
}

.news-list-mix-item:nth-child(2n) {
    padding-right: 0;
    padding-left: 20px;
}

.news-list-mix-cover{
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;

}

.news-list-mix-cover .news-list-mix-title {
    width: 100%;
    height: 60px;
    line-height: 25px;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-list-mix-cover:hover .news-list-mix-title {
    background: rgba(178,38,25,0.5);
    transition: background-color 0.3s;
}

.news-list-mix-title span {
    font-size: 12px;
    margin-right: 5px;
}

.news-list-mix-cover img {
    width: 100%;
    height: auto;
}

.news-list-mix-cover:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.news-list-text {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 40px;
}

.news-list-text-item {
    width: 50%;
    padding-right: 20px;
    float: left;
}

.news-list-text-item:nth-child(2) {
    padding-right: 0;
    padding-left: 20px;
}

.news-list-text-item .news-list-text-title {
    width: 100%;
    height: auto;
    line-height: 30px;
    min-height: 60px;
    font-size: 18px;
    font-weight: bold;
    color: #af261a;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-list-text-wrap {
    background: #fff;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
}

.news-list-text-wrap:hover {
    border: 1px solid #af261a;
    background: #af261a;
    transition: border 0.3s;
}

.news-list-text-wrap:hover .news-list-text-title {
    color: #fff;
    transition: color 0.3s;
}

.news-list-text-item .news-list-text-time {
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #333;
    text-align: right;
    border-top: 1px solid #ccc;
}

.news-list-text-wrap:hover .news-list-text-time {
    color: #fff;
    border-color: #fff;
    transition: color 0.3s;
}

.special {
    width: 100%;
    min-width: 980px;
    height: auto;
    overflow: hidden;
    margin-top: 100px;
    background: url("/static/image/web/md_bg.png") repeat;
    padding: 20px;
}

.special-title {
    width: 100%;
    height: 120px;
    line-height: 120px;
    font-size: 22px;
    font-weight: bold;
    color: #af261a;
    text-align: center;
    background: url(/static/image/web/titlebg.png) no-repeat center;
    margin: auto;
}


.special-list {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.special-list-item {
    width: 20%;
    height: auto;
    max-height: 290px;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
     cursor: pointer;
}


.special-list-item-cover {
    width: 100%;
    height: auto;
    max-height: 290px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.special-list-item-cover img {
    width: 100%;
    height: auto;
    max-height: 290px;
     cursor: pointer;
}

.special-list-item-title {
    width: auto;
    color: #fff;
    position: absolute;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    z-index: 1;
    bottom: 0;
    border-bottom: 40px solid rgba(220,137,37,.9);
    border-right: 40px solid transparent;
}

.special-list-item-cover:hover:before, .special-list-item-cover:focus:before, .special-list-item-cover:active:before {
    width: 25px;
    height: 25px;
}

.special-list-item-cover:before {
    pointer-events: none;
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    right: 0;
    background: #efebea;
    background: linear-gradient(225deg, #efebea 45%, #CCC 50%, #FFF 56%, #efebea 80%);
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: width, height;
    transition-property: width, height;
}

.others {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 50px;
    margin-top: 50px;
}

.others-col {
    width: 33.33%;
    height: auto;
    overflow: hidden;
    float: left;
    padding:0 20px;
}

/*.others-col:nth-child(3n) {*/
/*    padding-left: 40px;*/
/*}*/


.others-item-title {
    width: 100%;
    height: 60px;
    line-height: 60px;
    float: left;
    color: #333;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s;
}

.others-item-title span{
    font-size: 14px;
    /*font-family: Impact;*/
    line-height: 60px;
    padding-right: 10px;
    float: left;
    color: #656667;
    display: block;
    width: auto;
}

.others-list {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.others-list .others-item {
    width: 100%;
    height: 60px;
    overflow: hidden;
    border-bottom: 1px dotted #ccc;
    position: relative;
    cursor: pointer;
}

.others-list .others-item:hover {
    border-bottom: 1px solid #af261a;
}

.others-list .others-item:hover .others-item-title {
    color: #af261a;
}

.video {
    width: 100%;
    height: 470px;
    overflow: hidden;
    margin-top: 100px;
    background: url("/static/image/web/md_bg.png") repeat;
    padding: 20px;
    position: relative;
    min-width: 980px;
}

.video-list {
    width: 10000px;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
    position: absolute;
}

.video-item {
    width: 330px;
    height: 260px;
    overflow: hidden;
    margin-bottom: 20px;
    margin-right: 40px;
    float: left;
}

.video-item-cover {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
}

.video-item-cover img {
    width: 100%;
    height: auto;
    max-height: 230px;
}

.video-item-title {
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    background: #af261a;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 10px;
    padding: 0 10px;
}

.video-item-play {
    width: 64px;
    height: 64px;
    line-height: 50px;
    background: url("/static/image/web/play.png") no-repeat center;
    opacity: 0.7;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -32px;
    margin-left: -32px;

}

.video-item:hover .video-item-play {
    opacity: 1;
}

.f1 {
    width: 12.5%;
    float: left;
    height: 230px;
    padding-top: 20px;
}

.f1-title {
    color: #af261a;
    font-size: 16px;
    margin-bottom: 6px;
}

.f1-item a {
    color: #333;
    font-size: 13px;
}

.links{
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 100px;
    padding: 20px;
    background: url("/static/image/web/md_bg.png") repeat;
    padding-bottom: 50px;
}

.links-list {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.links-list ul li {
    width: auto;
    height: 40px;
    float: left;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    margin-right: 40px;
    margin-bottom: 20px;
}

.links-list-item {
    width: auto;
    height: auto;
    padding: 0 10px;
    overflow: hidden;
    padding-left: 47px;
    margin-top: 20px;
    background: #af261a url("../image/web/lm.png") no-repeat 10px center;
    color: #fff;

}

.half {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.tabs {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
}

.tab {
    width: 80px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    background: #eee;
    color: #333;
    cursor: pointer;
    float: left;
    margin-right: 10px;
    transition: all 0.3s;
}

.tab:hover {
    background: #af261a;
    color: #fff;
}

.tab-active {
    background: #af261a;
    color: #fff;
}

.tab-pane {
    display: none;
}

.tab-pane-active {
    display: block;
}

/*临时代码*/

.detail {
    margin-top: 50px;
    height: auto;
    overflow: hidden;
    margin-bottom: 50px;
}

.list-left {
    width: 230px;
    float: left;
    margin-top: 20px;
}

.list-center {
    width: 100%;
    float: right;
    margin-top: 20px;
}

.list-left-cate {
    width: 230px;
    height: 40px;
    background: #912c02;
    color: #fff;
    padding-left: 20px;
    font-size: 16px;
    line-height: 40px;
}

.list-left-item {
    width: 230px;
    height: 45px;
    background: #e5e5e5;
    font-size: 15px;
    padding-left: 20px;
    line-height: 45px;
    color: #333;
    position: relative;
    border-bottom: 1px solid #d0d0d0;
}

.list-left-list {
    padding-top: 5px;
    background: #e5e5e5;
}

.list-left-item:after {
    content: ">";
    position: absolute;
    right: 20px;
}

.list-left-item:hover {
     color: #af261a;
    background: #d0d0d0;
}

.list-left-item-active {
     color: #af261a;
    background: #d0d0d0;
}

.detail-header {
    width: 100%;
    height: 90px;
    border-bottom: 1px solid #e5e5e5;
}

.detail-title {
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    color: #af261a;
}

.detail-meta {
    line-height: 50px;
    font-size: 16px;
    color: #666;
    text-align: center;
}

.detail-content {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 30px;
}

.detail-content table {
    width: 930px!important;
}

.detail-content table,.detail-content table tr th, .detail-content table tr td { border:1px solid #000000; }

.detail-content p {
    font-size: 16px;
    color: #666;
    line-height: 35px;
    margin-bottom: 10px;
    text-indent: 2em;
}

.detail-content p img {
    max-width: 750px;
    margin:0 auto;
    display: block;
}


.detail-content a {
     color: #af261a;
}


.next-article{
    width: 420px;
    float: left;
    height: 30px;
    margin-right: 20px;
    line-height: 30px;
    overflow: hidden; /*自动隐藏文字*/
    text-overflow: ellipsis;/*文字隐藏后添加省略号*/
    white-space: nowrap;/*强制不换行*/
}

.pre-article {
    width: 420px;
    float: right;
    height: 30px;
    line-height: 30px;
    overflow: hidden; /*自动隐藏文字*/
    text-overflow: ellipsis;/*文字隐藏后添加省略号*/
    white-space: nowrap;/*强制不换行*/
}

.next-article a, .pre-article a {
     color: #af261a;
}

.list-center-top {
    width: 100%;
    height: 40px;
    border-bottom: 2px solid #912c02;
    position: relative;
}

.list-center-cate {
    height: 38px;
    width: 100px;
    text-align: center;
    background: #912c02;
    color: #fff;
    line-height: 38px;
    font-size: 16px;
}

.list {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 50px;
}

/*临时代码结束*/


/*专题页*/

.list-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    min-width: 980px;
}

.list-banner img {
    width: 100%;
}

.list-special-title {
    color: #222;
    font-size: 20px;
    line-height: 70px;
    font-weight: bold;
    height: 73px;
    text-align: center;
    border-bottom: 1px #d8d8d8 solid;
    background: #fff;
}


.list-special {
    height: auto;
    overflow: hidden;
    margin-top: 50px;
}


.list-special-list-item {
    width:33.333%;
    height: auto;
    overflow: hidden;
    float: left;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 40px;
    position: relative;
    transition: all 0.3s;
}

.list-special-list-item-cover {
    width:100%;
    height: auto;
    transition: all 0.3s;
}

.list-special-list-item-cover img {
     width:100%;
}

.list-special-list-item-main {
    background: #f9f9f9;
    padding: 10px;
    transition: all 0.3s;
}


.list-special-list-item:hover .list-special-list-item-cover img {
    opacity: 0.8;
}

.list-special-list-item:hover .list-special-list-item-main {
     box-shadow: 0 0 10px #d8d8d8;
}

.list-special-list-item-title {
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: black;
    line-height: 40px;
    display: block;
    white-space: nowrap !important;
    word-wrap: normal;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
}

.list-special-list-item-meta {
    width: 100%;
    margin-top: 20px;
    height: 30px;
    line-height: 30px;
    color: #999999;
    font-size: 12px;
    text-align: right;
}

.list-page {
    width: 100%;
    text-align: center;
    float: right;
    margin-top: 50px;
    height: 30px;
    margin-bottom: 30px;
}

.list-page a {
    border: 1px solid #e5e5e5;
    padding: 5px 10px;
    margin-left: 10px;
    font-size: 14px;
    color: #666;
}

.list-page a:hover {
    background: #af261a;
    border: 1px solid #af261a;
    color: #fff;
}

.list-title {
    color: #222;
    font-size: 20px;
    line-height: 70px;
    font-weight: bold;
    height: 73px;
    border-bottom: 1px #d8d8d8 solid;
    background: #fff;
}

.list-list {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 980px;
}

.list-list  ul li {
    float: left;
}

.list-list-item {
    display: inline-block;
    color: #222;
    margin-bottom: 20px;
    padding: 0px 20px;
    font-size: 22px;
    margin-right: 30px;
    line-height: 73px;
    vertical-align: top;
    white-space: nowrap;
}

.list-list-item-active {
    color: #af261a;
    border-bottom: 2px solid #af261a;
}

.list-list-item:hover {
    color: #af261a;
    border-bottom: 2px solid #af261a;
}

.about-content {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 100px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-title {
    text-align: center;
    font-size: 30px;
    color: #af261a;
    height: 80px;
    font-weight: bold;
}

.boss-table {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    border-left: none;
    border-right: none;
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    margin-bottom: 100px;

}

.boss-table tr:nth-child(odd) {
    background: #f9f9f9;
}

.boss-table tbody tr td {
    padding-top: 0;
    padding-bottom: 0;
    min-width: 120px;
    color: #333333;
    font-size: 1em;
    height: 120px;
    border-top-color: #ecf0f4;
    text-align: center;
    line-height: 120px;
}

.boss-table tbody tr td:nth-child(2) {
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
}

.boss-table tr td img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    vertical-align:middle!important;
}

.boss-table tr:hover {
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    background: #f0f0f0;

}

.boss-table tr:hover  td img {
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    border: 4px solid #fff;
}

.more-article {
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-search-item {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-bottom: 1px dashed #d8d8d8;
    margin-top: 20px;
    padding: 1em 0;
}


.page-search-item h5 a {
    font-size: 18px;
    color: #666;
    font-weight: bold;
    line-height: 30px;
}
.page-search-item h5 a:hover {
    color: #af261a;
}

.page-search-item .text-success {
    color: #e06b61;
    font-size: 14px;
    line-height: 30px;
}

.page-search-item .text-muted {
    color: #878a99;
    font-size: 14px;
    margin: 5px 0;
}

.page-search-list {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.page-search-title {
    width: auto;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    border-bottom: 1px solid #e9ebec;
    position: absolute;
    right: 0;
    top: 0;
}
.page-search-title span {
    color: #af261a;
    font-weight: bold;
    margin:0 3px;
}

.page-search-item .text-danger {
    color: red;
    line-height: 30px;
    padding: 0 2px;
    background: #ffecec;
}

.search-form {
    width: 980px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.search-form input {
    width: 780px;
    height: 80px;
    border: 1px solid #e5e5e5;
    padding: 0 20px;
    font-size: 18px;
    color: #222;
    float: left;
    margin-right: 10px;
    transition: all 0.2s linear;
}

.search-form button {
    width: 190px;
    height: 80px;
    background: #af261a;
    border: 1px solid #af261a;
    color: #fff;
    font-size: 18px;
    float: left;
    transition: all 0.2s linear;
    cursor: pointer;
}

.search-form button:hover {
    background: #b9483e;
    border: 1px solid #b9483e;
    color: #fff;
}

.search-form input:focus {
    outline: none;
    border: 1px solid #af261a;
}
